express_route_circuits_routes_tables
Creates, updates, deletes, gets or lists a express_route_circuits_routes_tables
resource.
Overview
Name | express_route_circuits_routes_tables |
Type | Resource |
Id | azure.network.express_route_circuits_routes_tables |
Fields
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 | Route Weight. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | circuitName, devicePath, peeringName, resourceGroupName, subscriptionId | Gets the currently advertised routes table associated with the express route circuit in a resource group. |
SELECT
examples
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 circuitName = '{{ circuitName }}'
AND devicePath = '{{ devicePath }}'
AND peeringName = '{{ peeringName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';