Skip to main content

express_route_links

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

Overview

Nameexpress_route_links
TypeResource
Idazure.network.express_route_links

Fields

NameDatatypeDescription
idtextResource ID.
nametextName of child port resource that is unique among child port resources of the parent.
admin_statetextfield from the properties object
colo_locationtextfield from the properties object
connector_typetextfield from the properties object
etagtextA unique read-only string that changes whenever the resource is updated.
expressRoutePortNametextfield from the properties object
interface_nametextfield from the properties object
linkNametextfield from the properties object
mac_sec_configtextfield from the properties object
patch_panel_idtextfield from the properties object
provisioning_statetextfield from the properties object
rack_idtextfield from the properties object
resourceGroupNametextfield from the properties object
router_nametextfield from the properties object
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTexpressRoutePortName, linkName, resourceGroupName, subscriptionIdRetrieves the specified ExpressRouteLink resource.
listSELECTexpressRoutePortName, resourceGroupName, subscriptionIdRetrieve the ExpressRouteLink sub-resources of the specified ExpressRoutePort resource.

SELECT examples

Retrieve the ExpressRouteLink sub-resources of the specified ExpressRoutePort resource.

SELECT
id,
name,
admin_state,
colo_location,
connector_type,
etag,
expressRoutePortName,
interface_name,
linkName,
mac_sec_config,
patch_panel_id,
provisioning_state,
rack_id,
resourceGroupName,
router_name,
subscriptionId
FROM azure.network.vw_express_route_links
WHERE expressRoutePortName = '{{ expressRoutePortName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';