profiles_resource_usages
Creates, updates, deletes, gets or lists a profiles_resource_usages
resource.
Overview
Name | profiles_resource_usages |
Type | Resource |
Id | azure.cdn.profiles_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 | profileName, resourceGroupName, subscriptionId | Checks the quota and actual usage of endpoints under the given Azure Front Door Standard or Azure Front Door Premium or CDN profile. |
SELECT
examples
Checks the quota and actual usage of endpoints under the given Azure Front Door Standard or Azure Front Door Premium or CDN profile.
SELECT
currentValue,
limit,
resourceType,
unit
FROM azure.cdn.profiles_resource_usages
WHERE profileName = '{{ profileName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';