express_route_circuits_routes_tables
Creates, updates, deletes, gets or lists an express_route_circuits_routes_tables resource.
Overview
| Name | express_route_circuits_routes_tables |
| Type | Resource |
| Id | azure.network.express_route_circuits_routes_tables |
Fields
The following fields are returned by SELECT queries:
- list
Request successful. The operation returns the resulting ExpressRouteCircuitsRouteTable resource.
| Name | Datatype | Description |
|---|---|---|
locPrf | string | Local preference value as set with the set local-preference route-map configuration command. |
network | string | IP address of a network entity. |
nextHop | string | NextHop address. |
path | string | Autonomous system paths to the destination network. |
weight | integer (int32) | Route Weight. |
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 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 associated with the express route circuit in a resource group.
SELECT
locPrf,
network,
nextHop,
path,
weight
FROM azure.network.express_route_circuits_routes_tables
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND circuitName = '{{ circuitName }}' -- required
AND peeringName = '{{ peeringName }}' -- required
AND devicePath = '{{ devicePath }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;