express_route_service_providers
Creates, updates, deletes, gets or lists an express_route_service_providers resource.
Overview
| Name | express_route_service_providers |
| Type | Resource |
| Id | azure.network.express_route_service_providers |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
bandwidthsOffered | array | A list of bandwidths offered. |
location | string | Resource location. |
peeringLocations | array | A list of peering locations. |
provisioningState | string | The provisioning state of the express route service provider resource. Known values are: "Failed", "Succeeded", "Canceled", "Creating", "Updating", and "Deleting". (Failed, Succeeded, Canceled, Creating, Updating, Deleting) |
tags | object | Resource tags. |
type | string | Resource type. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscription_id | Gets all the available express route service providers. |
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 |
SELECT examples
- list
Gets all the available express route service providers.
SELECT
id,
name,
bandwidthsOffered,
location,
peeringLocations,
provisioningState,
tags,
type
FROM azure.network.express_route_service_providers
WHERE subscription_id = '{{ subscription_id }}' -- required
;