Delete netconf
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / test / resources / instanceidentifier / yang / augment-module.yang
1 module augment-module {
2   namespace "augment:module";
3
4   prefix "amodule";
5
6   import instance-identifier-module {prefix imodule; revision-date 2014-01-17;}
7
8   revision 2014-01-17 {
9   }
10
11         augment "/imodule:cont/imodule:cont1" {
12            list lst11 {
13                key "keyvalue111 keyvalue112";
14                leaf keyvalue111 {
15                    type string;
16                }
17                leaf keyvalue112 {
18                    type string;
19                }
20            }
21         }
22
23     augment "/imodule:cont" {
24             container cont-augment {
25             leaf leaf1 {
26                 type string;
27             }
28         }
29         }
30
31     augment "/imodule:cont" {
32         choice augment-choice1 {
33             case case1 {
34                 container case-container1 {
35                     leaf case-leaf1 {
36                         type string;
37                     }
38                 }
39             }
40
41             case case2 {
42                 container case-container2 {
43                     leaf case-leaf2 {
44                         type string;
45                     }
46                 }
47             }
48         }
49     }
50
51     augment "/imodule:cont/augment-choice1/case1" {
52         choice augment-choice2 {
53             case case11 {
54                 container case-choice-case-container1 {
55                     leaf case-choice-case-leaf1 {
56                         type string;
57                     }
58                 }
59             }
60         }
61     }
62
63 }