Skip to main content

profiles_resource_usages

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

Overview

Nameprofiles_resource_usages
TypeResource
Idazure.cdn.profiles_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
listSELECTprofileName, resourceGroupName, subscriptionIdChecks 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 }}';