Skip to main content

peer_express_route_circuit_connections

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

Overview

Namepeer_express_route_circuit_connections
TypeResource
Idazure.network.peer_express_route_circuit_connections

Fields

NameDatatypeDescription
idtextResource ID.
nametextThe name of the resource that is unique within a resource group. This name can be used to access the resource.
address_prefixtextfield from the properties object
auth_resource_guidtextfield from the properties object
circuitNametextfield from the properties object
circuit_connection_statustextfield from the properties object
connectionNametextfield from the properties object
connection_nametextfield from the properties object
etagtextA unique read-only string that changes whenever the resource is updated.
express_route_circuit_peeringtextfield from the properties object
peer_express_route_circuit_peeringtextfield from the properties object
peeringNametextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextType of the resource.

Methods

NameAccessible byRequired ParamsDescription
getSELECTcircuitName, connectionName, peeringName, resourceGroupName, subscriptionIdGets the specified Peer Express Route Circuit Connection from the specified express route circuit.
listSELECTcircuitName, peeringName, resourceGroupName, subscriptionIdGets all global reach peer connections associated with a private peering in an express route circuit.

SELECT examples

Gets all global reach peer connections associated with a private peering in an express route circuit.

SELECT
id,
name,
address_prefix,
auth_resource_guid,
circuitName,
circuit_connection_status,
connectionName,
connection_name,
etag,
express_route_circuit_peering,
peer_express_route_circuit_peering,
peeringName,
provisioning_state,
resourceGroupName,
subscriptionId,
type
FROM azure.network.vw_peer_express_route_circuit_connections
WHERE circuitName = '{{ circuitName }}'
AND peeringName = '{{ peeringName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';