Class Environment
An Environment describes a collection of environment variables to set when executing Tasks.
Implements
Inherited Members
Namespace: Google.Apis.Batch.v1.Data
Assembly: Google.Apis.Batch.v1.dll
Syntax
public class Environment : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
EncryptedVariables
An encrypted JSON dictionary where the key/value pairs correspond to environment variable names and their values.
Declaration
[JsonProperty("encryptedVariables")]
public virtual KMSEnvMap EncryptedVariables { get; set; }
Property Value
Type | Description |
---|---|
KMSEnvMap |
SecretVariables
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.
Declaration
[JsonProperty("secretVariables")]
public virtual IDictionary<string, string> SecretVariables { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, string> |
Variables
A map of environment variable names to values.
Declaration
[JsonProperty("variables")]
public virtual IDictionary<string, string> Variables { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, string> |