public static interface AutoscaleProfile.Update extends Settable<AutoscaleSetting.Update>
| Modifier and Type | Method and Description |
|---|---|
ScaleRule.UpdateDefinitionStages.Blank |
defineScaleRule()
Starts the definition of scale rule for the current autoscale profile.
|
ScaleRule.Update |
updateScaleRule(int ruleIndex)
Starts the update of the scale rule for the current autoscale profile.
|
AutoscaleProfile.Update |
withFixedDateSchedule(String timeZone,
OffsetDateTime start,
OffsetDateTime end)
Updates fixed date schedule for autoscale profile.
|
AutoscaleProfile.Update |
withMetricBasedScale(int minimumInstanceCount,
int maximumInstanceCount,
int defaultInstanceCount)
Updates metric based autoscale profile.
|
AutoscaleProfile.Update |
withoutScaleRule(int ruleIndex)
Removes scale rule from the current autoscale profile.
|
AutoscaleProfile.Update |
withRecurrentSchedule(String scheduleTimeZone,
String startTime,
DayOfWeek... weekday)
Updates recurrent schedule for autoscale profile.
|
AutoscaleProfile.Update |
withScheduleBasedScale(int instanceCount)
Updates schedule based autoscale profile.
|
AutoscaleProfile.Update withMetricBasedScale(int minimumInstanceCount, int maximumInstanceCount, int defaultInstanceCount)
minimumInstanceCount - the minimum number of instances for the resource.maximumInstanceCount - the maximum number of instances for the resource. The actual maximum number of
instances is limited by the cores that are available in the subscription.defaultInstanceCount - the number of instances that will be set if metrics are not available for
evaluation. The default is only used if the current instance count is lower than the default.AutoscaleProfile.Update withScheduleBasedScale(int instanceCount)
instanceCount - instanceCount the number of instances that will be set during specified schedule. The
actual number of instances is limited by the cores that are available in the subscription.AutoscaleProfile.Update withFixedDateSchedule(String timeZone, OffsetDateTime start, OffsetDateTime end)
timeZone - time zone for the schedule.start - start time.end - end time.AutoscaleProfile.Update withRecurrentSchedule(String scheduleTimeZone, String startTime, DayOfWeek... weekday)
scheduleTimeZone - time zone for the schedule. Some examples of valid timezones are: Dateline Standard
Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific
Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time,
Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central
Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela
Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA
Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard
Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard
Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard
Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time,
Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa
Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time,
Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE
Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard
Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa
Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3,
Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West
Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka
Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia
Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard
Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard
Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen.
Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard
Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard
Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time,
UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line
Islands Standard Time.startTime - start time in hh:mm format.weekday - list of week days when the schedule should be active.ScaleRule.UpdateDefinitionStages.Blank defineScaleRule()
ScaleRule.Update updateScaleRule(int ruleIndex)
ruleIndex - the index of the scale rule in the current autoscale profile. The index represents the order
at which rules were added to the current profile.AutoscaleProfile.Update withoutScaleRule(int ruleIndex)
ruleIndex - the index of the scale rule in the current autoscale profile.Copyright © 2020 Microsoft Corporation. All rights reserved.