Share via


NodeStateCounts Constructors

Definition

Overloads

NodeStateCounts()

Initializes a new instance of the NodeStateCounts class.

NodeStateCounts(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the NodeStateCounts class.

NodeStateCounts()

Initializes a new instance of the NodeStateCounts class.

public NodeStateCounts ();
Public Sub New ()

Applies to

NodeStateCounts(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the NodeStateCounts class.

public NodeStateCounts (int? idleNodeCount = default, int? runningNodeCount = default, int? preparingNodeCount = default, int? unusableNodeCount = default, int? leavingNodeCount = default);
new Microsoft.Azure.Management.BatchAI.Models.NodeStateCounts : Nullable<int> * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<int> -> Microsoft.Azure.Management.BatchAI.Models.NodeStateCounts
Public Sub New (Optional idleNodeCount As Nullable(Of Integer) = Nothing, Optional runningNodeCount As Nullable(Of Integer) = Nothing, Optional preparingNodeCount As Nullable(Of Integer) = Nothing, Optional unusableNodeCount As Nullable(Of Integer) = Nothing, Optional leavingNodeCount As Nullable(Of Integer) = Nothing)

Parameters

idleNodeCount
Nullable<Int32>

Idle node count.

runningNodeCount
Nullable<Int32>

Running node count.

preparingNodeCount
Nullable<Int32>

Preparing node count.

unusableNodeCount
Nullable<Int32>

Unusable node count.

leavingNodeCount
Nullable<Int32>

Leaving node count.

Applies to