peering_service_locations
Creates, updates, deletes, gets or lists a peering_service_locations resource.
Overview
| Name | peering_service_locations |
| Type | Resource |
| Id | azure.peering.peering_service_locations |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
id | string | The ID of the resource. |
name | string | The name of the resource. |
azureRegion | string | Azure region for the location. |
country | string | Country of the customer. |
state | string | State of the customer. |
type | string | The type of the resource. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscription_id | Lists all of the available peering service locations for the specified kind of peering. |
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.
| Name | Datatype | Description |
|---|---|---|
subscription_id | string |
SELECT examples
- list
Lists all of the available peering service locations for the specified kind of peering.
SELECT
id,
name,
azureRegion,
country,
state,
type
FROM azure.peering.peering_service_locations
WHERE subscription_id = '{{ subscription_id }}' -- required
;