blob: 6c8c36ab011796e38599d40975322d8015e0460c [file] [log] [blame]
ajay_dp001ebc79b22020-04-14 13:07:48 +05301module 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}