ManualJobTriggerConfigResponse

data class ManualJobTriggerConfigResponse(val parallelism: Int? = null, val retryLimit: Int? = null, val timeoutInSeconds: Int? = null, val triggerType: String)

Configuration for manual triggered job

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val parallelism: Int? = null

Number of parallel replicas of a job execution can run.

Link copied to clipboard
val retryLimit: Int? = null

Maximum number of retries before failing the job.

Link copied to clipboard
val timeoutInSeconds: Int? = null

Maximum number of seconds an execution is allowed to run.

Link copied to clipboard

Type of job trigger Expected value is 'Manual'.