FunctionSecretEnvironmentVariableArgs

data class FunctionSecretEnvironmentVariableArgs(val key: Output<String>, val projectId: Output<String>? = null, val secret: Output<String>, val version: Output<String>) : ConvertibleToJava<FunctionSecretEnvironmentVariableArgs>

Constructors

Link copied to clipboard
constructor(key: Output<String>, projectId: Output<String>? = null, secret: Output<String>, version: Output<String>)

Properties

Link copied to clipboard
val key: Output<String>

Name of the environment variable.

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

Project identifier (due to a known limitation, only project number is supported by this field) of the project that contains the secret. If not set, it will be populated with the function's project, assuming that the secret exists in the same project as of the function.

Link copied to clipboard
val secret: Output<String>

ID of the secret in secret manager (not the full resource name).

Link copied to clipboard
val version: Output<String>

Version of the secret (version number or the string "latest"). It is recommended to use a numeric version for secret environment variables as any updates to the secret value is not reflected until new clones start.

Functions

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