diff options
author | KAPIL SINGAL <ks220y@att.com> | 2020-09-29 15:04:33 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-09-29 15:04:33 +0000 |
commit | 30d59d2339aed659540c7af63e0de7644df2c3e6 (patch) | |
tree | 78c5992c5790b8117d28aa3e150957b3423d0fd3 /docs/microservices/workflow.rst | |
parent | 4726dfef46e024941f25be2c9d4ee66a5b1798ba (diff) | |
parent | 51e7c12ccd4889cea181d92b368e1b74622ac769 (diff) |
Merge "Refactoring and fixing Docs"
Diffstat (limited to 'docs/microservices/workflow.rst')
-rw-r--r-- | docs/microservices/workflow.rst | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/docs/microservices/workflow.rst b/docs/microservices/workflow.rst index b6ea1e6fd..5a564870c 100644 --- a/docs/microservices/workflow.rst +++ b/docs/microservices/workflow.rst @@ -4,7 +4,6 @@ Workflow ======== - A workflow defines an overall action to be taken on the service, hence is an entry-point for the run-time execution of the CBA package. A workflow also defines inputs and outputs that will defined the payload contract of the request and response (see Dynamic API) @@ -13,11 +12,12 @@ A workflow can be composed of one or multiple sub-actions to execute. A CBA package can have as many workflows as needed. + Single action ------------- - The workflow is directly backed by a node_template of type tosca.nodes.Component + Multiple sub-actions -------------------- The workflow is backed by Directed Graph engine, node_template of type dg-generic, and are imperative workflows. @@ -27,11 +27,9 @@ A DG used as workflow for CDS is composed of multiple execute nodes; each indivi Below the properties of a workflow: - Workflow Example ---------------- - -:: +.. code-block:: json { "workflow": { @@ -41,7 +39,7 @@ Workflow Example "required": true, "type": "string" }, - "resource-assignment-properties": { <- dynamic inputs + "resource-assignment-properties": { <- dynamic inputs "required": true, "type": "dt-resource-assignment-properties" } |