Compartir a través de


BgpPeerStatus Constructores

Definición

Sobrecargas

BgpPeerStatus()

Inicializa una nueva instancia de la clase BgpPeerStatus.

BgpPeerStatus(String, String, Nullable<Int32>, BgpPeerState, String, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>)

Inicializa una nueva instancia de la clase BgpPeerStatus.

BgpPeerStatus()

Inicializa una nueva instancia de la clase BgpPeerStatus.

public BgpPeerStatus ();
Public Sub New ()

Se aplica a

BgpPeerStatus(String, String, Nullable<Int32>, BgpPeerState, String, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>)

Inicializa una nueva instancia de la clase BgpPeerStatus.

public BgpPeerStatus (string localAddress = default, string neighbor = default, int? asn = default, Microsoft.Azure.Management.Network.Fluent.Models.BgpPeerState state = default, string connectedDuration = default, long? routesReceived = default, long? messagesSent = default, long? messagesReceived = default);
new Microsoft.Azure.Management.Network.Fluent.Models.BgpPeerStatus : string * string * Nullable<int> * Microsoft.Azure.Management.Network.Fluent.Models.BgpPeerState * string * Nullable<int64> * Nullable<int64> * Nullable<int64> -> Microsoft.Azure.Management.Network.Fluent.Models.BgpPeerStatus
Public Sub New (Optional localAddress As String = Nothing, Optional neighbor As String = Nothing, Optional asn As Nullable(Of Integer) = Nothing, Optional state As BgpPeerState = Nothing, Optional connectedDuration As String = Nothing, Optional routesReceived As Nullable(Of Long) = Nothing, Optional messagesSent As Nullable(Of Long) = Nothing, Optional messagesReceived As Nullable(Of Long) = Nothing)

Parámetros

localAddress
String

Dirección local de la puerta de enlace de red virtual.

neighbor
String

El par BGP remoto.

asn
Nullable<Int32>

Número de sistema autónomo del par BGP remoto.

state
BgpPeerState

Estado del mismo nivel BGP. Entre los valores posibles se incluyen: 'Unknown', 'Stopped', 'Idle', 'Connecting', 'Connected'

connectedDuration
String

Durante cuánto tiempo ha estado el emparejamiento.

routesReceived
Nullable<Int64>

El número de rutas aprendidas de este mismo nivel.

messagesSent
Nullable<Int64>

Número de mensajes BGP enviados.

messagesReceived
Nullable<Int64>

Número de mensajes BGP recibidos.

Se aplica a