Skip to main content

express_route_provider_ports_location

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

Overview

Nameexpress_route_provider_ports_location
TypeResource
Idazure.network.express_route_provider_ports_location

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource ID.
namestringResource name.
etagstringA unique read-only string that changes whenever the resource is updated.
locationstringResource location.
overprovisionFactorintegerOverprovisioning factor for the port pair.
peeringLocationstringThe peering location of the port pair.
portBandwidthInMbpsintegerBandwidth of the port in Mbps.
portPairDescriptorstringThe name of the port pair.
primaryAzurePortstringThe name of the primary port.
remainingBandwidthInMbpsintegerRemaining Bandwidth of the port in Mbps.
secondaryAzurePortstringThe name of the secondary port.
tagsobjectResource tags.
typestringResource type.
usedBandwidthInMbpsintegerUsed Bandwidth of the port in Mbps.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscription_id$filterRetrieves all the ExpressRouteProviderPorts in a subscription.

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
subscription_idstring
$filterstringThe filter to apply on the operation. For example, you can use $filter=location eq '{state}'. Default value is None.

SELECT examples

Retrieves all the ExpressRouteProviderPorts in a subscription.

SELECT
id,
name,
etag,
location,
overprovisionFactor,
peeringLocation,
portBandwidthInMbps,
portPairDescriptor,
primaryAzurePort,
remainingBandwidthInMbps,
secondaryAzurePort,
tags,
type,
usedBandwidthInMbps
FROM azure.network.express_route_provider_ports_location
WHERE subscription_id = '{{ subscription_id }}' -- required
AND $filter = '{{ $filter }}'
;