Skip to main content

legacy_peerings

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

Overview

Namelegacy_peerings
TypeResource
Idazure.peering.legacy_peerings

Fields

NameDatatypeDescription
idstringThe ID of the resource.
namestringThe name of the resource.
kindstringThe kind of the peering.
locationstringThe location of the resource.
propertiesobjectThe properties that define connectivity to the Microsoft Cloud Edge.
skuobjectThe SKU that defines the tier and kind of the peering.
tagsobjectThe resource tags.
typestringThe type of the resource.

Methods

NameAccessible byRequired ParamsDescription
listSELECTkind, peeringLocation, subscriptionIdLists all of the legacy peerings under the given subscription matching the specified kind and location.

SELECT examples

Lists all of the legacy peerings under the given subscription matching the specified kind and location.

SELECT
id,
name,
kind,
location,
properties,
sku,
tags,
type
FROM azure.peering.legacy_peerings
WHERE kind = '{{ kind }}'
AND peeringLocation = '{{ peeringLocation }}'
AND subscriptionId = '{{ subscriptionId }}';