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

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource ID.
namestringName of the resource.
addressPrefixstring/29 IP address space to carve out Customer addresses for tunnels.
authResourceGuidstringThe resource guid of the authorization used for the express route circuit connection.
circuitConnectionStatusstringExpress Route Circuit connection state. Known values are: "Connected", "Connecting", and "Disconnected". (Connected, Connecting, Disconnected)
connectionNamestringThe name of the express route circuit connection resource.
etagstringA unique read-only string that changes whenever the resource is updated.
expressRouteCircuitPeeringobjectReference to another subresource.
peerExpressRouteCircuitPeeringobjectReference to another subresource.
provisioningStatestringThe provisioning state of the peer express route circuit connection resource. Known values are: "Failed", "Succeeded", "Canceled", "Creating", "Updating", and "Deleting". (Failed, Succeeded, Canceled, Creating, Updating, Deleting)
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, circuit_name, peering_name, connection_name, subscription_idGets the specified Peer Express Route Circuit Connection from the specified express route circuit.
listselectresource_group_name, circuit_name, peering_name, subscription_idGets all global reach peer connections associated with a private peering in an express route circuit.

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
circuit_namestringThe name of express route circuit. Required.
connection_namestringThe name of the resource that is unique within a resource group. This name can be used to access the resource. Required.
peering_namestringThe name of the peering. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

SELECT examples

Gets the specified Peer Express Route Circuit Connection from the specified express route circuit.

SELECT
id,
name,
addressPrefix,
authResourceGuid,
circuitConnectionStatus,
connectionName,
etag,
expressRouteCircuitPeering,
peerExpressRouteCircuitPeering,
provisioningState,
type
FROM azure.network.peer_express_route_circuit_connections
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND circuit_name = '{{ circuit_name }}' -- required
AND peering_name = '{{ peering_name }}' -- required
AND connection_name = '{{ connection_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;