EnvironmentResponse

data class EnvironmentResponse(val encryptedVariables: KMSEnvMapResponse, val secretVariables: Map<String, String>, val variables: Map<String, String>)

An Environment describes a collection of environment variables to set when executing Tasks.

Constructors

Link copied to clipboard
constructor(encryptedVariables: KMSEnvMapResponse, secretVariables: Map<String, String>, variables: Map<String, String>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

An encrypted JSON dictionary where the key/value pairs correspond to environment variable names and their values.

Link copied to clipboard

A map of environment variable names to Secret Manager secret names. The VM will access the named secrets to set the value of each environment variable.

Link copied to clipboard

A map of environment variable names to values.