Add schemas with rpc action in augmentation
[integration/test.git] / csit / variables / netconf / CRUD / schemas / augment-main-a.yang
1 module augment-main-a {
2   yang-version 1.1;
3   namespace "ns:augment:main:a";
4   prefix "aumaa";
5
6   import main {prefix mn; revision-date 2014-01-21;}
7
8   revision "2014-01-21" {}
9
10   augment "/mn:cont" {
11     container cont1 {
12       leaf lf11 {
13         type string;
14       }
15
16       action reset {
17        description "Reset an interface.";
18         input {
19           leaf delay {
20             type uint32;
21             units "seconds";
22             default "0";
23             description "Number of seconds to wait before starting the interface reset.";
24           }
25         }
26       }
27     }
28   }
29 }