Gaurav Agrawal | bd80447 | 2016-03-25 11:25:36 +0530 | [diff] [blame] | 1 | module Test { |
2 | yang-version 1; | ||||
3 | namespace http://huawei.com; | ||||
4 | prefix Ant; | ||||
Vinod Kumar S | d4deb06 | 2016-04-15 18:08:57 +0530 | [diff] [blame] | 5 | import ietf-yang-types { |
6 | prefix "P"; | ||||
7 | } | ||||
Gaurav Agrawal | bd80447 | 2016-03-25 11:25:36 +0530 | [diff] [blame] | 8 | list valid { |
9 | key address; | ||||
10 | grouping endpoint { | ||||
11 | description "grouping under test"; | ||||
12 | status current; | ||||
13 | reference "RFC 6020"; | ||||
14 | leaf address { | ||||
15 | type ip-address; | ||||
16 | } | ||||
17 | leaf port { | ||||
18 | type port-number; | ||||
19 | } | ||||
20 | } | ||||
21 | leaf address { | ||||
22 | type ip; | ||||
23 | } | ||||
24 | grouping endpoint { | ||||
25 | description "grouping under test"; | ||||
26 | status current; | ||||
27 | reference "RFC 6020"; | ||||
28 | leaf address { | ||||
29 | type ip-address; | ||||
30 | } | ||||
31 | leaf port { | ||||
32 | type port-number; | ||||
33 | } | ||||
34 | } | ||||
35 | } | ||||
36 | } |