AsyncSandbox
Section titled “AsyncSandbox”class AsyncSandbox(SandboxDto)Represents a Daytona Sandbox.
Attributes:
fsAsyncFileSystem - File system operations interface.gitAsyncGit - Git operations interface.processAsyncProcess - Process execution interface.computer_useAsyncComputerUse - Computer use operations interface for desktop automation.code_interpreterAsyncCodeInterpreter - Stateful interpreter interface for executing code. Currently supports only Python. For other languages, use theprocess.code_runinterface.idstr - Unique identifier for the Sandbox.namestr - Name of the Sandbox.organization_idstr - Organization ID of the Sandbox.snapshotstr | None - Daytona snapshot used to create the Sandbox.userstr - OS user running in the Sandbox.envdict[str, str] | None - Environment variables set in the Sandbox (not returned by list results; callrefresh_data()on each item to populate).labelsdict[str, str] - Custom labels attached to the Sandbox.publicbool - Whether the Sandbox is publicly accessible.targetstr - Target location of the runner where the Sandbox runs.cpuint - Number of CPUs allocated to the Sandbox.gpuint - Number of GPUs allocated to the Sandbox.memoryint - Amount of memory allocated to the Sandbox in GiB.diskint - Amount of disk space allocated to the Sandbox in GiB.stateSandboxState | None - Current state of the Sandbox (e.g., “started”, “stopped”).error_reasonstr | None - Error message if Sandbox is in error state.recoverablebool | None - Whether the Sandbox error is recoverable.backup_statestr | None - Current state of Sandbox backup.backup_created_atstr | None - When the backup was created (not returned by list results; callrefresh_data()on each item to populate).auto_stop_intervalint | None - Auto-stop interval in minutes.auto_archive_intervalint | None - Auto-archive interval in minutes.auto_delete_intervalint | None - Auto-delete interval in minutes.volumeslist[SandboxVolume] | None - Volumes attached to the Sandbox (not returned by list results; callrefresh_data()on each item to populate).build_infoBuildInfo | None - Build information for the Sandbox if it was created from dynamic build (not returned by list results; callrefresh_data()on each item to populate).created_atstr | None - When the Sandbox was created.updated_atstr | None - When the Sandbox was last updated.last_activity_atstr | None - When the Sandbox last had activity.network_block_allbool | None - Whether to block all network access for the Sandbox (not returned by list results; callrefresh_data()on each item to populate).network_allow_liststr | None - Comma-separated list of allowed CIDR network addresses for the Sandbox (not returned by list results; callrefresh_data()on each item to populate).toolbox_proxy_urlstr - The toolbox proxy URL for the Sandbox.
env: dict[str, str] | None
Section titled “env: dict[str, str] | None”env = Nonepyright: ignore[reportRedeclaration]
network_block_all: bool | None
Section titled “network_block_all: bool | None”network_block_all = Nonepyright: ignore[reportRedeclaration]
AsyncSandbox.refresh_data
Section titled “AsyncSandbox.refresh_data”@intercept_errors(message_prefix="Failed to refresh sandbox data: ")@with_instrumentation()async def refresh_data() -> NoneRefreshes the Sandbox data from the API.
Example:
await sandbox.refresh_data()print(f"Sandbox {sandbox.id}:")print(f"State: {sandbox.state}")print(f"Resources: {sandbox.cpu} CPU, {sandbox.memory} GiB RAM")AsyncSandbox.get_user_home_dir
Section titled “AsyncSandbox.get_user_home_dir”@intercept_errors(message_prefix="Failed to get user home directory: ")@with_instrumentation()async def get_user_home_dir() -> strGets the user’s home directory path inside the Sandbox.
Returns:
str- The absolute path to the user’s home directory inside the Sandbox.
Example:
user_home_dir = await sandbox.get_user_home_dir()print(f"Sandbox user home: {user_home_dir}")AsyncSandbox.get_work_dir
Section titled “AsyncSandbox.get_work_dir”@intercept_errors(message_prefix="Failed to get working directory path: ")@with_instrumentation()async def get_work_dir() -> strGets the working directory path inside the Sandbox.
Returns:
str- The absolute path to the Sandbox working directory. Uses the WORKDIR specified in the Dockerfile if present, or falling back to the user’s home directory if not.
Example:
work_dir = await sandbox.get_work_dir()print(f"Sandbox working directory: {work_dir}")AsyncSandbox.create_lsp_server
Section titled “AsyncSandbox.create_lsp_server”@with_instrumentation()def create_lsp_server(language_id: LspLanguageId | LspLanguageIdLiteral, path_to_project: str) -> AsyncLspServerCreates a new Language Server Protocol (LSP) server instance.
The LSP server provides language-specific features like code completion, diagnostics, and more.
Arguments:
language_idLspLanguageId | LspLanguageIdLiteral - The language server type (e.g., LspLanguageId.PYTHON).path_to_projectstr - Path to the project root directory. Relative paths are resolved based on the sandbox working directory.
Returns:
LspServer- A new LSP server instance configured for the specified language.
Example:
lsp = sandbox.create_lsp_server("python", "workspace/project")AsyncSandbox.set_labels
Section titled “AsyncSandbox.set_labels”@intercept_errors(message_prefix="Failed to set labels: ")@with_instrumentation()async def set_labels(labels: dict[str, str]) -> dict[str, str]Sets labels for the Sandbox.
Labels are key-value pairs that can be used to organize and identify Sandboxes.
Arguments:
labelsdict[str, str] - Dictionary of key-value pairs representing Sandbox labels.
Returns:
dict[str, str]: Dictionary containing the updated Sandbox labels.
Example:
new_labels = sandbox.set_labels({ "project": "my-project", "environment": "development", "team": "backend"})print(f"Updated labels: {new_labels}")AsyncSandbox.start
Section titled “AsyncSandbox.start”@intercept_errors(message_prefix="Failed to start sandbox: ")@with_timeout()@with_instrumentation()async def start(timeout: float | None = 60)Starts the Sandbox and waits for it to be ready.
Arguments:
timeoutfloat | None - Maximum time to wait in seconds. 0 means no timeout. Default is 60 seconds.
Raises:
DaytonaError- If timeout is negative. If sandbox fails to start or times out.
Example:
sandbox = daytona.get("my-sandbox-id")sandbox.start(timeout=40) # Wait up to 40 secondsprint("Sandbox started successfully")AsyncSandbox.recover
Section titled “AsyncSandbox.recover”@intercept_errors(message_prefix="Failed to recover sandbox: ")@with_timeout()async def recover(timeout: float | None = 60)Recovers the Sandbox from a recoverable error and waits for it to be ready.
Arguments:
timeoutfloat | None - Maximum time to wait in seconds. 0 means no timeout. Default is 60 seconds.
Raises:
DaytonaError- If timeout is negative. If sandbox fails to recover or times out.
Example:
sandbox = daytona.get("my-sandbox-id")await sandbox.recover(timeout=40) # Wait up to 40 secondsprint("Sandbox recovered successfully")AsyncSandbox.stop
Section titled “AsyncSandbox.stop”@intercept_errors(message_prefix="Failed to stop sandbox: ")@with_timeout()@with_instrumentation()async def stop(timeout: float | None = 60, force: bool = False)Stops the Sandbox and waits for it to be fully stopped.
Arguments:
timeoutfloat | None - Maximum time to wait in seconds. 0 means no timeout. Default is 60 seconds.forcebool - If True, uses SIGKILL instead of SIGTERM to stop the sandbox. Default is False.
Raises:
DaytonaError- If timeout is negative; If sandbox fails to stop or times out
Example:
sandbox = daytona.get("my-sandbox-id")await sandbox.stop()print("Sandbox stopped successfully")AsyncSandbox.delete
Section titled “AsyncSandbox.delete”@intercept_errors(message_prefix="Failed to remove sandbox: ")@with_timeout()@with_instrumentation()async def delete(timeout: float | None = 60) -> NoneDeletes the Sandbox.
Arguments:
timeoutfloat | None - Timeout (in seconds) for sandbox deletion. 0 means no timeout. Default is 60 seconds.
AsyncSandbox.wait_for_sandbox_start
Section titled “AsyncSandbox.wait_for_sandbox_start”@intercept_errors( message_prefix="Failure during waiting for sandbox to start: ")@with_timeout()@with_instrumentation()async def wait_for_sandbox_start(timeout: float | None = 60) -> NoneWaits for the Sandbox to reach the ‘started’ state. Polls the Sandbox status until it reaches the ‘started’ state, encounters an error or times out.
Arguments:
timeoutfloat | None - Maximum time to wait in seconds. 0 means no timeout. Default is 60 seconds.
Raises:
DaytonaError- If timeout is negative; If Sandbox fails to start or times out
AsyncSandbox.wait_for_sandbox_stop
Section titled “AsyncSandbox.wait_for_sandbox_stop”@intercept_errors( message_prefix="Failure during waiting for sandbox to stop: ")@with_timeout()@with_instrumentation()async def wait_for_sandbox_stop(timeout: float | None = 60) -> NoneWaits for the Sandbox to reach the ‘stopped’ state. Polls the Sandbox status until it reaches the ‘stopped’ state, encounters an error or times out. It will wait up to 60 seconds for the Sandbox to stop. Treats destroyed as stopped to cover ephemeral sandboxes that are automatically deleted after stopping.
Arguments:
timeoutfloat | None - Maximum time to wait in seconds. 0 means no timeout. Default is 60 seconds.
Raises:
DaytonaError- If timeout is negative. If Sandbox fails to stop or times out.
AsyncSandbox.set_autostop_interval
Section titled “AsyncSandbox.set_autostop_interval”@intercept_errors(message_prefix="Failed to set auto-stop interval: ")@with_instrumentation()async def set_autostop_interval(interval: int) -> NoneSets the auto-stop interval for the Sandbox.
The Sandbox will automatically stop after being idle (no new events) for the specified interval. Events include any state changes or interactions with the Sandbox through the SDK. Interactions using Sandbox Previews are not included.
Arguments:
intervalint - Number of minutes of inactivity before auto-stopping. Set to 0 to disable auto-stop. Defaults to 15.
Raises:
DaytonaValidationError- If interval is negative
Example:
# Auto-stop after 1 hoursandbox.set_autostop_interval(60)# Or disable auto-stopsandbox.set_autostop_interval(0)AsyncSandbox.set_auto_archive_interval
Section titled “AsyncSandbox.set_auto_archive_interval”@intercept_errors(message_prefix="Failed to set auto-archive interval: ")@with_instrumentation()async def set_auto_archive_interval(interval: int) -> NoneSets the auto-archive interval for the Sandbox.
The Sandbox will automatically archive after being continuously stopped for the specified interval.
Arguments:
intervalint - Number of minutes after which a continuously stopped Sandbox will be auto-archived. Set to 0 for the maximum interval. Default is 7 days.
Raises:
DaytonaValidationError- If interval is negative
Example:
# Auto-archive after 1 hoursandbox.set_auto_archive_interval(60)# Or use the maximum intervalsandbox.set_auto_archive_interval(0)AsyncSandbox.set_auto_delete_interval
Section titled “AsyncSandbox.set_auto_delete_interval”@intercept_errors(message_prefix="Failed to set auto-delete interval: ")@with_instrumentation()async def set_auto_delete_interval(interval: int) -> NoneSets the auto-delete interval for the Sandbox.
The Sandbox will automatically delete after being continuously stopped for the specified interval.
Arguments:
intervalint - Number of minutes after which a continuously stopped Sandbox will be auto-deleted. Set to negative value to disable auto-delete. Set to 0 to delete immediately upon stopping. By default, auto-delete is disabled.
Example:
# Auto-delete after 1 hoursandbox.set_auto_delete_interval(60)# Or delete immediately upon stoppingsandbox.set_auto_delete_interval(0)# Or disable auto-deletesandbox.set_auto_delete_interval(-1)AsyncSandbox.update_network_settings
Section titled “AsyncSandbox.update_network_settings”@intercept_errors(message_prefix="Failed to update network settings: ")@with_instrumentation()async def update_network_settings( *, network_block_all: bool | None = None, network_allow_list: str | None = None) -> NoneUpdates outbound network policy on the runner (block all, restore access, or CIDR allow list).
Arguments:
network_block_all- WhenTrue, blocks all outbound traffic. WhenFalse, restores general outbound access (and clears a stored allow list).network_allow_list- Comma-separated IPv4 CIDRs to allow; implies not blocking all.
Raises:
DaytonaValidationError- If neither argument is set.
Example:
await sandbox.update_network_settings(network_block_all=True)await sandbox.update_network_settings(network_block_all=False)AsyncSandbox.get_preview_link
Section titled “AsyncSandbox.get_preview_link”@intercept_errors(message_prefix="Failed to get preview link: ")@with_instrumentation()async def get_preview_link(port: int) -> PortPreviewUrlRetrieves the preview link for the sandbox at the specified port. If the port is closed, it will be opened automatically. For private sandboxes, a token is included to grant access to the URL.
Arguments:
portint - The port to open the preview link on.
Returns:
PortPreviewUrl- The response object for the preview link, which includes theurland thetoken(to access private sandboxes).
Example:
preview_link = sandbox.get_preview_link(3000)print(f"Preview URL: {preview_link.url}")print(f"Token: {preview_link.token}")AsyncSandbox.create_signed_preview_url
Section titled “AsyncSandbox.create_signed_preview_url”@intercept_errors(message_prefix="Failed to create signed preview url: ")async def create_signed_preview_url( port: int, expires_in_seconds: int | None = None) -> SignedPortPreviewUrlCreates a signed preview URL for the sandbox at the specified port.
Arguments:
portint - The port to open the preview link on.expires_in_secondsint | None - The number of seconds the signed preview url will be valid for. Defaults to 60 seconds.
Returns:
SignedPortPreviewUrl- The response object for the signed preview url.
AsyncSandbox.expire_signed_preview_url
Section titled “AsyncSandbox.expire_signed_preview_url”@intercept_errors(message_prefix="Failed to expire signed preview url: ")async def expire_signed_preview_url(port: int, token: str) -> NoneExpires a signed preview URL for the sandbox at the specified port.
Arguments:
portint - The port to expire the signed preview url on.tokenstr - The token to expire the signed preview url on.
AsyncSandbox.archive
Section titled “AsyncSandbox.archive”@intercept_errors(message_prefix="Failed to archive sandbox: ")@with_instrumentation()async def archive() -> NoneArchives the sandbox, making it inactive and preserving its state. When sandboxes are archived, the entire filesystem state is moved to cost-effective object storage, making it possible to keep sandboxes available for an extended period. The tradeoff between archived and stopped states is that starting an archived sandbox takes more time, depending on its size. Sandbox must be stopped before archiving.
AsyncSandbox.resize
Section titled “AsyncSandbox.resize”@intercept_errors(message_prefix="Failed to resize sandbox: ")@with_timeout()@with_instrumentation()async def resize(resources: Resources, timeout: float | None = 60) -> NoneResizes the Sandbox resources.
Changes the CPU, memory, or disk allocation for the Sandbox. Hot resize (on running sandbox) only allows CPU/memory increases. Disk resize requires a stopped sandbox.
Arguments:
resourcesResources - New resource configuration. Only specified fields will be updated.- cpu: Number of CPU cores (minimum: 1). For hot resize, can only be increased.
- memory: Memory in GiB (minimum: 1). For hot resize, can only be increased.
- disk: Disk space in GiB (can only be increased, requires stopped sandbox).
timeoutOptional[float] - Timeout (in seconds) for the resize operation. 0 means no timeout. Default is 60 seconds.
Raises:
DaytonaError- If hot resize constraints are violated (CPU/memory decrease on running sandbox).DaytonaError- If disk resize attempted on running sandbox.DaytonaError- If disk size decrease is attempted.DaytonaError- If resize operation times out.DaytonaError- If no resource changes are specified.
Example:
# Increase CPU/memory on running sandbox (hot resize)await sandbox.resize(Resources(cpu=4, memory=8))
# Change disk (sandbox must be stopped)await sandbox.stop()await sandbox.resize(Resources(cpu=2, memory=4, disk=30))AsyncSandbox.wait_for_resize_complete
Section titled “AsyncSandbox.wait_for_resize_complete”@intercept_errors( message_prefix="Failure during waiting for resize to complete: ")@with_timeout()@with_instrumentation()async def wait_for_resize_complete(timeout: float | None = 60) -> NoneWaits for the Sandbox resize operation to complete. Polls the Sandbox status until the state is no longer ‘resizing’.
Arguments:
timeoutOptional[float] - Maximum time to wait in seconds. 0 means no timeout. Default is 60 seconds.
Raises:
DaytonaError- If timeout is negative. If resize operation times out.
AsyncSandbox.create_ssh_access
Section titled “AsyncSandbox.create_ssh_access”@intercept_errors(message_prefix="Failed to create SSH access: ")@with_instrumentation()async def create_ssh_access( expires_in_minutes: int | None = None) -> SshAccessDtoCreates an SSH access token for the sandbox.
Arguments:
expires_in_minutesint | None - The number of minutes the SSH access token will be valid for.
AsyncSandbox.revoke_ssh_access
Section titled “AsyncSandbox.revoke_ssh_access”@intercept_errors(message_prefix="Failed to revoke SSH access: ")@with_instrumentation()async def revoke_ssh_access(token: str) -> NoneRevokes an SSH access token for the sandbox.
Arguments:
tokenstr - The token to revoke.
AsyncSandbox.validate_ssh_access
Section titled “AsyncSandbox.validate_ssh_access”@intercept_errors(message_prefix="Failed to validate SSH access: ")@with_instrumentation()async def validate_ssh_access(token: str) -> SshAccessValidationDtoValidates an SSH access token for the sandbox.
Arguments:
tokenstr - The token to validate.
AsyncSandbox.refresh_activity
Section titled “AsyncSandbox.refresh_activity”@intercept_errors(message_prefix="Failed to refresh sandbox activity: ")async def refresh_activity() -> NoneRefreshes the sandbox activity to reset the timer for automated lifecycle management actions.
This method updates the sandbox’s last activity timestamp without changing its state. It is useful for keeping long-running sessions alive while there is still user activity.
Example:
await sandbox.refresh_activity()Resources
Section titled “Resources”@dataclassclass Resources()Resources configuration for Sandbox.
Attributes:
cpuint | None - Number of CPU cores to allocate.memoryint | None - Amount of memory in GiB to allocate.diskint | None - Amount of disk space in GiB to allocate.gpuint | None - Number of GPUs to allocate.
Example:
resources = Resources( cpu=2, memory=4, # 4GiB RAM disk=20, # 20GiB disk gpu=1)params = CreateSandboxFromImageParams( image=Image.debian_slim("3.12"), language="python", resources=resources)ListSandboxesQuery
Section titled “ListSandboxesQuery”@dataclassclass ListSandboxesQuery()Query parameters for filtering and sorting when listing Sandboxes.
Attributes:
limit- Per-page fetch size. Does NOT limit the total number of Sandboxes returned.id- Filter by ID prefix (case-insensitive).name- Filter by name prefix (case-insensitive).labels- Filter by labels.states- Filter by states.snapshots- Filter by snapshot names.targets- Filter by targets.min_cpu- Filter by minimum CPU.max_cpu- Filter by maximum CPU.min_memory_gib- Filter by minimum memory in GiB.max_memory_gib- Filter by maximum memory in GiB.min_disk_gib- Filter by minimum disk space in GiB.max_disk_gib- Filter by maximum disk space in GiB.is_public- Filter by public status.is_recoverable- Filter by recoverable status.created_at_afterdatetime - Include sandboxes created after this timestamp.created_at_beforedatetime - Include sandboxes created before this timestamp.last_activity_afterdatetime - Include sandboxes with last activity after this timestamp.last_activity_beforedatetime - Include sandboxes with last activity before this timestamp.sort- Field to sort by.order- Sort direction.