pmcf 2.74.4 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/src/base.mjs +14 -16
- package/src/cluster.mjs +5 -5
- package/src/extra-source-service.mjs +1 -1
- package/src/host.mjs +19 -19
- package/src/location.mjs +1 -1
- package/src/network-interfaces/ethernet.mjs +1 -1
- package/src/network-interfaces/network-interface.mjs +6 -6
- package/src/network-support.mjs +14 -14
- package/src/network.mjs +2 -2
- package/src/owner.mjs +11 -11
- package/src/service.mjs +7 -7
- package/src/services/bind.mjs +18 -18
- package/src/services/chrony.mjs +0 -1
- package/src/services/kea.mjs +46 -6
- package/src/services/openldap.mjs +3 -3
- package/src/services/systemd-journal-upload.mjs +1 -1
- package/src/subnet.mjs +3 -3
- package/src/types.mjs +1 -1
- package/types/base.d.mts +29 -19
- package/types/cluster.d.mts +101 -107
- package/types/extra-source-service.d.mts +43 -42
- package/types/host.d.mts +53 -61
- package/types/location.d.mts +87 -84
- package/types/network-interfaces/ethernet.d.mts +98 -106
- package/types/network-interfaces/loopback.d.mts +96 -104
- package/types/network-interfaces/network-interface.d.mts +96 -104
- package/types/network-interfaces/wireguard.d.mts +96 -104
- package/types/network-interfaces/wlan.d.mts +145 -157
- package/types/network-support.d.mts +16 -27
- package/types/network.d.mts +53 -57
- package/types/owner.d.mts +43 -41
- package/types/root.d.mts +87 -84
- package/types/service.d.mts +86 -87
- package/types/services/bind.d.mts +101 -111
- package/types/services/chrony.d.mts +83 -81
- package/types/services/influxdb.d.mts +82 -80
- package/types/services/kea.d.mts +164 -81
- package/types/services/mosquitto.d.mts +82 -80
- package/types/services/openldap.d.mts +85 -86
- package/types/services/systemd-journal-remote.d.mts +82 -80
- package/types/services/systemd-journal-upload.d.mts +83 -82
- package/types/services/systemd-journal.d.mts +82 -80
- package/types/services/systemd-resolved.d.mts +82 -80
- package/types/services/systemd-timesyncd.d.mts +82 -80
- package/types/subnet.d.mts +3 -4
|
@@ -12,24 +12,28 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
12
12
|
owner: {
|
|
13
13
|
type: string;
|
|
14
14
|
collection: boolean;
|
|
15
|
-
|
|
16
|
-
};
|
|
17
|
-
type: {
|
|
18
|
-
type: string;
|
|
19
|
-
collection: boolean;
|
|
20
|
-
writeable: boolean;
|
|
15
|
+
writable: boolean;
|
|
21
16
|
};
|
|
17
|
+
type: import("pacc").AttributeDefinition;
|
|
22
18
|
name: {
|
|
19
|
+
isKey: boolean;
|
|
20
|
+
writable: boolean;
|
|
23
21
|
type: string;
|
|
22
|
+
mandatory: boolean;
|
|
24
23
|
collection: boolean;
|
|
25
|
-
|
|
26
|
-
|
|
24
|
+
private?: boolean;
|
|
25
|
+
depends?: string;
|
|
26
|
+
additionalAttributes: string[];
|
|
27
|
+
description?: string;
|
|
28
|
+
default?: any;
|
|
29
|
+
set?: Function;
|
|
30
|
+
get?: Function;
|
|
31
|
+
env?: string[] | string;
|
|
27
32
|
};
|
|
28
33
|
description: {
|
|
29
|
-
|
|
34
|
+
writable: boolean;
|
|
30
35
|
type: string;
|
|
31
36
|
isKey: boolean;
|
|
32
|
-
writable: boolean;
|
|
33
37
|
mandatory: boolean;
|
|
34
38
|
collection: boolean;
|
|
35
39
|
private?: boolean;
|
|
@@ -44,13 +48,12 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
44
48
|
priority: {
|
|
45
49
|
type: string;
|
|
46
50
|
collection: boolean;
|
|
47
|
-
|
|
51
|
+
writable: boolean;
|
|
48
52
|
};
|
|
49
53
|
directory: {
|
|
50
|
-
|
|
54
|
+
writable: boolean;
|
|
51
55
|
type: string;
|
|
52
56
|
isKey: boolean;
|
|
53
|
-
writable: boolean;
|
|
54
57
|
mandatory: boolean;
|
|
55
58
|
collection: boolean;
|
|
56
59
|
private?: boolean;
|
|
@@ -63,10 +66,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
63
66
|
env?: string[] | string;
|
|
64
67
|
};
|
|
65
68
|
packaging: {
|
|
66
|
-
|
|
69
|
+
writable: boolean;
|
|
67
70
|
type: string;
|
|
68
71
|
isKey: boolean;
|
|
69
|
-
writable: boolean;
|
|
70
72
|
mandatory: boolean;
|
|
71
73
|
collection: boolean;
|
|
72
74
|
private?: boolean;
|
|
@@ -79,17 +81,25 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
79
81
|
env?: string[] | string;
|
|
80
82
|
};
|
|
81
83
|
disabled: {
|
|
84
|
+
writable: boolean;
|
|
85
|
+
default: boolean;
|
|
82
86
|
type: string;
|
|
87
|
+
isKey: boolean;
|
|
88
|
+
mandatory: boolean;
|
|
83
89
|
collection: boolean;
|
|
84
|
-
|
|
85
|
-
|
|
90
|
+
private?: boolean;
|
|
91
|
+
depends?: string;
|
|
92
|
+
additionalAttributes: string[];
|
|
93
|
+
description?: string;
|
|
94
|
+
set?: Function;
|
|
95
|
+
get?: Function;
|
|
96
|
+
env?: string[] | string;
|
|
86
97
|
};
|
|
87
98
|
tags: {
|
|
88
99
|
collection: boolean;
|
|
89
|
-
|
|
100
|
+
writable: boolean;
|
|
90
101
|
type: string;
|
|
91
102
|
isKey: boolean;
|
|
92
|
-
writable: boolean;
|
|
93
103
|
mandatory: boolean;
|
|
94
104
|
private?: boolean;
|
|
95
105
|
depends?: string;
|
|
@@ -108,13 +118,12 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
108
118
|
services: {
|
|
109
119
|
type: string;
|
|
110
120
|
collection: boolean;
|
|
111
|
-
|
|
121
|
+
writable: boolean;
|
|
112
122
|
};
|
|
113
123
|
hostName: {
|
|
114
|
-
|
|
124
|
+
writable: boolean;
|
|
115
125
|
type: string;
|
|
116
126
|
isKey: boolean;
|
|
117
|
-
writable: boolean;
|
|
118
127
|
mandatory: boolean;
|
|
119
128
|
collection: boolean;
|
|
120
129
|
private?: boolean;
|
|
@@ -127,10 +136,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
127
136
|
env?: string[] | string;
|
|
128
137
|
};
|
|
129
138
|
ipAddresses: {
|
|
130
|
-
|
|
139
|
+
writable: boolean;
|
|
131
140
|
type: string;
|
|
132
141
|
isKey: boolean;
|
|
133
|
-
writable: boolean;
|
|
134
142
|
mandatory: boolean;
|
|
135
143
|
collection: boolean;
|
|
136
144
|
private?: boolean;
|
|
@@ -143,10 +151,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
143
151
|
env?: string[] | string;
|
|
144
152
|
};
|
|
145
153
|
hwaddr: {
|
|
146
|
-
|
|
154
|
+
writable: boolean;
|
|
147
155
|
type: string;
|
|
148
156
|
isKey: boolean;
|
|
149
|
-
writable: boolean;
|
|
150
157
|
mandatory: boolean;
|
|
151
158
|
collection: boolean;
|
|
152
159
|
private?: boolean;
|
|
@@ -161,13 +168,12 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
161
168
|
network: {
|
|
162
169
|
type: string;
|
|
163
170
|
collection: boolean;
|
|
164
|
-
|
|
171
|
+
writable: boolean;
|
|
165
172
|
};
|
|
166
173
|
destination: {
|
|
167
|
-
|
|
174
|
+
writable: boolean;
|
|
168
175
|
type: string;
|
|
169
176
|
isKey: boolean;
|
|
170
|
-
writable: boolean;
|
|
171
177
|
mandatory: boolean;
|
|
172
178
|
collection: boolean;
|
|
173
179
|
private?: boolean;
|
|
@@ -181,10 +187,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
181
187
|
};
|
|
182
188
|
cidrAddresses: {
|
|
183
189
|
collection: boolean;
|
|
184
|
-
|
|
190
|
+
writable: boolean;
|
|
185
191
|
type: string;
|
|
186
192
|
isKey: boolean;
|
|
187
|
-
writable: boolean;
|
|
188
193
|
mandatory: boolean;
|
|
189
194
|
private?: boolean;
|
|
190
195
|
depends?: string;
|
|
@@ -196,10 +201,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
196
201
|
env?: string[] | string;
|
|
197
202
|
};
|
|
198
203
|
cidrAddress: {
|
|
199
|
-
|
|
204
|
+
writable: boolean;
|
|
200
205
|
type: string;
|
|
201
206
|
isKey: boolean;
|
|
202
|
-
writable: boolean;
|
|
203
207
|
mandatory: boolean;
|
|
204
208
|
collection: boolean;
|
|
205
209
|
private?: boolean;
|
|
@@ -213,10 +217,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
213
217
|
};
|
|
214
218
|
addresses: {
|
|
215
219
|
collection: boolean;
|
|
216
|
-
|
|
220
|
+
writable: boolean;
|
|
217
221
|
type: string;
|
|
218
222
|
isKey: boolean;
|
|
219
|
-
writable: boolean;
|
|
220
223
|
mandatory: boolean;
|
|
221
224
|
private?: boolean;
|
|
222
225
|
depends?: string;
|
|
@@ -228,10 +231,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
228
231
|
env?: string[] | string;
|
|
229
232
|
};
|
|
230
233
|
address: {
|
|
231
|
-
|
|
234
|
+
writable: boolean;
|
|
232
235
|
type: string;
|
|
233
236
|
isKey: boolean;
|
|
234
|
-
writable: boolean;
|
|
235
237
|
mandatory: boolean;
|
|
236
238
|
collection: boolean;
|
|
237
239
|
private?: boolean;
|
|
@@ -244,12 +246,11 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
244
246
|
env?: string[] | string;
|
|
245
247
|
};
|
|
246
248
|
scope: {
|
|
247
|
-
|
|
249
|
+
writable: boolean;
|
|
248
250
|
values: string[];
|
|
249
251
|
default: string;
|
|
250
252
|
type: string;
|
|
251
253
|
isKey: boolean;
|
|
252
|
-
writable: boolean;
|
|
253
254
|
mandatory: boolean;
|
|
254
255
|
collection: boolean;
|
|
255
256
|
private?: boolean;
|
|
@@ -261,11 +262,10 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
261
262
|
env?: string[] | string;
|
|
262
263
|
};
|
|
263
264
|
class: {
|
|
264
|
-
|
|
265
|
+
writable: boolean;
|
|
265
266
|
values: string[];
|
|
266
267
|
type: string;
|
|
267
268
|
isKey: boolean;
|
|
268
|
-
writable: boolean;
|
|
269
269
|
mandatory: boolean;
|
|
270
270
|
collection: boolean;
|
|
271
271
|
private?: boolean;
|
|
@@ -278,11 +278,10 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
278
278
|
env?: string[] | string;
|
|
279
279
|
};
|
|
280
280
|
kind: {
|
|
281
|
-
|
|
281
|
+
writable: boolean;
|
|
282
282
|
values: string[];
|
|
283
283
|
type: string;
|
|
284
284
|
isKey: boolean;
|
|
285
|
-
writable: boolean;
|
|
286
285
|
mandatory: boolean;
|
|
287
286
|
collection: boolean;
|
|
288
287
|
private?: boolean;
|
|
@@ -295,10 +294,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
295
294
|
env?: string[] | string;
|
|
296
295
|
};
|
|
297
296
|
ssid: {
|
|
298
|
-
|
|
297
|
+
writable: boolean;
|
|
299
298
|
type: string;
|
|
300
299
|
isKey: boolean;
|
|
301
|
-
writable: boolean;
|
|
302
300
|
mandatory: boolean;
|
|
303
301
|
collection: boolean;
|
|
304
302
|
private?: boolean;
|
|
@@ -311,10 +309,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
311
309
|
env?: string[] | string;
|
|
312
310
|
};
|
|
313
311
|
psk: {
|
|
314
|
-
|
|
312
|
+
writable: boolean;
|
|
315
313
|
type: string;
|
|
316
314
|
isKey: boolean;
|
|
317
|
-
writable: boolean;
|
|
318
315
|
mandatory: boolean;
|
|
319
316
|
collection: boolean;
|
|
320
317
|
private?: boolean;
|
|
@@ -329,25 +326,24 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
329
326
|
metric: {
|
|
330
327
|
type: string;
|
|
331
328
|
collection: boolean;
|
|
332
|
-
|
|
329
|
+
writable: boolean;
|
|
333
330
|
default: number;
|
|
334
331
|
};
|
|
335
332
|
mtu: {
|
|
336
333
|
type: string;
|
|
337
334
|
collection: boolean;
|
|
338
|
-
|
|
335
|
+
writable: boolean;
|
|
339
336
|
default: number;
|
|
340
337
|
};
|
|
341
338
|
gateway: {
|
|
342
339
|
type: string;
|
|
343
340
|
collection: boolean;
|
|
344
|
-
|
|
341
|
+
writable: boolean;
|
|
345
342
|
};
|
|
346
343
|
multicastDNS: {
|
|
347
|
-
|
|
344
|
+
writable: boolean;
|
|
348
345
|
type: string;
|
|
349
346
|
isKey: boolean;
|
|
350
|
-
writable: boolean;
|
|
351
347
|
mandatory: boolean;
|
|
352
348
|
collection: boolean;
|
|
353
349
|
private?: boolean;
|
|
@@ -375,24 +371,28 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
375
371
|
owner: {
|
|
376
372
|
type: string;
|
|
377
373
|
collection: boolean;
|
|
378
|
-
|
|
379
|
-
};
|
|
380
|
-
type: {
|
|
381
|
-
type: string;
|
|
382
|
-
collection: boolean;
|
|
383
|
-
writeable: boolean;
|
|
374
|
+
writable: boolean;
|
|
384
375
|
};
|
|
376
|
+
type: import("pacc").AttributeDefinition;
|
|
385
377
|
name: {
|
|
378
|
+
isKey: boolean;
|
|
379
|
+
writable: boolean;
|
|
386
380
|
type: string;
|
|
381
|
+
mandatory: boolean;
|
|
387
382
|
collection: boolean;
|
|
388
|
-
|
|
389
|
-
|
|
383
|
+
private?: boolean;
|
|
384
|
+
depends?: string;
|
|
385
|
+
additionalAttributes: string[];
|
|
386
|
+
description?: string;
|
|
387
|
+
default?: any;
|
|
388
|
+
set?: Function;
|
|
389
|
+
get?: Function;
|
|
390
|
+
env?: string[] | string;
|
|
390
391
|
};
|
|
391
392
|
description: {
|
|
392
|
-
|
|
393
|
+
writable: boolean;
|
|
393
394
|
type: string;
|
|
394
395
|
isKey: boolean;
|
|
395
|
-
writable: boolean;
|
|
396
396
|
mandatory: boolean;
|
|
397
397
|
collection: boolean;
|
|
398
398
|
private?: boolean;
|
|
@@ -407,13 +407,12 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
407
407
|
priority: {
|
|
408
408
|
type: string;
|
|
409
409
|
collection: boolean;
|
|
410
|
-
|
|
410
|
+
writable: boolean;
|
|
411
411
|
};
|
|
412
412
|
directory: {
|
|
413
|
-
|
|
413
|
+
writable: boolean;
|
|
414
414
|
type: string;
|
|
415
415
|
isKey: boolean;
|
|
416
|
-
writable: boolean;
|
|
417
416
|
mandatory: boolean;
|
|
418
417
|
collection: boolean;
|
|
419
418
|
private?: boolean;
|
|
@@ -426,10 +425,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
426
425
|
env?: string[] | string;
|
|
427
426
|
};
|
|
428
427
|
packaging: {
|
|
429
|
-
|
|
428
|
+
writable: boolean;
|
|
430
429
|
type: string;
|
|
431
430
|
isKey: boolean;
|
|
432
|
-
writable: boolean;
|
|
433
431
|
mandatory: boolean;
|
|
434
432
|
collection: boolean;
|
|
435
433
|
private?: boolean;
|
|
@@ -442,17 +440,25 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
442
440
|
env?: string[] | string;
|
|
443
441
|
};
|
|
444
442
|
disabled: {
|
|
443
|
+
writable: boolean;
|
|
444
|
+
default: boolean;
|
|
445
445
|
type: string;
|
|
446
|
+
isKey: boolean;
|
|
447
|
+
mandatory: boolean;
|
|
446
448
|
collection: boolean;
|
|
447
|
-
|
|
448
|
-
|
|
449
|
+
private?: boolean;
|
|
450
|
+
depends?: string;
|
|
451
|
+
additionalAttributes: string[];
|
|
452
|
+
description?: string;
|
|
453
|
+
set?: Function;
|
|
454
|
+
get?: Function;
|
|
455
|
+
env?: string[] | string;
|
|
449
456
|
};
|
|
450
457
|
tags: {
|
|
451
458
|
collection: boolean;
|
|
452
|
-
|
|
459
|
+
writable: boolean;
|
|
453
460
|
type: string;
|
|
454
461
|
isKey: boolean;
|
|
455
|
-
writable: boolean;
|
|
456
462
|
mandatory: boolean;
|
|
457
463
|
private?: boolean;
|
|
458
464
|
depends?: string;
|
|
@@ -471,13 +477,12 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
471
477
|
services: {
|
|
472
478
|
type: string;
|
|
473
479
|
collection: boolean;
|
|
474
|
-
|
|
480
|
+
writable: boolean;
|
|
475
481
|
};
|
|
476
482
|
hostName: {
|
|
477
|
-
|
|
483
|
+
writable: boolean;
|
|
478
484
|
type: string;
|
|
479
485
|
isKey: boolean;
|
|
480
|
-
writable: boolean;
|
|
481
486
|
mandatory: boolean;
|
|
482
487
|
collection: boolean;
|
|
483
488
|
private?: boolean;
|
|
@@ -490,10 +495,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
490
495
|
env?: string[] | string;
|
|
491
496
|
};
|
|
492
497
|
ipAddresses: {
|
|
493
|
-
|
|
498
|
+
writable: boolean;
|
|
494
499
|
type: string;
|
|
495
500
|
isKey: boolean;
|
|
496
|
-
writable: boolean;
|
|
497
501
|
mandatory: boolean;
|
|
498
502
|
collection: boolean;
|
|
499
503
|
private?: boolean;
|
|
@@ -506,10 +510,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
506
510
|
env?: string[] | string;
|
|
507
511
|
};
|
|
508
512
|
hwaddr: {
|
|
509
|
-
|
|
513
|
+
writable: boolean;
|
|
510
514
|
type: string;
|
|
511
515
|
isKey: boolean;
|
|
512
|
-
writable: boolean;
|
|
513
516
|
mandatory: boolean;
|
|
514
517
|
collection: boolean;
|
|
515
518
|
private?: boolean;
|
|
@@ -524,13 +527,12 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
524
527
|
network: {
|
|
525
528
|
type: string;
|
|
526
529
|
collection: boolean;
|
|
527
|
-
|
|
530
|
+
writable: boolean;
|
|
528
531
|
};
|
|
529
532
|
destination: {
|
|
530
|
-
|
|
533
|
+
writable: boolean;
|
|
531
534
|
type: string;
|
|
532
535
|
isKey: boolean;
|
|
533
|
-
writable: boolean;
|
|
534
536
|
mandatory: boolean;
|
|
535
537
|
collection: boolean;
|
|
536
538
|
private?: boolean;
|
|
@@ -544,10 +546,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
544
546
|
};
|
|
545
547
|
cidrAddresses: {
|
|
546
548
|
collection: boolean;
|
|
547
|
-
|
|
549
|
+
writable: boolean;
|
|
548
550
|
type: string;
|
|
549
551
|
isKey: boolean;
|
|
550
|
-
writable: boolean;
|
|
551
552
|
mandatory: boolean;
|
|
552
553
|
private?: boolean;
|
|
553
554
|
depends?: string;
|
|
@@ -559,10 +560,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
559
560
|
env?: string[] | string;
|
|
560
561
|
};
|
|
561
562
|
cidrAddress: {
|
|
562
|
-
|
|
563
|
+
writable: boolean;
|
|
563
564
|
type: string;
|
|
564
565
|
isKey: boolean;
|
|
565
|
-
writable: boolean;
|
|
566
566
|
mandatory: boolean;
|
|
567
567
|
collection: boolean;
|
|
568
568
|
private?: boolean;
|
|
@@ -576,10 +576,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
576
576
|
};
|
|
577
577
|
addresses: {
|
|
578
578
|
collection: boolean;
|
|
579
|
-
|
|
579
|
+
writable: boolean;
|
|
580
580
|
type: string;
|
|
581
581
|
isKey: boolean;
|
|
582
|
-
writable: boolean;
|
|
583
582
|
mandatory: boolean;
|
|
584
583
|
private?: boolean;
|
|
585
584
|
depends?: string;
|
|
@@ -591,10 +590,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
591
590
|
env?: string[] | string;
|
|
592
591
|
};
|
|
593
592
|
address: {
|
|
594
|
-
|
|
593
|
+
writable: boolean;
|
|
595
594
|
type: string;
|
|
596
595
|
isKey: boolean;
|
|
597
|
-
writable: boolean;
|
|
598
596
|
mandatory: boolean;
|
|
599
597
|
collection: boolean;
|
|
600
598
|
private?: boolean;
|
|
@@ -607,12 +605,11 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
607
605
|
env?: string[] | string;
|
|
608
606
|
};
|
|
609
607
|
scope: {
|
|
610
|
-
|
|
608
|
+
writable: boolean;
|
|
611
609
|
values: string[];
|
|
612
610
|
default: string;
|
|
613
611
|
type: string;
|
|
614
612
|
isKey: boolean;
|
|
615
|
-
writable: boolean;
|
|
616
613
|
mandatory: boolean;
|
|
617
614
|
collection: boolean;
|
|
618
615
|
private?: boolean;
|
|
@@ -624,11 +621,10 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
624
621
|
env?: string[] | string;
|
|
625
622
|
};
|
|
626
623
|
class: {
|
|
627
|
-
|
|
624
|
+
writable: boolean;
|
|
628
625
|
values: string[];
|
|
629
626
|
type: string;
|
|
630
627
|
isKey: boolean;
|
|
631
|
-
writable: boolean;
|
|
632
628
|
mandatory: boolean;
|
|
633
629
|
collection: boolean;
|
|
634
630
|
private?: boolean;
|
|
@@ -641,11 +637,10 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
641
637
|
env?: string[] | string;
|
|
642
638
|
};
|
|
643
639
|
kind: {
|
|
644
|
-
|
|
640
|
+
writable: boolean;
|
|
645
641
|
values: string[];
|
|
646
642
|
type: string;
|
|
647
643
|
isKey: boolean;
|
|
648
|
-
writable: boolean;
|
|
649
644
|
mandatory: boolean;
|
|
650
645
|
collection: boolean;
|
|
651
646
|
private?: boolean;
|
|
@@ -658,10 +653,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
658
653
|
env?: string[] | string;
|
|
659
654
|
};
|
|
660
655
|
ssid: {
|
|
661
|
-
|
|
656
|
+
writable: boolean;
|
|
662
657
|
type: string;
|
|
663
658
|
isKey: boolean;
|
|
664
|
-
writable: boolean;
|
|
665
659
|
mandatory: boolean;
|
|
666
660
|
collection: boolean;
|
|
667
661
|
private?: boolean;
|
|
@@ -674,10 +668,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
674
668
|
env?: string[] | string;
|
|
675
669
|
};
|
|
676
670
|
psk: {
|
|
677
|
-
|
|
671
|
+
writable: boolean;
|
|
678
672
|
type: string;
|
|
679
673
|
isKey: boolean;
|
|
680
|
-
writable: boolean;
|
|
681
674
|
mandatory: boolean;
|
|
682
675
|
collection: boolean;
|
|
683
676
|
private?: boolean;
|
|
@@ -692,25 +685,24 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
692
685
|
metric: {
|
|
693
686
|
type: string;
|
|
694
687
|
collection: boolean;
|
|
695
|
-
|
|
688
|
+
writable: boolean;
|
|
696
689
|
default: number;
|
|
697
690
|
};
|
|
698
691
|
mtu: {
|
|
699
692
|
type: string;
|
|
700
693
|
collection: boolean;
|
|
701
|
-
|
|
694
|
+
writable: boolean;
|
|
702
695
|
default: number;
|
|
703
696
|
};
|
|
704
697
|
gateway: {
|
|
705
698
|
type: string;
|
|
706
699
|
collection: boolean;
|
|
707
|
-
|
|
700
|
+
writable: boolean;
|
|
708
701
|
};
|
|
709
702
|
multicastDNS: {
|
|
710
|
-
|
|
703
|
+
writable: boolean;
|
|
711
704
|
type: string;
|
|
712
705
|
isKey: boolean;
|
|
713
|
-
writable: boolean;
|
|
714
706
|
mandatory: boolean;
|
|
715
707
|
collection: boolean;
|
|
716
708
|
private?: boolean;
|
|
@@ -736,24 +728,28 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
736
728
|
owner: {
|
|
737
729
|
type: string;
|
|
738
730
|
collection: boolean;
|
|
739
|
-
|
|
740
|
-
};
|
|
741
|
-
type: {
|
|
742
|
-
type: string;
|
|
743
|
-
collection: boolean;
|
|
744
|
-
writeable: boolean;
|
|
731
|
+
writable: boolean;
|
|
745
732
|
};
|
|
733
|
+
type: import("pacc").AttributeDefinition;
|
|
746
734
|
name: {
|
|
735
|
+
isKey: boolean;
|
|
736
|
+
writable: boolean;
|
|
747
737
|
type: string;
|
|
738
|
+
mandatory: boolean;
|
|
748
739
|
collection: boolean;
|
|
749
|
-
|
|
750
|
-
|
|
740
|
+
private?: boolean;
|
|
741
|
+
depends?: string;
|
|
742
|
+
additionalAttributes: string[];
|
|
743
|
+
description?: string;
|
|
744
|
+
default?: any;
|
|
745
|
+
set?: Function;
|
|
746
|
+
get?: Function;
|
|
747
|
+
env?: string[] | string;
|
|
751
748
|
};
|
|
752
749
|
description: {
|
|
753
|
-
|
|
750
|
+
writable: boolean;
|
|
754
751
|
type: string;
|
|
755
752
|
isKey: boolean;
|
|
756
|
-
writable: boolean;
|
|
757
753
|
mandatory: boolean;
|
|
758
754
|
collection: boolean;
|
|
759
755
|
private?: boolean;
|
|
@@ -768,13 +764,12 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
768
764
|
priority: {
|
|
769
765
|
type: string;
|
|
770
766
|
collection: boolean;
|
|
771
|
-
|
|
767
|
+
writable: boolean;
|
|
772
768
|
};
|
|
773
769
|
directory: {
|
|
774
|
-
|
|
770
|
+
writable: boolean;
|
|
775
771
|
type: string;
|
|
776
772
|
isKey: boolean;
|
|
777
|
-
writable: boolean;
|
|
778
773
|
mandatory: boolean;
|
|
779
774
|
collection: boolean;
|
|
780
775
|
private?: boolean;
|
|
@@ -787,10 +782,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
787
782
|
env?: string[] | string;
|
|
788
783
|
};
|
|
789
784
|
packaging: {
|
|
790
|
-
|
|
785
|
+
writable: boolean;
|
|
791
786
|
type: string;
|
|
792
787
|
isKey: boolean;
|
|
793
|
-
writable: boolean;
|
|
794
788
|
mandatory: boolean;
|
|
795
789
|
collection: boolean;
|
|
796
790
|
private?: boolean;
|
|
@@ -803,17 +797,25 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
803
797
|
env?: string[] | string;
|
|
804
798
|
};
|
|
805
799
|
disabled: {
|
|
800
|
+
writable: boolean;
|
|
801
|
+
default: boolean;
|
|
806
802
|
type: string;
|
|
803
|
+
isKey: boolean;
|
|
804
|
+
mandatory: boolean;
|
|
807
805
|
collection: boolean;
|
|
808
|
-
|
|
809
|
-
|
|
806
|
+
private?: boolean;
|
|
807
|
+
depends?: string;
|
|
808
|
+
additionalAttributes: string[];
|
|
809
|
+
description?: string;
|
|
810
|
+
set?: Function;
|
|
811
|
+
get?: Function;
|
|
812
|
+
env?: string[] | string;
|
|
810
813
|
};
|
|
811
814
|
tags: {
|
|
812
815
|
collection: boolean;
|
|
813
|
-
|
|
816
|
+
writable: boolean;
|
|
814
817
|
type: string;
|
|
815
818
|
isKey: boolean;
|
|
816
|
-
writable: boolean;
|
|
817
819
|
mandatory: boolean;
|
|
818
820
|
private?: boolean;
|
|
819
821
|
depends?: string;
|
|
@@ -832,13 +834,12 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
832
834
|
services: {
|
|
833
835
|
type: string;
|
|
834
836
|
collection: boolean;
|
|
835
|
-
|
|
837
|
+
writable: boolean;
|
|
836
838
|
};
|
|
837
839
|
hostName: {
|
|
838
|
-
|
|
840
|
+
writable: boolean;
|
|
839
841
|
type: string;
|
|
840
842
|
isKey: boolean;
|
|
841
|
-
writable: boolean;
|
|
842
843
|
mandatory: boolean;
|
|
843
844
|
collection: boolean;
|
|
844
845
|
private?: boolean;
|
|
@@ -851,10 +852,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
851
852
|
env?: string[] | string;
|
|
852
853
|
};
|
|
853
854
|
ipAddresses: {
|
|
854
|
-
|
|
855
|
+
writable: boolean;
|
|
855
856
|
type: string;
|
|
856
857
|
isKey: boolean;
|
|
857
|
-
writable: boolean;
|
|
858
858
|
mandatory: boolean;
|
|
859
859
|
collection: boolean;
|
|
860
860
|
private?: boolean;
|
|
@@ -867,10 +867,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
867
867
|
env?: string[] | string;
|
|
868
868
|
};
|
|
869
869
|
hwaddr: {
|
|
870
|
-
|
|
870
|
+
writable: boolean;
|
|
871
871
|
type: string;
|
|
872
872
|
isKey: boolean;
|
|
873
|
-
writable: boolean;
|
|
874
873
|
mandatory: boolean;
|
|
875
874
|
collection: boolean;
|
|
876
875
|
private?: boolean;
|
|
@@ -885,13 +884,12 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
885
884
|
network: {
|
|
886
885
|
type: string;
|
|
887
886
|
collection: boolean;
|
|
888
|
-
|
|
887
|
+
writable: boolean;
|
|
889
888
|
};
|
|
890
889
|
destination: {
|
|
891
|
-
|
|
890
|
+
writable: boolean;
|
|
892
891
|
type: string;
|
|
893
892
|
isKey: boolean;
|
|
894
|
-
writable: boolean;
|
|
895
893
|
mandatory: boolean;
|
|
896
894
|
collection: boolean;
|
|
897
895
|
private?: boolean;
|
|
@@ -905,10 +903,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
905
903
|
};
|
|
906
904
|
cidrAddresses: {
|
|
907
905
|
collection: boolean;
|
|
908
|
-
|
|
906
|
+
writable: boolean;
|
|
909
907
|
type: string;
|
|
910
908
|
isKey: boolean;
|
|
911
|
-
writable: boolean;
|
|
912
909
|
mandatory: boolean;
|
|
913
910
|
private?: boolean;
|
|
914
911
|
depends?: string;
|
|
@@ -920,10 +917,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
920
917
|
env?: string[] | string;
|
|
921
918
|
};
|
|
922
919
|
cidrAddress: {
|
|
923
|
-
|
|
920
|
+
writable: boolean;
|
|
924
921
|
type: string;
|
|
925
922
|
isKey: boolean;
|
|
926
|
-
writable: boolean;
|
|
927
923
|
mandatory: boolean;
|
|
928
924
|
collection: boolean;
|
|
929
925
|
private?: boolean;
|
|
@@ -937,10 +933,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
937
933
|
};
|
|
938
934
|
addresses: {
|
|
939
935
|
collection: boolean;
|
|
940
|
-
|
|
936
|
+
writable: boolean;
|
|
941
937
|
type: string;
|
|
942
938
|
isKey: boolean;
|
|
943
|
-
writable: boolean;
|
|
944
939
|
mandatory: boolean;
|
|
945
940
|
private?: boolean;
|
|
946
941
|
depends?: string;
|
|
@@ -952,10 +947,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
952
947
|
env?: string[] | string;
|
|
953
948
|
};
|
|
954
949
|
address: {
|
|
955
|
-
|
|
950
|
+
writable: boolean;
|
|
956
951
|
type: string;
|
|
957
952
|
isKey: boolean;
|
|
958
|
-
writable: boolean;
|
|
959
953
|
mandatory: boolean;
|
|
960
954
|
collection: boolean;
|
|
961
955
|
private?: boolean;
|
|
@@ -968,12 +962,11 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
968
962
|
env?: string[] | string;
|
|
969
963
|
};
|
|
970
964
|
scope: {
|
|
971
|
-
|
|
965
|
+
writable: boolean;
|
|
972
966
|
values: string[];
|
|
973
967
|
default: string;
|
|
974
968
|
type: string;
|
|
975
969
|
isKey: boolean;
|
|
976
|
-
writable: boolean;
|
|
977
970
|
mandatory: boolean;
|
|
978
971
|
collection: boolean;
|
|
979
972
|
private?: boolean;
|
|
@@ -985,11 +978,10 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
985
978
|
env?: string[] | string;
|
|
986
979
|
};
|
|
987
980
|
class: {
|
|
988
|
-
|
|
981
|
+
writable: boolean;
|
|
989
982
|
values: string[];
|
|
990
983
|
type: string;
|
|
991
984
|
isKey: boolean;
|
|
992
|
-
writable: boolean;
|
|
993
985
|
mandatory: boolean;
|
|
994
986
|
collection: boolean;
|
|
995
987
|
private?: boolean;
|
|
@@ -1002,11 +994,10 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1002
994
|
env?: string[] | string;
|
|
1003
995
|
};
|
|
1004
996
|
kind: {
|
|
1005
|
-
|
|
997
|
+
writable: boolean;
|
|
1006
998
|
values: string[];
|
|
1007
999
|
type: string;
|
|
1008
1000
|
isKey: boolean;
|
|
1009
|
-
writable: boolean;
|
|
1010
1001
|
mandatory: boolean;
|
|
1011
1002
|
collection: boolean;
|
|
1012
1003
|
private?: boolean;
|
|
@@ -1019,10 +1010,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1019
1010
|
env?: string[] | string;
|
|
1020
1011
|
};
|
|
1021
1012
|
ssid: {
|
|
1022
|
-
|
|
1013
|
+
writable: boolean;
|
|
1023
1014
|
type: string;
|
|
1024
1015
|
isKey: boolean;
|
|
1025
|
-
writable: boolean;
|
|
1026
1016
|
mandatory: boolean;
|
|
1027
1017
|
collection: boolean;
|
|
1028
1018
|
private?: boolean;
|
|
@@ -1035,10 +1025,9 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1035
1025
|
env?: string[] | string;
|
|
1036
1026
|
};
|
|
1037
1027
|
psk: {
|
|
1038
|
-
|
|
1028
|
+
writable: boolean;
|
|
1039
1029
|
type: string;
|
|
1040
1030
|
isKey: boolean;
|
|
1041
|
-
writable: boolean;
|
|
1042
1031
|
mandatory: boolean;
|
|
1043
1032
|
collection: boolean;
|
|
1044
1033
|
private?: boolean;
|
|
@@ -1053,25 +1042,24 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1053
1042
|
metric: {
|
|
1054
1043
|
type: string;
|
|
1055
1044
|
collection: boolean;
|
|
1056
|
-
|
|
1045
|
+
writable: boolean;
|
|
1057
1046
|
default: number;
|
|
1058
1047
|
};
|
|
1059
1048
|
mtu: {
|
|
1060
1049
|
type: string;
|
|
1061
1050
|
collection: boolean;
|
|
1062
|
-
|
|
1051
|
+
writable: boolean;
|
|
1063
1052
|
default: number;
|
|
1064
1053
|
};
|
|
1065
1054
|
gateway: {
|
|
1066
1055
|
type: string;
|
|
1067
1056
|
collection: boolean;
|
|
1068
|
-
|
|
1057
|
+
writable: boolean;
|
|
1069
1058
|
};
|
|
1070
1059
|
multicastDNS: {
|
|
1071
|
-
|
|
1060
|
+
writable: boolean;
|
|
1072
1061
|
type: string;
|
|
1073
1062
|
isKey: boolean;
|
|
1074
|
-
writable: boolean;
|
|
1075
1063
|
mandatory: boolean;
|
|
1076
1064
|
collection: boolean;
|
|
1077
1065
|
private?: boolean;
|
|
@@ -1090,7 +1078,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1090
1078
|
arpbridge: {
|
|
1091
1079
|
type: string;
|
|
1092
1080
|
collection: boolean;
|
|
1093
|
-
|
|
1081
|
+
writable: boolean;
|
|
1094
1082
|
};
|
|
1095
1083
|
};
|
|
1096
1084
|
};
|