AddRemoveReplicaScalingMechanismResponse

data class AddRemoveReplicaScalingMechanismResponse(val kind: String, val maxCount: Int, val minCount: Int, val scaleIncrement: Int)

Describes the horizontal auto scaling mechanism that adds or removes replicas (containers or container groups).

Constructors

Link copied to clipboard
constructor(kind: String, maxCount: Int, minCount: Int, scaleIncrement: Int)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Enumerates the mechanisms for auto scaling. Expected value is 'AddRemoveReplica'.

Link copied to clipboard

Maximum number of containers (scale up won't be performed above this number).

Link copied to clipboard

Minimum number of containers (scale down won't be performed below this number).

Link copied to clipboard

Each time auto scaling is performed, this number of containers will be added or removed.