prefect.server.api.flows
¶
Routes for interacting with flow objects.
count_flows
async
¶
Count flows.
Source code in prefect/server/api/flows.py
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
|
create_flow
async
¶
Gracefully creates a new flow from the provided schema. If a flow with the same name already exists, the existing flow is returned.
Source code in prefect/server/api/flows.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
|
delete_flow
async
¶
Delete a flow by id.
Source code in prefect/server/api/flows.py
145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
|
read_flow
async
¶
Get a flow by id.
Source code in prefect/server/api/flows.py
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
|
read_flow_by_name
async
¶
Get a flow by name.
Source code in prefect/server/api/flows.py
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
|
read_flows
async
¶
Query for flows.
Source code in prefect/server/api/flows.py
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
|
update_flow
async
¶
Updates a flow.
Source code in prefect/server/api/flows.py
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
|