OutcomeArgs

data class OutcomeArgs(val failureDetail: Output<FailureDetailArgs>? = null, val inconclusiveDetail: Output<InconclusiveDetailArgs>? = null, val skippedDetail: Output<SkippedDetailArgs>? = null, val successDetail: Output<SuccessDetailArgs>? = null, val summary: Output<OutcomeSummary>? = null) : ConvertibleToJava<OutcomeArgs>

Interprets a result so that humans and machines can act on it.

Constructors

Link copied to clipboard
fun OutcomeArgs(failureDetail: Output<FailureDetailArgs>? = null, inconclusiveDetail: Output<InconclusiveDetailArgs>? = null, skippedDetail: Output<SkippedDetailArgs>? = null, successDetail: Output<SuccessDetailArgs>? = null, summary: Output<OutcomeSummary>? = null)

Functions

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

Properties

Link copied to clipboard
val failureDetail: Output<FailureDetailArgs>? = null

More information about a FAILURE outcome. Returns INVALID_ARGUMENT if this field is set but the summary is not FAILURE. Optional

Link copied to clipboard

More information about an INCONCLUSIVE outcome. Returns INVALID_ARGUMENT if this field is set but the summary is not INCONCLUSIVE. Optional

Link copied to clipboard
val skippedDetail: Output<SkippedDetailArgs>? = null

More information about a SKIPPED outcome. Returns INVALID_ARGUMENT if this field is set but the summary is not SKIPPED. Optional

Link copied to clipboard
val successDetail: Output<SuccessDetailArgs>? = null

More information about a SUCCESS outcome. Returns INVALID_ARGUMENT if this field is set but the summary is not SUCCESS. Optional

Link copied to clipboard
val summary: Output<OutcomeSummary>? = null

The simplest way to interpret a result. Required