quotas
Creates, updates, deletes, gets or lists a quotas
resource.
Overview
Name | quotas |
Type | Resource |
Id | azure.ml_services.quotas |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
id | string | Specifies the resource ID. |
name | object | Name of the resource. |
amlWorkspaceLocation | string | Region of the AML workspace in the id. |
limit | integer (int64) | The maximum permitted quota of the resource. (title: Limit.) |
type | string | Specifies the resource type. |
unit | string | An enum describing the unit of quota measurement. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , location | Gets the currently assigned Workspace Quotas based on VMFamily. | |
update | exec | location , subscriptionId | Update quota for each VM family in workspace. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
location | string | The location for update quota is queried. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- list
Gets the currently assigned Workspace Quotas based on VMFamily.
SELECT
id,
name,
amlWorkspaceLocation,
limit,
type,
unit
FROM azure.ml_services.quotas
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
;
Lifecycle Methods
- update
Update quota for each VM family in workspace.
EXEC azure.ml_services.quotas.update
@location='{{ location }}' --required,
@subscriptionId='{{ subscriptionId }}' --required
@@json=
'{
"value": "{{ value }}",
"location": "{{ location }}"
}'
;