Share via


DeploymentScaleSettings Constructors

Definition

Overloads

DeploymentScaleSettings()

Initializes a new instance of the DeploymentScaleSettings class.

DeploymentScaleSettings(String, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the DeploymentScaleSettings class.

DeploymentScaleSettings()

Initializes a new instance of the DeploymentScaleSettings class.

public DeploymentScaleSettings ();
Public Sub New ()

Applies to

DeploymentScaleSettings(String, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the DeploymentScaleSettings class.

public DeploymentScaleSettings (string scaleType = default, int? capacity = default, int? activeCapacity = default);
new Microsoft.Azure.Management.CognitiveServices.Models.DeploymentScaleSettings : string * Nullable<int> * Nullable<int> -> Microsoft.Azure.Management.CognitiveServices.Models.DeploymentScaleSettings
Public Sub New (Optional scaleType As String = Nothing, Optional capacity As Nullable(Of Integer) = Nothing, Optional activeCapacity As Nullable(Of Integer) = Nothing)

Parameters

scaleType
String

Deployment scale type. Possible values include: 'Standard', 'Manual'

capacity
Nullable<Int32>

Deployment capacity.

activeCapacity
Nullable<Int32>

Deployment active capacity. This value might be different from capacity if customer recently updated capacity.

Applies to