ResizeOperationStatus Class
- java.
lang. Object - com.
azure. resourcemanager. batch. models. ResizeOperationStatus
- com.
Implements
public final class ResizeOperationStatus
implements JsonSerializable<ResizeOperationStatus>
Details about the current or last completed resize operation. Describes either the current operation (if the pool AllocationState is Resizing) or the previously completed operation (if the AllocationState is Steady).
Constructor Summary
Constructor | Description |
---|---|
ResizeOperationStatus() |
Creates an instance of Resize |
Method Summary
Modifier and Type | Method and Description |
---|---|
List<Resize |
errors()
Get the errors property: This property is set only if an error occurred during the last pool resize, and only when the pool allocation |
static
Resize |
fromJson(JsonReader jsonReader)
Reads an instance of Resize |
Compute |
nodeDeallocationOption()
Get the node |
Duration |
resizeTimeout()
Get the resize |
Offset |
startTime()
Get the start |
Integer |
targetDedicatedNodes()
Get the target |
Integer |
targetLowPriorityNodes()
Get the target |
Json |
toJson(JsonWriter jsonWriter) |
void |
validate()
Validates the instance. |
Resize |
withErrors(List<ResizeError> errors)
Set the errors property: This property is set only if an error occurred during the last pool resize, and only when the pool allocation |
Resize |
withNodeDeallocationOption(ComputeNodeDeallocationOption nodeDeallocationOption)
Set the node |
Resize |
withResizeTimeout(Duration resizeTimeout)
Set the resize |
Resize |
withStartTime(OffsetDateTime startTime)
Set the start |
Resize |
withTargetDedicatedNodes(Integer targetDedicatedNodes)
Set the target |
Resize |
withTargetLowPriorityNodes(Integer targetLowPriorityNodes)
Set the target |
Methods inherited from java.lang.Object
Constructor Details
ResizeOperationStatus
public ResizeOperationStatus()
Creates an instance of ResizeOperationStatus class.
Method Details
errors
public List
Get the errors property: This property is set only if an error occurred during the last pool resize, and only when the pool allocationState is Steady.
Returns:
fromJson
public static ResizeOperationStatus fromJson(JsonReader jsonReader)
Reads an instance of ResizeOperationStatus from the JsonReader.
Parameters:
Returns:
Throws:
nodeDeallocationOption
public ComputeNodeDeallocationOption nodeDeallocationOption()
Get the nodeDeallocationOption property: The default value is requeue.
Returns:
resizeTimeout
public Duration resizeTimeout()
Get the resizeTimeout property: The default value is 15 minutes. The minimum value is 5 minutes. If you specify a value less than 5 minutes, the Batch service returns an error; if you are calling the REST API directly, the HTTP status code is 400 (Bad Request).
Returns:
startTime
public OffsetDateTime startTime()
Get the startTime property: The time when this resize operation was started.
Returns:
targetDedicatedNodes
public Integer targetDedicatedNodes()
Get the targetDedicatedNodes property: The desired number of dedicated compute nodes in the pool.
Returns:
targetLowPriorityNodes
public Integer targetLowPriorityNodes()
Get the targetLowPriorityNodes property: The desired number of Spot/low-priority compute nodes in the pool.
Returns:
toJson
validate
public void validate()
Validates the instance.
withErrors
public ResizeOperationStatus withErrors(List
Set the errors property: This property is set only if an error occurred during the last pool resize, and only when the pool allocationState is Steady.
Parameters:
Returns:
withNodeDeallocationOption
public ResizeOperationStatus withNodeDeallocationOption(ComputeNodeDeallocationOption nodeDeallocationOption)
Set the nodeDeallocationOption property: The default value is requeue.
Parameters:
Returns:
withResizeTimeout
public ResizeOperationStatus withResizeTimeout(Duration resizeTimeout)
Set the resizeTimeout property: The default value is 15 minutes. The minimum value is 5 minutes. If you specify a value less than 5 minutes, the Batch service returns an error; if you are calling the REST API directly, the HTTP status code is 400 (Bad Request).
Parameters:
Returns:
withStartTime
public ResizeOperationStatus withStartTime(OffsetDateTime startTime)
Set the startTime property: The time when this resize operation was started.
Parameters:
Returns:
withTargetDedicatedNodes
public ResizeOperationStatus withTargetDedicatedNodes(Integer targetDedicatedNodes)
Set the targetDedicatedNodes property: The desired number of dedicated compute nodes in the pool.
Parameters:
Returns:
withTargetLowPriorityNodes
public ResizeOperationStatus withTargetLowPriorityNodes(Integer targetLowPriorityNodes)
Set the targetLowPriorityNodes property: The desired number of Spot/low-priority compute nodes in the pool.
Parameters:
Returns:
Applies to
Azure SDK for Java