ResizeOperationStatus Class

  • java.lang.Object
    • com.azure.resourcemanager.batch.models.ResizeOperationStatus

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).

Method Summary

Modifier and Type Method and Description
List<ResizeError> errors()

Get the errors property: Details of any errors encountered while performing the last resize on the pool.

static ResizeOperationStatus fromJson(JsonReader jsonReader)

Reads an instance of ResizeOperationStatus from the JsonReader.

ComputeNodeDeallocationOption nodeDeallocationOption()

Get the nodeDeallocationOption property: Determines what to do with a node and its running task(s) after it has been selected for deallocation.

Duration resizeTimeout()

Get the resizeTimeout property: The timeout for allocation of compute nodes to the pool or removal of compute nodes from the pool.

OffsetDateTime startTime()

Get the startTime property: The time when this resize operation was started.

Integer targetDedicatedNodes()

Get the targetDedicatedNodes property: The desired number of dedicated compute nodes in the pool.

Integer targetLowPriorityNodes()

Get the targetLowPriorityNodes property: The desired number of Spot/low-priority compute nodes in the pool.

JsonWriter toJson(JsonWriter jsonWriter)
void validate()

Validates the instance.

Methods inherited from java.lang.Object

Method Details

errors

public List<ResizeError> errors()

Get the errors property: Details of any errors encountered while performing the last resize on the pool. This property is set only if an error occurred during the last pool resize, and only when the pool allocationState is Steady.

Returns:

the errors value.

fromJson

public static ResizeOperationStatus fromJson(JsonReader jsonReader)

Reads an instance of ResizeOperationStatus from the JsonReader.

Parameters:

jsonReader - The JsonReader being read.

Returns:

An instance of ResizeOperationStatus if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.

Throws:

IOException

- If an error occurs while reading the ResizeOperationStatus.

nodeDeallocationOption

public ComputeNodeDeallocationOption nodeDeallocationOption()

Get the nodeDeallocationOption property: Determines what to do with a node and its running task(s) after it has been selected for deallocation. The default value is requeue.

Returns:

the nodeDeallocationOption value.

resizeTimeout

public Duration resizeTimeout()

Get the resizeTimeout property: The timeout for allocation of compute nodes to the pool or removal of compute nodes from the pool. 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:

the resizeTimeout value.

startTime

public OffsetDateTime startTime()

Get the startTime property: The time when this resize operation was started.

Returns:

the startTime value.

targetDedicatedNodes

public Integer targetDedicatedNodes()

Get the targetDedicatedNodes property: The desired number of dedicated compute nodes in the pool.

Returns:

the targetDedicatedNodes value.

targetLowPriorityNodes

public Integer targetLowPriorityNodes()

Get the targetLowPriorityNodes property: The desired number of Spot/low-priority compute nodes in the pool.

Returns:

the targetLowPriorityNodes value.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

validate

public void validate()

Validates the instance.

Applies to