interface ListAllJobsOptions {
    status?: string;
    submitted_after?: string;
    submitted_before?: number;
}

Hierarchy (view full)

Properties

status?: string

Query jobs that have the specified status. Running, Pending, Success, Failed or InternalError.

submitted_after?: string

Query jobs that were submitted at or after the specified date and time (inclusive).

submitted_before?: number

Query jobs that were submitted at or before the specified date and time (inclusive). The submitted_before must be the same or later than submitted_after.