usages_in_locations
Creates, updates, deletes, gets or lists a usages_in_locations
resource.
Overview
Name | usages_in_locations |
Type | Resource |
Id | azure.app_service.usages_in_locations |
Fields
Name | Datatype | Description |
---|---|---|
name | object | Localizable string object containing the name and a localized value. |
currentValue | integer | The current value of the resource counter. |
limit | integer | The resource limit. |
nextResetTime | string | Next reset time for the resource counter. |
unit | string | Units of measurement for the quota resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | location, subscriptionId | List 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 }}';