aPiecek | 6ff4671 | 2023-04-18 11:00:52 +0200 | [diff] [blame] | 1 | module modaction { |
2 | yang-version 1.1; | ||||
3 | namespace "urn:yanglint:modaction"; | ||||
4 | prefix ma; | ||||
5 | |||||
6 | container con { | ||||
7 | list ls { | ||||
8 | key "lfkey"; | ||||
9 | leaf lfkey { | ||||
10 | type string; | ||||
11 | } | ||||
12 | action act { | ||||
13 | input { | ||||
14 | leaf lfi { | ||||
15 | type string; | ||||
16 | } | ||||
17 | } | ||||
18 | output { | ||||
19 | leaf lfo { | ||||
20 | type int16; | ||||
21 | } | ||||
22 | } | ||||
23 | } | ||||
24 | } | ||||
25 | } | ||||
26 | } |