express_route_circuits_routes_table_summaries
Creates, updates, deletes, gets or lists an 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
The following fields are returned by SELECT
queries:
- list
Request successful. The operation returns the resulting ExpressRouteCircuitsRoutesTableSummary resource.
Name | Datatype | Description |
---|---|---|
as | integer (int32) | 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 (int32) | BGP version number spoken to the neighbor. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceGroupName , circuitName , peeringName , devicePath , subscriptionId | Gets the currently advertised routes table summary associated with the express route circuit in a resource group. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
circuitName | string | The name of the express route circuit. |
devicePath | string | The path of the device. |
peeringName | string | The name of the peering. |
resourceGroupName | string | The name of the resource group. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- list
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 resourceGroupName = '{{ resourceGroupName }}' -- required
AND circuitName = '{{ circuitName }}' -- required
AND peeringName = '{{ peeringName }}' -- required
AND devicePath = '{{ devicePath }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;