Skip to main content

peering_service_locations

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

Overview

Namepeering_service_locations
TypeResource
Idazure.peering.peering_service_locations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe ID of the resource.
namestringThe name of the resource.
azureRegionstringAzure region for the location.
countrystringCountry of the customer.
statestringState of the customer.
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,
azureRegion,
country,
state,
type
FROM azure.peering.peering_service_locations
WHERE subscription_id = '{{ subscription_id }}' -- required
;