Share via


BGPCommunity Constructors

Definition

Overloads

BGPCommunity()

Initializes a new instance of the BGPCommunity class.

BGPCommunity(String, String, String, IList<String>, Nullable<Boolean>, String)

Initializes a new instance of the BGPCommunity class.

BGPCommunity()

Initializes a new instance of the BGPCommunity class.

public BGPCommunity ();
Public Sub New ()

Applies to

BGPCommunity(String, String, String, IList<String>, Nullable<Boolean>, String)

Initializes a new instance of the BGPCommunity class.

public BGPCommunity (string serviceSupportedRegion = default, string communityName = default, string communityValue = default, System.Collections.Generic.IList<string> communityPrefixes = default, bool? isAuthorizedToUse = default, string serviceGroup = default);
new Microsoft.Azure.Management.Network.Models.BGPCommunity : string * string * string * System.Collections.Generic.IList<string> * Nullable<bool> * string -> Microsoft.Azure.Management.Network.Models.BGPCommunity
Public Sub New (Optional serviceSupportedRegion As String = Nothing, Optional communityName As String = Nothing, Optional communityValue As String = Nothing, Optional communityPrefixes As IList(Of String) = Nothing, Optional isAuthorizedToUse As Nullable(Of Boolean) = Nothing, Optional serviceGroup As String = Nothing)

Parameters

serviceSupportedRegion
String

The region which the service support. e.g. For O365, region is Global.

communityName
String

The name of the bgp community. e.g. Skype.

communityValue
String

The value of the bgp community. For more information: https://docs.microsoft.com/en-us/azure/expressroute/expressroute-routing.

communityPrefixes
IList<String>

The prefixes that the bgp community contains.

isAuthorizedToUse
Nullable<Boolean>

Customer is authorized to use bgp community or not.

serviceGroup
String

The service group of the bgp community contains.

Applies to