ConnectivityInformation Constructors

Definition

Overloads

ConnectivityInformation()

Initializes a new instance of the ConnectivityInformation class.

ConnectivityInformation(IList<ConnectivityHop>, String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the ConnectivityInformation class.

ConnectivityInformation()

Initializes a new instance of the ConnectivityInformation class.

public ConnectivityInformation ();
Public Sub New ()

Applies to

ConnectivityInformation(IList<ConnectivityHop>, String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the ConnectivityInformation class.

public ConnectivityInformation (System.Collections.Generic.IList<Microsoft.Azure.Management.Network.Models.ConnectivityHop> hops = default, string connectionStatus = default, int? avgLatencyInMs = default, int? minLatencyInMs = default, int? maxLatencyInMs = default, int? probesSent = default, int? probesFailed = default);
new Microsoft.Azure.Management.Network.Models.ConnectivityInformation : System.Collections.Generic.IList<Microsoft.Azure.Management.Network.Models.ConnectivityHop> * string * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<int> -> Microsoft.Azure.Management.Network.Models.ConnectivityInformation
Public Sub New (Optional hops As IList(Of ConnectivityHop) = Nothing, Optional connectionStatus As String = Nothing, Optional avgLatencyInMs As Nullable(Of Integer) = Nothing, Optional minLatencyInMs As Nullable(Of Integer) = Nothing, Optional maxLatencyInMs As Nullable(Of Integer) = Nothing, Optional probesSent As Nullable(Of Integer) = Nothing, Optional probesFailed As Nullable(Of Integer) = Nothing)

Parameters

hops
IList<ConnectivityHop>

List of hops between the source and the destination.

connectionStatus
String

The connection status. Possible values include: 'Unknown', 'Connected', 'Disconnected', 'Degraded'

avgLatencyInMs
Nullable<Int32>

Average latency in milliseconds.

minLatencyInMs
Nullable<Int32>

Minimum latency in milliseconds.

maxLatencyInMs
Nullable<Int32>

Maximum latency in milliseconds.

probesSent
Nullable<Int32>

Total number of probes sent.

probesFailed
Nullable<Int32>

Number of failed probes.

Applies to