ServiceScalingArgs

data class ServiceScalingArgs(val manualInstanceCount: Output<Int>? = null, val minInstanceCount: Output<Int>? = null, val scalingMode: Output<String>? = null) : ConvertibleToJava<ServiceScalingArgs>

Constructors

Link copied to clipboard
constructor(manualInstanceCount: Output<Int>? = null, minInstanceCount: Output<Int>? = null, scalingMode: Output<String>? = null)

Properties

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

Total instance count for the service in manual scaling mode. This number of instances is divided among all revisions with specified traffic based on the percent of traffic they are receiving.

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

Minimum number of instances for the service, to be divided among all revisions receiving traffic.

Link copied to clipboard
val scalingMode: Output<String>? = null

The scaling mode for the service. Possible values are: AUTOMATIC, MANUAL.

Functions

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