Vidyashree Rama | 1db1556 | 2016-05-17 16:16:15 +0530 | [diff] [blame] | 1 | module Test { |
2 | yang-version 1; | ||||
3 | namespace http://huawei.com; | ||||
4 | prefix Ant; | ||||
5 | grouping network { | ||||
6 | leaf invalid-interval { | ||||
7 | type "string"; | ||||
8 | units "seconds"; | ||||
9 | status current; | ||||
10 | reference "RFC 6020"; | ||||
11 | } | ||||
12 | } | ||||
13 | list valid { | ||||
14 | key "invalid-interval"; | ||||
15 | leaf invalid { | ||||
16 | type "string"; | ||||
17 | units "seconds"; | ||||
18 | status current; | ||||
19 | reference "RFC 6020"; | ||||
20 | } | ||||
21 | uses "network"; | ||||
22 | } | ||||
23 | } |