ManualJobTriggerConfigArgs

data class ManualJobTriggerConfigArgs(val parallelism: Output<Int>? = null, val retryLimit: Output<Int>? = null, val timeoutInSeconds: Output<Int>? = null, val triggerType: Output<String>) : ConvertibleToJava<ManualJobTriggerConfigArgs>

Configuration for manual triggered job

Constructors

Link copied to clipboard
constructor(parallelism: Output<Int>? = null, retryLimit: Output<Int>? = null, timeoutInSeconds: Output<Int>? = null, triggerType: Output<String>)

Properties

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

Number of parallel replicas of a job execution can run.

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

Maximum number of retries before failing the job.

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

Maximum number of seconds an execution is allowed to run.

Link copied to clipboard
val triggerType: Output<String>

Type of job trigger Expected value is 'Manual'.

Functions

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