blob: 2c5dc206dc5a2081de0780e876a6a607c641225d [file] [log] [blame]
Bharat saraswalb551aae2016-07-14 15:18:20 +05301submodule test1 {
2
3 belongs-to test {
4 prefix test;
5 }
6
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 container cont1 {
20 leaf leaf1 {
21 type int32;
22 }
23 container cont2 {
24 leaf leaf2 {
25 type int32;
26 }
27 }
28 }
29
30 augment /cont1/cont2 {
31 container cont4 {
32 leaf leaf1 {
33 type int32;
34 }
35 }
36 }
37
38 augment /group1/cont3/cont4 {
39 container cont8 {
40 leaf leaf8 {
41 type int32;
42 }
43 }
44 }
45
46}
47