locations_usages
Creates, updates, deletes, gets or lists a locations_usages
resource.
Overview
Name | locations_usages |
Type | Resource |
Id | azure.hdinsight.locations_usages |
Fields
Name | Datatype | Description |
---|---|---|
name | object | The details about the localizable name of a type of usage. |
currentValue | integer | The current usage. |
limit | integer | The maximum allowed usage. |
unit | string | The type of measurement for usage. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | location, subscriptionId | Lists the usages for the specified location. |
SELECT
examples
Lists the usages for the specified location.
SELECT
name,
currentValue,
limit,
unit
FROM azure.hdinsight.locations_usages
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';