AutomaticTuningOptions Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
AutomaticTuningOptions() |
Initializes a new instance of the AutomaticTuningOptions class. |
AutomaticTuningOptions(Nullable<AutomaticTuningOptionModeDesired>, Nullable<AutomaticTuningOptionModeActual>, Nullable<Int32>, Nullable<AutomaticTuningDisabledReason>) |
Initializes a new instance of the AutomaticTuningOptions class. |
AutomaticTuningOptions()
Initializes a new instance of the AutomaticTuningOptions class.
public AutomaticTuningOptions ();
Public Sub New ()
Applies to
AutomaticTuningOptions(Nullable<AutomaticTuningOptionModeDesired>, Nullable<AutomaticTuningOptionModeActual>, Nullable<Int32>, Nullable<AutomaticTuningDisabledReason>)
Initializes a new instance of the AutomaticTuningOptions class.
public AutomaticTuningOptions (Microsoft.Azure.Management.Sql.Models.AutomaticTuningOptionModeDesired? desiredState = default, Microsoft.Azure.Management.Sql.Models.AutomaticTuningOptionModeActual? actualState = default, int? reasonCode = default, Microsoft.Azure.Management.Sql.Models.AutomaticTuningDisabledReason? reasonDesc = default);
new Microsoft.Azure.Management.Sql.Models.AutomaticTuningOptions : Nullable<Microsoft.Azure.Management.Sql.Models.AutomaticTuningOptionModeDesired> * Nullable<Microsoft.Azure.Management.Sql.Models.AutomaticTuningOptionModeActual> * Nullable<int> * Nullable<Microsoft.Azure.Management.Sql.Models.AutomaticTuningDisabledReason> -> Microsoft.Azure.Management.Sql.Models.AutomaticTuningOptions
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 AutomaticTuningDisabledReason) = 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'
- reasonDesc
- Nullable<AutomaticTuningDisabledReason>
Reason description if desired and actual state are different. Possible values include: 'Default', 'Disabled', 'AutoConfigured', 'InheritedFromServer', 'QueryStoreOff', 'QueryStoreReadOnly', 'NotSupported'
Applies to
Azure SDK for .NET