service_locations
Creates, updates, deletes, gets or lists a service_locations
resource.
Overview
Name | service_locations |
Type | Resource |
Id | azure.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. |
properties | object | The properties that define a peering service location. |
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 | subscriptionId | country | Lists all of the available locations for peering service. |
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 |
---|---|---|
subscriptionId | string | The Azure subscription ID. |
country | string | The country of interest, in which the locations are to be present. |
SELECT
examples
- list
Lists all of the available locations for peering service.
SELECT
id,
name,
properties,
type
FROM azure.peering.service_locations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND country = '{{ country }}'
;