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
|
@@ -9,24 +9,28 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
9
9
|
owner: {
|
|
10
10
|
type: string;
|
|
11
11
|
collection: boolean;
|
|
12
|
-
|
|
13
|
-
};
|
|
14
|
-
type: {
|
|
15
|
-
type: string;
|
|
16
|
-
collection: boolean;
|
|
17
|
-
writeable: boolean;
|
|
12
|
+
writable: boolean;
|
|
18
13
|
};
|
|
14
|
+
type: import("pacc").AttributeDefinition;
|
|
19
15
|
name: {
|
|
16
|
+
isKey: boolean;
|
|
17
|
+
writable: boolean;
|
|
20
18
|
type: string;
|
|
19
|
+
mandatory: boolean;
|
|
21
20
|
collection: boolean;
|
|
22
|
-
|
|
23
|
-
|
|
21
|
+
private?: boolean;
|
|
22
|
+
depends?: string;
|
|
23
|
+
additionalAttributes: string[];
|
|
24
|
+
description?: string;
|
|
25
|
+
default?: any;
|
|
26
|
+
set?: Function;
|
|
27
|
+
get?: Function;
|
|
28
|
+
env?: string[] | string;
|
|
24
29
|
};
|
|
25
30
|
description: {
|
|
26
|
-
|
|
31
|
+
writable: boolean;
|
|
27
32
|
type: string;
|
|
28
33
|
isKey: boolean;
|
|
29
|
-
writable: boolean;
|
|
30
34
|
mandatory: boolean;
|
|
31
35
|
collection: boolean;
|
|
32
36
|
private?: boolean;
|
|
@@ -41,13 +45,12 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
41
45
|
priority: {
|
|
42
46
|
type: string;
|
|
43
47
|
collection: boolean;
|
|
44
|
-
|
|
48
|
+
writable: boolean;
|
|
45
49
|
};
|
|
46
50
|
directory: {
|
|
47
|
-
|
|
51
|
+
writable: boolean;
|
|
48
52
|
type: string;
|
|
49
53
|
isKey: boolean;
|
|
50
|
-
writable: boolean;
|
|
51
54
|
mandatory: boolean;
|
|
52
55
|
collection: boolean;
|
|
53
56
|
private?: boolean;
|
|
@@ -60,10 +63,9 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
60
63
|
env?: string[] | string;
|
|
61
64
|
};
|
|
62
65
|
packaging: {
|
|
63
|
-
|
|
66
|
+
writable: boolean;
|
|
64
67
|
type: string;
|
|
65
68
|
isKey: boolean;
|
|
66
|
-
writable: boolean;
|
|
67
69
|
mandatory: boolean;
|
|
68
70
|
collection: boolean;
|
|
69
71
|
private?: boolean;
|
|
@@ -76,17 +78,25 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
76
78
|
env?: string[] | string;
|
|
77
79
|
};
|
|
78
80
|
disabled: {
|
|
81
|
+
writable: boolean;
|
|
82
|
+
default: boolean;
|
|
79
83
|
type: string;
|
|
84
|
+
isKey: boolean;
|
|
85
|
+
mandatory: boolean;
|
|
80
86
|
collection: boolean;
|
|
81
|
-
|
|
82
|
-
|
|
87
|
+
private?: boolean;
|
|
88
|
+
depends?: string;
|
|
89
|
+
additionalAttributes: string[];
|
|
90
|
+
description?: string;
|
|
91
|
+
set?: Function;
|
|
92
|
+
get?: Function;
|
|
93
|
+
env?: string[] | string;
|
|
83
94
|
};
|
|
84
95
|
tags: {
|
|
85
96
|
collection: boolean;
|
|
86
|
-
|
|
97
|
+
writable: boolean;
|
|
87
98
|
type: string;
|
|
88
99
|
isKey: boolean;
|
|
89
|
-
writable: boolean;
|
|
90
100
|
mandatory: boolean;
|
|
91
101
|
private?: boolean;
|
|
92
102
|
depends?: string;
|
|
@@ -106,13 +116,12 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
106
116
|
services: {
|
|
107
117
|
type: string;
|
|
108
118
|
collection: boolean;
|
|
109
|
-
|
|
119
|
+
writable: boolean;
|
|
110
120
|
};
|
|
111
121
|
hostName: {
|
|
112
|
-
|
|
122
|
+
writable: boolean;
|
|
113
123
|
type: string;
|
|
114
124
|
isKey: boolean;
|
|
115
|
-
writable: boolean;
|
|
116
125
|
mandatory: boolean;
|
|
117
126
|
collection: boolean;
|
|
118
127
|
private?: boolean;
|
|
@@ -125,10 +134,9 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
125
134
|
env?: string[] | string;
|
|
126
135
|
};
|
|
127
136
|
ipAddresses: {
|
|
128
|
-
|
|
137
|
+
writable: boolean;
|
|
129
138
|
type: string;
|
|
130
139
|
isKey: boolean;
|
|
131
|
-
writable: boolean;
|
|
132
140
|
mandatory: boolean;
|
|
133
141
|
collection: boolean;
|
|
134
142
|
private?: boolean;
|
|
@@ -141,10 +149,9 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
141
149
|
env?: string[] | string;
|
|
142
150
|
};
|
|
143
151
|
hwaddr: {
|
|
144
|
-
|
|
152
|
+
writable: boolean;
|
|
145
153
|
type: string;
|
|
146
154
|
isKey: boolean;
|
|
147
|
-
writable: boolean;
|
|
148
155
|
mandatory: boolean;
|
|
149
156
|
collection: boolean;
|
|
150
157
|
private?: boolean;
|
|
@@ -159,13 +166,12 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
159
166
|
network: {
|
|
160
167
|
type: string;
|
|
161
168
|
collection: boolean;
|
|
162
|
-
|
|
169
|
+
writable: boolean;
|
|
163
170
|
};
|
|
164
171
|
destination: {
|
|
165
|
-
|
|
172
|
+
writable: boolean;
|
|
166
173
|
type: string;
|
|
167
174
|
isKey: boolean;
|
|
168
|
-
writable: boolean;
|
|
169
175
|
mandatory: boolean;
|
|
170
176
|
collection: boolean;
|
|
171
177
|
private?: boolean;
|
|
@@ -179,10 +185,9 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
179
185
|
};
|
|
180
186
|
cidrAddresses: {
|
|
181
187
|
collection: boolean;
|
|
182
|
-
|
|
188
|
+
writable: boolean;
|
|
183
189
|
type: string;
|
|
184
190
|
isKey: boolean;
|
|
185
|
-
writable: boolean;
|
|
186
191
|
mandatory: boolean;
|
|
187
192
|
private?: boolean;
|
|
188
193
|
depends?: string;
|
|
@@ -194,10 +199,9 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
194
199
|
env?: string[] | string;
|
|
195
200
|
};
|
|
196
201
|
cidrAddress: {
|
|
197
|
-
|
|
202
|
+
writable: boolean;
|
|
198
203
|
type: string;
|
|
199
204
|
isKey: boolean;
|
|
200
|
-
writable: boolean;
|
|
201
205
|
mandatory: boolean;
|
|
202
206
|
collection: boolean;
|
|
203
207
|
private?: boolean;
|
|
@@ -211,10 +215,9 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
211
215
|
};
|
|
212
216
|
addresses: {
|
|
213
217
|
collection: boolean;
|
|
214
|
-
|
|
218
|
+
writable: boolean;
|
|
215
219
|
type: string;
|
|
216
220
|
isKey: boolean;
|
|
217
|
-
writable: boolean;
|
|
218
221
|
mandatory: boolean;
|
|
219
222
|
private?: boolean;
|
|
220
223
|
depends?: string;
|
|
@@ -226,10 +229,9 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
226
229
|
env?: string[] | string;
|
|
227
230
|
};
|
|
228
231
|
address: {
|
|
229
|
-
|
|
232
|
+
writable: boolean;
|
|
230
233
|
type: string;
|
|
231
234
|
isKey: boolean;
|
|
232
|
-
writable: boolean;
|
|
233
235
|
mandatory: boolean;
|
|
234
236
|
collection: boolean;
|
|
235
237
|
private?: boolean;
|
|
@@ -242,12 +244,11 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
242
244
|
env?: string[] | string;
|
|
243
245
|
};
|
|
244
246
|
scope: {
|
|
245
|
-
|
|
247
|
+
writable: boolean;
|
|
246
248
|
values: string[];
|
|
247
249
|
default: string;
|
|
248
250
|
type: string;
|
|
249
251
|
isKey: boolean;
|
|
250
|
-
writable: boolean;
|
|
251
252
|
mandatory: boolean;
|
|
252
253
|
collection: boolean;
|
|
253
254
|
private?: boolean;
|
|
@@ -259,11 +260,10 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
259
260
|
env?: string[] | string;
|
|
260
261
|
};
|
|
261
262
|
class: {
|
|
262
|
-
|
|
263
|
+
writable: boolean;
|
|
263
264
|
values: string[];
|
|
264
265
|
type: string;
|
|
265
266
|
isKey: boolean;
|
|
266
|
-
writable: boolean;
|
|
267
267
|
mandatory: boolean;
|
|
268
268
|
collection: boolean;
|
|
269
269
|
private?: boolean;
|
|
@@ -276,11 +276,10 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
276
276
|
env?: string[] | string;
|
|
277
277
|
};
|
|
278
278
|
kind: {
|
|
279
|
-
|
|
279
|
+
writable: boolean;
|
|
280
280
|
values: string[];
|
|
281
281
|
type: string;
|
|
282
282
|
isKey: boolean;
|
|
283
|
-
writable: boolean;
|
|
284
283
|
mandatory: boolean;
|
|
285
284
|
collection: boolean;
|
|
286
285
|
private?: boolean;
|
|
@@ -293,10 +292,9 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
293
292
|
env?: string[] | string;
|
|
294
293
|
};
|
|
295
294
|
ssid: {
|
|
296
|
-
|
|
295
|
+
writable: boolean;
|
|
297
296
|
type: string;
|
|
298
297
|
isKey: boolean;
|
|
299
|
-
writable: boolean;
|
|
300
298
|
mandatory: boolean;
|
|
301
299
|
collection: boolean;
|
|
302
300
|
private?: boolean;
|
|
@@ -309,10 +307,9 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
309
307
|
env?: string[] | string;
|
|
310
308
|
};
|
|
311
309
|
psk: {
|
|
312
|
-
|
|
310
|
+
writable: boolean;
|
|
313
311
|
type: string;
|
|
314
312
|
isKey: boolean;
|
|
315
|
-
writable: boolean;
|
|
316
313
|
mandatory: boolean;
|
|
317
314
|
collection: boolean;
|
|
318
315
|
private?: boolean;
|
|
@@ -327,25 +324,24 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
327
324
|
metric: {
|
|
328
325
|
type: string;
|
|
329
326
|
collection: boolean;
|
|
330
|
-
|
|
327
|
+
writable: boolean;
|
|
331
328
|
default: number;
|
|
332
329
|
};
|
|
333
330
|
mtu: {
|
|
334
331
|
type: string;
|
|
335
332
|
collection: boolean;
|
|
336
|
-
|
|
333
|
+
writable: boolean;
|
|
337
334
|
default: number;
|
|
338
335
|
};
|
|
339
336
|
gateway: {
|
|
340
337
|
type: string;
|
|
341
338
|
collection: boolean;
|
|
342
|
-
|
|
339
|
+
writable: boolean;
|
|
343
340
|
};
|
|
344
341
|
multicastDNS: {
|
|
345
|
-
|
|
342
|
+
writable: boolean;
|
|
346
343
|
type: string;
|
|
347
344
|
isKey: boolean;
|
|
348
|
-
writable: boolean;
|
|
349
345
|
mandatory: boolean;
|
|
350
346
|
collection: boolean;
|
|
351
347
|
private?: boolean;
|
|
@@ -371,24 +367,28 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
371
367
|
owner: {
|
|
372
368
|
type: string;
|
|
373
369
|
collection: boolean;
|
|
374
|
-
|
|
375
|
-
};
|
|
376
|
-
type: {
|
|
377
|
-
type: string;
|
|
378
|
-
collection: boolean;
|
|
379
|
-
writeable: boolean;
|
|
370
|
+
writable: boolean;
|
|
380
371
|
};
|
|
372
|
+
type: import("pacc").AttributeDefinition;
|
|
381
373
|
name: {
|
|
374
|
+
isKey: boolean;
|
|
375
|
+
writable: boolean;
|
|
382
376
|
type: string;
|
|
377
|
+
mandatory: boolean;
|
|
383
378
|
collection: boolean;
|
|
384
|
-
|
|
385
|
-
|
|
379
|
+
private?: boolean;
|
|
380
|
+
depends?: string;
|
|
381
|
+
additionalAttributes: string[];
|
|
382
|
+
description?: string;
|
|
383
|
+
default?: any;
|
|
384
|
+
set?: Function;
|
|
385
|
+
get?: Function;
|
|
386
|
+
env?: string[] | string;
|
|
386
387
|
};
|
|
387
388
|
description: {
|
|
388
|
-
|
|
389
|
+
writable: boolean;
|
|
389
390
|
type: string;
|
|
390
391
|
isKey: boolean;
|
|
391
|
-
writable: boolean;
|
|
392
392
|
mandatory: boolean;
|
|
393
393
|
collection: boolean;
|
|
394
394
|
private?: boolean;
|
|
@@ -403,13 +403,12 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
403
403
|
priority: {
|
|
404
404
|
type: string;
|
|
405
405
|
collection: boolean;
|
|
406
|
-
|
|
406
|
+
writable: boolean;
|
|
407
407
|
};
|
|
408
408
|
directory: {
|
|
409
|
-
|
|
409
|
+
writable: boolean;
|
|
410
410
|
type: string;
|
|
411
411
|
isKey: boolean;
|
|
412
|
-
writable: boolean;
|
|
413
412
|
mandatory: boolean;
|
|
414
413
|
collection: boolean;
|
|
415
414
|
private?: boolean;
|
|
@@ -422,10 +421,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
422
421
|
env?: string[] | string;
|
|
423
422
|
};
|
|
424
423
|
packaging: {
|
|
425
|
-
|
|
424
|
+
writable: boolean;
|
|
426
425
|
type: string;
|
|
427
426
|
isKey: boolean;
|
|
428
|
-
writable: boolean;
|
|
429
427
|
mandatory: boolean;
|
|
430
428
|
collection: boolean;
|
|
431
429
|
private?: boolean;
|
|
@@ -438,17 +436,25 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
438
436
|
env?: string[] | string;
|
|
439
437
|
};
|
|
440
438
|
disabled: {
|
|
439
|
+
writable: boolean;
|
|
440
|
+
default: boolean;
|
|
441
441
|
type: string;
|
|
442
|
+
isKey: boolean;
|
|
443
|
+
mandatory: boolean;
|
|
442
444
|
collection: boolean;
|
|
443
|
-
|
|
444
|
-
|
|
445
|
+
private?: boolean;
|
|
446
|
+
depends?: string;
|
|
447
|
+
additionalAttributes: string[];
|
|
448
|
+
description?: string;
|
|
449
|
+
set?: Function;
|
|
450
|
+
get?: Function;
|
|
451
|
+
env?: string[] | string;
|
|
445
452
|
};
|
|
446
453
|
tags: {
|
|
447
454
|
collection: boolean;
|
|
448
|
-
|
|
455
|
+
writable: boolean;
|
|
449
456
|
type: string;
|
|
450
457
|
isKey: boolean;
|
|
451
|
-
writable: boolean;
|
|
452
458
|
mandatory: boolean;
|
|
453
459
|
private?: boolean;
|
|
454
460
|
depends?: string;
|
|
@@ -467,13 +473,12 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
467
473
|
services: {
|
|
468
474
|
type: string;
|
|
469
475
|
collection: boolean;
|
|
470
|
-
|
|
476
|
+
writable: boolean;
|
|
471
477
|
};
|
|
472
478
|
hostName: {
|
|
473
|
-
|
|
479
|
+
writable: boolean;
|
|
474
480
|
type: string;
|
|
475
481
|
isKey: boolean;
|
|
476
|
-
writable: boolean;
|
|
477
482
|
mandatory: boolean;
|
|
478
483
|
collection: boolean;
|
|
479
484
|
private?: boolean;
|
|
@@ -486,10 +491,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
486
491
|
env?: string[] | string;
|
|
487
492
|
};
|
|
488
493
|
ipAddresses: {
|
|
489
|
-
|
|
494
|
+
writable: boolean;
|
|
490
495
|
type: string;
|
|
491
496
|
isKey: boolean;
|
|
492
|
-
writable: boolean;
|
|
493
497
|
mandatory: boolean;
|
|
494
498
|
collection: boolean;
|
|
495
499
|
private?: boolean;
|
|
@@ -502,10 +506,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
502
506
|
env?: string[] | string;
|
|
503
507
|
};
|
|
504
508
|
hwaddr: {
|
|
505
|
-
|
|
509
|
+
writable: boolean;
|
|
506
510
|
type: string;
|
|
507
511
|
isKey: boolean;
|
|
508
|
-
writable: boolean;
|
|
509
512
|
mandatory: boolean;
|
|
510
513
|
collection: boolean;
|
|
511
514
|
private?: boolean;
|
|
@@ -520,13 +523,12 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
520
523
|
network: {
|
|
521
524
|
type: string;
|
|
522
525
|
collection: boolean;
|
|
523
|
-
|
|
526
|
+
writable: boolean;
|
|
524
527
|
};
|
|
525
528
|
destination: {
|
|
526
|
-
|
|
529
|
+
writable: boolean;
|
|
527
530
|
type: string;
|
|
528
531
|
isKey: boolean;
|
|
529
|
-
writable: boolean;
|
|
530
532
|
mandatory: boolean;
|
|
531
533
|
collection: boolean;
|
|
532
534
|
private?: boolean;
|
|
@@ -540,10 +542,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
540
542
|
};
|
|
541
543
|
cidrAddresses: {
|
|
542
544
|
collection: boolean;
|
|
543
|
-
|
|
545
|
+
writable: boolean;
|
|
544
546
|
type: string;
|
|
545
547
|
isKey: boolean;
|
|
546
|
-
writable: boolean;
|
|
547
548
|
mandatory: boolean;
|
|
548
549
|
private?: boolean;
|
|
549
550
|
depends?: string;
|
|
@@ -555,10 +556,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
555
556
|
env?: string[] | string;
|
|
556
557
|
};
|
|
557
558
|
cidrAddress: {
|
|
558
|
-
|
|
559
|
+
writable: boolean;
|
|
559
560
|
type: string;
|
|
560
561
|
isKey: boolean;
|
|
561
|
-
writable: boolean;
|
|
562
562
|
mandatory: boolean;
|
|
563
563
|
collection: boolean;
|
|
564
564
|
private?: boolean;
|
|
@@ -572,10 +572,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
572
572
|
};
|
|
573
573
|
addresses: {
|
|
574
574
|
collection: boolean;
|
|
575
|
-
|
|
575
|
+
writable: boolean;
|
|
576
576
|
type: string;
|
|
577
577
|
isKey: boolean;
|
|
578
|
-
writable: boolean;
|
|
579
578
|
mandatory: boolean;
|
|
580
579
|
private?: boolean;
|
|
581
580
|
depends?: string;
|
|
@@ -587,10 +586,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
587
586
|
env?: string[] | string;
|
|
588
587
|
};
|
|
589
588
|
address: {
|
|
590
|
-
|
|
589
|
+
writable: boolean;
|
|
591
590
|
type: string;
|
|
592
591
|
isKey: boolean;
|
|
593
|
-
writable: boolean;
|
|
594
592
|
mandatory: boolean;
|
|
595
593
|
collection: boolean;
|
|
596
594
|
private?: boolean;
|
|
@@ -603,12 +601,11 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
603
601
|
env?: string[] | string;
|
|
604
602
|
};
|
|
605
603
|
scope: {
|
|
606
|
-
|
|
604
|
+
writable: boolean;
|
|
607
605
|
values: string[];
|
|
608
606
|
default: string;
|
|
609
607
|
type: string;
|
|
610
608
|
isKey: boolean;
|
|
611
|
-
writable: boolean;
|
|
612
609
|
mandatory: boolean;
|
|
613
610
|
collection: boolean;
|
|
614
611
|
private?: boolean;
|
|
@@ -620,11 +617,10 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
620
617
|
env?: string[] | string;
|
|
621
618
|
};
|
|
622
619
|
class: {
|
|
623
|
-
|
|
620
|
+
writable: boolean;
|
|
624
621
|
values: string[];
|
|
625
622
|
type: string;
|
|
626
623
|
isKey: boolean;
|
|
627
|
-
writable: boolean;
|
|
628
624
|
mandatory: boolean;
|
|
629
625
|
collection: boolean;
|
|
630
626
|
private?: boolean;
|
|
@@ -637,11 +633,10 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
637
633
|
env?: string[] | string;
|
|
638
634
|
};
|
|
639
635
|
kind: {
|
|
640
|
-
|
|
636
|
+
writable: boolean;
|
|
641
637
|
values: string[];
|
|
642
638
|
type: string;
|
|
643
639
|
isKey: boolean;
|
|
644
|
-
writable: boolean;
|
|
645
640
|
mandatory: boolean;
|
|
646
641
|
collection: boolean;
|
|
647
642
|
private?: boolean;
|
|
@@ -654,10 +649,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
654
649
|
env?: string[] | string;
|
|
655
650
|
};
|
|
656
651
|
ssid: {
|
|
657
|
-
|
|
652
|
+
writable: boolean;
|
|
658
653
|
type: string;
|
|
659
654
|
isKey: boolean;
|
|
660
|
-
writable: boolean;
|
|
661
655
|
mandatory: boolean;
|
|
662
656
|
collection: boolean;
|
|
663
657
|
private?: boolean;
|
|
@@ -670,10 +664,9 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
670
664
|
env?: string[] | string;
|
|
671
665
|
};
|
|
672
666
|
psk: {
|
|
673
|
-
|
|
667
|
+
writable: boolean;
|
|
674
668
|
type: string;
|
|
675
669
|
isKey: boolean;
|
|
676
|
-
writable: boolean;
|
|
677
670
|
mandatory: boolean;
|
|
678
671
|
collection: boolean;
|
|
679
672
|
private?: boolean;
|
|
@@ -688,25 +681,24 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
688
681
|
metric: {
|
|
689
682
|
type: string;
|
|
690
683
|
collection: boolean;
|
|
691
|
-
|
|
684
|
+
writable: boolean;
|
|
692
685
|
default: number;
|
|
693
686
|
};
|
|
694
687
|
mtu: {
|
|
695
688
|
type: string;
|
|
696
689
|
collection: boolean;
|
|
697
|
-
|
|
690
|
+
writable: boolean;
|
|
698
691
|
default: number;
|
|
699
692
|
};
|
|
700
693
|
gateway: {
|
|
701
694
|
type: string;
|
|
702
695
|
collection: boolean;
|
|
703
|
-
|
|
696
|
+
writable: boolean;
|
|
704
697
|
};
|
|
705
698
|
multicastDNS: {
|
|
706
|
-
|
|
699
|
+
writable: boolean;
|
|
707
700
|
type: string;
|
|
708
701
|
isKey: boolean;
|
|
709
|
-
writable: boolean;
|
|
710
702
|
mandatory: boolean;
|
|
711
703
|
collection: boolean;
|
|
712
704
|
private?: boolean;
|