Vidyashree Rama | f67c4ba | 2016-02-24 12:28:22 +0530 | [diff] [blame] | 1 | module 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 | } | ||||
Gaurav Agrawal | f6ccc97 | 2016-03-25 11:25:36 +0530 | [diff] [blame] | 14 | container valid { |
Vidyashree Rama | f67c4ba | 2016-02-24 12:28:22 +0530 | [diff] [blame] | 15 | config true; |
16 | leaf invalid-interval { | ||||
17 | type "uint16"; | ||||
18 | units "seconds"; | ||||
19 | status current; | ||||
20 | reference "RFC 6020"; | ||||
21 | } | ||||
Gaurav Agrawal | f6ccc97 | 2016-03-25 11:25:36 +0530 | [diff] [blame] | 22 | } |
Vidyashree Rama | f67c4ba | 2016-02-24 12:28:22 +0530 | [diff] [blame] | 23 | } |
24 | } |