Skip to main content

asc_usages

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

Overview

Nameasc_usages
TypeResource
Idazure.storage_cache.asc_usages

Fields

NameDatatypeDescription
nameobjectNaming information for this resource type.
currentValueintegerThe current usage of this resource.
limitintegerThe limit (quota) for this resource.
unitstringUnit that the limit and usages are expressed in, such as 'Count'.

Methods

NameAccessible byRequired ParamsDescription
listSELECTlocation, subscriptionIdGets 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 }}';