Skip to main content

operations

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

Overview

Nameoperations
TypeResource
Idazure.cdn.operations

Fields

NameDatatypeDescription
namestringOperation name: {provider}/{resource}/{operation}
display``The object that represents the operation.
isDataActionbooleanIndicates whether the operation is a data action
originstringThe origin of operations.
propertiesobjectProperties of operation, include metric specifications.

Methods

NameAccessible byRequired ParamsDescription
listSELECTLists all of the available CDN REST API operations.
check_endpoint_name_availabilityEXECresourceGroupName, subscriptionId, data__name, data__typeCheck the availability of a resource name. This is needed for resources where name is globally unique, such as a afdx endpoint.
check_name_availabilityEXECdata__name, data__typeCheck 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_subscriptionEXECsubscriptionId, data__name, data__typeCheck the availability of a resource name. This is needed for resources where name is globally unique, such as a CDN endpoint.
validate_probeEXECsubscriptionId, data__probeURLCheck 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
;