location_usages
Creates, updates, deletes, gets or lists a location_usages
resource.
Overview
Name | location_usages |
Type | Resource |
Id | azure.container_instances.location_usages |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Id of the usage result |
name | object | The name object of the resource |
currentValue | integer | The current usage of the resource |
limit | integer | The maximum permitted usage of the resource. |
unit | string | Unit of the usage result |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | location, subscriptionId | Get the usage for a subscription |
SELECT
examples
Get the usage for a subscription
SELECT
id,
name,
currentValue,
limit,
unit
FROM azure.container_instances.location_usages
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';