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
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
name | object | Quota name. |
currentValue | integer (int64) | The current value of the resource counter. |
limit | integer (int64) | The resource limit. |
nextResetTime | string (date-time) | Next reset time for the resource counter. |
unit | string | Units of measurement for the quota resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional 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. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
location | string | The name of the Azure region. |
subscriptionId | string | Your Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000). |
SELECT
examples
- list
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 }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;