Skip to main content

usages

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

Overview

Nameusages
TypeResource
Idazure.dev_center.usages

Fields

NameDatatypeDescription
idstringThe fully qualified arm resource id.
nameobjectThe Usage Names.
currentValueintegerThe current usage.
limitintegerThe limit integer.
unitstringThe unit details.

Methods

NameAccessible byRequired ParamsDescription
list_by_locationSELECTlocation, subscriptionIdLists the current usages and limits in this location for the provided subscription.

SELECT examples

Lists the current usages and limits in this location for the provided subscription.

SELECT
id,
name,
currentValue,
limit,
unit
FROM azure.dev_center.usages
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';