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