Skip to main content

locations

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

Overview

Namelocations
TypeResource
Idazure.peering.locations

Fields

NameDatatypeDescription
idstringThe ID of the resource.
namestringThe name of the resource.
kindstringThe kind of peering that the peering location supports.
propertiesobjectThe properties that define a peering location.
typestringThe type of the resource.

Methods

NameAccessible byRequired ParamsDescription
listSELECTkind, subscriptionIdLists all of the available peering locations for the specified kind of peering.

SELECT examples

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

SELECT
id,
name,
kind,
properties,
type
FROM azure.peering.locations
WHERE kind = '{{ kind }}'
AND subscriptionId = '{{ subscriptionId }}';