Skip to main content

service_locations

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

Overview

Nameservice_locations
TypeResource
Idazure.peering.service_locations

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 location.
typestringThe type of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionIdcountryLists all of the available locations for peering service.

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.
countrystringThe country of interest, in which the locations are to be present.

SELECT examples

Lists all of the available locations for peering service.

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