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:

Request successful. The operation returns a list of BgpServiceCommunity resources.

NameDatatypeDescription
idstring (arm-id)Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
namestringThe name of the resource
propertiesobjectProperties of the BGP service community.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionIdGets 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
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Gets all the available bgp service communities.

SELECT
id,
name,
properties,
systemData,
type
FROM azure.network.bgp_service_communities
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;