Skip to main content
Module

x/windmill/mod.ts>JobApi#listJobs

Windmill deno client (separated from the main repo because most of the code is auto-generated from the openapi and not worth committing)
Go to Latest
method JobApi.prototype.listJobs
import { JobApi } from "https://deno.land/x/windmill@v1.28.1/mod.ts";

list all available jobs

Parameters

workspace: string
optional
createdBy: string

mask to filter exact matching user creator

optional
parentJob: string

The parent job that is at the origin and responsible for the execution of this script if any

optional
scriptPathExact: string

mask to filter exact matching path

optional
scriptPathStart: string

mask to filter matching starting path

optional
scriptHash: string

mask to filter exact matching path

optional
createdBefore: Date

filter on created before (inclusive) timestamp

optional
createdAfter: Date

filter on created after (exclusive) timestamp

optional
jobKinds: string

filter on job kind (values 'preview', 'script', 'dependencies', 'flow') separated by,

optional
isSkipped: boolean

is the job skipped

optional
success: boolean

filter on successful jobs

optional
_options: Configuration

Returns

Promise<Array<Job>>