LoadBasedConfigResponse

data class LoadBasedConfigResponse(val cooldownPeriod: Int? = null, val maxNodes: Int, val minNodes: Int, val pollInterval: Int? = null, val scalingRules: List<ScalingRuleResponse>)

Profile of load based Autoscale.

Constructors

Link copied to clipboard
constructor(cooldownPeriod: Int? = null, maxNodes: Int, minNodes: Int, pollInterval: Int? = null, scalingRules: List<ScalingRuleResponse>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val cooldownPeriod: Int? = null

This is a cool down period, this is a time period in seconds, which determines the amount of time that must elapse between a scaling activity started by a rule and the start of the next scaling activity, regardless of the rule that triggers it. The default value is 300 seconds.

Link copied to clipboard

User needs to set the maximum number of nodes for load based scaling, the load based scaling will use this to scale up and scale down between minimum and maximum number of nodes.

Link copied to clipboard

User needs to set the minimum number of nodes for load based scaling, the load based scaling will use this to scale up and scale down between minimum and maximum number of nodes.

Link copied to clipboard
val pollInterval: Int? = null

User can specify the poll interval, this is the time period (in seconds) after which scaling metrics are polled for triggering a scaling operation.

Link copied to clipboard

The scaling rules.