blob: 3158dd439144bab6cf0dc17b5837a3f3cb317588 [file] [log] [blame]
Vidyashree Ramaf4c617c2016-02-24 12:28:22 +05301module Test {
2 yang-version 1;
3 namespace http://huawei.com;
4 prefix Ant;
5 list valid {
6 config false;
7 key "invalid-interval";
8 leaf invalid-interval {
9 type "uint16";
10 units "seconds";
11 status current;
12 reference "RFC 6020";
13 }
Gaurav Agrawalbd804472016-03-25 11:25:36 +053014 container valid {
Vidyashree Ramaf4c617c2016-02-24 12:28:22 +053015 config true;
16 leaf invalid-interval {
17 type "uint16";
18 units "seconds";
19 status current;
20 reference "RFC 6020";
21 }
Gaurav Agrawalbd804472016-03-25 11:25:36 +053022 }
Vidyashree Ramaf4c617c2016-02-24 12:28:22 +053023 }
24}