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