blob: 5a84595e95f6c476cc12dfa1b448115391d12069 [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 }
14 container valid {
15 config true;
16 leaf invalid-interval {
17 type "uint16";
18 units "seconds";
19 status current;
20 reference "RFC 6020";
21 }
22 }
23 }
24}