Skip to main content

express_route_circuits_routes_table_summaries

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

Overview

Nameexpress_route_circuits_routes_table_summaries
TypeResource
Idazure.network.express_route_circuits_routes_table_summaries

Fields

NameDatatypeDescription
asintegerAutonomous system number.
neighborstringIP address of the neighbor.
statePfxRcdstringCurrent 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.
vintegerBGP version number spoken to the neighbor.

Methods

NameAccessible byRequired ParamsDescription
listSELECTcircuitName, devicePath, peeringName, resourceGroupName, subscriptionIdGets the currently advertised routes table summary associated with the express route circuit in a resource group.

SELECT examples

Gets the currently advertised routes table summary associated with the express route circuit in a resource group.

SELECT
as,
neighbor,
statePfxRcd,
upDown,
v
FROM azure.network.express_route_circuits_routes_table_summaries
WHERE circuitName = '{{ circuitName }}'
AND devicePath = '{{ devicePath }}'
AND peeringName = '{{ peeringName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';