express_route_links
Creates, updates, deletes, gets or lists a express_route_links
resource.
Overview
Name | express_route_links |
Type | Resource |
Id | azure.network.express_route_links |
Fields
- vw_express_route_links
- express_route_links
Name | Datatype | Description |
---|---|---|
id | text | Resource ID. |
name | text | Name of child port resource that is unique among child port resources of the parent. |
admin_state | text | field from the properties object |
colo_location | text | field from the properties object |
connector_type | text | field from the properties object |
etag | text | A unique read-only string that changes whenever the resource is updated. |
expressRoutePortName | text | field from the properties object |
interface_name | text | field from the properties object |
linkName | text | field from the properties object |
mac_sec_config | text | field from the properties object |
patch_panel_id | text | field from the properties object |
provisioning_state | text | field from the properties object |
rack_id | text | field from the properties object |
resourceGroupName | text | field from the properties object |
router_name | text | field from the properties object |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | Name of child port resource that is unique among child port resources of the parent. |
etag | string | A unique read-only string that changes whenever the resource is updated. |
properties | object | Properties specific to ExpressRouteLink resources. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | expressRoutePortName, linkName, resourceGroupName, subscriptionId | Retrieves the specified ExpressRouteLink resource. |
list | SELECT | expressRoutePortName, resourceGroupName, subscriptionId | Retrieve the ExpressRouteLink sub-resources of the specified ExpressRoutePort resource. |
SELECT
examples
Retrieve the ExpressRouteLink sub-resources of the specified ExpressRoutePort resource.
- vw_express_route_links
- express_route_links
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 }}';
SELECT
id,
name,
etag,
properties
FROM azure.network.express_route_links
WHERE expressRoutePortName = '{{ expressRoutePortName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';