blob: 2c3ecbc039f4a857ab06797a340ea9b91b41dc7d [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 leaf invalid-interval {
6 type "uint16";
7 units "seconds";
8 description "Interval before a route is declared invalid";
9 config true;
10 mandatory true;
11 status current;
12 reference "RFC 6020";
13 }
14 leaf valid-interval {
15 type "uint16";
16 units "seconds";
17 description "Interval before a route is declared invalid";
18 config true;
19 mandatory true;
20 status current;
21 reference "RFC 6020";
22 }
23 leaf invalid-interval {
24 type "uint16";
25 units "seconds";
26 description "Interval before a route is declared invalid";
27 config true;
28 mandatory true;
29 status current;
30 reference "RFC 6020";
31 }
32}