Interface AutoscaleSetting.UpdateStages.DefineAutoscaleSettingProfiles
-
- All Known Subinterfaces:
AutoscaleSetting.Update
- Enclosing interface:
- AutoscaleSetting.UpdateStages
public static interface AutoscaleSetting.UpdateStages.DefineAutoscaleSettingProfilesThe stage of the update which adds or updates autoscale profiles in the current setting.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AutoscaleProfile.UpdateDefinitionStages.BlankdefineAutoscaleProfile(String name)Starts definition of automatic scaling profiles that specify different scaling parameters for different time periods.AutoscaleProfile.UpdateupdateAutoscaleProfile(String name)Starts the update of automatic scaling profiles.AutoscaleSetting.UpdatewithoutAutoscaleProfile(String name)Removes the specified profile from the current setting.
-
-
-
Method Detail
-
defineAutoscaleProfile
AutoscaleProfile.UpdateDefinitionStages.Blank defineAutoscaleProfile(String name)
Starts definition of automatic scaling profiles that specify different scaling parameters for different time periods. A maximum of 20 profiles can be specified.- Parameters:
name- name of the profile.- Returns:
- the next stage of autoscale setting update.
-
updateAutoscaleProfile
AutoscaleProfile.Update updateAutoscaleProfile(String name)
Starts the update of automatic scaling profiles.- Parameters:
name- name of the profile.- Returns:
- the next stage of autoscale setting update.
-
withoutAutoscaleProfile
AutoscaleSetting.Update withoutAutoscaleProfile(String name)
Removes the specified profile from the current setting.- Parameters:
name- name of the profile.- Returns:
- the next stage of autoscale setting update.
-
-