Skip to content
View as Markdown
import "github.com/daytona/clients/sdk-go/pkg/options"

Package options provides functional option types for configuring SDK operations.

This package uses the functional options pattern to provide a clean, extensible API for configuring optional parameters. Each option function returns a closure that modifies the corresponding options struct.

Options are passed as variadic arguments to SDK methods:

err := sandbox.Git.Clone(ctx, url, path,
options.WithBranch("develop"),
options.WithUsername("user"),
options.WithPassword("token"),
)

The Apply function creates a new options struct and applies all provided option functions to it:

opts := options.Apply(
options.WithBranch("main"),
options.WithUsername("user"),
)
// opts.Branch == "main", opts.Username == "user"
func Apply[T any](opts ...func(*T)) *T

Apply creates a new instance of type T and applies all provided option functions.

This generic function enables a consistent pattern for applying functional options across different option types. It allocates a zero-value instance of T, then applies each option function in order.

Example:

opts := options.Apply(
options.WithBranch("main"),
options.WithUsername("user"),
)
func WithAllowEmpty(allowEmpty bool) func(*GitCommit)

WithAllowEmpty allows creating a commit even when there are no staged changes.

This is useful for triggering CI/CD pipelines or marking points in history without actual code changes.

Example:

resp, err := sandbox.Git.Commit(ctx, path, "Trigger rebuild", author, email,
options.WithAllowEmpty(true),
)
func WithAuthHost(host string) func(*GitAuthenticate)

WithAuthHost sets the host to authenticate against.

func WithAuthProtocol(protocol string) func(*GitAuthenticate)

WithAuthProtocol sets the protocol to authenticate against.

func WithBare(bare bool) func(*GitInit)

WithBare creates a bare repository without a working tree.

func WithBranch(branch string) func(*GitClone)

WithBranch sets the branch to clone instead of the repository’s default branch.

Example:

err := sandbox.Git.Clone(ctx, url, path, options.WithBranch("develop"))
func WithCloneDepth(depth int32) func(*GitClone)

WithCloneDepth creates a shallow clone truncated to the given number of commits.

Example:

err := sandbox.Git.Clone(ctx, url, path, options.WithCloneDepth(1))
func WithCodeRunLanguage(language types.CodeLanguage) func(*CodeRun)
func WithCodeRunParams(params types.CodeRunParams) func(*CodeRun)

WithCodeRunParams sets the code execution parameters.

Example:

result, err := sandbox.Process.CodeRun(ctx, code,
options.WithCodeRunParams(types.CodeRunParams{Language: "python"}),
)
func WithCodeRunTimeout(timeout time.Duration) func(*CodeRun)

WithCodeRunTimeout sets the timeout for code execution.

If the code doesn’t complete within the timeout, it will be terminated. The HTTP request waits for the full timeout, even beyond the client-wide HTTP timeout. A zero value disables the server-side limit (the wait is bounded only by ctx); negative values are rejected by the API. Values are rounded up to whole seconds (the API granularity).

func WithCommandEnv(env map[string]string) func(*ExecuteCommand)

WithCommandEnv sets environment variables for the command.

These variables are added to the command’s environment in addition to the sandbox’s default environment.

Example:

result, err := sandbox.Process.ExecuteCommand(ctx, "echo $MY_VAR",
options.WithCommandEnv(map[string]string{"MY_VAR": "hello"}),
)
func WithCommitId(commitID string) func(*GitClone)

WithCommitId sets a specific commit SHA to checkout after cloning.

The repository is first cloned, then the specified commit is checked out, resulting in a detached HEAD state.

Example:

err := sandbox.Git.Clone(ctx, url, path, options.WithCommitId("abc123def"))
func WithConfigPath(path string) func(*GitConfig)

WithConfigPath sets the repository path (required for the “local” scope).

func WithConfigScope(scope string) func(*GitConfig)

WithConfigScope sets the config scope (“global”, “local” or “system”).

func WithCreatePtyEnv(env map[string]string) func(*CreatePty)

WithCreatePtyEnv sets environment variables for CreatePty.

Example:

handle, err := sandbox.Process.CreatePty(ctx, "my-pty",
options.WithCreatePtyEnv(map[string]string{"TERM": "xterm-256color"}),
)
func WithCreatePtySize(ptySize types.PtySize) func(*CreatePty)

WithCreatePtySize sets the PTY terminal dimensions for CreatePty.

Example:

handle, err := sandbox.Process.CreatePty(ctx, "my-pty",
options.WithCreatePtySize(types.PtySize{Rows: 24, Cols: 80}),
)
func WithCustomContext(contextID string) func(*RunCode)

WithCustomContext sets the interpreter context ID for code execution.

Using a context allows you to maintain state (variables, imports, etc.) across multiple code executions. Create a context with CreateContext first.

Example:

ctx, _ := sandbox.CodeInterpreter.CreateContext(ctx, nil)
channels, err := sandbox.CodeInterpreter.RunCode(ctx, "x = 42",
options.WithCustomContext(ctx["id"].(string)),
)
func WithCwd(cwd string) func(*ExecuteCommand)

WithCwd sets the working directory for command execution.

Example:

result, err := sandbox.Process.ExecuteCommand(ctx, "ls -la",
options.WithCwd("/home/user/project"),
)
func WithDepth(depth int32) func(*ListFiles)

WithDepth sets how many levels deep to list. Depth 1 (the default) lists the directory’s entries, depth 2 also includes their children, and so on.

Example:

files, err := sandbox.FileSystem.ListFiles(ctx, "/home/user",
options.WithDepth(3),
)
func WithEnv(env map[string]string) func(*RunCode)

WithEnv sets environment variables for code execution.

These variables are available to the code during execution.

Example:

channels, err := sandbox.CodeInterpreter.RunCode(ctx, "import os; print(os.environ['API_KEY'])",
options.WithEnv(map[string]string{"API_KEY": "secret"}),
)
func WithExecuteTimeout(timeout time.Duration) func(*ExecuteCommand)

WithExecuteTimeout sets the timeout for command execution.

If the command doesn’t complete within the timeout, it will be terminated. The HTTP request waits for the full timeout, even beyond the client-wide HTTP timeout. A zero value disables the server-side limit (the wait is bounded only by ctx); negative values are rejected by the API. Values are rounded up to whole seconds (the API granularity).

Example:

result, err := sandbox.Process.ExecuteCommand(ctx, "sleep 60",
options.WithExecuteTimeout(5*time.Minute),
)
func WithExtraIndexURLs(urls ...string) func(*PipInstall)

WithExtraIndexURLs adds extra index URLs for pip install.

Extra indexes are checked in addition to the main index URL. Useful for installing packages from both PyPI and a private index.

Example:

image := daytona.Base("python:3.11").PipInstall(
[]string{"mypackage"},
options.WithExtraIndexURLs("https://private.example.com/simple/"),
)
func WithExtraOptions(options string) func(*PipInstall)

WithExtraOptions adds extra command-line options for pip install.

Use this for pip options not covered by other With* functions.

Example:

image := daytona.Base("python:3.11").PipInstall(
[]string{"mypackage"},
options.WithExtraOptions("--no-cache-dir --upgrade"),
)
func WithFindLinks(links ...string) func(*PipInstall)

WithFindLinks adds find-links URLs for pip install.

Find-links URLs are searched for packages before the package index. Useful for installing packages from local directories or custom URLs.

Example:

image := daytona.Base("python:3.11").PipInstall(
[]string{"mypackage"},
options.WithFindLinks("/path/to/wheels", "https://example.com/wheels/"),
)
func WithForce(force bool) func(*GitDeleteBranch)

WithForce enables force deletion of a branch even if it’s not fully merged.

Use with caution as this can result in lost commits if the branch contains work that hasn’t been merged elsewhere.

Example:

err := sandbox.Git.DeleteBranch(ctx, path, "feature/abandoned",
options.WithForce(true),
)
func WithGroup(group string) func(*SetFilePermissions)

WithGroup sets the file group.

The group should be a valid group name on the sandbox system.

Example:

err := sandbox.FileSystem.SetFilePermissions(ctx, "/home/user/file.txt",
options.WithGroup("users"),
)
func WithIndexURL(url string) func(*PipInstall)

WithIndexURL sets the base URL of the Python Package Index.

Replaces the default PyPI (https://pypi.org/simple\) with a custom index.

Example:

image := daytona.Base("python:3.11").PipInstall(
[]string{"mypackage"},
options.WithIndexURL("https://my-pypi.example.com/simple/"),
)
func WithInitialBranch(initialBranch string) func(*GitInit)

WithInitialBranch sets the name of the initial branch.

func WithInsecureSkipTLS(insecureSkipTLS bool) func(*GitClone)

WithInsecureSkipTLS opts into skipping TLS certificate verification for the clone. Use ONLY when cloning from a trusted internal Git server with a self-signed or private-CA certificate. Credentials, if supplied, will be transmitted over an unverified TLS connection and are exposed to any MITM on the route.

Example:

err := sandbox.Git.Clone(ctx, url, path,
options.WithInsecureSkipTLS(true),
)
func WithInterpreterTimeout(timeout time.Duration) func(*RunCode)

WithInterpreterTimeout sets the execution timeout for code.

If the code doesn’t complete within the timeout, execution is terminated.

Example:

channels, err := sandbox.CodeInterpreter.RunCode(ctx, "import time; time.sleep(60)",
options.WithInterpreterTimeout(5*time.Second),
)
func WithLogChannel(logChannel chan string) func(*CreateSandbox)

WithLogChannel provides a channel for receiving build logs during sandbox creation.

When creating a sandbox from a custom image that requires building, build logs are streamed to the provided channel. The channel is closed when streaming completes. If no build is required, no logs are sent and the channel remains unused.

Example:

logChan := make(chan string)
go func() {
for log := range logChan {
fmt.Println(log)
}
}()
sandbox, err := client.Create(ctx, params,
options.WithLogChannel(logChan),
)
func WithMode(mode string) func(*CreateFolder)

WithMode sets the Unix file permissions for the created folder.

The mode should be specified as an octal string (e.g., “0755”, “0700”). If not specified, defaults to “0755”.

Example:

err := sandbox.FileSystem.CreateFolder(ctx, "/home/user/mydir",
options.WithMode("0700"),
)
func WithOwner(owner string) func(*SetFilePermissions)

WithOwner sets the file owner.

The owner should be a valid username on the sandbox system.

Example:

err := sandbox.FileSystem.SetFilePermissions(ctx, "/home/user/file.txt",
options.WithOwner("root"),
)
func WithPassword(password string) func(*GitClone)

WithPassword sets the password or access token for HTTPS authentication when cloning.

For GitHub, use a Personal Access Token (PAT). For GitLab, use a Project Access Token or Personal Access Token. For Bitbucket, use an App Password.

Example:

err := sandbox.Git.Clone(ctx, url, path,
options.WithUsername("username"),
options.WithPassword("ghp_xxxxxxxxxxxx"),
)
func WithPermissionMode(mode string) func(*SetFilePermissions)

WithPermissionMode sets the Unix file permissions.

The mode should be specified as an octal string (e.g., “0644”, “0755”).

Example:

err := sandbox.FileSystem.SetFilePermissions(ctx, "/home/user/file.txt",
options.WithPermissionMode("0644"),
)
func WithPre() func(*PipInstall)

WithPre enables installation of pre-release and development versions.

Example:

image := daytona.Base("python:3.11").PipInstall(
[]string{"mypackage"},
options.WithPre(),
)
func WithPtyEnv(env map[string]string) func(*PtySession)

WithPtyEnv sets environment variables for the PTY session.

Example:

session, err := sandbox.Process.CreatePtySession(ctx, "my-session",
options.WithPtyEnv(map[string]string{"TERM": "xterm-256color"}),
)
func WithPtySize(size types.PtySize) func(*PtySession)

WithPtySize sets the PTY terminal dimensions.

Example:

session, err := sandbox.Process.CreatePtySession(ctx, "my-session",
options.WithPtySize(types.PtySize{Rows: 24, Cols: 80}),
)
func WithPullBranch(branch string) func(*GitPull)

WithPullBranch sets the branch to pull instead of the current branch’s upstream.

func WithPullPassword(password string) func(*GitPull)

WithPullPassword sets the password or access token for HTTPS authentication when pulling.

Example:

err := sandbox.Git.Pull(ctx, path,
options.WithPullUsername("username"),
options.WithPullPassword("ghp_xxxxxxxxxxxx"),
)
func WithPullRemote(remote string) func(*GitPull)

WithPullRemote sets the remote to pull from instead of “origin”.

func WithPullUsername(username string) func(*GitPull)

WithPullUsername sets the username for HTTPS authentication when pulling.

Example:

err := sandbox.Git.Pull(ctx, path,
options.WithPullUsername("username"),
options.WithPullPassword("github_token"),
)
func WithPushBranch(branch string) func(*GitPush)

WithPushBranch sets the branch to push instead of the current branch.

func WithPushPassword(password string) func(*GitPush)

WithPushPassword sets the password or access token for HTTPS authentication when pushing.

Example:

err := sandbox.Git.Push(ctx, path,
options.WithPushUsername("username"),
options.WithPushPassword("ghp_xxxxxxxxxxxx"),
)
func WithPushRemote(remote string) func(*GitPush)

WithPushRemote sets the remote to push to instead of “origin”.

func WithPushUsername(username string) func(*GitPush)

WithPushUsername sets the username for HTTPS authentication when pushing.

Example:

err := sandbox.Git.Push(ctx, path,
options.WithPushUsername("username"),
options.WithPushPassword("github_token"),
)
func WithRemoteFetch(fetch bool) func(*GitRemoteAdd)

WithRemoteFetch fetches from the remote immediately after adding it.

func WithRemoteOverwrite(overwrite bool) func(*GitRemoteAdd)

WithRemoteOverwrite replaces an existing remote with the same name.

func WithResetFiles(files []string) func(*GitReset)

WithResetFiles constrains the reset to the given paths.

func WithResetMode(mode string) func(*GitReset)

WithResetMode sets the reset mode (“soft”, “mixed”, “hard”, “merge” or “keep”).

func WithResetTarget(target string) func(*GitReset)

WithResetTarget sets the revision to reset to.

func WithRestoreSource(source string) func(*GitRestore)

WithRestoreSource restores file contents from the given revision instead of the index.

func WithRestoreStaged(staged bool) func(*GitRestore)

WithRestoreStaged restores the staging index for the given files.

func WithRestoreWorktree(worktree bool) func(*GitRestore)

WithRestoreWorktree restores the working tree for the given files.

func WithSetUpstream(setUpstream bool) func(*GitPush)

WithSetUpstream records the pushed branch as the upstream tracking branch (git push —set-upstream).

func WithTimeout(timeout time.Duration) func(*CreateSandbox)

WithTimeout sets the maximum duration to wait for sandbox creation to complete.

If the timeout is exceeded before the sandbox is ready, Create returns an error. The default timeout is 60 seconds.

Example:

sandbox, err := client.Create(ctx, params,
options.WithTimeout(5*time.Minute),
)
func WithUsername(username string) func(*GitClone)

WithUsername sets the username for HTTPS authentication when cloning.

For GitHub, GitLab, and similar services, the username is typically your account username or a placeholder like “git” when using tokens.

Example:

err := sandbox.Git.Clone(ctx, url, path,
options.WithUsername("username"),
options.WithPassword("github_token"),
)
func WithWaitForStart(waitForStart bool) func(*CreateSandbox)

WithWaitForStart controls whether [daytona.Client.Create] waits for the sandbox to reach the started state before returning.

When true (the default), Create blocks until the sandbox is fully started and ready for use. When false, Create returns immediately after the sandbox is created, which may be in a pending or building state.

Example:

// Return immediately without waiting for the sandbox to start
sandbox, err := client.Create(ctx, params,
options.WithWaitForStart(false),
)

CodeRun holds optional parameters for [daytona.ProcessService.CodeRun].

type CodeRun struct {
Params *types.CodeRunParams // Code execution parameters
Timeout *time.Duration // Execution timeout
Language types.CodeLanguage // Override the default language
}

CreateFolder holds optional parameters for [daytona.FileSystemService.CreateFolder].

type CreateFolder struct {
Mode *string // Unix file permissions (e.g., "0755")
}

CreatePty holds optional parameters for [daytona.ProcessService.CreatePty].

type CreatePty struct {
PtySize *types.PtySize // Terminal dimensions (rows and columns)
Env map[string]string // Environment variables for the PTY session
}

CreateSandbox holds optional parameters for [daytona.Client.Create].

type CreateSandbox struct {
Timeout *time.Duration // Maximum time to wait for sandbox creation
WaitForStart bool // Whether to wait for the sandbox to reach started state
LogChannel chan string // Channel for receiving build logs during image builds
}

ExecuteCommand holds optional parameters for [daytona.ProcessService.ExecuteCommand].

type ExecuteCommand struct {
Cwd *string // Working directory for command execution
Env map[string]string // Environment variables
Timeout *time.Duration // Command execution timeout
}

GitAuthenticate holds optional parameters for [daytona.GitService.DangerouslyAuthenticate].

type GitAuthenticate struct {
Host *string // Host to authenticate against (defaults to "github.com")
Protocol *string // Protocol to authenticate against (defaults to "https")
}

GitClone holds optional parameters for [daytona.GitService.Clone].

Fields are pointers to distinguish between unset values and zero values. Use the corresponding With* functions to set these options.

type GitClone struct {
Branch *string // Branch to clone (defaults to repository's default branch)
CommitId *string // Specific commit SHA to checkout after cloning
Username *string // Username for HTTPS authentication
Password *string // Password or token for HTTPS authentication
InsecureSkipTLS *bool // Skip TLS certificate verification (insecure). Use only for trusted internal Git servers with self-signed or private-CA certs.
Depth *int32 // Create a shallow clone truncated to the given number of commits
}

GitCommit holds optional parameters for [daytona.GitService.Commit].

type GitCommit struct {
AllowEmpty *bool // Allow creating commits with no staged changes
}

GitConfig holds optional parameters for the git config operations ([daytona.GitService.SetConfig], [daytona.GitService.GetConfig] and [daytona.GitService.ConfigureUser]).

type GitConfig struct {
Scope *string // Config scope: "global" (default), "local" or "system"
Path *string // Repository path, required when scope is "local"
}

GitDeleteBranch holds optional parameters for [daytona.GitService.DeleteBranch].

type GitDeleteBranch struct {
Force *bool // Force delete even if branch is not fully merged
}

GitInit holds optional parameters for [daytona.GitService.Init].

type GitInit struct {
Bare *bool // Create a bare repository without a working tree
InitialBranch *string // Name of the initial branch (defaults to the Git default)
}

GitPull holds optional parameters for [daytona.GitService.Pull].

type GitPull struct {
Username *string // Username for HTTPS authentication
Password *string // Password or token for HTTPS authentication
Branch *string // Branch to pull (defaults to the current branch's upstream)
Remote *string // Remote to pull from (defaults to "origin")
}

GitPush holds optional parameters for [daytona.GitService.Push].

type GitPush struct {
Username *string // Username for HTTPS authentication
Password *string // Password or token for HTTPS authentication
Branch *string // Branch to push (defaults to the current branch)
Remote *string // Remote to push to (defaults to "origin")
SetUpstream *bool // Record the pushed branch as the upstream tracking branch
}

GitRemoteAdd holds optional parameters for [daytona.GitService.RemoteAdd].

type GitRemoteAdd struct {
Fetch *bool // Fetch from the remote immediately after adding it
Overwrite *bool // Replace an existing remote with the same name
}

GitReset holds optional parameters for [daytona.GitService.Reset].

type GitReset struct {
Mode *string // Reset mode: "soft", "mixed" (default), "hard", "merge" or "keep"
Target *string // Revision to reset to (defaults to HEAD)
Files []string // Constrain the reset to the given paths
}

GitRestore holds optional parameters for [daytona.GitService.Restore].

type GitRestore struct {
Staged *bool // Restore the staging index for the given files
Worktree *bool // Restore the working tree for the given files (default when neither is set)
Source *string // Restore file contents from the given revision instead of the index
}

ListFiles holds optional parameters for [daytona.FileSystemService.ListFiles].

type ListFiles struct {
Depth *int32 // How many levels deep to list (default: 1, must be >= 1)
}

PipInstall holds optional parameters for [daytona.Image.PipInstall].

type PipInstall struct {
FindLinks []string // URLs to search for packages
IndexURL string // Base URL of the Python Package Index
ExtraIndexURLs []string // Extra index URLs for package lookup
Pre bool // Allow pre-release and development versions
ExtraOptions string // Additional pip command-line options
}

PtySession holds optional parameters for [daytona.ProcessService.CreatePtySession].

type PtySession struct {
PtySize *types.PtySize // Terminal dimensions (rows and columns)
Env map[string]string // Environment variables for the PTY session
}

RunCode holds optional parameters for [daytona.CodeInterpreterService.RunCode].

type RunCode struct {
ContextID string // Interpreter context ID for persistent state
Env map[string]string // Environment variables for code execution
Timeout *time.Duration // Execution timeout
}

SetFilePermissions holds optional parameters for [daytona.FileSystemService.SetFilePermissions].

type SetFilePermissions struct {
Mode *string // Unix file permissions (e.g., "0644")
Owner *string // File owner username
Group *string // File group name
}