com.azure.resourcemanager.sql.models.SqlDatabaseAutomaticTuning Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-sql Show documentation
Show all versions of azure-resourcemanager-sql Show documentation
This package contains Microsoft Azure Sql Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.resourcemanager.sql.models;
import com.azure.core.annotation.Fluent;
import com.azure.resourcemanager.resources.fluentcore.model.Appliable;
import com.azure.resourcemanager.resources.fluentcore.model.HasInnerModel;
import com.azure.resourcemanager.resources.fluentcore.model.Refreshable;
import com.azure.resourcemanager.resources.fluentcore.model.Updatable;
import com.azure.resourcemanager.sql.fluent.models.DatabaseAutomaticTuningInner;
import java.util.Map;
/** An immutable client-side representation of an Azure SQL database automatic tuning object. */
@Fluent
public interface SqlDatabaseAutomaticTuning
extends HasInnerModel,
Refreshable,
Updatable {
/** @return the database automatic tuning desired state */
AutomaticTuningMode desiredState();
/** @return the database automatic tuning actual state */
AutomaticTuningMode actualState();
/** @return the database automatic tuning individual options */
Map tuningOptions();
/**************************************************************
* Fluent interfaces to update a SqlDatabaseAutomaticTuning
**************************************************************/
/**
* The template for a SqlDatabaseAutomaticTuning update operation, containing all the settings that can be modified.
*/
interface Update
extends SqlDatabaseAutomaticTuning.UpdateStages.WithAutomaticTuningMode,
SqlDatabaseAutomaticTuning.UpdateStages.WithAutomaticTuningOptions,
Appliable {
}
/** Grouping of all the SqlDatabaseAutomaticTuning update stages. */
interface UpdateStages {
/** The update stage setting the database automatic tuning desired state. */
interface WithAutomaticTuningMode {
/**
* Sets the SQL database automatic tuning desired state.
*
* @param desiredState the server automatic tuning desired state
* @return Next stage of the update.
*/
Update withAutomaticTuningMode(AutomaticTuningMode desiredState);
}
/** The update stage setting the database automatic tuning options. */
interface WithAutomaticTuningOptions {
/**
* Sets the various SQL database automatic tuning options desired state.
*
* @param tuningOptionName the tuning option name
* @param desiredState the desired state of tuning option
* @return Next stage of the update.
*/
Update withAutomaticTuningOption(String tuningOptionName, AutomaticTuningOptionModeDesired desiredState);
/**
* Sets the various SQL database automatic tuning options desired state.
*
* @param tuningOptions the tuning option names and desired states
* @return Next stage of the update.
*/
Update withAutomaticTuningOptions(Map tuningOptions);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy