Node Pool Scaling Config Args
data class NodePoolScalingConfigArgs(val eipBandwidth: Output<Int>? = null, val eipInternetChargeType: Output<String>? = null, val enable: Output<Boolean>? = null, val isBondEip: Output<Boolean>? = null, val maxSize: Output<Int>? = null, val minSize: Output<Int>? = null, val type: Output<String>? = null) : ConvertibleToJava<NodePoolScalingConfigArgs>
Properties
Link copied to clipboard
Peak EIP bandwidth. Its valid value range 1~500 in Mbps. It works if is_bond_eip=true
. Default to 5
.
Link copied to clipboard
EIP billing type. PayByBandwidth
: Charged at fixed bandwidth. PayByTraffic
: Billed as used traffic. Default: PayByBandwidth
. It works if is_bond_eip=true
, conflict with internet_charge_type
. EIP and public network IP can only choose one.