Move sal-netconf-connector to plugins/
[netconf.git] / plugins / sal-netconf-connector / src / test / resources / schemas / example-server-farm-2.yang
1 module example-server-farm-2 {
2   yang-version 1.1;
3   namespace "urn:example:server-farm-2";
4   prefix "sfarm2";
5   revision 2019-05-20;
6
7   import example-server-farm { prefix sfarm; revision-date 2018-08-07; }
8
9   augment "/sfarm:server" {
10     container applications {
11       list application {
12         key "name";
13         leaf name {
14           type string;
15         }
16
17         action kill {
18         }
19       }
20     }
21   }
22 }