Condividi tramite


BgpPeerStatus Constructors

Definition

Overloads

BgpPeerStatus()

Initializes a new instance of the BgpPeerStatus class.

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

Initializes a new instance of the BgpPeerStatus class.

BgpPeerStatus()

Initializes a new instance of the BgpPeerStatus class.

public BgpPeerStatus ();
Public Sub New ()

Applies to

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

Initializes a new instance of the BgpPeerStatus class.

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

Parameters

localAddress
String

The virtual network gateway's local address.

neighbor
String

The remote BGP peer.

asn
Nullable<Int64>

The autonomous system number of the remote BGP peer.

state
String

The BGP peer state. Possible values include: 'Unknown', 'Stopped', 'Idle', 'Connecting', 'Connected'

connectedDuration
String

For how long the peering has been up.

routesReceived
Nullable<Int64>

The number of routes learned from this peer.

messagesSent
Nullable<Int64>

The number of BGP messages sent.

messagesReceived
Nullable<Int64>

The number of BGP messages received.

Applies to