ArgumentArgs

data class ArgumentArgs(val isSecret: Output<Boolean>? = null, val name: Output<String>, val value: Output<String>) : ConvertibleToJava<ArgumentArgs>

The properties of a run argument.

Constructors

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

Properties

Link copied to clipboard
val isSecret: Output<Boolean>? = null

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

Link copied to clipboard
val name: Output<String>

The name of the argument.

Link copied to clipboard
val value: Output<String>

The value of the argument.

Functions

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