FixedOrPercentArgs

data class FixedOrPercentArgs(val fixed: Output<Int>? = null, val percent: Output<Int>? = null) : ConvertibleToJava<FixedOrPercentArgs>

Encapsulates numeric value that can be either absolute or relative.

Constructors

Link copied to clipboard
fun FixedOrPercentArgs(fixed: Output<Int>? = null, percent: Output<Int>? = null)

Functions

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

Properties

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

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

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

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