BuildArgumentResponse

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

Properties of a build argument.

Constructors

Link copied to clipboard
constructor(isSecret: Boolean? = null, name: String, type: 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 type of the argument.

Link copied to clipboard

The value of the argument.