server.web.models.workflow_run_status

Workflow Run Status Database Table.

Classes

WorkflowRunStatus

Workflow Run Status Database Table.

Functions

add_workflow_run_statuses(→ None)

Populate the workflow_run_status table in the database.

Module Contents

class server.web.models.workflow_run_status.WorkflowRunStatus[source]

Bases: jobmon.server.web.models.Base

Workflow Run Status Database Table.

__tablename__ = 'workflow_run_status'[source]
REGISTERED = 'G'[source]
LINKING = 'L'[source]
BOUND = 'B'[source]
ABORTED = 'A'[source]
RUNNING = 'R'[source]
DONE = 'D'[source]
STOPPED = 'S'[source]
ERROR = 'E'[source]
COLD_RESUME = 'C'[source]
HOT_RESUME = 'H'[source]
TERMINATED = 'T'[source]
INSTANTIATED = 'I'[source]
LAUNCHED = 'O'[source]
id[source]
label[source]
description[source]
server.web.models.workflow_run_status.add_workflow_run_statuses(session: sqlalchemy.orm.Session) None[source]

Populate the workflow_run_status table in the database.