Skip to main content

express_route_ports_locations

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

Overview

Nameexpress_route_ports_locations
TypeResource
Idazure.network.express_route_ports_locations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource ID.
namestringResource name.
addressstringAddress of peering location.
availableBandwidthsarrayThe inventory of available ExpressRoutePort bandwidths.
contactstringContact details of peering locations.
locationstringResource location.
provisioningStatestringThe provisioning state of the express route port location resource. Known values are: "Failed", "Succeeded", "Canceled", "Creating", "Updating", and "Deleting". (Failed, Succeeded, Canceled, Creating, Updating, Deleting)
tagsobjectResource tags.
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectlocation_name, subscription_idRetrieves a single ExpressRoutePort peering location, including the list of available bandwidths available at said peering location.
listselectsubscription_idRetrieves all ExpressRoutePort peering locations. Does not return available bandwidths for each location. Available bandwidths can only be obtained when retrieving a specific peering location.

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
location_namestringName of the requested ExpressRoutePort peering location. Required.
subscription_idstring

SELECT examples

Retrieves a single ExpressRoutePort peering location, including the list of available bandwidths available at said peering location.

SELECT
id,
name,
address,
availableBandwidths,
contact,
location,
provisioningState,
tags,
type
FROM azure.network.express_route_ports_locations
WHERE location_name = '{{ location_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;