legacy_peerings
Creates, updates, deletes, gets or lists a legacy_peerings
resource.
Overview
Name | legacy_peerings |
Type | Resource |
Id | azure.peering.legacy_peerings |
Fields
Name | Datatype | Description |
---|---|---|
id | string | The ID of the resource. |
name | string | The name of the resource. |
kind | string | The kind of the peering. |
location | string | The location of the resource. |
properties | object | The properties that define connectivity to the Microsoft Cloud Edge. |
sku | object | The SKU that defines the tier and kind of the peering. |
tags | object | The resource tags. |
type | string | The type of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | kind, peeringLocation, subscriptionId | Lists 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 }}';