Skip to main content

bgp_service_communities

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

Overview

Namebgp_service_communities
TypeResource
Idazure.network.bgp_service_communities

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource ID.
namestringResource name.
bgpCommunitiesarrayA list of bgp communities.
locationstringResource location.
serviceNamestringThe name of the bgp community. e.g. Skype.
tagsobjectResource tags.
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscription_idGets all the available bgp service communities.

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
subscription_idstring

SELECT examples

Gets all the available bgp service communities.

SELECT
id,
name,
bgpCommunities,
location,
serviceName,
tags,
type
FROM azure.network.bgp_service_communities
WHERE subscription_id = '{{ subscription_id }}' -- required
;