diff options
author | Dan Timoney <dtimoney@att.com> | 2019-02-05 18:18:26 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-02-05 18:18:26 +0000 |
commit | 54807d8f0cc7d90119ad181d98cd3645de1f2e26 (patch) | |
tree | 0c7af8f149eb5b20fb8d416ed7245d3806df5b6b /sliapi/model/src | |
parent | a989e7526c652ff6469a68444336092ed1ffd77a (diff) | |
parent | 484f1b32f1ef9cfcf74189b701ebb9078ddb0ab8 (diff) |
Merge "Add dummy input"
Diffstat (limited to 'sliapi/model/src')
-rwxr-xr-x | sliapi/model/src/main/yang/sliapi.yang | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sliapi/model/src/main/yang/sliapi.yang b/sliapi/model/src/main/yang/sliapi.yang index 98cbb2aa..b3272be8 100755 --- a/sliapi/model/src/main/yang/sliapi.yang +++ b/sliapi/model/src/main/yang/sliapi.yang @@ -103,12 +103,25 @@ module SLI-API { } rpc healthcheck { + // OpenDaylight Fluorine version of restconf cannot handle RPCs with no input + input { + leaf dummy { + type string; + } + } output { uses response-fields; } } rpc vlbcheck { + // OpenDaylight Fluorine version of restconf cannot handle RPCs with no input + input { + leaf dummy + { + type string; + } + } output { uses response-fields; } |