blob: 8042b26c4c03a7076357d288ae547e0912c257c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
|
module keatest-module {
yang-version 1.1;
namespace "urn:ietf:params:xml:ns:yang:keatest-module";
prefix tm;
organization "Sysrepo and ISC";
description
"ISC imported a test module from Sysrepo tests and adapted it
to kea testing regime.";
contact
"kea-dev@lists.isc.org";
revision 2022-11-30 {
description
"Added leafrefs and empty leaf.";
}
revision 2018-11-20 {
description "Initial revision";
reference "";
}
container container {
config true;
list list {
leaf leaf {
type string;
}
leaf key1 {
type string;
}
leaf key2 {
type string;
}
key "key1 key2";
}
}
container main {
leaf enum {
type enumeration {
enum "yes" {
value 1;
}
enum "no" {
value 2;
}
enum "maybe" {
value 3;
}
}
}
leaf options {
type bits {
bit strict;
bit recursive;
bit logging;
}
}
leaf raw {
type binary;
}
leaf dec64 {
type decimal64{
fraction-digits 2;
}
}
leaf i8 {
type int8;
}
leaf i16 {
type int16;
}
leaf i32 {
type int32;
}
leaf i64 {
type int64;
}
leaf ui8 {
type uint8;
}
leaf ui16 {
type uint16;
}
leaf ui32 {
type uint32;
}
leaf ui64 {
type uint64;
}
leaf empty {
type empty;
}
leaf boolean {
type boolean;
}
leaf string {
type string;
}
leaf id_ref {
type identityref {
base base_id;
}
}
leaf-list numbers {
type uint8;
}
leaf instance_id {
type instance-identifier;
}
leaf union {
type union {
type uint8;
type enumeration {
enum "infinity";
}
}
}
leaf leafref-i8 {
type leafref {
path "/main/i8";
}
}
leaf leafref-raw {
type leafref {
path "/main/raw";
}
}
leaf leafref-string {
type leafref {
path "/main/string";
}
}
anyxml xml-data;
anydata any-data;
}
identity base_id;
identity id_1 {
base base_id;
}
identity id_2 {
base base_id;
}
list list {
key "key";
leaf key {
type string;
}
leaf id_ref {
type identityref {
base base_id;
}
}
leaf instance_id {
type instance-identifier;
}
leaf empty {
type empty;
}
}
container kernel-modules {
list kernel-module {
key "name";
leaf name {
type string;
}
leaf location {
type string;
default "/lib/modules";
}
leaf loaded {
type boolean;
}
action load {
input {
leaf params {
mandatory "true";
type string;
}
leaf force {
type boolean;
default "false";
when "../../loaded = 'false'";
}
leaf dry-run {
type boolean;
default false;
}
}
output {
leaf return-code {
type uint8;
}
}
}
}
}
container presence-container {
presence "presence-container";
leaf topleaf1 {
type int8;
}
leaf topleaf2 {
type int8;
}
container child1 {
leaf child1-leaf {
type int8;
}
container grandchild1 {
leaf grandchild1-leaf {
type int8;
default 10;
}
}
}
container child2 {
leaf child2-leaf {
type int8;
}
container grandchild2 {
leaf grandchild2-leaf1 {
type int8;
}
leaf grandchild2-leaf2 {
type int8;
}
leaf grandchild2-leaf3 {
type int8;
}
}
}
}
}
|