express_route_ports_locations
Creates, updates, deletes, gets or lists a express_route_ports_locations
resource.
Overview
Name | express_route_ports_locations |
Type | Resource |
Id | azure.network.express_route_ports_locations |
Fields
- vw_express_route_ports_locations
- express_route_ports_locations
Name | Datatype | Description |
---|---|---|
id | text | Resource ID. |
name | text | Resource name. |
address | text | field from the properties object |
available_bandwidths | text | field from the properties object |
contact | text | field from the properties object |
location | text | Resource location. |
locationName | text | field from the properties object |
provisioning_state | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | Resource tags. |
type | text | Resource type. |
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
location | string | Resource location. |
properties | object | Properties specific to ExpressRoutePorts peering location resources. |
tags | object | Resource tags. |
type | string | Resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | locationName, subscriptionId | Retrieves a single ExpressRoutePort peering location, including the list of available bandwidths available at said peering location. |
list | SELECT | subscriptionId | Retrieves all ExpressRoutePort peering locations. Does not return available bandwidths for each location. Available bandwidths can only be obtained when retrieving a specific peering location. |
SELECT
examples
Retrieves all ExpressRoutePort peering locations. Does not return available bandwidths for each location. Available bandwidths can only be obtained when retrieving a specific peering location.
- vw_express_route_ports_locations
- express_route_ports_locations
SELECT
id,
name,
address,
available_bandwidths,
contact,
location,
locationName,
provisioning_state,
subscriptionId,
tags,
type
FROM azure.network.vw_express_route_ports_locations
WHERE subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.network.express_route_ports_locations
WHERE subscriptionId = '{{ subscriptionId }}';