Partilhar via


EffectiveRoute Construtores

Definição

Sobrecargas

EffectiveRoute()

Inicializa uma nova instância da classe EffectiveRoute.

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

Inicializa uma nova instância da classe EffectiveRoute.

EffectiveRoute()

Inicializa uma nova instância da classe EffectiveRoute.

public EffectiveRoute ();
Public Sub New ()

Aplica-se a

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

Inicializa uma nova instância da classe EffectiveRoute.

public EffectiveRoute (string name = default, bool? disableBgpRoutePropagation = default, string source = default, string state = default, System.Collections.Generic.IList<string> addressPrefix = default, System.Collections.Generic.IList<string> nextHopIpAddress = default, string nextHopType = default);
new Microsoft.Azure.Management.Network.Models.EffectiveRoute : string * Nullable<bool> * string * string * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> * string -> Microsoft.Azure.Management.Network.Models.EffectiveRoute
Public Sub New (Optional name As String = Nothing, Optional disableBgpRoutePropagation As Nullable(Of Boolean) = Nothing, Optional source As String = Nothing, Optional state As String = Nothing, Optional addressPrefix As IList(Of String) = Nothing, Optional nextHopIpAddress As IList(Of String) = Nothing, Optional nextHopType As String = Nothing)

Parâmetros

name
String

O nome da rota definida pelo usuário. Isso é opcional.

disableBgpRoutePropagation
Nullable<Boolean>

Se for true, as rotas locais não serão propagadas para os adaptadores de rede na sub-rede.

source
String

Quem criou a rota. Os valores possíveis incluem: 'Unknown', 'User', 'VirtualNetworkGateway', 'Default'

state
String

O valor da rota efetiva. Os valores possíveis incluem: 'Ativo', 'Inválido'

addressPrefix
IList<String>

Os prefixos de endereço das rotas efetivas na notação CIDR.

nextHopIpAddress
IList<String>

O endereço IP do próximo salto da rota efetiva.

nextHopType
String

O tipo de salto do Azure ao qual o pacote deve ser enviado. Os valores possíveis incluem: 'VirtualNetworkGateway', 'VnetLocal', 'Internet', 'VirtualAppliance', 'None'

Aplica-se a