Skip to main content

express_route_cross_connections_routes_table_summaries

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

Overview

Nameexpress_route_cross_connections_routes_table_summaries
TypeResource
Idazure.network.express_route_cross_connections_routes_table_summaries

Fields

NameDatatypeDescription
asnintegerAutonomous system number.
neighborstringIP address of Neighbor router.
stateOrPrefixesReceivedstringCurrent state of the BGP session, and the number of prefixes that have been received from a neighbor or peer group.
upDownstringThe length of time that the BGP session has been in the Established state, or the current status if not in the Established state.

Methods

NameAccessible byRequired ParamsDescription
listSELECTcrossConnectionName, devicePath, peeringName, resourceGroupName, subscriptionIdGets the route table summary associated with the express route cross connection in a resource group.

SELECT examples

Gets the route table summary associated with the express route cross connection in a resource group.

SELECT
asn,
neighbor,
stateOrPrefixesReceived,
upDown
FROM azure.network.express_route_cross_connections_routes_table_summaries
WHERE crossConnectionName = '{{ crossConnectionName }}'
AND devicePath = '{{ devicePath }}'
AND peeringName = '{{ peeringName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';