ConnectivityHop Constructors

Definition

Overloads

ConnectivityHop()

Initializes a new instance of the ConnectivityHop class.

ConnectivityHop(String, String, String, String, IList<String>, IList<ConnectivityIssue>)

Initializes a new instance of the ConnectivityHop class.

ConnectivityHop()

Initializes a new instance of the ConnectivityHop class.

public ConnectivityHop ();
Public Sub New ()

Applies to

ConnectivityHop(String, String, String, String, IList<String>, IList<ConnectivityIssue>)

Initializes a new instance of the ConnectivityHop class.

public ConnectivityHop (string type = default, string id = default, string address = default, string resourceId = default, System.Collections.Generic.IList<string> nextHopIds = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ApiManagement.Models.ConnectivityIssue> issues = default);
new Microsoft.Azure.Management.ApiManagement.Models.ConnectivityHop : string * string * string * string * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<Microsoft.Azure.Management.ApiManagement.Models.ConnectivityIssue> -> Microsoft.Azure.Management.ApiManagement.Models.ConnectivityHop
Public Sub New (Optional type As String = Nothing, Optional id As String = Nothing, Optional address As String = Nothing, Optional resourceId As String = Nothing, Optional nextHopIds As IList(Of String) = Nothing, Optional issues As IList(Of ConnectivityIssue) = Nothing)

Parameters

type
String

The type of the hop.

id
String

The ID of the hop.

address
String

The IP address of the hop.

resourceId
String

The ID of the resource corresponding to this hop.

nextHopIds
IList<String>

List of next hop identifiers.

issues
IList<ConnectivityIssue>

List of issues.

Applies to