Share via


ConnectivityInformationInner Constructors

Definition

Overloads

ConnectivityInformationInner()

Initializes a new instance of the ConnectivityInformationInner class.

ConnectivityInformationInner(IList<ConnectivityHop>, ConnectionStatus, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the ConnectivityInformationInner class.

ConnectivityInformationInner()

Initializes a new instance of the ConnectivityInformationInner class.

public ConnectivityInformationInner ();
Public Sub New ()

Applies to

ConnectivityInformationInner(IList<ConnectivityHop>, ConnectionStatus, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the ConnectivityInformationInner class.

public ConnectivityInformationInner (System.Collections.Generic.IList<Microsoft.Azure.Management.Network.Fluent.Models.ConnectivityHop> hops = default, Microsoft.Azure.Management.Network.Fluent.Models.ConnectionStatus connectionStatus = default, int? avgLatencyInMs = default, int? minLatencyInMs = default, int? maxLatencyInMs = default, int? probesSent = default, int? probesFailed = default);
new Microsoft.Azure.Management.Network.Fluent.Models.ConnectivityInformationInner : System.Collections.Generic.IList<Microsoft.Azure.Management.Network.Fluent.Models.ConnectivityHop> * Microsoft.Azure.Management.Network.Fluent.Models.ConnectionStatus * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<int> -> Microsoft.Azure.Management.Network.Fluent.Models.ConnectivityInformationInner
Public Sub New (Optional hops As IList(Of ConnectivityHop) = Nothing, Optional connectionStatus As ConnectionStatus = 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
ConnectionStatus

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