AutomaticTuningServerOptions Constructors

Definition

Overloads

AutomaticTuningServerOptions()

Initializes a new instance of the AutomaticTuningServerOptions class.

AutomaticTuningServerOptions(Nullable<AutomaticTuningOptionModeDesired>, Nullable<AutomaticTuningOptionModeActual>, Nullable<Int32>, Nullable<AutomaticTuningServerReason>)

Initializes a new instance of the AutomaticTuningServerOptions class.

AutomaticTuningServerOptions()

Initializes a new instance of the AutomaticTuningServerOptions class.

public AutomaticTuningServerOptions ();
Public Sub New ()

Applies to

AutomaticTuningServerOptions(Nullable<AutomaticTuningOptionModeDesired>, Nullable<AutomaticTuningOptionModeActual>, Nullable<Int32>, Nullable<AutomaticTuningServerReason>)

Initializes a new instance of the AutomaticTuningServerOptions class.

public AutomaticTuningServerOptions (Microsoft.Azure.Management.Sql.Models.AutomaticTuningOptionModeDesired? desiredState = default, Microsoft.Azure.Management.Sql.Models.AutomaticTuningOptionModeActual? actualState = default, int? reasonCode = default, Microsoft.Azure.Management.Sql.Models.AutomaticTuningServerReason? reasonDesc = default);
new Microsoft.Azure.Management.Sql.Models.AutomaticTuningServerOptions : Nullable<Microsoft.Azure.Management.Sql.Models.AutomaticTuningOptionModeDesired> * Nullable<Microsoft.Azure.Management.Sql.Models.AutomaticTuningOptionModeActual> * Nullable<int> * Nullable<Microsoft.Azure.Management.Sql.Models.AutomaticTuningServerReason> -> Microsoft.Azure.Management.Sql.Models.AutomaticTuningServerOptions
Public Sub New (Optional desiredState As Nullable(Of AutomaticTuningOptionModeDesired) = Nothing, Optional actualState As Nullable(Of AutomaticTuningOptionModeActual) = Nothing, Optional reasonCode As Nullable(Of Integer) = Nothing, Optional reasonDesc As Nullable(Of AutomaticTuningServerReason) = Nothing)

Parameters

desiredState
Nullable<AutomaticTuningOptionModeDesired>

Automatic tuning option desired state. Possible values include: 'Off', 'On', 'Default'

actualState
Nullable<AutomaticTuningOptionModeActual>

Automatic tuning option actual state. Possible values include: 'Off', 'On'

reasonCode
Nullable<Int32>

Reason code if desired and actual state are different.

reasonDesc
Nullable<AutomaticTuningServerReason>

Reason description if desired and actual state are different. Possible values include: 'Default', 'Disabled', 'AutoConfigured'

Applies to