locations_usages
Creates, updates, deletes, gets or lists a locations_usages
resource.
Overview
Name | locations_usages |
Type | Resource |
Id | azure.data_lake_store.locations_usages |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Resource identifier. |
name | object | The usage names that can be used. |
currentValue | integer | Gets the current count of the allocated resources in the subscription. |
limit | integer | Gets the maximum count of the resources that can be allocated in the subscription. |
unit | string | Gets the unit of measurement. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, subscriptionId | Gets the current usage count and the limit for the resources of the location under the subscription. |
SELECT
examples
Gets the current usage count and the limit for the resources of the location under the subscription.
SELECT
id,
name,
currentValue,
limit,
unit
FROM azure.data_lake_store.locations_usages
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';