usages
Creates, updates, deletes, gets or lists a usages
resource.
Overview
Name | usages |
Type | Resource |
Id | azure.ml_services.usages |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Specifies the resource ID. |
name | object | The Usage Names. |
amlWorkspaceLocation | string | Region of the AML workspace in the id. |
currentValue | integer | The current usage of the resource. |
limit | integer | The maximum permitted usage of the resource. |
type | string | Specifies the resource type. |
unit | string | An enum describing the unit of usage measurement. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | location, subscriptionId | Gets the current usage information as well as limits for AML resources for given subscription and location. |
SELECT
examples
Gets the current usage information as well as limits for AML resources for given subscription and location.
SELECT
id,
name,
amlWorkspaceLocation,
currentValue,
limit,
type,
unit
FROM azure.ml_services.usages
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';