Share via


ClusterNode Constructors

Definition

Overloads

ClusterNode()

Initializes a new instance of the ClusterNode class.

ClusterNode(String, Nullable<Double>, String, String, String, String, String, Nullable<Double>, Nullable<Double>)

Initializes a new instance of the ClusterNode class.

ClusterNode()

Initializes a new instance of the ClusterNode class.

public ClusterNode ();
Public Sub New ()

Applies to

ClusterNode(String, Nullable<Double>, String, String, String, String, String, Nullable<Double>, Nullable<Double>)

Initializes a new instance of the ClusterNode class.

public ClusterNode (string name = default, double? id = default, string manufacturer = default, string model = default, string osName = default, string osVersion = default, string serialNumber = default, double? coreCount = default, double? memoryInGiB = default);
new Microsoft.Azure.Management.AzureStackHCI.Models.ClusterNode : string * Nullable<double> * string * string * string * string * string * Nullable<double> * Nullable<double> -> Microsoft.Azure.Management.AzureStackHCI.Models.ClusterNode
Public Sub New (Optional name As String = Nothing, Optional id As Nullable(Of Double) = Nothing, Optional manufacturer As String = Nothing, Optional model As String = Nothing, Optional osName As String = Nothing, Optional osVersion As String = Nothing, Optional serialNumber As String = Nothing, Optional coreCount As Nullable(Of Double) = Nothing, Optional memoryInGiB As Nullable(Of Double) = Nothing)

Parameters

name
String

Name of the cluster node.

id
Nullable<Double>

Id of the node in the cluster.

manufacturer
String

Manufacturer of the cluster node hardware.

model
String

Model name of the cluster node hardware.

osName
String

Operating system running on the cluster node.

osVersion
String

Version of the operating system running on the cluster node.

serialNumber
String

Immutable id of the cluster node.

coreCount
Nullable<Double>

Number of physical cores on the cluster node.

memoryInGiB
Nullable<Double>

Total available memory on the cluster node (in GiB).

Applies to