Uses of Class
com.azure.compute.batch.models.BatchJobState
Packages that use BatchJobState
-
Uses of BatchJobState in com.azure.compute.batch.models
Fields in com.azure.compute.batch.models declared as BatchJobStateModifier and TypeFieldDescriptionstatic final BatchJobState
BatchJobState.ACTIVE
The Job is available to have Tasks scheduled.static final BatchJobState
BatchJobState.COMPLETED
All Tasks have terminated, and the system will not accept any more Tasks or any further changes to the Job.static final BatchJobState
BatchJobState.DELETING
A user has requested that the Job be deleted, but the delete operation is still in progress (for example, because the system is still terminating running Tasks).static final BatchJobState
BatchJobState.DISABLED
A user has disabled the Job.static final BatchJobState
BatchJobState.DISABLING
A user has requested that the Job be disabled, but the disable operation is still in progress (for example, waiting for Tasks to terminate).static final BatchJobState
BatchJobState.ENABLING
A user has requested that the Job be enabled, but the enable operation is still in progress.static final BatchJobState
BatchJobState.TERMINATING
The Job is about to complete, either because a Job Manager Task has completed or because the user has terminated the Job, but the terminate operation is still in progress (for example, because Job Release Tasks are running).Methods in com.azure.compute.batch.models that return BatchJobStateModifier and TypeMethodDescriptionstatic BatchJobState
BatchJobState.fromString
(String name) Creates or finds a BatchJobState from its string representation.BatchJob.getPreviousState()
Get the previousState property: The previous state of the Job.BatchJob.getState()
Get the state property: The current state of the Job.Methods in com.azure.compute.batch.models that return types with arguments of type BatchJobStateModifier and TypeMethodDescriptionstatic Collection
<BatchJobState> BatchJobState.values()
Gets known BatchJobState values.