Skip to main content

operations

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

Overview

Nameoperations
TypeResource
Idazure.peering.operations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe name of the operation.
displayobjectThe information related to the operation.
isDataActionbooleanThe flag that indicates whether the operation applies to data plane.
propertiesobjectThe properties of the operation.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectLists all of the available API operations for peering resources.
check_service_provider_availabilityexecsubscriptionIdChecks if the peering service provider is present within 1000 miles of customer's location

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.

NameDatatypeDescription
subscriptionIdstringThe Azure subscription ID.

SELECT examples

Lists all of the available API operations for peering resources.

SELECT
name,
display,
isDataAction,
properties
FROM azure.peering.operations
;

Lifecycle Methods

Checks if the peering service provider is present within 1000 miles of customer's location

EXEC azure.peering.operations.check_service_provider_availability 
@subscriptionId='{{ subscriptionId }}' --required
@@json=
'{
"peeringServiceLocation": "{{ peeringServiceLocation }}",
"peeringServiceProvider": "{{ peeringServiceProvider }}"
}'
;