diff options
Diffstat (limited to 'plugins/restconf-client/provider/src/test/test-yang/cds')
-rw-r--r-- | plugins/restconf-client/provider/src/test/test-yang/cds/execution-service.yang | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/plugins/restconf-client/provider/src/test/test-yang/cds/execution-service.yang b/plugins/restconf-client/provider/src/test/test-yang/cds/execution-service.yang new file mode 100644 index 000000000..fcd35ed53 --- /dev/null +++ b/plugins/restconf-client/provider/src/test/test-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 { + container resource-assignment-request { + leaf-list template-prefix { + type string; + } + anyxml resource-assignment-properties; + } + } + } +} |