diff options
author | Ravi Pendurty <ravi.pendurty@highstreet-technologies.com> | 2020-05-19 16:37:06 +0200 |
---|---|---|
committer | Ravi Pendurty <ravi.pendurty@highstreet-technologies.com> | 2020-05-19 16:39:17 +0200 |
commit | 93fa0f8e4d58f4dd9043db8798765e4c15e38434 (patch) | |
tree | 571a168c6144e3ed21f46ab2be0a150dadd03c4c /sdnr/wt/mountpoint-registrar/model/src | |
parent | 02c2ad26a25bcc58eb45b70d8d4cf7d2ef035e4e (diff) |
Include secure communication to DMaaP
Include secure communication from mountpoint-registrar to DMaaP for PNF Registration and fault VES messages consumption
Issue-ID: SDNC-1190
Signed-off-by: Ravi Pendurty <ravi.pendurty@highstreet-technologies.com>
Change-Id: I4f8c74f5179b55d6f3bcedcb02727239e56a7f42
Diffstat (limited to 'sdnr/wt/mountpoint-registrar/model/src')
-rw-r--r-- | sdnr/wt/mountpoint-registrar/model/src/main/yang/mountpoint-registrar.yang | 85 |
1 files changed, 54 insertions, 31 deletions
diff --git a/sdnr/wt/mountpoint-registrar/model/src/main/yang/mountpoint-registrar.yang b/sdnr/wt/mountpoint-registrar/model/src/main/yang/mountpoint-registrar.yang index f3f97aab1..bab6da7bc 100644 --- a/sdnr/wt/mountpoint-registrar/model/src/main/yang/mountpoint-registrar.yang +++ b/sdnr/wt/mountpoint-registrar/model/src/main/yang/mountpoint-registrar.yang @@ -1,41 +1,64 @@ module mountpoint-registrar { - yang-version 1; - namespace "urn:opendaylight:params:xml:ns:yang:mountpoint-registrar"; - prefix "mountpoint-registrar"; + yang-version 1; + namespace "urn:opendaylight:params:xml:ns:yang:mountpoint-registrar"; + prefix mountpoint-registrar; + organization + "highstreet technologies GmbH"; + contact + "Web: <https://highstreet-technologies.com> + ONAP: <https://wiki.onap.org/display/DW/Mountpoint+services<"; + + description + "mountpoint-registrar Api Module + + Copyright 2019 highstreet technologies GmbH Intellectual Property. + All rights reserved. + + Licensed under the Apache License, Version 2.0 (the 'License'); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an 'AS IS' BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License."; + + revision 2019-09-21 { description - "mountpoint-registrar Api Module"; + "Initial revision"; + reference + "https://jira.onap.org/browse/SDNC-1009"; + } - revision "2019-09-21" { + rpc test { + description + "Test RPC that could be used by mountpoint-registrar-provider"; + input { + leaf name { + type string; + mandatory true; + description + "name for test"; + } + leaf test-date { + type string; + mandatory true; description - "Initial revision"; + "date for the test"; + } } - - rpc test { + output { + leaf result-string { + type string; + mandatory true; description - "Test RPC that could be used by mountpoint-registrar-provider"; - input{ - leaf name { - mandatory true; - type string; - description "name for test"; - } - leaf test-date { - mandatory true; - type string; - description "date for the test"; - } - - } - output { - leaf result-string { - mandatory true; - type string; - description "Description for testing"; - } - } + "Description for testing"; + } } - + } } - |