Skip to main content

afd_profiles_resource_usages

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

Overview

Nameafd_profiles_resource_usages
TypeResource
Idazure.cdn.afd_profiles_resource_usages

Fields

NameDatatypeDescription
idstringResource identifier.
nameobjectThe usage names.
currentValueintegerThe current value of the usage.
limitintegerThe limit of usage.
unitstringAn enum describing the unit of measurement.

Methods

NameAccessible byRequired ParamsDescription
listSELECTprofileName, resourceGroupName, subscriptionIdChecks the quota and actual usage of endpoints under the given Azure Front Door profile.

SELECT examples

Checks the quota and actual usage of endpoints under the given Azure Front Door profile.

SELECT
id,
name,
currentValue,
limit,
unit
FROM azure.cdn.afd_profiles_resource_usages
WHERE profileName = '{{ profileName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';