Skip to main content

service_providers

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

Overview

Nameservice_providers
TypeResource
Idazure.peering.service_providers

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe ID of the resource.
namestringThe name of the resource.
propertiesobjectThe properties that define a peering service provider.
typestringThe type of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionIdLists 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
subscriptionIdstringThe Azure subscription ID.

SELECT examples

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

SELECT
id,
name,
properties,
type
FROM azure.peering.service_providers
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;