diff options
Diffstat (limited to 'platform-logic/restconfapi-yang/src')
-rw-r--r-- | platform-logic/restconfapi-yang/src/main/yang/cds/execution-service.yang | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/platform-logic/restconfapi-yang/src/main/yang/cds/execution-service.yang b/platform-logic/restconfapi-yang/src/main/yang/cds/execution-service.yang new file mode 100644 index 00000000..d7cf68f1 --- /dev/null +++ b/platform-logic/restconfapi-yang/src/main/yang/cds/execution-service.yang @@ -0,0 +1,43 @@ +module execution-service { + yang-version 1.1; + namespace "cds:workflow:rest"; + prefix "cds"; + + revision "2019-05-21"; + + container process { + container commonHeader { + leaf originatorId { + type string; + } + leaf requestId { + type string; + } + leaf subRequestId { + type string; + } + } + container actionIdentifiers { + leaf blueprintName { + type string; + } + leaf blueprintVersion { + type string; + } + leaf actionName { + type string; + } + leaf mode { + type string; + } + } + container payload { + leaf-list template-prefix { + type string; + } + container resource-assignment-request { + anyxml resource-assignment-properties; + } + } + } +} |