Share via


ConnectivityCheckResponse Constructors

Definition

Overloads

ConnectivityCheckResponse()

Initializes a new instance of the ConnectivityCheckResponse class.

ConnectivityCheckResponse(IList<ConnectivityHop>, String, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>)

Initializes a new instance of the ConnectivityCheckResponse class.

ConnectivityCheckResponse()

Initializes a new instance of the ConnectivityCheckResponse class.

public ConnectivityCheckResponse ();
Public Sub New ()

Applies to

ConnectivityCheckResponse(IList<ConnectivityHop>, String, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>)

Initializes a new instance of the ConnectivityCheckResponse class.

public ConnectivityCheckResponse (System.Collections.Generic.IList<Microsoft.Azure.Management.ApiManagement.Models.ConnectivityHop> hops = default, string connectionStatus = default, long? avgLatencyInMs = default, long? minLatencyInMs = default, long? maxLatencyInMs = default, long? probesSent = default, long? probesFailed = default);
new Microsoft.Azure.Management.ApiManagement.Models.ConnectivityCheckResponse : System.Collections.Generic.IList<Microsoft.Azure.Management.ApiManagement.Models.ConnectivityHop> * string * Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<int64> -> Microsoft.Azure.Management.ApiManagement.Models.ConnectivityCheckResponse
Public Sub New (Optional hops As IList(Of ConnectivityHop) = Nothing, Optional connectionStatus As String = Nothing, Optional avgLatencyInMs As Nullable(Of Long) = Nothing, Optional minLatencyInMs As Nullable(Of Long) = Nothing, Optional maxLatencyInMs As Nullable(Of Long) = Nothing, Optional probesSent As Nullable(Of Long) = Nothing, Optional probesFailed As Nullable(Of Long) = 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<Int64>

Average latency in milliseconds.

minLatencyInMs
Nullable<Int64>

Minimum latency in milliseconds.

maxLatencyInMs
Nullable<Int64>

Maximum latency in milliseconds.

probesSent
Nullable<Int64>

Total number of probes sent.

probesFailed
Nullable<Int64>

Number of failed probes.

Applies to