locations
Creates, updates, deletes, gets or lists a locations
resource.
Overview
Name | locations |
Type | Resource |
Id | azure.peering.locations |
Fields
Name | Datatype | Description |
---|---|---|
id | string | The ID of the resource. |
name | string | The name of the resource. |
kind | string | The kind of peering that the peering location supports. |
properties | object | The properties that define a peering location. |
type | string | The type of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | kind, subscriptionId | Lists 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 }}';