blob: fedb0aa9d72cd00ef58ec2ce60221e1168905bfd [file] [log] [blame]
Bharat saraswalb551aae2016-07-14 15:18:20 +05301submodule test2{
2 belongs-to test {
3 prefix test;
4 }
5
6 include test1;
7 include test4;
8
9 organization "";
10 contact "";
11
12 description
13 "Defines basic service types for L3VPN service.";
14
15 revision "2015-12-16" {
16 reference "";
17 }
18
19 grouping group2 {
20 container cont11 {
21 }
22 }
23
24 container cont5 {
25 leaf leaf5 {
26 type int32;
27 }
28 container cont6 {
29 leaf leaf6 {
30 type int32;
31 }
32 uses group1;
33 }
34 }
35
36 container ethernet {
37 leaf leaf10 {
38 type string;
39 }
40 }
41
42
43 augment /ethernet {
44 uses group2;
45 }
46
47 augment /cont1/cont2/cont4 {
48 container cont10 {
49 leaf leaf10 {
50 type int32;
51 }
52
53 }
54 }
55}
56