ArgumentResponse

data class ArgumentResponse(val isSecret: Boolean? = null, val name: String, val value: String)

The properties of a run argument.

Constructors

Link copied to clipboard
constructor(isSecret: Boolean? = null, name: String, value: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val isSecret: Boolean? = null

Flag to indicate whether the argument represents a secret and want to be removed from build logs.

Link copied to clipboard

The name of the argument.

Link copied to clipboard

The value of the argument.