asc_usages
Creates, updates, deletes, gets or lists a asc_usages
resource.
Overview
Name | asc_usages |
Type | Resource |
Id | azure.storage_cache.asc_usages |
Fields
Name | Datatype | Description |
---|---|---|
name | object | Naming information for this resource type. |
currentValue | integer | The current usage of this resource. |
limit | integer | The limit (quota) for this resource. |
unit | string | Unit that the limit and usages are expressed in, such as 'Count'. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | location, subscriptionId | Gets the quantity used and quota limit for resources |
SELECT
examples
Gets the quantity used and quota limit for resources
SELECT
name,
currentValue,
limit,
unit
FROM azure.storage_cache.asc_usages
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';