Skip to main content

service_countries

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

Overview

Nameservice_countries
TypeResource
Idazure.peering.service_countries

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe ID of the resource.
namestringThe name of the resource.
typestringThe type of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionIdLists all of the available countries 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.

NameDatatypeDescription
subscriptionIdstringThe Azure subscription ID.

SELECT examples

Lists all of the available countries for peering service.

SELECT
id,
name,
type
FROM azure.peering.service_countries
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;