ResizeOperationStatus Constructors

Definition

Overloads

ResizeOperationStatus()

Initializes a new instance of the ResizeOperationStatus class.

ResizeOperationStatus(Nullable<Int32>, Nullable<Int32>, Nullable<TimeSpan>, Nullable<ComputeNodeDeallocationOption>, Nullable<DateTime>, IList<ResizeError>)

Initializes a new instance of the ResizeOperationStatus class.

ResizeOperationStatus()

Initializes a new instance of the ResizeOperationStatus class.

public ResizeOperationStatus ();
Public Sub New ()

Applies to

ResizeOperationStatus(Nullable<Int32>, Nullable<Int32>, Nullable<TimeSpan>, Nullable<ComputeNodeDeallocationOption>, Nullable<DateTime>, IList<ResizeError>)

Initializes a new instance of the ResizeOperationStatus class.

public ResizeOperationStatus (int? targetDedicatedNodes = default, int? targetLowPriorityNodes = default, TimeSpan? resizeTimeout = default, Microsoft.Azure.Management.Batch.Models.ComputeNodeDeallocationOption? nodeDeallocationOption = default, DateTime? startTime = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Batch.Models.ResizeError> errors = default);
new Microsoft.Azure.Management.Batch.Models.ResizeOperationStatus : Nullable<int> * Nullable<int> * Nullable<TimeSpan> * Nullable<Microsoft.Azure.Management.Batch.Models.ComputeNodeDeallocationOption> * Nullable<DateTime> * System.Collections.Generic.IList<Microsoft.Azure.Management.Batch.Models.ResizeError> -> Microsoft.Azure.Management.Batch.Models.ResizeOperationStatus
Public Sub New (Optional targetDedicatedNodes As Nullable(Of Integer) = Nothing, Optional targetLowPriorityNodes As Nullable(Of Integer) = Nothing, Optional resizeTimeout As Nullable(Of TimeSpan) = Nothing, Optional nodeDeallocationOption As Nullable(Of ComputeNodeDeallocationOption) = Nothing, Optional startTime As Nullable(Of DateTime) = Nothing, Optional errors As IList(Of ResizeError) = Nothing)

Parameters

targetDedicatedNodes
Nullable<Int32>

The desired number of dedicated compute nodes in the pool.

targetLowPriorityNodes
Nullable<Int32>

The desired number of Spot/low-priority compute nodes in the pool.

resizeTimeout
Nullable<TimeSpan>

The timeout for allocation of compute nodes to the pool or removal of compute nodes from the pool.

nodeDeallocationOption
Nullable<ComputeNodeDeallocationOption>

Determines what to do with a node and its running task(s) if the pool size is decreasing.

startTime
Nullable<DateTime>

The time when this resize operation was started.

errors
IList<ResizeError>

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

Applies to