ManualClass

@Serializable
data class ManualClass(val allowed: Boolean? = null, val permitOnPassed: Boolean? = null, val reason: String? = null)(source)

Constructors

Link copied to clipboard
constructor(allowed: Boolean? = null, permitOnPassed: Boolean? = null, reason: String? = null)

Properties

Link copied to clipboard
val allowed: Boolean? = null

Whether or not this job can be retried manually

Link copied to clipboard
@SerialName(value = "permit_on_passed")
val permitOnPassed: Boolean? = null

Whether or not this job can be retried after it has passed

Link copied to clipboard
val reason: String? = null

A string that will be displayed in a tooltip on the Retry button in Buildkite. This will only be displayed if the allowed attribute is set to false.