GetSecretVersionPlainArgs

data class GetSecretVersionPlainArgs(val isSecretDataBase64: Boolean? = null, val project: String? = null, val secret: String, val version: String? = null) : ConvertibleToJava<GetSecretVersionPlainArgs>

A collection of arguments for invoking getSecretVersion.

Constructors

Link copied to clipboard
constructor(isSecretDataBase64: Boolean? = null, project: String? = null, secret: String, version: String? = null)

Properties

Link copied to clipboard

If set to 'true', the secret data is expected to be base64-encoded string.

Link copied to clipboard
val project: String? = null

The project to get the secret version for. If it is not provided, the provider project is used.

Link copied to clipboard

The secret to get the secret version for.

Link copied to clipboard
val version: String? = null

The version of the secret to get. If it is not provided, the latest version is retrieved.

Functions

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