From c59c2ae3a25a52e34066764bd0d465418e4a34e2 Mon Sep 17 00:00:00 2001 From: A Vertex SDK engineer Date: Fri, 21 Aug 2026 12:10:44 -0700 Subject: [PATCH] feat: Add Shell Sandbox environment support to the Agent Engine sandbox SDK Adds automatic default template provisioning for shell_environment and computer_use_environment to sandboxes.create in the GenAI / Agent Platform SDK. PiperOrigin-RevId: 968624286 --- src/types/common.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/types/common.ts b/src/types/common.ts index 70c72db7..9e09ab2b 100644 --- a/src/types/common.ts +++ b/src/types/common.ts @@ -2041,12 +2041,17 @@ export declare interface SandboxEnvironmentSpecCodeExecutionEnvironment { /** The computer use environment with customized settings. */ export declare interface SandboxEnvironmentSpecComputerUseEnvironment {} +/** The shell environment with customized settings. */ +export declare interface SandboxEnvironmentSpecShellEnvironment {} + /** The specification of a sandbox environment. */ export declare interface SandboxEnvironmentSpec { /** Optional. The code execution environment. */ codeExecutionEnvironment?: SandboxEnvironmentSpecCodeExecutionEnvironment; /** Optional. The computer use environment. */ computerUseEnvironment?: SandboxEnvironmentSpecComputerUseEnvironment; + /** Optional. The shell environment. */ + shellEnvironment?: SandboxEnvironmentSpecShellEnvironment; } /** Config for creating a Sandbox. */