quotas
Creates, updates, deletes, gets or lists a quotas resource.
Overview
| Name | quotas |
| Type | Resource |
| Id | azure.machine_learning_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. |
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. "Count" |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | location, subscription_id | Gets the currently assigned Workspace Quotas based on VMFamily. | |
update | exec | location, subscription_id | 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. Required. |
subscription_id | string |
SELECT examples
- list
Gets the currently assigned Workspace Quotas based on VMFamily.
SELECT
id,
name,
limit,
type,
unit
FROM azure.machine_learning_services.quotas
WHERE location = '{{ location }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
Lifecycle Methods
- update
Update quota for each VM family in workspace.
EXEC azure.machine_learning_services.quotas.update
@location='{{ location }}' --required,
@subscription_id='{{ subscription_id }}' --required
@@json=
'{
"value": "{{ value }}"
}'
;