From bc6bb29e56871e530fa188737782173e5032661c Mon Sep 17 00:00:00 2001 From: A Vertex SDK engineer Date: Fri, 7 Aug 2026 18:28:41 -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: 961218320 --- src/types/common.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/types/common.ts b/src/types/common.ts index 1d28fc5d..d7225b22 100644 --- a/src/types/common.ts +++ b/src/types/common.ts @@ -182,6 +182,10 @@ export enum DefaultContainerCategory { * The default container image for Computer Use. */ DEFAULT_CONTAINER_CATEGORY_COMPUTER_USE = 'DEFAULT_CONTAINER_CATEGORY_COMPUTER_USE', + /** + * The default container image for Shell Sandbox. + */ + DEFAULT_CONTAINER_CATEGORY_SHELL_SANDBOX = 'DEFAULT_CONTAINER_CATEGORY_SHELL_SANDBOX', } /** Input only. Action to take on the source SandboxEnvironment after the snapshot is taken. This field is only used in CreateSandboxEnvironmentSnapshotRequest and it is not stored in the resource. */