-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge quota changes from 2024-10-01-preview (#31926)
* merge change from 2024-10-01-preview * add bugfix changes and new list api * Removes azure-resource-manager-schemas from SDK automation. It can be re-added without reverting this commit. (#30893) (#31918) This change produces an extra warning but no obvious new errors. --------- Co-authored-by: Daniel Jurek <[email protected]>
- Loading branch information
1 parent
518e524
commit 5f0eb87
Showing
4 changed files
with
331 additions
and
0 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
...ft.MachineLearningServices/preview/2024-10-01-preview/examples/PTUQuota/getAvailable.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
"location": "location", | ||
"api-version": "2024-10-01-preview" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"properties": { | ||
"total": 1 | ||
} | ||
} | ||
} | ||
} | ||
} |
31 changes: 31 additions & 0 deletions
31
.../Microsoft.MachineLearningServices/preview/2024-10-01-preview/examples/PTUQuota/list.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
"location": "location", | ||
"api-version": "2024-10-01-preview", | ||
"$skipToken": "string" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"value": [ | ||
{ | ||
"modelCollection": "string", | ||
"quota": 1, | ||
"usageDetails": [ | ||
{ | ||
"resourceGroup": "string", | ||
"workspaceName": "string", | ||
"deploymentName": "string", | ||
"usage": 1, | ||
"collectionQuotaUsage": 1 | ||
} | ||
] | ||
} | ||
], | ||
"nextLink": "string" | ||
} | ||
} | ||
} | ||
} |
23 changes: 23 additions & 0 deletions
23
...t.MachineLearningServices/preview/2024-10-01-preview/examples/PTUQuota/listAvailable.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
"location": "location", | ||
"api-version": "2024-10-01-preview", | ||
"$skipToken": "string" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"value": [ | ||
{ | ||
"properties": { | ||
"total": 1 | ||
} | ||
} | ||
], | ||
"nextLink": "string" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters