JobDefinitionRetryStrategyEvaluateOnExit

data class JobDefinitionRetryStrategyEvaluateOnExit(val action: String, val onExitCode: String? = null, val onReason: String? = null, val onStatusReason: String? = null)

Constructors

Link copied to clipboard
constructor(action: String, onExitCode: String? = null, onReason: String? = null, onStatusReason: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Action to take if all of the specified conditions are met. The values are not case sensitive. Valid values: retry, exit.

Link copied to clipboard
val onExitCode: String? = null

Glob pattern to match against the decimal representation of the exit code returned for a job.

Link copied to clipboard
val onReason: String? = null

Glob pattern to match against the reason returned for a job.

Link copied to clipboard
val onStatusReason: String? = null

Glob pattern to match against the status reason returned for a job.