mistral/releasenotes/notes/sub_execution_api.yaml
ali 06e776e6e3 Added a new API to fetch sub-execution of an execution or a task
*the new endpoints are:

   v2/executions/{ex_id}/executions
   v2/tasks/{task_id}/executions

  it returns a list of execution resources, by default the API will
  return all sub-executions

  the API can take 3 parameters:

  errors_only: returns only the error routes
               - default is False
  include_output: includes the output field for the returned executions
                  - default is False
  max_depth: the max depth for the returned executions
             - if a negative value is given, then the API will return
               all sub-executions
             - default is -1

 Partially-Implements: blueprint mistral-execution-origin

Change-Id: I2a4c5e6890dbb4de868ce885d51341b15e359233
Signed-off-by: ali <ali.abdelal@nokia.com>
2020-01-23 08:50:28 +00:00

5 lines
91 B
YAML

---
features:
- |
Added a new API to fetch sub-executions of an execution or a task.