Move netconf-console to apps/
[netconf.git] / plugins / sal-netconf-connector / src / test / resources / schemas / rpcs-actions-outputs.yang
1 module rpcs-actions-outputs {
2   yang-version 1.1;
3   namespace "urn:example:rpcs-actions-outputs";
4   prefix "rao";
5
6   import example-server-farm { prefix sfarm; revision-date 2018-08-07; }
7
8   augment "/sfarm:device/sfarm:interface" {
9     action check-with-output {
10       output {
11         leaf not-mandatory-message {
12           type string;
13         }
14       }
15     }
16     action check-without-output {
17     }
18   }
19
20   rpc rpc-with-output {
21     output {
22       leaf not-mandatory-message {
23         type string;
24       }
25     }
26   }
27
28   rpc rpc-without-output {
29   }
30 }