Skip to main content

express_route_cross_connections_routes_tables

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

Overview

Nameexpress_route_cross_connections_routes_tables
TypeResource
Idazure.network.express_route_cross_connections_routes_tables

Fields

The following fields are returned by SELECT queries:

Request successful. The operation returns the resulting ExpressRouteCrossConnectionsRouteTable resource.

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.
weightinteger (int32)Route Weight.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, crossConnectionName, peeringName, devicePath, subscriptionIdGets the currently advertised routes table associated with the express route cross connection 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.

NameDatatypeDescription
crossConnectionNamestringThe name of the ExpressRouteCrossConnection.
devicePathstringThe path of the device.
peeringNamestringThe name of the peering.
resourceGroupNamestringThe name of the resource group.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

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 resourceGroupName = '{{ resourceGroupName }}' -- required
AND crossConnectionName = '{{ crossConnectionName }}' -- required
AND peeringName = '{{ peeringName }}' -- required
AND devicePath = '{{ devicePath }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;