pmcf 3.0.0 → 3.1.1
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 +9 -9
- 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 +47 -6
- package/src/services/openldap.mjs +3 -3
- package/src/services/systemd-journal-upload.mjs +1 -1
- package/src/subnet.mjs +2 -2
- package/types/base.d.mts +8 -14
- package/types/cluster.d.mts +58 -95
- package/types/extra-source-service.d.mts +22 -37
- package/types/host.d.mts +32 -56
- package/types/location.d.mts +43 -70
- package/types/network-interfaces/ethernet.d.mts +56 -96
- package/types/network-interfaces/loopback.d.mts +54 -94
- package/types/network-interfaces/network-interface.d.mts +54 -94
- package/types/network-interfaces/wireguard.d.mts +54 -94
- package/types/network-interfaces/wlan.d.mts +82 -142
- package/types/network-support.d.mts +16 -27
- package/types/network.d.mts +31 -50
- package/types/owner.d.mts +21 -34
- package/types/root.d.mts +43 -70
- package/types/service.d.mts +44 -77
- package/types/services/bind.d.mts +59 -101
- package/types/services/chrony.d.mts +41 -71
- package/types/services/influxdb.d.mts +40 -70
- package/types/services/kea.d.mts +122 -71
- package/types/services/mosquitto.d.mts +40 -70
- package/types/services/openldap.d.mts +43 -76
- package/types/services/systemd-journal-remote.d.mts +40 -70
- package/types/services/systemd-journal-upload.d.mts +41 -72
- package/types/services/systemd-journal.d.mts +40 -70
- package/types/services/systemd-resolved.d.mts +40 -70
- package/types/services/systemd-timesyncd.d.mts +40 -70
- package/types/subnet.d.mts +2 -2
|
@@ -9,14 +9,13 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
9
9
|
owner: {
|
|
10
10
|
type: string;
|
|
11
11
|
collection: boolean;
|
|
12
|
-
|
|
12
|
+
writable: boolean;
|
|
13
13
|
};
|
|
14
14
|
type: import("pacc").AttributeDefinition;
|
|
15
15
|
name: {
|
|
16
16
|
isKey: boolean;
|
|
17
|
-
writeable: boolean;
|
|
18
|
-
type: string;
|
|
19
17
|
writable: boolean;
|
|
18
|
+
type: string;
|
|
20
19
|
mandatory: boolean;
|
|
21
20
|
collection: boolean;
|
|
22
21
|
private?: boolean;
|
|
@@ -29,10 +28,9 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
29
28
|
env?: string[] | string;
|
|
30
29
|
};
|
|
31
30
|
description: {
|
|
32
|
-
|
|
31
|
+
writable: boolean;
|
|
33
32
|
type: string;
|
|
34
33
|
isKey: boolean;
|
|
35
|
-
writable: boolean;
|
|
36
34
|
mandatory: boolean;
|
|
37
35
|
collection: boolean;
|
|
38
36
|
private?: boolean;
|
|
@@ -47,13 +45,12 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
47
45
|
priority: {
|
|
48
46
|
type: string;
|
|
49
47
|
collection: boolean;
|
|
50
|
-
|
|
48
|
+
writable: boolean;
|
|
51
49
|
};
|
|
52
50
|
directory: {
|
|
53
|
-
|
|
51
|
+
writable: boolean;
|
|
54
52
|
type: string;
|
|
55
53
|
isKey: boolean;
|
|
56
|
-
writable: boolean;
|
|
57
54
|
mandatory: boolean;
|
|
58
55
|
collection: boolean;
|
|
59
56
|
private?: boolean;
|
|
@@ -66,10 +63,9 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
66
63
|
env?: string[] | string;
|
|
67
64
|
};
|
|
68
65
|
packaging: {
|
|
69
|
-
|
|
66
|
+
writable: boolean;
|
|
70
67
|
type: string;
|
|
71
68
|
isKey: boolean;
|
|
72
|
-
writable: boolean;
|
|
73
69
|
mandatory: boolean;
|
|
74
70
|
collection: boolean;
|
|
75
71
|
private?: boolean;
|
|
@@ -82,11 +78,10 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
82
78
|
env?: string[] | string;
|
|
83
79
|
};
|
|
84
80
|
disabled: {
|
|
85
|
-
|
|
81
|
+
writable: boolean;
|
|
86
82
|
default: boolean;
|
|
87
83
|
type: string;
|
|
88
84
|
isKey: boolean;
|
|
89
|
-
writable: boolean;
|
|
90
85
|
mandatory: boolean;
|
|
91
86
|
collection: boolean;
|
|
92
87
|
private?: boolean;
|
|
@@ -99,10 +94,9 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
99
94
|
};
|
|
100
95
|
tags: {
|
|
101
96
|
collection: boolean;
|
|
102
|
-
|
|
97
|
+
writable: boolean;
|
|
103
98
|
type: string;
|
|
104
99
|
isKey: boolean;
|
|
105
|
-
writable: boolean;
|
|
106
100
|
mandatory: boolean;
|
|
107
101
|
private?: boolean;
|
|
108
102
|
depends?: string;
|
|
@@ -122,13 +116,12 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
122
116
|
services: {
|
|
123
117
|
type: string;
|
|
124
118
|
collection: boolean;
|
|
125
|
-
|
|
119
|
+
writable: boolean;
|
|
126
120
|
};
|
|
127
121
|
hostName: {
|
|
128
|
-
|
|
122
|
+
writable: boolean;
|
|
129
123
|
type: string;
|
|
130
124
|
isKey: boolean;
|
|
131
|
-
writable: boolean;
|
|
132
125
|
mandatory: boolean;
|
|
133
126
|
collection: boolean;
|
|
134
127
|
private?: boolean;
|
|
@@ -141,10 +134,9 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
141
134
|
env?: string[] | string;
|
|
142
135
|
};
|
|
143
136
|
ipAddresses: {
|
|
144
|
-
|
|
137
|
+
writable: boolean;
|
|
145
138
|
type: string;
|
|
146
139
|
isKey: boolean;
|
|
147
|
-
writable: boolean;
|
|
148
140
|
mandatory: boolean;
|
|
149
141
|
collection: boolean;
|
|
150
142
|
private?: boolean;
|
|
@@ -157,10 +149,9 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
157
149
|
env?: string[] | string;
|
|
158
150
|
};
|
|
159
151
|
hwaddr: {
|
|
160
|
-
|
|
152
|
+
writable: boolean;
|
|
161
153
|
type: string;
|
|
162
154
|
isKey: boolean;
|
|
163
|
-
writable: boolean;
|
|
164
155
|
mandatory: boolean;
|
|
165
156
|
collection: boolean;
|
|
166
157
|
private?: boolean;
|
|
@@ -175,13 +166,12 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
175
166
|
network: {
|
|
176
167
|
type: string;
|
|
177
168
|
collection: boolean;
|
|
178
|
-
|
|
169
|
+
writable: boolean;
|
|
179
170
|
};
|
|
180
171
|
destination: {
|
|
181
|
-
|
|
172
|
+
writable: boolean;
|
|
182
173
|
type: string;
|
|
183
174
|
isKey: boolean;
|
|
184
|
-
writable: boolean;
|
|
185
175
|
mandatory: boolean;
|
|
186
176
|
collection: boolean;
|
|
187
177
|
private?: boolean;
|
|
@@ -195,10 +185,9 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
195
185
|
};
|
|
196
186
|
cidrAddresses: {
|
|
197
187
|
collection: boolean;
|
|
198
|
-
|
|
188
|
+
writable: boolean;
|
|
199
189
|
type: string;
|
|
200
190
|
isKey: boolean;
|
|
201
|
-
writable: boolean;
|
|
202
191
|
mandatory: boolean;
|
|
203
192
|
private?: boolean;
|
|
204
193
|
depends?: string;
|
|
@@ -210,10 +199,9 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
210
199
|
env?: string[] | string;
|
|
211
200
|
};
|
|
212
201
|
cidrAddress: {
|
|
213
|
-
|
|
202
|
+
writable: boolean;
|
|
214
203
|
type: string;
|
|
215
204
|
isKey: boolean;
|
|
216
|
-
writable: boolean;
|
|
217
205
|
mandatory: boolean;
|
|
218
206
|
collection: boolean;
|
|
219
207
|
private?: boolean;
|
|
@@ -227,10 +215,9 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
227
215
|
};
|
|
228
216
|
addresses: {
|
|
229
217
|
collection: boolean;
|
|
230
|
-
|
|
218
|
+
writable: boolean;
|
|
231
219
|
type: string;
|
|
232
220
|
isKey: boolean;
|
|
233
|
-
writable: boolean;
|
|
234
221
|
mandatory: boolean;
|
|
235
222
|
private?: boolean;
|
|
236
223
|
depends?: string;
|
|
@@ -242,10 +229,9 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
242
229
|
env?: string[] | string;
|
|
243
230
|
};
|
|
244
231
|
address: {
|
|
245
|
-
|
|
232
|
+
writable: boolean;
|
|
246
233
|
type: string;
|
|
247
234
|
isKey: boolean;
|
|
248
|
-
writable: boolean;
|
|
249
235
|
mandatory: boolean;
|
|
250
236
|
collection: boolean;
|
|
251
237
|
private?: boolean;
|
|
@@ -258,12 +244,11 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
258
244
|
env?: string[] | string;
|
|
259
245
|
};
|
|
260
246
|
scope: {
|
|
261
|
-
|
|
247
|
+
writable: boolean;
|
|
262
248
|
values: string[];
|
|
263
249
|
default: string;
|
|
264
250
|
type: string;
|
|
265
251
|
isKey: boolean;
|
|
266
|
-
writable: boolean;
|
|
267
252
|
mandatory: boolean;
|
|
268
253
|
collection: boolean;
|
|
269
254
|
private?: boolean;
|
|
@@ -275,11 +260,10 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
275
260
|
env?: string[] | string;
|
|
276
261
|
};
|
|
277
262
|
class: {
|
|
278
|
-
|
|
263
|
+
writable: boolean;
|
|
279
264
|
values: string[];
|
|
280
265
|
type: string;
|
|
281
266
|
isKey: boolean;
|
|
282
|
-
writable: boolean;
|
|
283
267
|
mandatory: boolean;
|
|
284
268
|
collection: boolean;
|
|
285
269
|
private?: boolean;
|
|
@@ -292,11 +276,10 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
292
276
|
env?: string[] | string;
|
|
293
277
|
};
|
|
294
278
|
kind: {
|
|
295
|
-
|
|
279
|
+
writable: boolean;
|
|
296
280
|
values: string[];
|
|
297
281
|
type: string;
|
|
298
282
|
isKey: boolean;
|
|
299
|
-
writable: boolean;
|
|
300
283
|
mandatory: boolean;
|
|
301
284
|
collection: boolean;
|
|
302
285
|
private?: boolean;
|
|
@@ -309,10 +292,9 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
309
292
|
env?: string[] | string;
|
|
310
293
|
};
|
|
311
294
|
ssid: {
|
|
312
|
-
|
|
295
|
+
writable: boolean;
|
|
313
296
|
type: string;
|
|
314
297
|
isKey: boolean;
|
|
315
|
-
writable: boolean;
|
|
316
298
|
mandatory: boolean;
|
|
317
299
|
collection: boolean;
|
|
318
300
|
private?: boolean;
|
|
@@ -325,10 +307,9 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
325
307
|
env?: string[] | string;
|
|
326
308
|
};
|
|
327
309
|
psk: {
|
|
328
|
-
|
|
310
|
+
writable: boolean;
|
|
329
311
|
type: string;
|
|
330
312
|
isKey: boolean;
|
|
331
|
-
writable: boolean;
|
|
332
313
|
mandatory: boolean;
|
|
333
314
|
collection: boolean;
|
|
334
315
|
private?: boolean;
|
|
@@ -343,25 +324,24 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
343
324
|
metric: {
|
|
344
325
|
type: string;
|
|
345
326
|
collection: boolean;
|
|
346
|
-
|
|
327
|
+
writable: boolean;
|
|
347
328
|
default: number;
|
|
348
329
|
};
|
|
349
330
|
mtu: {
|
|
350
331
|
type: string;
|
|
351
332
|
collection: boolean;
|
|
352
|
-
|
|
333
|
+
writable: boolean;
|
|
353
334
|
default: number;
|
|
354
335
|
};
|
|
355
336
|
gateway: {
|
|
356
337
|
type: string;
|
|
357
338
|
collection: boolean;
|
|
358
|
-
|
|
339
|
+
writable: boolean;
|
|
359
340
|
};
|
|
360
341
|
multicastDNS: {
|
|
361
|
-
|
|
342
|
+
writable: boolean;
|
|
362
343
|
type: string;
|
|
363
344
|
isKey: boolean;
|
|
364
|
-
writable: boolean;
|
|
365
345
|
mandatory: boolean;
|
|
366
346
|
collection: boolean;
|
|
367
347
|
private?: boolean;
|
|
@@ -387,14 +367,13 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
387
367
|
owner: {
|
|
388
368
|
type: string;
|
|
389
369
|
collection: boolean;
|
|
390
|
-
|
|
370
|
+
writable: boolean;
|
|
391
371
|
};
|
|
392
372
|
type: import("pacc").AttributeDefinition;
|
|
393
373
|
name: {
|
|
394
374
|
isKey: boolean;
|
|
395
|
-
writeable: boolean;
|
|
396
|
-
type: string;
|
|
397
375
|
writable: boolean;
|
|
376
|
+
type: string;
|
|
398
377
|
mandatory: boolean;
|
|
399
378
|
collection: boolean;
|
|
400
379
|
private?: boolean;
|
|
@@ -407,10 +386,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
407
386
|
env?: string[] | string;
|
|
408
387
|
};
|
|
409
388
|
description: {
|
|
410
|
-
|
|
389
|
+
writable: boolean;
|
|
411
390
|
type: string;
|
|
412
391
|
isKey: boolean;
|
|
413
|
-
writable: boolean;
|
|
414
392
|
mandatory: boolean;
|
|
415
393
|
collection: boolean;
|
|
416
394
|
private?: boolean;
|
|
@@ -425,13 +403,12 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
425
403
|
priority: {
|
|
426
404
|
type: string;
|
|
427
405
|
collection: boolean;
|
|
428
|
-
|
|
406
|
+
writable: boolean;
|
|
429
407
|
};
|
|
430
408
|
directory: {
|
|
431
|
-
|
|
409
|
+
writable: boolean;
|
|
432
410
|
type: string;
|
|
433
411
|
isKey: boolean;
|
|
434
|
-
writable: boolean;
|
|
435
412
|
mandatory: boolean;
|
|
436
413
|
collection: boolean;
|
|
437
414
|
private?: boolean;
|
|
@@ -444,10 +421,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
444
421
|
env?: string[] | string;
|
|
445
422
|
};
|
|
446
423
|
packaging: {
|
|
447
|
-
|
|
424
|
+
writable: boolean;
|
|
448
425
|
type: string;
|
|
449
426
|
isKey: boolean;
|
|
450
|
-
writable: boolean;
|
|
451
427
|
mandatory: boolean;
|
|
452
428
|
collection: boolean;
|
|
453
429
|
private?: boolean;
|
|
@@ -460,11 +436,10 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
460
436
|
env?: string[] | string;
|
|
461
437
|
};
|
|
462
438
|
disabled: {
|
|
463
|
-
|
|
439
|
+
writable: boolean;
|
|
464
440
|
default: boolean;
|
|
465
441
|
type: string;
|
|
466
442
|
isKey: boolean;
|
|
467
|
-
writable: boolean;
|
|
468
443
|
mandatory: boolean;
|
|
469
444
|
collection: boolean;
|
|
470
445
|
private?: boolean;
|
|
@@ -477,10 +452,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
477
452
|
};
|
|
478
453
|
tags: {
|
|
479
454
|
collection: boolean;
|
|
480
|
-
|
|
455
|
+
writable: boolean;
|
|
481
456
|
type: string;
|
|
482
457
|
isKey: boolean;
|
|
483
|
-
writable: boolean;
|
|
484
458
|
mandatory: boolean;
|
|
485
459
|
private?: boolean;
|
|
486
460
|
depends?: string;
|
|
@@ -499,13 +473,12 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
499
473
|
services: {
|
|
500
474
|
type: string;
|
|
501
475
|
collection: boolean;
|
|
502
|
-
|
|
476
|
+
writable: boolean;
|
|
503
477
|
};
|
|
504
478
|
hostName: {
|
|
505
|
-
|
|
479
|
+
writable: boolean;
|
|
506
480
|
type: string;
|
|
507
481
|
isKey: boolean;
|
|
508
|
-
writable: boolean;
|
|
509
482
|
mandatory: boolean;
|
|
510
483
|
collection: boolean;
|
|
511
484
|
private?: boolean;
|
|
@@ -518,10 +491,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
518
491
|
env?: string[] | string;
|
|
519
492
|
};
|
|
520
493
|
ipAddresses: {
|
|
521
|
-
|
|
494
|
+
writable: boolean;
|
|
522
495
|
type: string;
|
|
523
496
|
isKey: boolean;
|
|
524
|
-
writable: boolean;
|
|
525
497
|
mandatory: boolean;
|
|
526
498
|
collection: boolean;
|
|
527
499
|
private?: boolean;
|
|
@@ -534,10 +506,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
534
506
|
env?: string[] | string;
|
|
535
507
|
};
|
|
536
508
|
hwaddr: {
|
|
537
|
-
|
|
509
|
+
writable: boolean;
|
|
538
510
|
type: string;
|
|
539
511
|
isKey: boolean;
|
|
540
|
-
writable: boolean;
|
|
541
512
|
mandatory: boolean;
|
|
542
513
|
collection: boolean;
|
|
543
514
|
private?: boolean;
|
|
@@ -552,13 +523,12 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
552
523
|
network: {
|
|
553
524
|
type: string;
|
|
554
525
|
collection: boolean;
|
|
555
|
-
|
|
526
|
+
writable: boolean;
|
|
556
527
|
};
|
|
557
528
|
destination: {
|
|
558
|
-
|
|
529
|
+
writable: boolean;
|
|
559
530
|
type: string;
|
|
560
531
|
isKey: boolean;
|
|
561
|
-
writable: boolean;
|
|
562
532
|
mandatory: boolean;
|
|
563
533
|
collection: boolean;
|
|
564
534
|
private?: boolean;
|
|
@@ -572,10 +542,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
572
542
|
};
|
|
573
543
|
cidrAddresses: {
|
|
574
544
|
collection: boolean;
|
|
575
|
-
|
|
545
|
+
writable: boolean;
|
|
576
546
|
type: string;
|
|
577
547
|
isKey: boolean;
|
|
578
|
-
writable: boolean;
|
|
579
548
|
mandatory: boolean;
|
|
580
549
|
private?: boolean;
|
|
581
550
|
depends?: string;
|
|
@@ -587,10 +556,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
587
556
|
env?: string[] | string;
|
|
588
557
|
};
|
|
589
558
|
cidrAddress: {
|
|
590
|
-
|
|
559
|
+
writable: boolean;
|
|
591
560
|
type: string;
|
|
592
561
|
isKey: boolean;
|
|
593
|
-
writable: boolean;
|
|
594
562
|
mandatory: boolean;
|
|
595
563
|
collection: boolean;
|
|
596
564
|
private?: boolean;
|
|
@@ -604,10 +572,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
604
572
|
};
|
|
605
573
|
addresses: {
|
|
606
574
|
collection: boolean;
|
|
607
|
-
|
|
575
|
+
writable: boolean;
|
|
608
576
|
type: string;
|
|
609
577
|
isKey: boolean;
|
|
610
|
-
writable: boolean;
|
|
611
578
|
mandatory: boolean;
|
|
612
579
|
private?: boolean;
|
|
613
580
|
depends?: string;
|
|
@@ -619,10 +586,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
619
586
|
env?: string[] | string;
|
|
620
587
|
};
|
|
621
588
|
address: {
|
|
622
|
-
|
|
589
|
+
writable: boolean;
|
|
623
590
|
type: string;
|
|
624
591
|
isKey: boolean;
|
|
625
|
-
writable: boolean;
|
|
626
592
|
mandatory: boolean;
|
|
627
593
|
collection: boolean;
|
|
628
594
|
private?: boolean;
|
|
@@ -635,12 +601,11 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
635
601
|
env?: string[] | string;
|
|
636
602
|
};
|
|
637
603
|
scope: {
|
|
638
|
-
|
|
604
|
+
writable: boolean;
|
|
639
605
|
values: string[];
|
|
640
606
|
default: string;
|
|
641
607
|
type: string;
|
|
642
608
|
isKey: boolean;
|
|
643
|
-
writable: boolean;
|
|
644
609
|
mandatory: boolean;
|
|
645
610
|
collection: boolean;
|
|
646
611
|
private?: boolean;
|
|
@@ -652,11 +617,10 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
652
617
|
env?: string[] | string;
|
|
653
618
|
};
|
|
654
619
|
class: {
|
|
655
|
-
|
|
620
|
+
writable: boolean;
|
|
656
621
|
values: string[];
|
|
657
622
|
type: string;
|
|
658
623
|
isKey: boolean;
|
|
659
|
-
writable: boolean;
|
|
660
624
|
mandatory: boolean;
|
|
661
625
|
collection: boolean;
|
|
662
626
|
private?: boolean;
|
|
@@ -669,11 +633,10 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
669
633
|
env?: string[] | string;
|
|
670
634
|
};
|
|
671
635
|
kind: {
|
|
672
|
-
|
|
636
|
+
writable: boolean;
|
|
673
637
|
values: string[];
|
|
674
638
|
type: string;
|
|
675
639
|
isKey: boolean;
|
|
676
|
-
writable: boolean;
|
|
677
640
|
mandatory: boolean;
|
|
678
641
|
collection: boolean;
|
|
679
642
|
private?: boolean;
|
|
@@ -686,10 +649,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
686
649
|
env?: string[] | string;
|
|
687
650
|
};
|
|
688
651
|
ssid: {
|
|
689
|
-
|
|
652
|
+
writable: boolean;
|
|
690
653
|
type: string;
|
|
691
654
|
isKey: boolean;
|
|
692
|
-
writable: boolean;
|
|
693
655
|
mandatory: boolean;
|
|
694
656
|
collection: boolean;
|
|
695
657
|
private?: boolean;
|
|
@@ -702,10 +664,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
702
664
|
env?: string[] | string;
|
|
703
665
|
};
|
|
704
666
|
psk: {
|
|
705
|
-
|
|
667
|
+
writable: boolean;
|
|
706
668
|
type: string;
|
|
707
669
|
isKey: boolean;
|
|
708
|
-
writable: boolean;
|
|
709
670
|
mandatory: boolean;
|
|
710
671
|
collection: boolean;
|
|
711
672
|
private?: boolean;
|
|
@@ -720,25 +681,24 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
720
681
|
metric: {
|
|
721
682
|
type: string;
|
|
722
683
|
collection: boolean;
|
|
723
|
-
|
|
684
|
+
writable: boolean;
|
|
724
685
|
default: number;
|
|
725
686
|
};
|
|
726
687
|
mtu: {
|
|
727
688
|
type: string;
|
|
728
689
|
collection: boolean;
|
|
729
|
-
|
|
690
|
+
writable: boolean;
|
|
730
691
|
default: number;
|
|
731
692
|
};
|
|
732
693
|
gateway: {
|
|
733
694
|
type: string;
|
|
734
695
|
collection: boolean;
|
|
735
|
-
|
|
696
|
+
writable: boolean;
|
|
736
697
|
};
|
|
737
698
|
multicastDNS: {
|
|
738
|
-
|
|
699
|
+
writable: boolean;
|
|
739
700
|
type: string;
|
|
740
701
|
isKey: boolean;
|
|
741
|
-
writable: boolean;
|
|
742
702
|
mandatory: boolean;
|
|
743
703
|
collection: boolean;
|
|
744
704
|
private?: boolean;
|