usages
Creates, updates, deletes, gets or lists a usages
resource.
Overview
Name | usages |
Type | Resource |
Id | azure.lab_services.usages |
Fields
Name | Datatype | Description |
---|---|---|
id | string | The fully qualified arm resource id. |
name | object | The Usage Names. |
currentValue | integer | The current usage. |
limit | integer | The limit integer. |
unit | string | The unit details. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_by_location | SELECT | location, subscriptionId | Returns list of usage per SKU family for the specified subscription in the specified region. |
SELECT
examples
Returns list of usage per SKU family for the specified subscription in the specified region.
SELECT
id,
name,
currentValue,
limit,
unit
FROM azure.lab_services.usages
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';