express_route_provider_ports_location
Creates, updates, deletes, gets or lists an express_route_provider_ports_location resource.
Overview
| Name | express_route_provider_ports_location |
| Type | Resource |
| Id | azure.network.express_route_provider_ports_location |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
etag | string | A unique read-only string that changes whenever the resource is updated. |
location | string | Resource location. |
overprovisionFactor | integer | Overprovisioning factor for the port pair. |
peeringLocation | string | The peering location of the port pair. |
portBandwidthInMbps | integer | Bandwidth of the port in Mbps. |
portPairDescriptor | string | The name of the port pair. |
primaryAzurePort | string | The name of the primary port. |
remainingBandwidthInMbps | integer | Remaining Bandwidth of the port in Mbps. |
secondaryAzurePort | string | The name of the secondary port. |
tags | object | Resource tags. |
type | string | Resource type. |
usedBandwidthInMbps | integer | Used Bandwidth of the port in Mbps. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscription_id | $filter | Retrieves 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.
| Name | Datatype | Description |
|---|---|---|
subscription_id | string | |
$filter | string | The filter to apply on the operation. For example, you can use $filter=location eq '{state}'. Default value is None. |
SELECT examples
- list
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 }}'
;