@runloop/api-client - v1.4.0
    Preparing search index...

    Interface DevboxAsyncExecutionDetailView

    Details of an asynchronous command execution on a Devbox.

    interface DevboxAsyncExecutionDetailView {
        devbox_id: string;
        execution_id: string;
        status: "queued" | "running" | "completed";
        exit_status?: number | null;
        shell_name?: string | null;
        stderr?: string | null;
        stderr_truncated?: boolean | null;
        stdout?: string | null;
        stdout_truncated?: boolean | null;
    }
    Index

    Properties

    devbox_id: string

    Devbox id where command was executed.

    execution_id: string

    Ephemeral id of the execution in progress.

    status: "queued" | "running" | "completed"

    Current status of the execution.

    exit_status?: number | null

    Exit code of command execution. This field will remain unset until the execution has completed.

    shell_name?: string | null

    Shell name.

    stderr?: string | null

    Standard error generated by command. This field will remain unset until the execution has completed.

    stderr_truncated?: boolean | null

    Indicates whether the stderr was truncated due to size limits.

    stdout?: string | null

    Standard out generated by command. This field will remain unset until the execution has completed.

    stdout_truncated?: boolean | null

    Indicates whether the stdout was truncated due to size limits.