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:

Request successful. The operation returns the requested ExpressRoutePort peering location.

NameDatatypeDescription
idstring (arm-id)Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
namestringThe name of the resource
propertiesobjectExpressRoutePort peering location properties. (title: ExpressRoutePorts Location Properties)
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, locationNameRetrieves a single ExpressRoutePort peering location, including the list of available bandwidths available at said peering location.
listselectsubscriptionIdRetrieves 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
locationNamestringName of the requested ExpressRoutePort peering location.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

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

SELECT
id,
name,
properties,
systemData,
type
FROM azure.network.express_route_ports_locations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND locationName = '{{ locationName }}' -- required
;