workflowtask
WorkflowTaskImportV2
¶
Bases: BaseModel
Source code in fractal_server/app/schemas/v2/workflowtask.py
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 |
|
update_legacy_filters(values)
classmethod
¶
Transform legacy filters (created with fractal-server<2.11.0) into type filters
Source code in fractal_server/app/schemas/v2/workflowtask.py
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 |
|
WorkflowTaskReplaceV2
¶
Bases: BaseModel
Used by 'replace-task' endpoint
Source code in fractal_server/app/schemas/v2/workflowtask.py
96 97 98 99 100 |
|
WorkflowTaskStatusTypeV2
¶
Bases: str
, Enum
Define the available values for the status of a WorkflowTask
.
This model is used within the Dataset.history
attribute, which is
constructed in the runner and then used in the API (e.g. in the
api/v2/project/{project_id}/dataset/{dataset_id}/status
endpoint).
Attributes:
Name | Type | Description |
---|---|---|
SUBMITTED |
The |
|
DONE |
The most-recent execution of this |
|
FAILED |
The most-recent execution of this |
Source code in fractal_server/app/schemas/v2/workflowtask.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
|