Skip to main content

express_route_links

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

Overview

Nameexpress_route_links
TypeResource
Idazure.network.express_route_links

Fields

The following fields are returned by SELECT queries:

Request successful. The operation returns the requested ExpressRouteLink resource.

NameDatatypeDescription
idstringResource ID.
namestringName of child port resource that is unique among child port resources of the parent.
etagstringA unique read-only string that changes whenever the resource is updated.
propertiesobjectExpressRouteLink properties. (title: ExpressRouteLink Resource Properties)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, expressRoutePortName, linkNameRetrieves the specified ExpressRouteLink resource.
listselectsubscriptionId, resourceGroupName, expressRoutePortNameRetrieve the ExpressRouteLink sub-resources of the specified ExpressRoutePort resource.

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
expressRoutePortNamestringThe name of the ExpressRoutePort resource.
linkNamestringThe name of the ExpressRouteLink resource.
resourceGroupNamestringThe name of the resource group.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Retrieves the specified ExpressRouteLink resource.

SELECT
id,
name,
etag,
properties
FROM azure.network.express_route_links
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND expressRoutePortName = '{{ expressRoutePortName }}' -- required
AND linkName = '{{ linkName }}' -- required
;