express_route_cross_connections_routes_table_summaries
Creates, updates, deletes, gets or lists a express_route_cross_connections_routes_table_summaries
resource.
Overview
Name | express_route_cross_connections_routes_table_summaries |
Type | Resource |
Id | azure.network.express_route_cross_connections_routes_table_summaries |
Fields
Name | Datatype | Description |
---|---|---|
asn | integer | Autonomous system number. |
neighbor | string | IP address of Neighbor router. |
stateOrPrefixesReceived | 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. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | crossConnectionName, devicePath, peeringName, resourceGroupName, subscriptionId | Gets 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 }}';