Uses of Class
com.azure.compute.batch.models.BatchNodeState
Packages that use BatchNodeState
-
Uses of BatchNodeState in com.azure.compute.batch.models
Fields in com.azure.compute.batch.models declared as BatchNodeStateModifier and TypeFieldDescriptionstatic final BatchNodeState
BatchNodeState.CREATING
The Batch service has obtained the underlying virtual machine from Azure Compute, but it has not yet started to join the Pool.static final BatchNodeState
BatchNodeState.DEALLOCATED
The Compute Node is deallocated.static final BatchNodeState
BatchNodeState.DEALLOCATING
The Compute Node is deallocating.static final BatchNodeState
BatchNodeState.IDLE
The Compute Node is not currently running a Task.static final BatchNodeState
BatchNodeState.LEAVING_POOL
The Compute Node is leaving the Pool, either because the user explicitly removed it or because the Pool is resizing or autoscaling down.static final BatchNodeState
BatchNodeState.OFFLINE
The Compute Node is not currently running a Task, and scheduling of new Tasks to the Compute Node is disabled.static final BatchNodeState
BatchNodeState.PREEMPTED
The Spot/Low-priority Compute Node has been preempted.static final BatchNodeState
BatchNodeState.REBOOTING
The Compute Node is rebooting.static final BatchNodeState
BatchNodeState.REIMAGING
The Compute Node is reimaging.static final BatchNodeState
BatchNodeState.RUNNING
The Compute Node is running one or more Tasks (other than a StartTask).static final BatchNodeState
BatchNodeState.START_TASK_FAILED
The StartTask has failed on the Compute Node (and exhausted all retries), and waitForSuccess is set.static final BatchNodeState
BatchNodeState.STARTING
The Batch service is starting on the underlying virtual machine.static final BatchNodeState
BatchNodeState.UNKNOWN
The Batch service has lost contact with the Compute Node, and does not know its true state.static final BatchNodeState
BatchNodeState.UNUSABLE
The Compute Node cannot be used for Task execution due to errors.static final BatchNodeState
BatchNodeState.UPGRADING_OS
The Compute Node is undergoing an OS upgrade operation.static final BatchNodeState
BatchNodeState.WAITING_FOR_START_TASK
The StartTask has started running on the Compute Node, but waitForSuccess is set and the StartTask has not yet completed.Methods in com.azure.compute.batch.models that return BatchNodeStateModifier and TypeMethodDescriptionstatic BatchNodeState
BatchNodeState.fromString
(String name) Creates or finds a BatchNodeState from its string representation.BatchNode.getState()
Get the state property: The current state of the Compute Node.Methods in com.azure.compute.batch.models that return types with arguments of type BatchNodeStateModifier and TypeMethodDescriptionstatic Collection
<BatchNodeState> BatchNodeState.values()
Gets known BatchNodeState values.