Skip to main content

express_route_service_providers

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

Overview

Nameexpress_route_service_providers
TypeResource
Idazure.network.express_route_service_providers

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource ID.
namestringResource name.
bandwidthsOfferedarrayA list of bandwidths offered.
locationstringResource location.
peeringLocationsarrayA list of peering locations.
provisioningStatestringThe 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)
tagsobjectResource tags.
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscription_idGets 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.

NameDatatypeDescription
subscription_idstring

SELECT examples

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
;