lukegleeson | e1308ac | 2021-09-30 13:36:37 +0100 | [diff] [blame] | 1 | module dmi-registry { |
2 | |||||
3 | yang-version 1.1; | ||||
4 | |||||
5 | namespace \"org:onap:cps:ncmp\"; | ||||
6 | |||||
7 | prefix dmi-reg; | ||||
8 | |||||
9 | organization \"Nordix Foundation\"; | ||||
10 | |||||
11 | contact \"rahul.tyagi@est.tech\"; | ||||
12 | |||||
13 | revision \"2021-05-20\" { | ||||
14 | description | ||||
15 | \"Initial Version\"; | ||||
16 | } | ||||
17 | |||||
18 | container dmi-registry { | ||||
19 | |||||
20 | list cm-handles { | ||||
21 | |||||
22 | key \"id\"; | ||||
23 | |||||
24 | leaf id { | ||||
25 | type string; | ||||
26 | } | ||||
27 | |||||
28 | leaf dmi-service-name { | ||||
29 | type string; | ||||
30 | } | ||||
31 | |||||
32 | list additional-properties { | ||||
33 | |||||
34 | key \"name\"; | ||||
35 | |||||
36 | leaf name { | ||||
37 | type string; | ||||
38 | } | ||||
39 | |||||
40 | leaf value { | ||||
41 | type string; | ||||
42 | } | ||||
43 | } | ||||
44 | } | ||||
45 | } | ||||
46 | } |