SecretObjectArgs

data class SecretObjectArgs(val type: Output<Either<String, SecretObjectType>>? = null, val value: Output<String>? = null) : ConvertibleToJava<SecretObjectArgs>

Describes the properties of a secret object value.

Constructors

Link copied to clipboard
constructor(type: Output<Either<String, SecretObjectType>>? = null, value: Output<String>? = null)

Properties

Link copied to clipboard
val type: Output<Either<String, SecretObjectType>>? = null

The type of the secret object which determines how the value of the secret object has to be interpreted.

Link copied to clipboard
val value: Output<String>? = null

The value of the secret. The format of this value will be determined based on the type of the secret object. If the type is Opaque, the value will be used as is without any modification.

Functions

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