asc_usages
Creates, updates, deletes, gets or lists an asc_usages resource.
Overview
| Name | asc_usages |
| Type | Resource |
| Id | azure.storage_cache.asc_usages |
Fields
The following fields are returned by SELECT queries:
- list
| 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
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | location, subscription_id | Gets the quantity used and quota limit for resources. |
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 location name. Required. |
subscription_id | string |
SELECT examples
- list
Gets the quantity used and quota limit for resources.
SELECT
name,
currentValue,
limit,
unit
FROM azure.storage_cache.asc_usages
WHERE location = '{{ location }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;