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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
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;
|
|
@@ -373,24 +369,28 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
373
369
|
owner: {
|
|
374
370
|
type: string;
|
|
375
371
|
collection: boolean;
|
|
376
|
-
|
|
377
|
-
};
|
|
378
|
-
type: {
|
|
379
|
-
type: string;
|
|
380
|
-
collection: boolean;
|
|
381
|
-
writeable: boolean;
|
|
372
|
+
writable: boolean;
|
|
382
373
|
};
|
|
374
|
+
type: import("pacc").AttributeDefinition;
|
|
383
375
|
name: {
|
|
376
|
+
isKey: boolean;
|
|
377
|
+
writable: boolean;
|
|
384
378
|
type: string;
|
|
379
|
+
mandatory: boolean;
|
|
385
380
|
collection: boolean;
|
|
386
|
-
|
|
387
|
-
|
|
381
|
+
private?: boolean;
|
|
382
|
+
depends?: string;
|
|
383
|
+
additionalAttributes: string[];
|
|
384
|
+
description?: string;
|
|
385
|
+
default?: any;
|
|
386
|
+
set?: Function;
|
|
387
|
+
get?: Function;
|
|
388
|
+
env?: string[] | string;
|
|
388
389
|
};
|
|
389
390
|
description: {
|
|
390
|
-
|
|
391
|
+
writable: boolean;
|
|
391
392
|
type: string;
|
|
392
393
|
isKey: boolean;
|
|
393
|
-
writable: boolean;
|
|
394
394
|
mandatory: boolean;
|
|
395
395
|
collection: boolean;
|
|
396
396
|
private?: boolean;
|
|
@@ -405,13 +405,12 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
405
405
|
priority: {
|
|
406
406
|
type: string;
|
|
407
407
|
collection: boolean;
|
|
408
|
-
|
|
408
|
+
writable: boolean;
|
|
409
409
|
};
|
|
410
410
|
directory: {
|
|
411
|
-
|
|
411
|
+
writable: boolean;
|
|
412
412
|
type: string;
|
|
413
413
|
isKey: boolean;
|
|
414
|
-
writable: boolean;
|
|
415
414
|
mandatory: boolean;
|
|
416
415
|
collection: boolean;
|
|
417
416
|
private?: boolean;
|
|
@@ -424,10 +423,9 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
424
423
|
env?: string[] | string;
|
|
425
424
|
};
|
|
426
425
|
packaging: {
|
|
427
|
-
|
|
426
|
+
writable: boolean;
|
|
428
427
|
type: string;
|
|
429
428
|
isKey: boolean;
|
|
430
|
-
writable: boolean;
|
|
431
429
|
mandatory: boolean;
|
|
432
430
|
collection: boolean;
|
|
433
431
|
private?: boolean;
|
|
@@ -440,17 +438,25 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
440
438
|
env?: string[] | string;
|
|
441
439
|
};
|
|
442
440
|
disabled: {
|
|
441
|
+
writable: boolean;
|
|
442
|
+
default: boolean;
|
|
443
443
|
type: string;
|
|
444
|
+
isKey: boolean;
|
|
445
|
+
mandatory: boolean;
|
|
444
446
|
collection: boolean;
|
|
445
|
-
|
|
446
|
-
|
|
447
|
+
private?: boolean;
|
|
448
|
+
depends?: string;
|
|
449
|
+
additionalAttributes: string[];
|
|
450
|
+
description?: string;
|
|
451
|
+
set?: Function;
|
|
452
|
+
get?: Function;
|
|
453
|
+
env?: string[] | string;
|
|
447
454
|
};
|
|
448
455
|
tags: {
|
|
449
456
|
collection: boolean;
|
|
450
|
-
|
|
457
|
+
writable: boolean;
|
|
451
458
|
type: string;
|
|
452
459
|
isKey: boolean;
|
|
453
|
-
writable: boolean;
|
|
454
460
|
mandatory: boolean;
|
|
455
461
|
private?: boolean;
|
|
456
462
|
depends?: string;
|
|
@@ -469,13 +475,12 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
469
475
|
services: {
|
|
470
476
|
type: string;
|
|
471
477
|
collection: boolean;
|
|
472
|
-
|
|
478
|
+
writable: boolean;
|
|
473
479
|
};
|
|
474
480
|
hostName: {
|
|
475
|
-
|
|
481
|
+
writable: boolean;
|
|
476
482
|
type: string;
|
|
477
483
|
isKey: boolean;
|
|
478
|
-
writable: boolean;
|
|
479
484
|
mandatory: boolean;
|
|
480
485
|
collection: boolean;
|
|
481
486
|
private?: boolean;
|
|
@@ -488,10 +493,9 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
488
493
|
env?: string[] | string;
|
|
489
494
|
};
|
|
490
495
|
ipAddresses: {
|
|
491
|
-
|
|
496
|
+
writable: boolean;
|
|
492
497
|
type: string;
|
|
493
498
|
isKey: boolean;
|
|
494
|
-
writable: boolean;
|
|
495
499
|
mandatory: boolean;
|
|
496
500
|
collection: boolean;
|
|
497
501
|
private?: boolean;
|
|
@@ -504,10 +508,9 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
504
508
|
env?: string[] | string;
|
|
505
509
|
};
|
|
506
510
|
hwaddr: {
|
|
507
|
-
|
|
511
|
+
writable: boolean;
|
|
508
512
|
type: string;
|
|
509
513
|
isKey: boolean;
|
|
510
|
-
writable: boolean;
|
|
511
514
|
mandatory: boolean;
|
|
512
515
|
collection: boolean;
|
|
513
516
|
private?: boolean;
|
|
@@ -522,13 +525,12 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
522
525
|
network: {
|
|
523
526
|
type: string;
|
|
524
527
|
collection: boolean;
|
|
525
|
-
|
|
528
|
+
writable: boolean;
|
|
526
529
|
};
|
|
527
530
|
destination: {
|
|
528
|
-
|
|
531
|
+
writable: boolean;
|
|
529
532
|
type: string;
|
|
530
533
|
isKey: boolean;
|
|
531
|
-
writable: boolean;
|
|
532
534
|
mandatory: boolean;
|
|
533
535
|
collection: boolean;
|
|
534
536
|
private?: boolean;
|
|
@@ -542,10 +544,9 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
542
544
|
};
|
|
543
545
|
cidrAddresses: {
|
|
544
546
|
collection: boolean;
|
|
545
|
-
|
|
547
|
+
writable: boolean;
|
|
546
548
|
type: string;
|
|
547
549
|
isKey: boolean;
|
|
548
|
-
writable: boolean;
|
|
549
550
|
mandatory: boolean;
|
|
550
551
|
private?: boolean;
|
|
551
552
|
depends?: string;
|
|
@@ -557,10 +558,9 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
557
558
|
env?: string[] | string;
|
|
558
559
|
};
|
|
559
560
|
cidrAddress: {
|
|
560
|
-
|
|
561
|
+
writable: boolean;
|
|
561
562
|
type: string;
|
|
562
563
|
isKey: boolean;
|
|
563
|
-
writable: boolean;
|
|
564
564
|
mandatory: boolean;
|
|
565
565
|
collection: boolean;
|
|
566
566
|
private?: boolean;
|
|
@@ -574,10 +574,9 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
574
574
|
};
|
|
575
575
|
addresses: {
|
|
576
576
|
collection: boolean;
|
|
577
|
-
|
|
577
|
+
writable: boolean;
|
|
578
578
|
type: string;
|
|
579
579
|
isKey: boolean;
|
|
580
|
-
writable: boolean;
|
|
581
580
|
mandatory: boolean;
|
|
582
581
|
private?: boolean;
|
|
583
582
|
depends?: string;
|
|
@@ -589,10 +588,9 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
589
588
|
env?: string[] | string;
|
|
590
589
|
};
|
|
591
590
|
address: {
|
|
592
|
-
|
|
591
|
+
writable: boolean;
|
|
593
592
|
type: string;
|
|
594
593
|
isKey: boolean;
|
|
595
|
-
writable: boolean;
|
|
596
594
|
mandatory: boolean;
|
|
597
595
|
collection: boolean;
|
|
598
596
|
private?: boolean;
|
|
@@ -605,12 +603,11 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
605
603
|
env?: string[] | string;
|
|
606
604
|
};
|
|
607
605
|
scope: {
|
|
608
|
-
|
|
606
|
+
writable: boolean;
|
|
609
607
|
values: string[];
|
|
610
608
|
default: string;
|
|
611
609
|
type: string;
|
|
612
610
|
isKey: boolean;
|
|
613
|
-
writable: boolean;
|
|
614
611
|
mandatory: boolean;
|
|
615
612
|
collection: boolean;
|
|
616
613
|
private?: boolean;
|
|
@@ -622,11 +619,10 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
622
619
|
env?: string[] | string;
|
|
623
620
|
};
|
|
624
621
|
class: {
|
|
625
|
-
|
|
622
|
+
writable: boolean;
|
|
626
623
|
values: string[];
|
|
627
624
|
type: string;
|
|
628
625
|
isKey: boolean;
|
|
629
|
-
writable: boolean;
|
|
630
626
|
mandatory: boolean;
|
|
631
627
|
collection: boolean;
|
|
632
628
|
private?: boolean;
|
|
@@ -639,11 +635,10 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
639
635
|
env?: string[] | string;
|
|
640
636
|
};
|
|
641
637
|
kind: {
|
|
642
|
-
|
|
638
|
+
writable: boolean;
|
|
643
639
|
values: string[];
|
|
644
640
|
type: string;
|
|
645
641
|
isKey: boolean;
|
|
646
|
-
writable: boolean;
|
|
647
642
|
mandatory: boolean;
|
|
648
643
|
collection: boolean;
|
|
649
644
|
private?: boolean;
|
|
@@ -656,10 +651,9 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
656
651
|
env?: string[] | string;
|
|
657
652
|
};
|
|
658
653
|
ssid: {
|
|
659
|
-
|
|
654
|
+
writable: boolean;
|
|
660
655
|
type: string;
|
|
661
656
|
isKey: boolean;
|
|
662
|
-
writable: boolean;
|
|
663
657
|
mandatory: boolean;
|
|
664
658
|
collection: boolean;
|
|
665
659
|
private?: boolean;
|
|
@@ -672,10 +666,9 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
672
666
|
env?: string[] | string;
|
|
673
667
|
};
|
|
674
668
|
psk: {
|
|
675
|
-
|
|
669
|
+
writable: boolean;
|
|
676
670
|
type: string;
|
|
677
671
|
isKey: boolean;
|
|
678
|
-
writable: boolean;
|
|
679
672
|
mandatory: boolean;
|
|
680
673
|
collection: boolean;
|
|
681
674
|
private?: boolean;
|
|
@@ -690,25 +683,24 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
690
683
|
metric: {
|
|
691
684
|
type: string;
|
|
692
685
|
collection: boolean;
|
|
693
|
-
|
|
686
|
+
writable: boolean;
|
|
694
687
|
default: number;
|
|
695
688
|
};
|
|
696
689
|
mtu: {
|
|
697
690
|
type: string;
|
|
698
691
|
collection: boolean;
|
|
699
|
-
|
|
692
|
+
writable: boolean;
|
|
700
693
|
default: number;
|
|
701
694
|
};
|
|
702
695
|
gateway: {
|
|
703
696
|
type: string;
|
|
704
697
|
collection: boolean;
|
|
705
|
-
|
|
698
|
+
writable: boolean;
|
|
706
699
|
};
|
|
707
700
|
multicastDNS: {
|
|
708
|
-
|
|
701
|
+
writable: boolean;
|
|
709
702
|
type: string;
|
|
710
703
|
isKey: boolean;
|
|
711
|
-
writable: boolean;
|
|
712
704
|
mandatory: boolean;
|
|
713
705
|
collection: boolean;
|
|
714
706
|
private?: boolean;
|