quotas
Creates, updates, deletes, gets or lists a quotas
resource.
Overview
Name | quotas |
Type | Resource |
Id | azure.ml_services.quotas |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Specifies the resource ID. |
name | object | The Resource Name. |
amlWorkspaceLocation | string | Region of the AML workspace in the id. |
limit | integer | The maximum permitted quota of the resource. |
type | string | Specifies the resource type. |
unit | string | An enum describing the unit of quota measurement. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | location, subscriptionId | Gets the currently assigned Workspace Quotas based on VMFamily. |
update | EXEC | location, subscriptionId | Update quota for each VM family in workspace. |
SELECT
examples
Gets the currently assigned Workspace Quotas based on VMFamily.
SELECT
id,
name,
amlWorkspaceLocation,
limit,
type,
unit
FROM azure.ml_services.quotas
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';