resource_usages
Creates, updates, deletes, gets or lists a resource_usages
resource.
Overview
Name | resource_usages |
Type | Resource |
Id | azure.cdn.resource_usages |
Fields
Name | Datatype | Description |
---|---|---|
currentValue | integer | Actual value of usage on the specified resource type. |
limit | integer | Quota of the specified resource type. |
resourceType | string | Resource type for which the usage is provided. |
unit | string | Unit of the usage. e.g. count. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | subscriptionId | Check 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 }}';