blob: 1adf6c923fa066aa853252541d263adf87a1ff4e [file] [log] [blame]
Vidyashree Ramaaf9ad132018-02-09 18:13:09 +05301module example-ops {
2 namespace "https://example.com/ns/example-ops";
3 prefix "ops";
4 revision "2016-07-07" {
5 description "Initial version.";
6 reference "example.com document 3-3373.";
7 }
8
9 rpc reboot {
10 input {
11 leaf delay {
12 type string;
13 }
14 leaf message {
15 type string;
16 }
17 leaf language {
18 type string;
19 }
20 }
21 output {
22 leaf reboot-time {
23 type string;
24 }
25 leaf message {
26 type string;
27 }
28 leaf language {
29 type string;
30 }
31 }
32 }
33}