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:

NameDatatypeDescription
idstringResource ID.
namestringName of child port resource that is unique among child port resources of the parent.
adminStatestringAdministrative state of the physical port. Known values are: "Enabled" and "Disabled". (Enabled, Disabled)
coloLocationstringCololocation for ExpressRoute Hybrid Direct.
connectorTypestringPhysical fiber port type. Known values are: "LC" and "SC". (LC, SC)
etagstringA unique read-only string that changes whenever the resource is updated.
interfaceNamestringName of Azure router interface.
macSecConfigobjectMacSec configuration.
patchPanelIdstringMapping between physical port to patch panel port.
provisioningStatestringThe provisioning state of the express route link resource. Known values are: "Failed", "Succeeded", "Canceled", "Creating", "Updating", and "Deleting". (Failed, Succeeded, Canceled, Creating, Updating, Deleting)
rackIdstringMapping of physical patch panel to rack.
routerNamestringName of Azure router associated with physical port.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, express_route_port_name, link_name, subscription_idRetrieves the specified ExpressRouteLink resource.
listselectresource_group_name, express_route_port_name, subscription_idRetrieve 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
express_route_port_namestringThe name of ExpressRoutePort. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

SELECT examples

Retrieves the specified ExpressRouteLink resource.

SELECT
id,
name,
adminState,
coloLocation,
connectorType,
etag,
interfaceName,
macSecConfig,
patchPanelId,
provisioningState,
rackId,
routerName
FROM azure.network.express_route_links
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND express_route_port_name = '{{ express_route_port_name }}' -- required
AND link_name = '{{ link_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;