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

    Interface DevboxWaitForCommandParams

    interface DevboxWaitForCommandParams {
        statuses: ("queued" | "running" | "completed")[];
        last_n?: string;
        timeout_seconds?: number | null;
    }
    Index

    Properties

    statuses: ("queued" | "running" | "completed")[]

    Body param: The command execution statuses to wait for. At least one status must be provided. The command will be returned as soon as it reaches any of the provided statuses.

    last_n?: string

    Query param: Last n lines of standard error / standard out to return (default: 100)

    timeout_seconds?: number | null

    Body param: (Optional) Timeout in seconds to wait for the status, up to 25 seconds. Defaults to 25 seconds.