Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AgentEnvironment

import type { AgentEnvironment } from "https://googleapis.deno.dev/v1/batch:v1.ts";

AgentEnvironment is the Environment representation between Agent and CLH communication. The environment is used in both task level and agent level.

interface AgentEnvironment {
encryptedVariables?: AgentKMSEnvMap;
secretVariables?: {
[key: string]: string;
}
;
variables?: {
[key: string]: string;
}
;
}

§Properties

§
encryptedVariables?: AgentKMSEnvMap
[src]

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

§
secretVariables?: {
[key: string]: string;
}
[src]

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.

§
variables?: {
[key: string]: string;
}
[src]

A map of environment variable names to values.