blob: 0adf3d333c556d3047292a0994afa854fe4ce32d [file] [log] [blame]
Vidyashree Rama6a72b792016-03-29 12:00:42 +05301module rock {
2 namespace "http://example.net/rock";
3 prefix "rock";
4
5 rpc activate-software-image {
6 description "description";
7 input {
8 leaf image-name {
9 type string;
10 }
11 list ospf {
12 key "invalid-interval";
13 config true;
14 max-elements 10;
15 min-elements 3;
16 leaf invalid-interval {
17 type uint16;
18 }
19 }
20 container isis {
21 config true;
22 leaf invalid-interval {
23 type uint16;
24 }
25 }
26 }
27 }
28}