JobConfigurationScheduleTriggerConfigArgs

data class JobConfigurationScheduleTriggerConfigArgs(val cronExpression: Output<String>, val parallelism: Output<Int>? = null, val replicaCompletionCount: Output<Int>? = null) : ConvertibleToJava<JobConfigurationScheduleTriggerConfigArgs>

Cron formatted repeating trigger schedule ("* * * * *") for cronjobs. Properties completions and parallelism would be set to 1 by default

Constructors

constructor(cronExpression: Output<String>, parallelism: Output<Int>? = null, replicaCompletionCount: Output<Int>? = null)

Properties

Link copied to clipboard
val cronExpression: Output<String>

Cron formatted repeating schedule ("* * * * *") of a Cron Job.

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

Number of parallel replicas of a job that can run at a given time.

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

Minimum number of successful replica completions before overall job completion.

Functions

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