Interface SqlServerAutomaticTuning.UpdateStages.WithAutomaticTuningOptions
-
- All Known Subinterfaces:
SqlServerAutomaticTuning.Update
- Enclosing interface:
- SqlServerAutomaticTuning.UpdateStages
public static interface SqlServerAutomaticTuning.UpdateStages.WithAutomaticTuningOptionsThe update stage setting the server automatic tuning options.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SqlServerAutomaticTuning.UpdatewithAutomaticTuningOption(String tuningOptionName, AutomaticTuningOptionModeDesired desiredState)Sets the various SQL server automatic tuning options desired state.SqlServerAutomaticTuning.UpdatewithAutomaticTuningOptions(Map<String,AutomaticTuningOptionModeDesired> tuningOptions)Sets the various SQL server automatic tuning options desired state.
-
-
-
Method Detail
-
withAutomaticTuningOption
SqlServerAutomaticTuning.Update withAutomaticTuningOption(String tuningOptionName, AutomaticTuningOptionModeDesired desiredState)
Sets the various SQL server automatic tuning options desired state.- Parameters:
tuningOptionName- the tuning option namedesiredState- the desired state of tuning option- Returns:
- Next stage of the update.
-
withAutomaticTuningOptions
SqlServerAutomaticTuning.Update withAutomaticTuningOptions(Map<String,AutomaticTuningOptionModeDesired> tuningOptions)
Sets the various SQL server automatic tuning options desired state.- Parameters:
tuningOptions- the tuning option names and desired states- Returns:
- Next stage of the update.
-
-