Skip to content

Commit

Permalink
openapi: parameters object in set_workflow_status
Browse files Browse the repository at this point in the history
Signed-off-by: Dinos Kousidis <dinos.kousidis@cern.ch>
  • Loading branch information
dinosk committed Nov 21, 2018
1 parent e720eaa commit 276b0b4
Showing 1 changed file with 15 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -541,11 +541,25 @@
"type": "string"
},
{
"description": "Optional. Additional input parameters and operational options for workflow execution.",
"description": "Optional. Additional input parameters and operational options for workflow execution. Possible parameters are `CACHE=on/off`, passed to disable caching of results in serial workflows, `all_runs=True/False` deletes all runs of a given workflow if status is set to deleted, `workspace=True/False` which deletes the workspace of a workflow and finally `hard_delete=True` which removes completely the workflow data from the database and the workspace from the shared filesystem.",
"in": "body",
"name": "parameters",
"required": false,
"schema": {
"properties": {
"CACHE": {
"type": "string"
},
"all_runs": {
"type": "boolean"
},
"hard_delete": {
"type": "boolean"
},
"workspace": {
"type": "boolean"
}
},
"type": "object"
}
}
Expand Down

0 comments on commit 276b0b4

Please sign in to comment.