peer_express_route_circuit_connections
Creates, updates, deletes, gets or lists a peer_express_route_circuit_connections
resource.
Overview
Name | peer_express_route_circuit_connections |
Type | Resource |
Id | azure.network.peer_express_route_circuit_connections |
Fields
- vw_peer_express_route_circuit_connections
- peer_express_route_circuit_connections
Name | Datatype | Description |
---|---|---|
id | text | Resource ID. |
name | text | The name of the resource that is unique within a resource group. This name can be used to access the resource. |
address_prefix | text | field from the properties object |
auth_resource_guid | text | field from the properties object |
circuitName | text | field from the properties object |
circuit_connection_status | text | field from the properties object |
connectionName | text | field from the properties object |
connection_name | text | field from the properties object |
etag | text | A unique read-only string that changes whenever the resource is updated. |
express_route_circuit_peering | text | field from the properties object |
peer_express_route_circuit_peering | text | field from the properties object |
peeringName | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Type of the resource. |
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | The name of the resource that is unique within a resource group. This name can be used to access the resource. |
etag | string | A unique read-only string that changes whenever the resource is updated. |
properties | object | Properties of the peer express route circuit connection. |
type | string | Type of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | circuitName, connectionName, peeringName, resourceGroupName, subscriptionId | Gets the specified Peer Express Route Circuit Connection from the specified express route circuit. |
list | SELECT | circuitName, peeringName, resourceGroupName, subscriptionId | Gets 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.
- vw_peer_express_route_circuit_connections
- peer_express_route_circuit_connections
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 }}';
SELECT
id,
name,
etag,
properties,
type
FROM azure.network.peer_express_route_circuit_connections
WHERE circuitName = '{{ circuitName }}'
AND peeringName = '{{ peeringName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';