Show / Hide Table of Contents

Class Environment

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

Inheritance
object
Environment
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX