Class ServerAutomaticTuning
Server-level Automatic Tuning.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Sql.dll
Syntax
[Microsoft.Rest.Serialization.JsonTransformation]
public class ServerAutomaticTuning : Microsoft.Azure.Management.Sql.Models.ProxyResource
Constructors
ServerAutomaticTuning()
Initializes a new instance of the ServerAutomaticTuning class.
Declaration
public ServerAutomaticTuning ();
ServerAutomaticTuning(String, String, String, Nullable<AutomaticTuningServerMode>, Nullable<AutomaticTuningServerMode>, IDictionary<String,AutomaticTuningServerOptions>)
Initializes a new instance of the ServerAutomaticTuning class.
Declaration
public ServerAutomaticTuning (string id = null, string name = null, string type = null, Nullable<Microsoft.Azure.Management.Sql.Models.AutomaticTuningServerMode> desiredState = null, Nullable<Microsoft.Azure.Management.Sql.Models.AutomaticTuningServerMode> actualState = null, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.Sql.Models.AutomaticTuningServerOptions> options = null);
Parameters
String
id
Resource ID. |
String
name
Resource name. |
String
type
Resource type. |
Nullable<AutomaticTuningServerMode>
desiredState
Automatic tuning desired state. Possible values include: 'Custom', 'Auto', 'Unspecified' |
Nullable<AutomaticTuningServerMode>
actualState
Automatic tuning actual state. Possible values include: 'Custom', 'Auto', 'Unspecified' |
IDictionary<String,AutomaticTuningServerOptions>
options
Automatic tuning options definition. |
Properties
ActualState
Gets automatic tuning actual state. Possible values include: 'Custom', 'Auto', 'Unspecified'
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="properties.actualState")]
public Nullable<Microsoft.Azure.Management.Sql.Models.AutomaticTuningServerMode> ActualState { get; }
Property Value
Nullable<AutomaticTuningServerMode>
|
DesiredState
Gets or sets automatic tuning desired state. Possible values include: 'Custom', 'Auto', 'Unspecified'
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="properties.desiredState")]
public Nullable<Microsoft.Azure.Management.Sql.Models.AutomaticTuningServerMode> DesiredState { get; set; }
Property Value
Nullable<AutomaticTuningServerMode>
|
Options
Gets or sets automatic tuning options definition.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="properties.options")]
public System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.Sql.Models.AutomaticTuningServerOptions> Options { get; set; }
Property Value
IDictionary<String,AutomaticTuningServerOptions>
|