DatabaseAutomaticTuningOperations interface
Interface representing a DatabaseAutomaticTuningOperations.
Methods
get(string, string, string, Database |
Gets a database's automatic tuning. |
update(string, string, string, Database |
Update automatic tuning properties for target database. |
Method Details
get(string, string, string, DatabaseAutomaticTuningGetOptionalParams)
Gets a database's automatic tuning.
function get(resourceGroupName: string, serverName: string, databaseName: string, options?: DatabaseAutomaticTuningGetOptionalParams): Promise<DatabaseAutomaticTuning>
Parameters
- resourceGroupName
-
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.
- serverName
-
string
The name of the server.
- databaseName
-
string
The name of the database.
The options parameters.
Returns
Promise<DatabaseAutomaticTuning>
update(string, string, string, DatabaseAutomaticTuning, DatabaseAutomaticTuningUpdateOptionalParams)
Update automatic tuning properties for target database.
function update(resourceGroupName: string, serverName: string, databaseName: string, parameters: DatabaseAutomaticTuning, options?: DatabaseAutomaticTuningUpdateOptionalParams): Promise<DatabaseAutomaticTuning>
Parameters
- resourceGroupName
-
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.
- serverName
-
string
The name of the server.
- databaseName
-
string
The name of the database.
- parameters
- DatabaseAutomaticTuning
The requested automatic tuning resource state.
The options parameters.
Returns
Promise<DatabaseAutomaticTuning>