Server Automatic Tuning - Get
Retrieves server automatic tuning options.
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/automaticTuning/current?api-version=2021-11-01
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
resource
|
path | True |
string |
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. |
server
|
path | True |
string |
The name of the server. |
subscription
|
path | True |
string |
The subscription ID that identifies an Azure subscription. |
api-version
|
query | True |
string |
The API version to use for the request. |
Responses
Name | Type | Description |
---|---|---|
200 OK |
Successfully retrieved server automatic tuning properties. |
|
Other Status Codes |
*** Error Responses: ***
|
Examples
Get a server's automatic tuning settings
Sample request
Sample response
{
"id": "/subscriptions/c3aa9078-0000-0000-0000-e36f151182d7/resourceGroups/default-sql-onebox/providers/Microsoft.Sql/servers/testsvr11/automaticTuning/current",
"name": "current",
"type": "Microsoft.Sql/servers/automaticTuning",
"properties": {
"desiredState": "Auto",
"actualState": "Auto",
"options": {
"createIndex": {
"desiredState": "Default",
"actualState": "On",
"reasonCode": 2,
"reasonDesc": "AutoConfigured"
},
"dropIndex": {
"desiredState": "Default",
"actualState": "Off",
"reasonCode": 2,
"reasonDesc": "AutoConfigured"
},
"forceLastGoodPlan": {
"desiredState": "Default",
"actualState": "On",
"reasonCode": 2,
"reasonDesc": "AutoConfigured"
},
"maintainIndex": {
"desiredState": "Default",
"actualState": "Off",
"reasonCode": 2,
"reasonDesc": "AutoConfigured"
}
}
}
}
Definitions
Name | Description |
---|---|
Automatic |
Automatic tuning option actual state. |
Automatic |
Automatic tuning option desired state. |
Automatic |
Automatic tuning desired state. |
Automatic |
Automatic tuning properties for individual advisors. |
Automatic |
Reason description if desired and actual state are different. |
Server |
Server-level Automatic Tuning. |
AutomaticTuningOptionModeActual
Automatic tuning option actual state.
Name | Type | Description |
---|---|---|
Off |
string |
|
On |
string |
AutomaticTuningOptionModeDesired
Automatic tuning option desired state.
Name | Type | Description |
---|---|---|
Default |
string |
|
Off |
string |
|
On |
string |
AutomaticTuningServerMode
Automatic tuning desired state.
Name | Type | Description |
---|---|---|
Auto |
string |
|
Custom |
string |
|
Unspecified |
string |
AutomaticTuningServerOptions
Automatic tuning properties for individual advisors.
Name | Type | Description |
---|---|---|
actualState |
Automatic tuning option actual state. |
|
desiredState |
Automatic tuning option desired state. |
|
reasonCode |
integer |
Reason code if desired and actual state are different. |
reasonDesc |
Reason description if desired and actual state are different. |
AutomaticTuningServerReason
Reason description if desired and actual state are different.
Name | Type | Description |
---|---|---|
AutoConfigured |
string |
|
Default |
string |
|
Disabled |
string |
ServerAutomaticTuning
Server-level Automatic Tuning.
Name | Type | Description |
---|---|---|
id |
string |
Resource ID. |
name |
string |
Resource name. |
properties.actualState |
Automatic tuning actual state. |
|
properties.desiredState |
Automatic tuning desired state. |
|
properties.options |
<string,
Automatic |
Automatic tuning options definition. |
type |
string |
Resource type. |