ajay_dp001 | ebc79b2 | 2020-04-14 13:07:48 +0530 | [diff] [blame] | 1 | module mynetconf { |
2 | yang-version 1.1; | ||||
3 | namespace "urn:mynetconf:test"; | ||||
4 | |||||
5 | prefix nft; | ||||
6 | |||||
7 | organization | ||||
8 | "mynetconf"; | ||||
9 | contact | ||||
10 | "my netconf address"; | ||||
11 | description | ||||
12 | "yang model for mynetconf"; | ||||
13 | revision "2019-03-01" { | ||||
14 | description | ||||
15 | "initial version"; | ||||
16 | } | ||||
17 | |||||
18 | container netconflist { | ||||
19 | list netconf { | ||||
20 | key netconf-id; | ||||
21 | leaf netconf-id { | ||||
22 | type uint16; | ||||
23 | } | ||||
24 | leaf netconf-param { | ||||
25 | type uint32; | ||||
26 | } | ||||
27 | } | ||||
28 | } | ||||
29 | } |