diff --git a/agentplatform/_genai/types/common.py b/agentplatform/_genai/types/common.py index dd669429d8..a5c33b5b9c 100644 --- a/agentplatform/_genai/types/common.py +++ b/agentplatform/_genai/types/common.py @@ -322,6 +322,12 @@ class SandboxState(_common.CaseInSensitiveEnum): """Sandbox has terminated with underlying runtime failure.""" STATE_DELETED = "STATE_DELETED" """Sandbox runtime has been deleted.""" + STATE_PAUSED = "STATE_PAUSED" + """Sandbox runtime is paused.""" + STATE_PAUSING = "STATE_PAUSING" + """Sandbox runtime is pausing.""" + STATE_RESUMING = "STATE_RESUMING" + """Sandbox runtime is resuming.""" class Protocol(_common.CaseInSensitiveEnum):