operations
Creates, updates, deletes, gets or lists a operations
resource.
Overview
Name | operations |
Type | Resource |
Id | azure.cdn.operations |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Operation name: {provider}/{resource}/{operation} |
display | `` | The object that represents the operation. |
isDataAction | boolean | Indicates whether the operation is a data action |
origin | string | The origin of operations. |
properties | object | Properties of operation, include metric specifications. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT |
| Lists all of the available CDN REST API operations. |
check_endpoint_name_availability | EXEC | resourceGroupName, subscriptionId, data__name, data__type | Check the availability of a resource name. This is needed for resources where name is globally unique, such as a afdx endpoint. |
check_name_availability | EXEC | data__name, data__type | Check the availability of a resource name. This is needed for resources where name is globally unique, such as a CDN endpoint. |
check_name_availability_with_subscription | EXEC | subscriptionId, data__name, data__type | Check the availability of a resource name. This is needed for resources where name is globally unique, such as a CDN endpoint. |
validate_probe | EXEC | subscriptionId, data__probeURL | Check if the probe path is a valid path and the file can be accessed. Probe path is the path to a file hosted on the origin server to help accelerate the delivery of dynamic content via the CDN endpoint. This path is relative to the origin path specified in the endpoint configuration. |
SELECT
examples
Lists all of the available CDN REST API operations.
SELECT
name,
display,
isDataAction,
origin,
properties
FROM azure.cdn.operations
;