blob: 672ebdd504e0d77347540adfa8b047f5e7e16d9b [file] [log] [blame]
Vidyashree Rama49abe712016-02-13 22:22:12 +05301
2module Test {
3 yang-version 1;
4 namespace http://huawei.com;
5 prefix Ant;
6 list valid {
janani b23ccc312016-07-14 19:35:22 +05307 key "invalid";
Vidyashree Rama49abe712016-02-13 22:22:12 +05308 leaf-list invalid-interval {
9 type "uint16";
10 units "seconds";
11 description "Interval before a route is declared invalid";
12 config true;
13 status current;
14 reference "RFC 6020";
15 }
janani b23ccc312016-07-14 19:35:22 +053016 leaf invalid {
17 type "uint16";
18 }
Vidyashree Rama49abe712016-02-13 22:22:12 +053019 }
20}