Skip to main content

express_route_cross_connections_routes_tables

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

Overview

Nameexpress_route_cross_connections_routes_tables
TypeResource
Idazure.network.express_route_cross_connections_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
listSELECTcrossConnectionName, devicePath, peeringName, resourceGroupName, subscriptionIdGets the currently advertised routes table associated with the express route cross connection in a resource group.

SELECT examples

Gets the currently advertised routes table associated with the express route cross connection in a resource group.

SELECT
locPrf,
network,
nextHop,
path,
weight
FROM azure.network.express_route_cross_connections_routes_tables
WHERE crossConnectionName = '{{ crossConnectionName }}'
AND devicePath = '{{ devicePath }}'
AND peeringName = '{{ peeringName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';