blob: e42101ee84b1f440726622055fc19ef89d8d1e57 [file] [log] [blame]
Bharat saraswalb551aae2016-07-14 15:18:20 +05301submodule test2{
2 belongs-to test {
3 prefix test;
4 }
5
Bharat saraswal2d90b0c2016-08-04 02:00:03 +05306 include test3;
Bharat saraswalb551aae2016-07-14 15:18:20 +05307 include test1;
Bharat saraswalb551aae2016-07-14 15:18:20 +05308
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 }
Bharat saraswal2d90b0c2016-08-04 02:00:03 +053055
56 augment /group1/cont3/cont4 {
57 container cont8 {
58 leaf leaf8 {
59 type int32;
60 }
61 }
62 }
Bharat saraswalb551aae2016-07-14 15:18:20 +053063}
64