Skip to main content

express_route_circuits_routes_tables

Creates, updates, deletes, gets or lists a express_route_circuits_routes_tables resource.

Overview

Nameexpress_route_circuits_routes_tables
TypeResource
Idazure.network.express_route_circuits_routes_tables

Fields

NameDatatypeDescription
locPrfstringLocal preference value as set with the set local-preference route-map configuration command.
networkstringIP address of a network entity.
nextHopstringNextHop address.
pathstringAutonomous system paths to the destination network.
weightintegerRoute Weight.

Methods

NameAccessible byRequired ParamsDescription
listSELECTcircuitName, devicePath, peeringName, resourceGroupName, subscriptionIdGets 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 }}';