NodeCounts Constructors

Definition

Overloads

NodeCounts()

Initializes a new instance of the NodeCounts class.

NodeCounts(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32)

Initializes a new instance of the NodeCounts class.

NodeCounts()

Source:
NodeCounts.cs

Initializes a new instance of the NodeCounts class.

public NodeCounts ();
Public Sub New ()

Applies to

NodeCounts(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32)

Initializes a new instance of the NodeCounts class.

public NodeCounts (int creating, int idle, int offline, int preempted, int rebooting, int reimaging, int running, int starting, int startTaskFailed, int leavingPool, int unknown, int unusable, int waitingForStartTask, int upgradingOS, int deallocated, int deallocating, int total);
new Microsoft.Azure.Batch.Protocol.Models.NodeCounts : int * int * int * int * int * int * int * int * int * int * int * int * int * int * int * int * int -> Microsoft.Azure.Batch.Protocol.Models.NodeCounts
Public Sub New (creating As Integer, idle As Integer, offline As Integer, preempted As Integer, rebooting As Integer, reimaging As Integer, running As Integer, starting As Integer, startTaskFailed As Integer, leavingPool As Integer, unknown As Integer, unusable As Integer, waitingForStartTask As Integer, upgradingOS As Integer, deallocated As Integer, deallocating As Integer, total As Integer)

Parameters

creating
Int32

The number of Compute Nodes in the creating state.

idle
Int32

The number of Compute Nodes in the idle state.

offline
Int32

The number of Compute Nodes in the offline state.

preempted
Int32

The number of Compute Nodes in the preempted state.

rebooting
Int32

The count of Compute Nodes in the rebooting state.

reimaging
Int32

The number of Compute Nodes in the reimaging state.

running
Int32

The number of Compute Nodes in the running state.

starting
Int32

The number of Compute Nodes in the starting state.

startTaskFailed
Int32

The number of Compute Nodes in the startTaskFailed state.

leavingPool
Int32

The number of Compute Nodes in the leavingPool state.

unknown
Int32

The number of Compute Nodes in the unknown state.

unusable
Int32

The number of Compute Nodes in the unusable state.

waitingForStartTask
Int32

The number of Compute Nodes in the waitingForStartTask state.

upgradingOS
Int32

The number of Compute Nodes in the upgradingOS state.

deallocated
Int32

The number of Compute Nodes in the deallocated state.

deallocating
Int32

The number of Compute Nodes in the deallocating state.

total
Int32

The total number of Compute Nodes.

Applies to