FixedOrPercentResponse

data class FixedOrPercentResponse(val calculated: Int, val fixed: Int, val percent: Int)

Encapsulates numeric value that can be either absolute or relative.

Constructors

Link copied to clipboard
fun FixedOrPercentResponse(calculated: Int, fixed: Int, percent: Int)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Absolute value of VM instances calculated based on the specific mode. - If the value is fixed, then the calculated value is equal to the fixed value. - If the value is a percent, then the calculated value is percent/100 * targetSize. For example, the calculated value of a 80% of a managed instance group with 150 instances would be (80/100 * 150) = 120 VM instances. If there is a remainder, the number is rounded.

Link copied to clipboard
val fixed: Int

Specifies a fixed number of VM instances. This must be a positive integer.

Link copied to clipboard

Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%.