Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion specification/ai/Azure.AI.Projects/connections/routes.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ interface Connections {
@doc("Get a connection by name, with its connection credentials")
@TypeSpec.Http.post
@Rest.actionSeparator("/")
@Rest.action("withCredentials")
@Rest.action("getConnectionWithCredentials")
getWithCredentials is ConnectionOperations.ResourceAction<
Connection,
{},
Expand Down
2 changes: 1 addition & 1 deletion specification/ai/Azure.AI.Projects/datasets/models.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ union DatasetType {
@discriminator("type")
@added(Versions.v2025_05_01)
model DatasetVersion {
@doc("[Required] Uri of the data. Example: https://go.microsoft.com/fwlink/?linkid=2202330")
@doc("URI of the data. Example: https://go.microsoft.com/fwlink/?linkid=2202330")
@visibility(Lifecycle.Read, Lifecycle.Create)
@minLength(1)
@pattern("[a-zA-Z0-9_]")
Expand Down
2 changes: 1 addition & 1 deletion specification/ai/Azure.AI.Projects/tspconfig.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ options:
emitter-output-dir: "{project-root}/.."
azure-resource-provider-folder: "data-plane"
emit-lro-options: "none"
output-file: "{azure-resource-provider-folder}/{service-name}/{version-status}/{version}/azure-ai-projects-1dp.json"
output-file: "{azure-resource-provider-folder}/{service-name}/{version-status}/{version}/azure-ai-projects.json"
"@azure-tools/typespec-python":
package-mode: "dataplane"
package-dir: "azure-ai-projects"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@
}
}
},
"/connections/{name}/withCredentials": {
"/connections/{name}/getConnectionWithCredentials": {
"post": {
"operationId": "Connections_GetWithCredentials",
"description": "Get a connection by name, with its connection credentials",
Expand Down Expand Up @@ -2238,7 +2238,7 @@
"properties": {
"dataUri": {
"type": "string",
"description": "[Required] Uri of the data. Example: https://go.microsoft.com/fwlink/?linkid=2202330",
"description": "URI of the data. Example: https://go.microsoft.com/fwlink/?linkid=2202330",
"minLength": 1,
"pattern": "[a-zA-Z0-9_]",
"x-ms-mutability": [
Expand Down
8 changes: 4 additions & 4 deletions specification/ai/data-plane/Azure.AI.Projects/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,28 +19,28 @@ openapi-type: data-plane
These settings apply only when `--tag=v1` is specified on the command line.
``` yaml $(tag) == 'latest'
input-file:
- stable/v1/azure-ai-projects-1dp.json
- stable/v1/azure-ai-projects.json
```

### Release v2025-05-01
These settings apply only when `--tag=v025-05-01` is specified on the command line.
``` yaml $(tag) == '2025-05-01'
input-file:
- stable/2025-05-01/azure-ai-projects-1dp.json
- stable/2025-05-01/azure-ai-projects.json
```

### Release v2025-05-15-preview
These settings apply only when `--tag=2025-05-15-preview` is specified on the command line.
``` yaml $(tag) == '2025-05-15-preview'
input-file:
- preview/2025-05-15-preview/azure-ai-projects-1dp.json
- preview/2025-05-15-preview/azure-ai-projects.json
```

# Suppressions
``` yaml
suppressions:
- code: OperationIdNounVerb
from: azure-ai-projects-1dp.json
from: azure-ai-projects.json
where: $.paths["/evaluations/runs:runAgent"].post.operationId
reason: False alert. Evaluation should appear after underscore for clarity's sake.
```
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@
}
}
},
"/connections/{name}/withCredentials": {
"/connections/{name}/getConnectionWithCredentials": {
"post": {
"operationId": "Connections_GetWithCredentials",
"description": "Get a connection by name, with its connection credentials",
Expand Down Expand Up @@ -1542,7 +1542,7 @@
"properties": {
"dataUri": {
"type": "string",
"description": "[Required] Uri of the data. Example: https://go.microsoft.com/fwlink/?linkid=2202330",
"description": "URI of the data. Example: https://go.microsoft.com/fwlink/?linkid=2202330",
"minLength": 1,
"pattern": "[a-zA-Z0-9_]",
"x-ms-mutability": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@
}
}
},
"/connections/{name}/withCredentials": {
"/connections/{name}/getConnectionWithCredentials": {
"post": {
"operationId": "Connections_GetWithCredentials",
"description": "Get a connection by name, with its connection credentials",
Expand Down Expand Up @@ -1542,7 +1542,7 @@
"properties": {
"dataUri": {
"type": "string",
"description": "[Required] Uri of the data. Example: https://go.microsoft.com/fwlink/?linkid=2202330",
"description": "URI of the data. Example: https://go.microsoft.com/fwlink/?linkid=2202330",
"minLength": 1,
"pattern": "[a-zA-Z0-9_]",
"x-ms-mutability": [
Expand Down
Loading