endpoints_resource_usages
Creates, updates, deletes, gets or lists a endpoints_resource_usages
resource.
Overview
Name | endpoints_resource_usages |
Type | Resource |
Id | azure.cdn.endpoints_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 | endpointName, profileName, resourceGroupName, subscriptionId | Checks the quota and usage of geo filters and custom domains under the given endpoint. |
SELECT
examples
Checks the quota and usage of geo filters and custom domains under the given endpoint.
SELECT
currentValue,
limit,
resourceType,
unit
FROM azure.cdn.endpoints_resource_usages
WHERE endpointName = '{{ endpointName }}'
AND profileName = '{{ profileName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';