Skip to main content

resource_usages

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

Overview

Nameresource_usages
TypeResource
Idazure.cdn.resource_usages

Fields

NameDatatypeDescription
currentValueintegerActual value of usage on the specified resource type.
limitintegerQuota of the specified resource type.
resourceTypestringResource type for which the usage is provided.
unitstringUnit of the usage. e.g. count.

Methods

NameAccessible byRequired ParamsDescription
listSELECTsubscriptionIdCheck the quota and actual usage of the CDN profiles under the given subscription.

SELECT examples

Check the quota and actual usage of the CDN profiles under the given subscription.

SELECT
currentValue,
limit,
resourceType,
unit
FROM azure.cdn.resource_usages
WHERE subscriptionId = '{{ subscriptionId }}';