Service Scaling Args
data class ServiceScalingArgs(val manualInstanceCount: Output<Int>? = null, val minInstanceCount: Output<Int>? = null, val scalingMode: Output<String>? = null) : ConvertibleToJava<ServiceScalingArgs>
Properties
Link copied to clipboard
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
Minimum number of instances for the service, to be divided among all revisions receiving traffic.
Link copied to clipboard
The scaling mode for the service. Possible values are: AUTOMATIC
, MANUAL
.