blob: e7fbc316daa52b67d77b9d59d2e681b5580c6112 [file] [log] [blame]
Bharat saraswalb1170bd2016-07-14 13:26:18 +05301submodule test1 {
2
3 belongs-to test {
4 prefix test;
5 }
6
7 import test2 {
8 prefix test2;
9 }
10 organization "";
11 contact "";
12
13 description
14 "Defines basic service types for L3VPN service.";
15
16 revision "2015-12-16" {
17 reference "";
18 }
19
20
21 grouping group1 {
22 container cont1 {
23 container cont2 {
Bharat saraswalb551aae2016-07-14 15:18:20 +053024 leaf leaf2 {
Bharat saraswalb1170bd2016-07-14 13:26:18 +053025 type string;
26 }
27 }
28 }
29 }
30
31 augment /test2:cont1/test2:cont2 {
Bharat saraswalb551aae2016-07-14 15:18:20 +053032 leaf leaf3 {
Bharat saraswalb1170bd2016-07-14 13:26:18 +053033 type int32;
34 }
35 container cont2 {
36 leaf leaf1 {
37 type int32;
38 }
39 }
40 }
41}
42