blob: 7eb388013f51b0743a4313b4818600cb343e317e [file] [log] [blame]
Gaurav Agrawalbd804472016-03-25 11:25:36 +05301module Test {
2 yang-version 1;
3 namespace http://huawei.com;
4 prefix Ant;
5 list valid {
6 key address;
7 leaf address {
8 type ip;
9 }
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 }
22}