Skip to main content

locations_usages

Creates, updates, deletes, gets or lists a locations_usages resource.

Overview

Namelocations_usages
TypeResource
Idazure.data_lake_store.locations_usages

Fields

NameDatatypeDescription
idstringResource identifier.
nameobjectThe usage names that can be used.
currentValueintegerGets the current count of the allocated resources in the subscription.
limitintegerGets the maximum count of the resources that can be allocated in the subscription.
unitstringGets the unit of measurement.

Methods

NameAccessible byRequired ParamsDescription
getSELECTlocation, subscriptionIdGets 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 }}';