EnvVarResponse

data class EnvVarResponse(val name: String, val value: String, val valueFrom: EnvVarSourceResponse)

EnvVar represents an environment variable present in a Container.

Constructors

Link copied to clipboard
fun EnvVarResponse(name: String, value: String, valueFrom: EnvVarSourceResponse)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Name of the environment variable. Must be a C_IDENTIFIER.

Link copied to clipboard

Value of the environment variable. Defaults to "". Variable references are not supported in Cloud Run.

Link copied to clipboard

Source for the environment variable's value. Only supports secret_key_ref. Cannot be used if value is not empty.