afd_profiles_resource_usages
Creates, updates, deletes, gets or lists an afd_profiles_resource_usages
resource.
Overview
Name | afd_profiles_resource_usages |
Type | Resource |
Id | azure.cdn.afd_profiles_resource_usages |
Fields
The following fields are returned by SELECT
queries:
- list
OK. The request has succeeded.
Name | Datatype | Description |
---|---|---|
id | string | Resource identifier. |
name | object | The name of the type of usage. |
currentValue | integer (int64) | The current value of the usage. |
limit | integer (int64) | The limit of usage. |
unit | string | An enum describing the unit of measurement. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceGroupName , profileName , subscriptionId | Checks the quota and actual usage of endpoints under the given Azure Front Door profile. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
profileName | string | Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group. |
resourceGroupName | string | Name of the Resource group within the Azure subscription. |
subscriptionId | string | Azure Subscription ID. |
SELECT
examples
- list
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 resourceGroupName = '{{ resourceGroupName }}' -- required
AND profileName = '{{ profileName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;