prefect.server.api.flow_run_states
Routes for interacting with flow run state objects.
read_flow_run_state(flow_run_state_id=Path(..., description='The flow run state id', alias='id'), db=Depends(provide_database_interface))
async
Get a flow run state by id.
Source code in src/prefect/server/api/flow_run_states.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
|
read_flow_run_states(flow_run_id, db=Depends(provide_database_interface))
async
Get states associated with a flow run.
Source code in src/prefect/server/api/flow_run_states.py
40 41 42 43 44 45 46 47 48 49 50 51 |
|