Skip to main content

locations_usages

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

Overview

Namelocations_usages
TypeResource
Idazure.hdinsight.locations_usages

Fields

NameDatatypeDescription
nameobjectThe details about the localizable name of a type of usage.
currentValueintegerThe current usage.
limitintegerThe maximum allowed usage.
unitstringThe type of measurement for usage.

Methods

NameAccessible byRequired ParamsDescription
listSELECTlocation, subscriptionIdLists 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 }}';