pmcf 3.1.1 → 3.2.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 +2 -2
- package/src/services/influxdb.mjs +13 -2
- package/src/services/mosquitto.mjs +24 -5
- package/types/base.d.mts +0 -6
- package/types/cluster.d.mts +0 -38
- package/types/extra-source-service.d.mts +0 -16
- package/types/host.d.mts +0 -24
- package/types/location.d.mts +0 -29
- package/types/network-interfaces/ethernet.d.mts +0 -40
- package/types/network-interfaces/loopback.d.mts +0 -40
- package/types/network-interfaces/network-interface.d.mts +0 -40
- package/types/network-interfaces/wireguard.d.mts +0 -40
- package/types/network-interfaces/wlan.d.mts +0 -60
- package/types/network-support.d.mts +0 -11
- package/types/network.d.mts +0 -20
- package/types/owner.d.mts +0 -14
- package/types/root.d.mts +0 -29
- package/types/service.d.mts +0 -36
- package/types/services/bind.d.mts +0 -44
- package/types/services/chrony.d.mts +0 -32
- package/types/services/influxdb.d.mts +17 -33
- package/types/services/kea.d.mts +0 -37
- package/types/services/mosquitto.d.mts +32 -33
- package/types/services/openldap.d.mts +0 -35
- package/types/services/systemd-journal-remote.d.mts +0 -32
- package/types/services/systemd-journal-upload.d.mts +0 -33
- package/types/services/systemd-journal.d.mts +0 -32
- package/types/services/systemd-resolved.d.mts +0 -32
- package/types/services/systemd-timesyncd.d.mts +0 -32
- package/types/subnet.d.mts +0 -1
|
@@ -23,7 +23,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
23
23
|
collection: boolean;
|
|
24
24
|
private?: boolean;
|
|
25
25
|
depends?: string;
|
|
26
|
-
additionalAttributes: string[];
|
|
27
26
|
description?: string;
|
|
28
27
|
default?: any;
|
|
29
28
|
set?: Function;
|
|
@@ -38,7 +37,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
38
37
|
collection: boolean;
|
|
39
38
|
private?: boolean;
|
|
40
39
|
depends?: string;
|
|
41
|
-
additionalAttributes: string[];
|
|
42
40
|
description?: string;
|
|
43
41
|
default?: any;
|
|
44
42
|
set?: Function;
|
|
@@ -58,7 +56,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
58
56
|
collection: boolean;
|
|
59
57
|
private?: boolean;
|
|
60
58
|
depends?: string;
|
|
61
|
-
additionalAttributes: string[];
|
|
62
59
|
description?: string;
|
|
63
60
|
default?: any;
|
|
64
61
|
set?: Function;
|
|
@@ -73,7 +70,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
73
70
|
collection: boolean;
|
|
74
71
|
private?: boolean;
|
|
75
72
|
depends?: string;
|
|
76
|
-
additionalAttributes: string[];
|
|
77
73
|
description?: string;
|
|
78
74
|
default?: any;
|
|
79
75
|
set?: Function;
|
|
@@ -89,7 +85,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
89
85
|
collection: boolean;
|
|
90
86
|
private?: boolean;
|
|
91
87
|
depends?: string;
|
|
92
|
-
additionalAttributes: string[];
|
|
93
88
|
description?: string;
|
|
94
89
|
set?: Function;
|
|
95
90
|
get?: Function;
|
|
@@ -103,7 +98,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
103
98
|
mandatory: boolean;
|
|
104
99
|
private?: boolean;
|
|
105
100
|
depends?: string;
|
|
106
|
-
additionalAttributes: string[];
|
|
107
101
|
description?: string;
|
|
108
102
|
default?: any;
|
|
109
103
|
set?: Function;
|
|
@@ -128,7 +122,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
128
122
|
collection: boolean;
|
|
129
123
|
private?: boolean;
|
|
130
124
|
depends?: string;
|
|
131
|
-
additionalAttributes: string[];
|
|
132
125
|
description?: string;
|
|
133
126
|
default?: any;
|
|
134
127
|
set?: Function;
|
|
@@ -143,7 +136,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
143
136
|
collection: boolean;
|
|
144
137
|
private?: boolean;
|
|
145
138
|
depends?: string;
|
|
146
|
-
additionalAttributes: string[];
|
|
147
139
|
description?: string;
|
|
148
140
|
default?: any;
|
|
149
141
|
set?: Function;
|
|
@@ -158,7 +150,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
158
150
|
collection: boolean;
|
|
159
151
|
private?: boolean;
|
|
160
152
|
depends?: string;
|
|
161
|
-
additionalAttributes: string[];
|
|
162
153
|
description?: string;
|
|
163
154
|
default?: any;
|
|
164
155
|
set?: Function;
|
|
@@ -178,7 +169,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
178
169
|
collection: boolean;
|
|
179
170
|
private?: boolean;
|
|
180
171
|
depends?: string;
|
|
181
|
-
additionalAttributes: string[];
|
|
182
172
|
description?: string;
|
|
183
173
|
default?: any;
|
|
184
174
|
set?: Function;
|
|
@@ -193,7 +183,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
193
183
|
mandatory: boolean;
|
|
194
184
|
private?: boolean;
|
|
195
185
|
depends?: string;
|
|
196
|
-
additionalAttributes: string[];
|
|
197
186
|
description?: string;
|
|
198
187
|
default?: any;
|
|
199
188
|
set?: Function;
|
|
@@ -208,7 +197,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
208
197
|
collection: boolean;
|
|
209
198
|
private?: boolean;
|
|
210
199
|
depends?: string;
|
|
211
|
-
additionalAttributes: string[];
|
|
212
200
|
description?: string;
|
|
213
201
|
default?: any;
|
|
214
202
|
set?: Function;
|
|
@@ -223,7 +211,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
223
211
|
mandatory: boolean;
|
|
224
212
|
private?: boolean;
|
|
225
213
|
depends?: string;
|
|
226
|
-
additionalAttributes: string[];
|
|
227
214
|
description?: string;
|
|
228
215
|
default?: any;
|
|
229
216
|
set?: Function;
|
|
@@ -238,7 +225,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
238
225
|
collection: boolean;
|
|
239
226
|
private?: boolean;
|
|
240
227
|
depends?: string;
|
|
241
|
-
additionalAttributes: string[];
|
|
242
228
|
description?: string;
|
|
243
229
|
default?: any;
|
|
244
230
|
set?: Function;
|
|
@@ -255,7 +241,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
255
241
|
collection: boolean;
|
|
256
242
|
private?: boolean;
|
|
257
243
|
depends?: string;
|
|
258
|
-
additionalAttributes: string[];
|
|
259
244
|
description?: string;
|
|
260
245
|
set?: Function;
|
|
261
246
|
get?: Function;
|
|
@@ -270,7 +255,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
270
255
|
collection: boolean;
|
|
271
256
|
private?: boolean;
|
|
272
257
|
depends?: string;
|
|
273
|
-
additionalAttributes: string[];
|
|
274
258
|
description?: string;
|
|
275
259
|
default?: any;
|
|
276
260
|
set?: Function;
|
|
@@ -286,7 +270,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
286
270
|
collection: boolean;
|
|
287
271
|
private?: boolean;
|
|
288
272
|
depends?: string;
|
|
289
|
-
additionalAttributes: string[];
|
|
290
273
|
description?: string;
|
|
291
274
|
default?: any;
|
|
292
275
|
set?: Function;
|
|
@@ -301,7 +284,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
301
284
|
collection: boolean;
|
|
302
285
|
private?: boolean;
|
|
303
286
|
depends?: string;
|
|
304
|
-
additionalAttributes: string[];
|
|
305
287
|
description?: string;
|
|
306
288
|
default?: any;
|
|
307
289
|
set?: Function;
|
|
@@ -316,7 +298,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
316
298
|
collection: boolean;
|
|
317
299
|
private?: boolean;
|
|
318
300
|
depends?: string;
|
|
319
|
-
additionalAttributes: string[];
|
|
320
301
|
description?: string;
|
|
321
302
|
default?: any;
|
|
322
303
|
set?: Function;
|
|
@@ -348,7 +329,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
348
329
|
collection: boolean;
|
|
349
330
|
private?: boolean;
|
|
350
331
|
depends?: string;
|
|
351
|
-
additionalAttributes: string[];
|
|
352
332
|
description?: string;
|
|
353
333
|
default?: any;
|
|
354
334
|
set?: Function;
|
|
@@ -382,7 +362,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
382
362
|
collection: boolean;
|
|
383
363
|
private?: boolean;
|
|
384
364
|
depends?: string;
|
|
385
|
-
additionalAttributes: string[];
|
|
386
365
|
description?: string;
|
|
387
366
|
default?: any;
|
|
388
367
|
set?: Function;
|
|
@@ -397,7 +376,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
397
376
|
collection: boolean;
|
|
398
377
|
private?: boolean;
|
|
399
378
|
depends?: string;
|
|
400
|
-
additionalAttributes: string[];
|
|
401
379
|
description?: string;
|
|
402
380
|
default?: any;
|
|
403
381
|
set?: Function;
|
|
@@ -417,7 +395,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
417
395
|
collection: boolean;
|
|
418
396
|
private?: boolean;
|
|
419
397
|
depends?: string;
|
|
420
|
-
additionalAttributes: string[];
|
|
421
398
|
description?: string;
|
|
422
399
|
default?: any;
|
|
423
400
|
set?: Function;
|
|
@@ -432,7 +409,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
432
409
|
collection: boolean;
|
|
433
410
|
private?: boolean;
|
|
434
411
|
depends?: string;
|
|
435
|
-
additionalAttributes: string[];
|
|
436
412
|
description?: string;
|
|
437
413
|
default?: any;
|
|
438
414
|
set?: Function;
|
|
@@ -448,7 +424,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
448
424
|
collection: boolean;
|
|
449
425
|
private?: boolean;
|
|
450
426
|
depends?: string;
|
|
451
|
-
additionalAttributes: string[];
|
|
452
427
|
description?: string;
|
|
453
428
|
set?: Function;
|
|
454
429
|
get?: Function;
|
|
@@ -462,7 +437,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
462
437
|
mandatory: boolean;
|
|
463
438
|
private?: boolean;
|
|
464
439
|
depends?: string;
|
|
465
|
-
additionalAttributes: string[];
|
|
466
440
|
description?: string;
|
|
467
441
|
default?: any;
|
|
468
442
|
set?: Function;
|
|
@@ -487,7 +461,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
487
461
|
collection: boolean;
|
|
488
462
|
private?: boolean;
|
|
489
463
|
depends?: string;
|
|
490
|
-
additionalAttributes: string[];
|
|
491
464
|
description?: string;
|
|
492
465
|
default?: any;
|
|
493
466
|
set?: Function;
|
|
@@ -502,7 +475,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
502
475
|
collection: boolean;
|
|
503
476
|
private?: boolean;
|
|
504
477
|
depends?: string;
|
|
505
|
-
additionalAttributes: string[];
|
|
506
478
|
description?: string;
|
|
507
479
|
default?: any;
|
|
508
480
|
set?: Function;
|
|
@@ -517,7 +489,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
517
489
|
collection: boolean;
|
|
518
490
|
private?: boolean;
|
|
519
491
|
depends?: string;
|
|
520
|
-
additionalAttributes: string[];
|
|
521
492
|
description?: string;
|
|
522
493
|
default?: any;
|
|
523
494
|
set?: Function;
|
|
@@ -537,7 +508,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
537
508
|
collection: boolean;
|
|
538
509
|
private?: boolean;
|
|
539
510
|
depends?: string;
|
|
540
|
-
additionalAttributes: string[];
|
|
541
511
|
description?: string;
|
|
542
512
|
default?: any;
|
|
543
513
|
set?: Function;
|
|
@@ -552,7 +522,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
552
522
|
mandatory: boolean;
|
|
553
523
|
private?: boolean;
|
|
554
524
|
depends?: string;
|
|
555
|
-
additionalAttributes: string[];
|
|
556
525
|
description?: string;
|
|
557
526
|
default?: any;
|
|
558
527
|
set?: Function;
|
|
@@ -567,7 +536,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
567
536
|
collection: boolean;
|
|
568
537
|
private?: boolean;
|
|
569
538
|
depends?: string;
|
|
570
|
-
additionalAttributes: string[];
|
|
571
539
|
description?: string;
|
|
572
540
|
default?: any;
|
|
573
541
|
set?: Function;
|
|
@@ -582,7 +550,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
582
550
|
mandatory: boolean;
|
|
583
551
|
private?: boolean;
|
|
584
552
|
depends?: string;
|
|
585
|
-
additionalAttributes: string[];
|
|
586
553
|
description?: string;
|
|
587
554
|
default?: any;
|
|
588
555
|
set?: Function;
|
|
@@ -597,7 +564,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
597
564
|
collection: boolean;
|
|
598
565
|
private?: boolean;
|
|
599
566
|
depends?: string;
|
|
600
|
-
additionalAttributes: string[];
|
|
601
567
|
description?: string;
|
|
602
568
|
default?: any;
|
|
603
569
|
set?: Function;
|
|
@@ -614,7 +580,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
614
580
|
collection: boolean;
|
|
615
581
|
private?: boolean;
|
|
616
582
|
depends?: string;
|
|
617
|
-
additionalAttributes: string[];
|
|
618
583
|
description?: string;
|
|
619
584
|
set?: Function;
|
|
620
585
|
get?: Function;
|
|
@@ -629,7 +594,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
629
594
|
collection: boolean;
|
|
630
595
|
private?: boolean;
|
|
631
596
|
depends?: string;
|
|
632
|
-
additionalAttributes: string[];
|
|
633
597
|
description?: string;
|
|
634
598
|
default?: any;
|
|
635
599
|
set?: Function;
|
|
@@ -645,7 +609,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
645
609
|
collection: boolean;
|
|
646
610
|
private?: boolean;
|
|
647
611
|
depends?: string;
|
|
648
|
-
additionalAttributes: string[];
|
|
649
612
|
description?: string;
|
|
650
613
|
default?: any;
|
|
651
614
|
set?: Function;
|
|
@@ -660,7 +623,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
660
623
|
collection: boolean;
|
|
661
624
|
private?: boolean;
|
|
662
625
|
depends?: string;
|
|
663
|
-
additionalAttributes: string[];
|
|
664
626
|
description?: string;
|
|
665
627
|
default?: any;
|
|
666
628
|
set?: Function;
|
|
@@ -675,7 +637,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
675
637
|
collection: boolean;
|
|
676
638
|
private?: boolean;
|
|
677
639
|
depends?: string;
|
|
678
|
-
additionalAttributes: string[];
|
|
679
640
|
description?: string;
|
|
680
641
|
default?: any;
|
|
681
642
|
set?: Function;
|
|
@@ -707,7 +668,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
707
668
|
collection: boolean;
|
|
708
669
|
private?: boolean;
|
|
709
670
|
depends?: string;
|
|
710
|
-
additionalAttributes: string[];
|
|
711
671
|
description?: string;
|
|
712
672
|
default?: any;
|
|
713
673
|
set?: Function;
|
|
@@ -739,7 +699,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
739
699
|
collection: boolean;
|
|
740
700
|
private?: boolean;
|
|
741
701
|
depends?: string;
|
|
742
|
-
additionalAttributes: string[];
|
|
743
702
|
description?: string;
|
|
744
703
|
default?: any;
|
|
745
704
|
set?: Function;
|
|
@@ -754,7 +713,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
754
713
|
collection: boolean;
|
|
755
714
|
private?: boolean;
|
|
756
715
|
depends?: string;
|
|
757
|
-
additionalAttributes: string[];
|
|
758
716
|
description?: string;
|
|
759
717
|
default?: any;
|
|
760
718
|
set?: Function;
|
|
@@ -774,7 +732,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
774
732
|
collection: boolean;
|
|
775
733
|
private?: boolean;
|
|
776
734
|
depends?: string;
|
|
777
|
-
additionalAttributes: string[];
|
|
778
735
|
description?: string;
|
|
779
736
|
default?: any;
|
|
780
737
|
set?: Function;
|
|
@@ -789,7 +746,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
789
746
|
collection: boolean;
|
|
790
747
|
private?: boolean;
|
|
791
748
|
depends?: string;
|
|
792
|
-
additionalAttributes: string[];
|
|
793
749
|
description?: string;
|
|
794
750
|
default?: any;
|
|
795
751
|
set?: Function;
|
|
@@ -805,7 +761,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
805
761
|
collection: boolean;
|
|
806
762
|
private?: boolean;
|
|
807
763
|
depends?: string;
|
|
808
|
-
additionalAttributes: string[];
|
|
809
764
|
description?: string;
|
|
810
765
|
set?: Function;
|
|
811
766
|
get?: Function;
|
|
@@ -819,7 +774,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
819
774
|
mandatory: boolean;
|
|
820
775
|
private?: boolean;
|
|
821
776
|
depends?: string;
|
|
822
|
-
additionalAttributes: string[];
|
|
823
777
|
description?: string;
|
|
824
778
|
default?: any;
|
|
825
779
|
set?: Function;
|
|
@@ -844,7 +798,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
844
798
|
collection: boolean;
|
|
845
799
|
private?: boolean;
|
|
846
800
|
depends?: string;
|
|
847
|
-
additionalAttributes: string[];
|
|
848
801
|
description?: string;
|
|
849
802
|
default?: any;
|
|
850
803
|
set?: Function;
|
|
@@ -859,7 +812,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
859
812
|
collection: boolean;
|
|
860
813
|
private?: boolean;
|
|
861
814
|
depends?: string;
|
|
862
|
-
additionalAttributes: string[];
|
|
863
815
|
description?: string;
|
|
864
816
|
default?: any;
|
|
865
817
|
set?: Function;
|
|
@@ -874,7 +826,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
874
826
|
collection: boolean;
|
|
875
827
|
private?: boolean;
|
|
876
828
|
depends?: string;
|
|
877
|
-
additionalAttributes: string[];
|
|
878
829
|
description?: string;
|
|
879
830
|
default?: any;
|
|
880
831
|
set?: Function;
|
|
@@ -894,7 +845,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
894
845
|
collection: boolean;
|
|
895
846
|
private?: boolean;
|
|
896
847
|
depends?: string;
|
|
897
|
-
additionalAttributes: string[];
|
|
898
848
|
description?: string;
|
|
899
849
|
default?: any;
|
|
900
850
|
set?: Function;
|
|
@@ -909,7 +859,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
909
859
|
mandatory: boolean;
|
|
910
860
|
private?: boolean;
|
|
911
861
|
depends?: string;
|
|
912
|
-
additionalAttributes: string[];
|
|
913
862
|
description?: string;
|
|
914
863
|
default?: any;
|
|
915
864
|
set?: Function;
|
|
@@ -924,7 +873,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
924
873
|
collection: boolean;
|
|
925
874
|
private?: boolean;
|
|
926
875
|
depends?: string;
|
|
927
|
-
additionalAttributes: string[];
|
|
928
876
|
description?: string;
|
|
929
877
|
default?: any;
|
|
930
878
|
set?: Function;
|
|
@@ -939,7 +887,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
939
887
|
mandatory: boolean;
|
|
940
888
|
private?: boolean;
|
|
941
889
|
depends?: string;
|
|
942
|
-
additionalAttributes: string[];
|
|
943
890
|
description?: string;
|
|
944
891
|
default?: any;
|
|
945
892
|
set?: Function;
|
|
@@ -954,7 +901,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
954
901
|
collection: boolean;
|
|
955
902
|
private?: boolean;
|
|
956
903
|
depends?: string;
|
|
957
|
-
additionalAttributes: string[];
|
|
958
904
|
description?: string;
|
|
959
905
|
default?: any;
|
|
960
906
|
set?: Function;
|
|
@@ -971,7 +917,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
971
917
|
collection: boolean;
|
|
972
918
|
private?: boolean;
|
|
973
919
|
depends?: string;
|
|
974
|
-
additionalAttributes: string[];
|
|
975
920
|
description?: string;
|
|
976
921
|
set?: Function;
|
|
977
922
|
get?: Function;
|
|
@@ -986,7 +931,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
986
931
|
collection: boolean;
|
|
987
932
|
private?: boolean;
|
|
988
933
|
depends?: string;
|
|
989
|
-
additionalAttributes: string[];
|
|
990
934
|
description?: string;
|
|
991
935
|
default?: any;
|
|
992
936
|
set?: Function;
|
|
@@ -1002,7 +946,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1002
946
|
collection: boolean;
|
|
1003
947
|
private?: boolean;
|
|
1004
948
|
depends?: string;
|
|
1005
|
-
additionalAttributes: string[];
|
|
1006
949
|
description?: string;
|
|
1007
950
|
default?: any;
|
|
1008
951
|
set?: Function;
|
|
@@ -1017,7 +960,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1017
960
|
collection: boolean;
|
|
1018
961
|
private?: boolean;
|
|
1019
962
|
depends?: string;
|
|
1020
|
-
additionalAttributes: string[];
|
|
1021
963
|
description?: string;
|
|
1022
964
|
default?: any;
|
|
1023
965
|
set?: Function;
|
|
@@ -1032,7 +974,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1032
974
|
collection: boolean;
|
|
1033
975
|
private?: boolean;
|
|
1034
976
|
depends?: string;
|
|
1035
|
-
additionalAttributes: string[];
|
|
1036
977
|
description?: string;
|
|
1037
978
|
default?: any;
|
|
1038
979
|
set?: Function;
|
|
@@ -1064,7 +1005,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1064
1005
|
collection: boolean;
|
|
1065
1006
|
private?: boolean;
|
|
1066
1007
|
depends?: string;
|
|
1067
|
-
additionalAttributes: string[];
|
|
1068
1008
|
description?: string;
|
|
1069
1009
|
default?: any;
|
|
1070
1010
|
set?: Function;
|
|
@@ -9,7 +9,6 @@ export namespace networkProperties {
|
|
|
9
9
|
collection: boolean;
|
|
10
10
|
private?: boolean;
|
|
11
11
|
depends?: string;
|
|
12
|
-
additionalAttributes: string[];
|
|
13
12
|
description?: string;
|
|
14
13
|
set?: Function;
|
|
15
14
|
get?: Function;
|
|
@@ -24,7 +23,6 @@ export namespace networkProperties {
|
|
|
24
23
|
collection: boolean;
|
|
25
24
|
private?: boolean;
|
|
26
25
|
depends?: string;
|
|
27
|
-
additionalAttributes: string[];
|
|
28
26
|
description?: string;
|
|
29
27
|
default?: any;
|
|
30
28
|
set?: Function;
|
|
@@ -41,7 +39,6 @@ export namespace networkProperties {
|
|
|
41
39
|
collection: boolean;
|
|
42
40
|
private?: boolean;
|
|
43
41
|
depends?: string;
|
|
44
|
-
additionalAttributes: string[];
|
|
45
42
|
description?: string;
|
|
46
43
|
default?: any;
|
|
47
44
|
set?: Function;
|
|
@@ -56,7 +53,6 @@ export namespace networkProperties {
|
|
|
56
53
|
collection: boolean;
|
|
57
54
|
private?: boolean;
|
|
58
55
|
depends?: string;
|
|
59
|
-
additionalAttributes: string[];
|
|
60
56
|
description?: string;
|
|
61
57
|
default?: any;
|
|
62
58
|
set?: Function;
|
|
@@ -71,7 +67,6 @@ export namespace networkProperties {
|
|
|
71
67
|
collection: boolean;
|
|
72
68
|
private?: boolean;
|
|
73
69
|
depends?: string;
|
|
74
|
-
additionalAttributes: string[];
|
|
75
70
|
description?: string;
|
|
76
71
|
default?: any;
|
|
77
72
|
set?: Function;
|
|
@@ -111,7 +106,6 @@ export namespace networkProperties {
|
|
|
111
106
|
collection: boolean;
|
|
112
107
|
private?: boolean;
|
|
113
108
|
depends?: string;
|
|
114
|
-
additionalAttributes: string[];
|
|
115
109
|
description?: string;
|
|
116
110
|
default?: any;
|
|
117
111
|
set?: Function;
|
|
@@ -128,7 +122,6 @@ export namespace networkAddressProperties {
|
|
|
128
122
|
collection: boolean;
|
|
129
123
|
private?: boolean;
|
|
130
124
|
depends?: string;
|
|
131
|
-
additionalAttributes: string[];
|
|
132
125
|
description?: string;
|
|
133
126
|
default?: any;
|
|
134
127
|
set?: Function;
|
|
@@ -143,7 +136,6 @@ export namespace networkAddressProperties {
|
|
|
143
136
|
mandatory: boolean;
|
|
144
137
|
private?: boolean;
|
|
145
138
|
depends?: string;
|
|
146
|
-
additionalAttributes: string[];
|
|
147
139
|
description?: string;
|
|
148
140
|
default?: any;
|
|
149
141
|
set?: Function;
|
|
@@ -158,7 +150,6 @@ export namespace networkAddressProperties {
|
|
|
158
150
|
collection: boolean;
|
|
159
151
|
private?: boolean;
|
|
160
152
|
depends?: string;
|
|
161
|
-
additionalAttributes: string[];
|
|
162
153
|
description?: string;
|
|
163
154
|
default?: any;
|
|
164
155
|
set?: Function;
|
|
@@ -173,7 +164,6 @@ export namespace networkAddressProperties {
|
|
|
173
164
|
mandatory: boolean;
|
|
174
165
|
private?: boolean;
|
|
175
166
|
depends?: string;
|
|
176
|
-
additionalAttributes: string[];
|
|
177
167
|
description?: string;
|
|
178
168
|
default?: any;
|
|
179
169
|
set?: Function;
|
|
@@ -188,7 +178,6 @@ export namespace networkAddressProperties {
|
|
|
188
178
|
collection: boolean;
|
|
189
179
|
private?: boolean;
|
|
190
180
|
depends?: string;
|
|
191
|
-
additionalAttributes: string[];
|
|
192
181
|
description?: string;
|
|
193
182
|
default?: any;
|
|
194
183
|
set?: Function;
|