server.web.routes.v3.fsm.task
Routes for Tasks.
Attributes
Functions
|
Bind the task objects to the database. |
|
Add task args and associated task ids to the database. |
|
Add task attributes and associated attribute types to the database. |
|
Add the task resources for a given task. |
|
Route to determine the cause of the most recent task_instance's error. |
|
An endpoint to set all tasks to a resumable state for a workflow. |
Module Contents
- server.web.routes.v3.fsm.task.logger
- async server.web.routes.v3.fsm.task.bind_tasks_no_args(request: fastapi.Request, db: sqlalchemy.orm.Session = Depends(get_db)) Any
Bind the task objects to the database.
- async server.web.routes.v3.fsm.task.bind_task_args(request: fastapi.Request, db: sqlalchemy.orm.Session = Depends(get_db), dialect: str = Depends(get_dialect)) Any
Add task args and associated task ids to the database.
- async server.web.routes.v3.fsm.task.bind_task_attributes(request: fastapi.Request, db: sqlalchemy.orm.Session = Depends(get_db), dialect: str = Depends(get_dialect)) Any
Add task attributes and associated attribute types to the database.
- async server.web.routes.v3.fsm.task.bind_task_resources(request: fastapi.Request, db: sqlalchemy.orm.Session = Depends(get_db)) Any
Add the task resources for a given task.