ScaleArgs

data class ScaleArgs(val maxReplicas: Output<Int>? = null, val minReplicas: Output<Int>? = null, val rules: Output<List<ScaleRuleArgs>>? = null) : ConvertibleToJava<ScaleArgs>

Container App scaling configurations.

Constructors

Link copied to clipboard
constructor(maxReplicas: Output<Int>? = null, minReplicas: Output<Int>? = null, rules: Output<List<ScaleRuleArgs>>? = null)

Properties

Link copied to clipboard
val maxReplicas: Output<Int>? = null

Optional. Maximum number of container replicas. Defaults to 10 if not set.

Link copied to clipboard
val minReplicas: Output<Int>? = null

Optional. Minimum number of container replicas.

Link copied to clipboard
val rules: Output<List<ScaleRuleArgs>>? = null

Scaling rules.

Functions

Link copied to clipboard
open override fun toJava(): ScaleArgs