RuntimeUpdatableParamsArgs

data class RuntimeUpdatableParamsArgs(val maxNumWorkers: Output<Int>? = null, val minNumWorkers: Output<Int>? = null) : ConvertibleToJava<RuntimeUpdatableParamsArgs>

Additional job parameters that can only be updated during runtime using the projects.jobs.update method. These fields have no effect when specified during job creation.

Constructors

Link copied to clipboard
fun RuntimeUpdatableParamsArgs(maxNumWorkers: Output<Int>? = null, minNumWorkers: Output<Int>? = null)

Functions

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

Properties

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

The maximum number of workers to cap autoscaling at. This field is currently only supported for Streaming Engine jobs.

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

The minimum number of workers to scale down to. This field is currently only supported for Streaming Engine jobs.