Skip to main content

usages_in_locations

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

Overview

Nameusages_in_locations
TypeResource
Idazure.app_service.usages_in_locations

Fields

NameDatatypeDescription
nameobjectLocalizable string object containing the name and a localized value.
currentValueintegerThe current value of the resource counter.
limitintegerThe resource limit.
nextResetTimestringNext reset time for the resource counter.
unitstringUnits of measurement for the quota resource.

Methods

NameAccessible byRequired ParamsDescription
listSELECTlocation, subscriptionIdList usages in cores for all skus used by a subscription in a given location, for a specific quota type.

SELECT examples

List usages in cores for all skus used by a subscription in a given location, for a specific quota type.

SELECT
name,
currentValue,
limit,
nextResetTime,
unit
FROM azure.app_service.usages_in_locations
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';