JobConfigurationResponseScheduleTriggerConfig

data class JobConfigurationResponseScheduleTriggerConfig(val cronExpression: String, val parallelism: Int? = null, val replicaCompletionCount: Int? = null)

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

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

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

Link copied to clipboard
val parallelism: Int? = null

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

Link copied to clipboard

Minimum number of successful replica completions before overall job completion.