operations
Creates, updates, deletes, gets or lists an operations
resource.
Overview
Name | operations |
Type | Resource |
Id | azure.peering.operations |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
name | string | The name of the operation. |
display | object | The information related to the operation. |
isDataAction | boolean | The flag that indicates whether the operation applies to data plane. |
properties | object | The properties of the operation. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | Lists all of the available API operations for peering resources. | ||
check_service_provider_availability | exec | subscriptionId | Checks 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.
Name | Datatype | Description |
---|---|---|
subscriptionId | string | The Azure subscription ID. |
SELECT
examples
- list
Lists all of the available API operations for peering resources.
SELECT
name,
display,
isDataAction,
properties
FROM azure.peering.operations
;
Lifecycle Methods
- check_service_provider_availability
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 }}"
}'
;