Microsoft.MachineLearningServices (preview:2024-10-01)

2024/12/09 • 2 new methods

PTUQuota_GetAvailable (new)
Description Get available MaaS PTU quota.
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/providers/Microsoft.MachineLearningServices/availableQuota/default
{
subscriptionId: string ,
api-version: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}

⚐ Response (200)

{
properties:
{
total: integer ,
}
,
}
PTUQuota_List (new)
Description List MaaS PTU usage and quota.
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/providers/Microsoft.MachineLearningServices/quotaAndUsage
{
subscriptionId: string ,
api-version: string ,
$skip: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}

⚐ Response (200)

{
nextLink: string ,
value:
[
{
modelCollection: string ,
quota: integer ,
usageDetails:
[
{
collectionQuotaUsage: integer ,
deploymentName: string ,
resourceGroup: string ,
usage: integer ,
workspaceName: string ,
}
,
]
,
}
,
]
,
}