Class AgentEnvironment
AgentEnvironment is the Environment representation between Agent and CLH communication. The environment is used in both task level and agent level.
Implements
Inherited Members
Namespace: Google.Apis.Batch.v1.Data
Assembly: Google.Apis.Batch.v1.dll
Syntax
public class AgentEnvironment : 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 AgentKMSEnvMap EncryptedVariables { get; set; }
Property Value
Type | Description |
---|---|
AgentKMSEnvMap |
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> |