ManualScalingArgs

data class ManualScalingArgs(val instances: Output<Int>? = null) : ConvertibleToJava<ManualScalingArgs>

A service with manual scaling runs continuously, allowing you to perform complex initialization and rely on the state of its memory over time.

Constructors

Link copied to clipboard
fun ManualScalingArgs(instances: Output<Int>? = null)

Functions

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

Properties

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

Number of instances to assign to the service at the start. This number can later be altered by using the Modules API (https://cloud.google.com/appengine/docs/python/modules/functions) set_num_instances() function.