共用方式為


NodeInfo Constructors

Definition

Overloads

NodeInfo()

Initializes a new instance of the NodeInfo class.

NodeInfo(String, String, IList<KubernetesIPConfiguration>)

Initializes a new instance of the NodeInfo class.

NodeInfo()

Initializes a new instance of the NodeInfo class.

public NodeInfo ();
Public Sub New ()

Applies to

NodeInfo(String, String, IList<KubernetesIPConfiguration>)

Initializes a new instance of the NodeInfo class.

public NodeInfo (string name = default, string type = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataBoxEdge.Models.KubernetesIPConfiguration> ipConfiguration = default);
new Microsoft.Azure.Management.DataBoxEdge.Models.NodeInfo : string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.DataBoxEdge.Models.KubernetesIPConfiguration> -> Microsoft.Azure.Management.DataBoxEdge.Models.NodeInfo
Public Sub New (Optional name As String = Nothing, Optional type As String = Nothing, Optional ipConfiguration As IList(Of KubernetesIPConfiguration) = Nothing)

Parameters

name
String

Node name.

type
String

Node type - Master/Worker. Possible values include: 'Invalid', 'Master', 'Worker'

ipConfiguration
IList<KubernetesIPConfiguration>

IP Configuration of the Kubernetes node.

Applies to