express_route_circuits_routes_table_summaries
Creates, updates, deletes, gets or lists a express_route_circuits_routes_table_summaries
resource.
Overview
Name | express_route_circuits_routes_table_summaries |
Type | Resource |
Id | azure.network.express_route_circuits_routes_table_summaries |
Fields
Name | Datatype | Description |
---|---|---|
as | integer | Autonomous system number. |
neighbor | string | IP address of the neighbor. |
statePfxRcd | string | Current state of the BGP session, and the number of prefixes that have been received from a neighbor or peer group. |
upDown | string | The length of time that the BGP session has been in the Established state, or the current status if not in the Established state. |
v | integer | BGP version number spoken to the neighbor. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | circuitName, devicePath, peeringName, resourceGroupName, subscriptionId | Gets 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 }}';