Share via


AutoscaleCapacity Constructors

Definition

Overloads

AutoscaleCapacity()

Initializes a new instance of the AutoscaleCapacity class.

AutoscaleCapacity(Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the AutoscaleCapacity class.

AutoscaleCapacity()

Initializes a new instance of the AutoscaleCapacity class.

public AutoscaleCapacity ();
Public Sub New ()

Applies to

AutoscaleCapacity(Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the AutoscaleCapacity class.

public AutoscaleCapacity (int? minInstanceCount = default, int? maxInstanceCount = default);
new Microsoft.Azure.Management.HDInsight.Models.AutoscaleCapacity : Nullable<int> * Nullable<int> -> Microsoft.Azure.Management.HDInsight.Models.AutoscaleCapacity
Public Sub New (Optional minInstanceCount As Nullable(Of Integer) = Nothing, Optional maxInstanceCount As Nullable(Of Integer) = Nothing)

Parameters

minInstanceCount
Nullable<Int32>

The minimum instance count of the cluster

maxInstanceCount
Nullable<Int32>

The maximum instance count of the cluster

Applies to