class
IScriptJobList.
IScriptJobList
Bases: object
Provides access to jobs.
create
title
Creates a new job. Job is not automatically added. job.commit() must be called.
all
Retrieves the jobs.
Array of IScriptJob
by_id
job_guid
Retrieves job by specified job id.
by_issuer
issuer
Retrieves the jobs of specified issuer.
issuer (string) -- The issuer.
The jobs
IScriptJob[]
by_assigned_to
assigned_to
Retrieves the jobs of specified "assigned to".
assigned_to (string) -- The assigned to.
The jobs
IScriptJob[]
by_type
type
Retrieves the jobs with specified job type.
by_state
state
Retrieves the jobs with specified job state.
by_urgency
urgency
Retrieves the jobs with specified job urgency.
by_contains_tag
*tag
Retrieves the jobs with specified tag.
tag (string[]) -- The tag.
The jobs
IScriptJob[]