blob: 55a78f6a8f10eb46790e0fe5d6ea857a901d76a6 [file] [log] [blame]
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +05301module Test {
2 yang-version 1;
3 namespace http://huawei.com;
4 prefix Ant;
5 list valid {
6 key "invalid-interval";
7 leaf invalid-interval {
8 type "uint16";
9 units "seconds";
10 description "Interval before a route is declared invalid";
11 config true;
12 mandatory true;
13 status current;
14 reference "RFC 6020";
15 }
16 leaf invalid-interval {
17 type "uint16";
18 units "seconds";
19 description "Interval before a route is declared invalid";
20 config true;
21 mandatory true;
22 status current;
23 reference "RFC 6020";
24 }
25 }
26}