Skip to main content

peering_service_providers

Creates, updates, deletes, gets or lists a peering_service_providers resource.

Overview

Namepeering_service_providers
TypeResource
Idazure.peering.peering_service_providers

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe ID of the resource.
namestringThe name of the resource.
serviceProviderNamestringThe name of the service provider.
typestringThe type of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscription_idLists all of the available peering service locations for the specified kind of peering.

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

Lists all of the available peering service locations for the specified kind of peering.

SELECT
id,
name,
serviceProviderName,
type
FROM azure.peering.peering_service_providers
WHERE subscription_id = '{{ subscription_id }}' -- required
;