pmcf 3.18.1 → 3.18.3
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/README.md +0 -1
- package/package.json +5 -5
- package/types/base.d.mts +1 -0
- package/types/cluster.d.mts +17 -0
- package/types/extra-source-service.d.mts +40 -0
- package/types/host.d.mts +8 -0
- package/types/location.d.mts +12 -0
- package/types/network-interfaces/ethernet.d.mts +46 -0
- package/types/network-interfaces/loopback.d.mts +44 -0
- package/types/network-interfaces/network-interface.d.mts +44 -0
- package/types/network-interfaces/tun.d.mts +44 -0
- package/types/network-interfaces/wireguard.d.mts +44 -0
- package/types/network-interfaces/wlan.d.mts +68 -0
- package/types/network-support.d.mts +8 -0
- package/types/network.d.mts +26 -0
- package/types/owner.d.mts +6 -0
- package/types/service.d.mts +23 -0
- package/types/services/bind.d.mts +57 -0
- package/types/services/chrony.d.mts +50 -0
- package/types/services/headscale.d.mts +30 -0
- package/types/services/influxdb.d.mts +31 -0
- package/types/services/kea.d.mts +35 -0
- package/types/services/mosquitto.d.mts +32 -0
- package/types/services/openldap.d.mts +30 -0
- package/types/services/systemd-journal-remote.d.mts +30 -0
- package/types/services/systemd-journal-upload.d.mts +30 -0
- package/types/services/systemd-journal.d.mts +30 -0
- package/types/services/systemd-resolved.d.mts +50 -0
- package/types/services/systemd-timesyncd.d.mts +50 -0
- package/types/services/tailscale.d.mts +30 -0
- package/types/subnet.d.mts +1 -0
|
@@ -18,6 +18,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
18
18
|
writable: boolean;
|
|
19
19
|
mandatory: boolean;
|
|
20
20
|
private?: boolean;
|
|
21
|
+
credential?: boolean;
|
|
21
22
|
depends?: string;
|
|
22
23
|
description?: string;
|
|
23
24
|
default?: any;
|
|
@@ -36,6 +37,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
36
37
|
mandatory: boolean;
|
|
37
38
|
collection: boolean;
|
|
38
39
|
private?: boolean;
|
|
40
|
+
credential?: boolean;
|
|
39
41
|
depends?: string;
|
|
40
42
|
description?: string;
|
|
41
43
|
default?: any;
|
|
@@ -66,6 +68,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
66
68
|
writable: boolean;
|
|
67
69
|
mandatory: boolean;
|
|
68
70
|
private?: boolean;
|
|
71
|
+
credential?: boolean;
|
|
69
72
|
depends?: string;
|
|
70
73
|
description?: string;
|
|
71
74
|
default?: any;
|
|
@@ -84,6 +87,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
84
87
|
writable: boolean;
|
|
85
88
|
mandatory: boolean;
|
|
86
89
|
private?: boolean;
|
|
90
|
+
credential?: boolean;
|
|
87
91
|
depends?: string;
|
|
88
92
|
description?: string;
|
|
89
93
|
default?: any;
|
|
@@ -102,6 +106,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
102
106
|
writable: boolean;
|
|
103
107
|
mandatory: boolean;
|
|
104
108
|
private?: boolean;
|
|
109
|
+
credential?: boolean;
|
|
105
110
|
depends?: string;
|
|
106
111
|
description?: string;
|
|
107
112
|
default?: any;
|
|
@@ -128,6 +133,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
128
133
|
writable: boolean;
|
|
129
134
|
mandatory: boolean;
|
|
130
135
|
private?: boolean;
|
|
136
|
+
credential?: boolean;
|
|
131
137
|
depends?: string;
|
|
132
138
|
description?: string;
|
|
133
139
|
default?: any;
|
|
@@ -148,6 +154,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
148
154
|
writable: boolean;
|
|
149
155
|
mandatory: boolean;
|
|
150
156
|
private?: boolean;
|
|
157
|
+
credential?: boolean;
|
|
151
158
|
depends?: string;
|
|
152
159
|
description?: string;
|
|
153
160
|
default?: any;
|
|
@@ -172,6 +179,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
172
179
|
mandatory: boolean;
|
|
173
180
|
collection: boolean;
|
|
174
181
|
private?: boolean;
|
|
182
|
+
credential?: boolean;
|
|
175
183
|
depends?: string;
|
|
176
184
|
description?: string;
|
|
177
185
|
default?: any;
|
|
@@ -194,6 +202,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
194
202
|
writable: boolean;
|
|
195
203
|
mandatory: boolean;
|
|
196
204
|
private?: boolean;
|
|
205
|
+
credential?: boolean;
|
|
197
206
|
depends?: string;
|
|
198
207
|
description?: string;
|
|
199
208
|
default?: any;
|
|
@@ -212,6 +221,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
212
221
|
mandatory: boolean;
|
|
213
222
|
collection: boolean;
|
|
214
223
|
private?: boolean;
|
|
224
|
+
credential?: boolean;
|
|
215
225
|
depends?: string;
|
|
216
226
|
description?: string;
|
|
217
227
|
default?: any;
|
|
@@ -231,6 +241,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
231
241
|
mandatory: boolean;
|
|
232
242
|
collection: boolean;
|
|
233
243
|
private?: boolean;
|
|
244
|
+
credential?: boolean;
|
|
234
245
|
depends?: string;
|
|
235
246
|
description?: string;
|
|
236
247
|
default?: any;
|
|
@@ -249,6 +260,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
249
260
|
mandatory: boolean;
|
|
250
261
|
collection: boolean;
|
|
251
262
|
private?: boolean;
|
|
263
|
+
credential?: boolean;
|
|
252
264
|
depends?: string;
|
|
253
265
|
description?: string;
|
|
254
266
|
default?: any;
|
|
@@ -267,6 +279,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
267
279
|
mandatory: boolean;
|
|
268
280
|
collection: boolean;
|
|
269
281
|
private?: boolean;
|
|
282
|
+
credential?: boolean;
|
|
270
283
|
depends?: string;
|
|
271
284
|
description?: string;
|
|
272
285
|
default?: any;
|
|
@@ -287,6 +300,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
287
300
|
mandatory: boolean;
|
|
288
301
|
collection: boolean;
|
|
289
302
|
private?: boolean;
|
|
303
|
+
credential?: boolean;
|
|
290
304
|
depends?: string;
|
|
291
305
|
description?: string;
|
|
292
306
|
default?: any;
|
|
@@ -306,6 +320,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
306
320
|
mandatory: boolean;
|
|
307
321
|
collection: boolean;
|
|
308
322
|
private?: boolean;
|
|
323
|
+
credential?: boolean;
|
|
309
324
|
depends?: string;
|
|
310
325
|
description?: string;
|
|
311
326
|
set?: Function;
|
|
@@ -324,6 +339,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
324
339
|
mandatory: boolean;
|
|
325
340
|
collection: boolean;
|
|
326
341
|
private?: boolean;
|
|
342
|
+
credential?: boolean;
|
|
327
343
|
depends?: string;
|
|
328
344
|
description?: string;
|
|
329
345
|
default?: any;
|
|
@@ -348,6 +364,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
348
364
|
mandatory: boolean;
|
|
349
365
|
collection: boolean;
|
|
350
366
|
private?: boolean;
|
|
367
|
+
credential?: boolean;
|
|
351
368
|
depends?: string;
|
|
352
369
|
description?: string;
|
|
353
370
|
default?: any;
|
|
@@ -366,6 +383,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
366
383
|
mandatory: boolean;
|
|
367
384
|
collection: boolean;
|
|
368
385
|
private?: boolean;
|
|
386
|
+
credential?: boolean;
|
|
369
387
|
depends?: string;
|
|
370
388
|
description?: string;
|
|
371
389
|
default?: any;
|
|
@@ -384,6 +402,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
384
402
|
mandatory: boolean;
|
|
385
403
|
collection: boolean;
|
|
386
404
|
private?: boolean;
|
|
405
|
+
credential?: boolean;
|
|
387
406
|
depends?: string;
|
|
388
407
|
description?: string;
|
|
389
408
|
default?: any;
|
|
@@ -404,6 +423,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
404
423
|
mandatory: boolean;
|
|
405
424
|
collection: boolean;
|
|
406
425
|
private?: boolean;
|
|
426
|
+
credential?: boolean;
|
|
407
427
|
depends?: string;
|
|
408
428
|
description?: string;
|
|
409
429
|
default?: any;
|
|
@@ -423,6 +443,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
423
443
|
mandatory: boolean;
|
|
424
444
|
collection: boolean;
|
|
425
445
|
private?: boolean;
|
|
446
|
+
credential?: boolean;
|
|
426
447
|
depends?: string;
|
|
427
448
|
description?: string;
|
|
428
449
|
set?: Function;
|
|
@@ -440,6 +461,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
440
461
|
mandatory: boolean;
|
|
441
462
|
collection: boolean;
|
|
442
463
|
private?: boolean;
|
|
464
|
+
credential?: boolean;
|
|
443
465
|
depends?: string;
|
|
444
466
|
description?: string;
|
|
445
467
|
default?: any;
|
|
@@ -469,6 +491,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
469
491
|
writable: boolean;
|
|
470
492
|
mandatory: boolean;
|
|
471
493
|
private?: boolean;
|
|
494
|
+
credential?: boolean;
|
|
472
495
|
depends?: string;
|
|
473
496
|
description?: string;
|
|
474
497
|
default?: any;
|
|
@@ -487,6 +510,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
487
510
|
mandatory: boolean;
|
|
488
511
|
collection: boolean;
|
|
489
512
|
private?: boolean;
|
|
513
|
+
credential?: boolean;
|
|
490
514
|
depends?: string;
|
|
491
515
|
description?: string;
|
|
492
516
|
default?: any;
|
|
@@ -517,6 +541,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
517
541
|
writable: boolean;
|
|
518
542
|
mandatory: boolean;
|
|
519
543
|
private?: boolean;
|
|
544
|
+
credential?: boolean;
|
|
520
545
|
depends?: string;
|
|
521
546
|
description?: string;
|
|
522
547
|
default?: any;
|
|
@@ -535,6 +560,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
535
560
|
writable: boolean;
|
|
536
561
|
mandatory: boolean;
|
|
537
562
|
private?: boolean;
|
|
563
|
+
credential?: boolean;
|
|
538
564
|
depends?: string;
|
|
539
565
|
description?: string;
|
|
540
566
|
default?: any;
|
|
@@ -553,6 +579,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
553
579
|
writable: boolean;
|
|
554
580
|
mandatory: boolean;
|
|
555
581
|
private?: boolean;
|
|
582
|
+
credential?: boolean;
|
|
556
583
|
depends?: string;
|
|
557
584
|
description?: string;
|
|
558
585
|
default?: any;
|
|
@@ -579,6 +606,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
579
606
|
writable: boolean;
|
|
580
607
|
mandatory: boolean;
|
|
581
608
|
private?: boolean;
|
|
609
|
+
credential?: boolean;
|
|
582
610
|
depends?: string;
|
|
583
611
|
description?: string;
|
|
584
612
|
default?: any;
|
|
@@ -599,6 +627,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
599
627
|
writable: boolean;
|
|
600
628
|
mandatory: boolean;
|
|
601
629
|
private?: boolean;
|
|
630
|
+
credential?: boolean;
|
|
602
631
|
depends?: string;
|
|
603
632
|
description?: string;
|
|
604
633
|
default?: any;
|
|
@@ -623,6 +652,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
623
652
|
mandatory: boolean;
|
|
624
653
|
collection: boolean;
|
|
625
654
|
private?: boolean;
|
|
655
|
+
credential?: boolean;
|
|
626
656
|
depends?: string;
|
|
627
657
|
description?: string;
|
|
628
658
|
default?: any;
|
|
@@ -645,6 +675,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
645
675
|
writable: boolean;
|
|
646
676
|
mandatory: boolean;
|
|
647
677
|
private?: boolean;
|
|
678
|
+
credential?: boolean;
|
|
648
679
|
depends?: string;
|
|
649
680
|
description?: string;
|
|
650
681
|
default?: any;
|
|
@@ -663,6 +694,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
663
694
|
mandatory: boolean;
|
|
664
695
|
collection: boolean;
|
|
665
696
|
private?: boolean;
|
|
697
|
+
credential?: boolean;
|
|
666
698
|
depends?: string;
|
|
667
699
|
description?: string;
|
|
668
700
|
default?: any;
|
|
@@ -682,6 +714,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
682
714
|
mandatory: boolean;
|
|
683
715
|
collection: boolean;
|
|
684
716
|
private?: boolean;
|
|
717
|
+
credential?: boolean;
|
|
685
718
|
depends?: string;
|
|
686
719
|
description?: string;
|
|
687
720
|
default?: any;
|
|
@@ -700,6 +733,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
700
733
|
mandatory: boolean;
|
|
701
734
|
collection: boolean;
|
|
702
735
|
private?: boolean;
|
|
736
|
+
credential?: boolean;
|
|
703
737
|
depends?: string;
|
|
704
738
|
description?: string;
|
|
705
739
|
default?: any;
|
|
@@ -718,6 +752,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
718
752
|
mandatory: boolean;
|
|
719
753
|
collection: boolean;
|
|
720
754
|
private?: boolean;
|
|
755
|
+
credential?: boolean;
|
|
721
756
|
depends?: string;
|
|
722
757
|
description?: string;
|
|
723
758
|
default?: any;
|
|
@@ -738,6 +773,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
738
773
|
mandatory: boolean;
|
|
739
774
|
collection: boolean;
|
|
740
775
|
private?: boolean;
|
|
776
|
+
credential?: boolean;
|
|
741
777
|
depends?: string;
|
|
742
778
|
description?: string;
|
|
743
779
|
default?: any;
|
|
@@ -757,6 +793,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
757
793
|
mandatory: boolean;
|
|
758
794
|
collection: boolean;
|
|
759
795
|
private?: boolean;
|
|
796
|
+
credential?: boolean;
|
|
760
797
|
depends?: string;
|
|
761
798
|
description?: string;
|
|
762
799
|
set?: Function;
|
|
@@ -775,6 +812,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
775
812
|
mandatory: boolean;
|
|
776
813
|
collection: boolean;
|
|
777
814
|
private?: boolean;
|
|
815
|
+
credential?: boolean;
|
|
778
816
|
depends?: string;
|
|
779
817
|
description?: string;
|
|
780
818
|
default?: any;
|
|
@@ -799,6 +837,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
799
837
|
mandatory: boolean;
|
|
800
838
|
collection: boolean;
|
|
801
839
|
private?: boolean;
|
|
840
|
+
credential?: boolean;
|
|
802
841
|
depends?: string;
|
|
803
842
|
description?: string;
|
|
804
843
|
default?: any;
|
|
@@ -817,6 +856,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
817
856
|
mandatory: boolean;
|
|
818
857
|
collection: boolean;
|
|
819
858
|
private?: boolean;
|
|
859
|
+
credential?: boolean;
|
|
820
860
|
depends?: string;
|
|
821
861
|
description?: string;
|
|
822
862
|
default?: any;
|
|
@@ -835,6 +875,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
835
875
|
mandatory: boolean;
|
|
836
876
|
collection: boolean;
|
|
837
877
|
private?: boolean;
|
|
878
|
+
credential?: boolean;
|
|
838
879
|
depends?: string;
|
|
839
880
|
description?: string;
|
|
840
881
|
default?: any;
|
|
@@ -855,6 +896,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
855
896
|
mandatory: boolean;
|
|
856
897
|
collection: boolean;
|
|
857
898
|
private?: boolean;
|
|
899
|
+
credential?: boolean;
|
|
858
900
|
depends?: string;
|
|
859
901
|
description?: string;
|
|
860
902
|
default?: any;
|
|
@@ -874,6 +916,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
874
916
|
mandatory: boolean;
|
|
875
917
|
collection: boolean;
|
|
876
918
|
private?: boolean;
|
|
919
|
+
credential?: boolean;
|
|
877
920
|
depends?: string;
|
|
878
921
|
description?: string;
|
|
879
922
|
set?: Function;
|
|
@@ -891,6 +934,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
891
934
|
mandatory: boolean;
|
|
892
935
|
collection: boolean;
|
|
893
936
|
private?: boolean;
|
|
937
|
+
credential?: boolean;
|
|
894
938
|
depends?: string;
|
|
895
939
|
description?: string;
|
|
896
940
|
default?: any;
|
|
@@ -915,6 +959,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
915
959
|
writable: boolean;
|
|
916
960
|
mandatory: boolean;
|
|
917
961
|
private?: boolean;
|
|
962
|
+
credential?: boolean;
|
|
918
963
|
depends?: string;
|
|
919
964
|
description?: string;
|
|
920
965
|
default?: any;
|
|
@@ -943,6 +988,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
943
988
|
writable: boolean;
|
|
944
989
|
mandatory: boolean;
|
|
945
990
|
private?: boolean;
|
|
991
|
+
credential?: boolean;
|
|
946
992
|
depends?: string;
|
|
947
993
|
description?: string;
|
|
948
994
|
default?: any;
|
|
@@ -961,6 +1007,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
961
1007
|
mandatory: boolean;
|
|
962
1008
|
collection: boolean;
|
|
963
1009
|
private?: boolean;
|
|
1010
|
+
credential?: boolean;
|
|
964
1011
|
depends?: string;
|
|
965
1012
|
description?: string;
|
|
966
1013
|
default?: any;
|
|
@@ -991,6 +1038,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
991
1038
|
writable: boolean;
|
|
992
1039
|
mandatory: boolean;
|
|
993
1040
|
private?: boolean;
|
|
1041
|
+
credential?: boolean;
|
|
994
1042
|
depends?: string;
|
|
995
1043
|
description?: string;
|
|
996
1044
|
default?: any;
|
|
@@ -1009,6 +1057,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1009
1057
|
writable: boolean;
|
|
1010
1058
|
mandatory: boolean;
|
|
1011
1059
|
private?: boolean;
|
|
1060
|
+
credential?: boolean;
|
|
1012
1061
|
depends?: string;
|
|
1013
1062
|
description?: string;
|
|
1014
1063
|
default?: any;
|
|
@@ -1027,6 +1076,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1027
1076
|
writable: boolean;
|
|
1028
1077
|
mandatory: boolean;
|
|
1029
1078
|
private?: boolean;
|
|
1079
|
+
credential?: boolean;
|
|
1030
1080
|
depends?: string;
|
|
1031
1081
|
description?: string;
|
|
1032
1082
|
default?: any;
|
|
@@ -1053,6 +1103,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1053
1103
|
writable: boolean;
|
|
1054
1104
|
mandatory: boolean;
|
|
1055
1105
|
private?: boolean;
|
|
1106
|
+
credential?: boolean;
|
|
1056
1107
|
depends?: string;
|
|
1057
1108
|
description?: string;
|
|
1058
1109
|
default?: any;
|
|
@@ -1073,6 +1124,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1073
1124
|
writable: boolean;
|
|
1074
1125
|
mandatory: boolean;
|
|
1075
1126
|
private?: boolean;
|
|
1127
|
+
credential?: boolean;
|
|
1076
1128
|
depends?: string;
|
|
1077
1129
|
description?: string;
|
|
1078
1130
|
default?: any;
|
|
@@ -1097,6 +1149,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1097
1149
|
mandatory: boolean;
|
|
1098
1150
|
collection: boolean;
|
|
1099
1151
|
private?: boolean;
|
|
1152
|
+
credential?: boolean;
|
|
1100
1153
|
depends?: string;
|
|
1101
1154
|
description?: string;
|
|
1102
1155
|
default?: any;
|
|
@@ -1119,6 +1172,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1119
1172
|
writable: boolean;
|
|
1120
1173
|
mandatory: boolean;
|
|
1121
1174
|
private?: boolean;
|
|
1175
|
+
credential?: boolean;
|
|
1122
1176
|
depends?: string;
|
|
1123
1177
|
description?: string;
|
|
1124
1178
|
default?: any;
|
|
@@ -1137,6 +1191,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1137
1191
|
mandatory: boolean;
|
|
1138
1192
|
collection: boolean;
|
|
1139
1193
|
private?: boolean;
|
|
1194
|
+
credential?: boolean;
|
|
1140
1195
|
depends?: string;
|
|
1141
1196
|
description?: string;
|
|
1142
1197
|
default?: any;
|
|
@@ -1156,6 +1211,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1156
1211
|
mandatory: boolean;
|
|
1157
1212
|
collection: boolean;
|
|
1158
1213
|
private?: boolean;
|
|
1214
|
+
credential?: boolean;
|
|
1159
1215
|
depends?: string;
|
|
1160
1216
|
description?: string;
|
|
1161
1217
|
default?: any;
|
|
@@ -1174,6 +1230,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1174
1230
|
mandatory: boolean;
|
|
1175
1231
|
collection: boolean;
|
|
1176
1232
|
private?: boolean;
|
|
1233
|
+
credential?: boolean;
|
|
1177
1234
|
depends?: string;
|
|
1178
1235
|
description?: string;
|
|
1179
1236
|
default?: any;
|
|
@@ -1192,6 +1249,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1192
1249
|
mandatory: boolean;
|
|
1193
1250
|
collection: boolean;
|
|
1194
1251
|
private?: boolean;
|
|
1252
|
+
credential?: boolean;
|
|
1195
1253
|
depends?: string;
|
|
1196
1254
|
description?: string;
|
|
1197
1255
|
default?: any;
|
|
@@ -1212,6 +1270,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1212
1270
|
mandatory: boolean;
|
|
1213
1271
|
collection: boolean;
|
|
1214
1272
|
private?: boolean;
|
|
1273
|
+
credential?: boolean;
|
|
1215
1274
|
depends?: string;
|
|
1216
1275
|
description?: string;
|
|
1217
1276
|
default?: any;
|
|
@@ -1231,6 +1290,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1231
1290
|
mandatory: boolean;
|
|
1232
1291
|
collection: boolean;
|
|
1233
1292
|
private?: boolean;
|
|
1293
|
+
credential?: boolean;
|
|
1234
1294
|
depends?: string;
|
|
1235
1295
|
description?: string;
|
|
1236
1296
|
set?: Function;
|
|
@@ -1249,6 +1309,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1249
1309
|
mandatory: boolean;
|
|
1250
1310
|
collection: boolean;
|
|
1251
1311
|
private?: boolean;
|
|
1312
|
+
credential?: boolean;
|
|
1252
1313
|
depends?: string;
|
|
1253
1314
|
description?: string;
|
|
1254
1315
|
default?: any;
|
|
@@ -1273,6 +1334,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1273
1334
|
mandatory: boolean;
|
|
1274
1335
|
collection: boolean;
|
|
1275
1336
|
private?: boolean;
|
|
1337
|
+
credential?: boolean;
|
|
1276
1338
|
depends?: string;
|
|
1277
1339
|
description?: string;
|
|
1278
1340
|
default?: any;
|
|
@@ -1291,6 +1353,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1291
1353
|
mandatory: boolean;
|
|
1292
1354
|
collection: boolean;
|
|
1293
1355
|
private?: boolean;
|
|
1356
|
+
credential?: boolean;
|
|
1294
1357
|
depends?: string;
|
|
1295
1358
|
description?: string;
|
|
1296
1359
|
default?: any;
|
|
@@ -1309,6 +1372,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1309
1372
|
mandatory: boolean;
|
|
1310
1373
|
collection: boolean;
|
|
1311
1374
|
private?: boolean;
|
|
1375
|
+
credential?: boolean;
|
|
1312
1376
|
depends?: string;
|
|
1313
1377
|
description?: string;
|
|
1314
1378
|
default?: any;
|
|
@@ -1329,6 +1393,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1329
1393
|
mandatory: boolean;
|
|
1330
1394
|
collection: boolean;
|
|
1331
1395
|
private?: boolean;
|
|
1396
|
+
credential?: boolean;
|
|
1332
1397
|
depends?: string;
|
|
1333
1398
|
description?: string;
|
|
1334
1399
|
default?: any;
|
|
@@ -1348,6 +1413,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1348
1413
|
mandatory: boolean;
|
|
1349
1414
|
collection: boolean;
|
|
1350
1415
|
private?: boolean;
|
|
1416
|
+
credential?: boolean;
|
|
1351
1417
|
depends?: string;
|
|
1352
1418
|
description?: string;
|
|
1353
1419
|
set?: Function;
|
|
@@ -1365,6 +1431,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1365
1431
|
mandatory: boolean;
|
|
1366
1432
|
collection: boolean;
|
|
1367
1433
|
private?: boolean;
|
|
1434
|
+
credential?: boolean;
|
|
1368
1435
|
depends?: string;
|
|
1369
1436
|
description?: string;
|
|
1370
1437
|
default?: any;
|
|
@@ -1390,6 +1457,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
1390
1457
|
mandatory: boolean;
|
|
1391
1458
|
collection: boolean;
|
|
1392
1459
|
private?: boolean;
|
|
1460
|
+
credential?: boolean;
|
|
1393
1461
|
depends?: string;
|
|
1394
1462
|
description?: string;
|
|
1395
1463
|
default?: any;
|
|
@@ -6,6 +6,7 @@ export const networks_attribute: {
|
|
|
6
6
|
writable: boolean;
|
|
7
7
|
mandatory: boolean;
|
|
8
8
|
private?: boolean;
|
|
9
|
+
credential?: boolean;
|
|
9
10
|
depends?: string;
|
|
10
11
|
description?: string;
|
|
11
12
|
default?: any;
|
|
@@ -26,6 +27,7 @@ export namespace networkAttributes {
|
|
|
26
27
|
mandatory: boolean;
|
|
27
28
|
collection: boolean;
|
|
28
29
|
private?: boolean;
|
|
30
|
+
credential?: boolean;
|
|
29
31
|
depends?: string;
|
|
30
32
|
description?: string;
|
|
31
33
|
default?: any;
|
|
@@ -44,6 +46,7 @@ export namespace networkAttributes {
|
|
|
44
46
|
mandatory: boolean;
|
|
45
47
|
collection: boolean;
|
|
46
48
|
private?: boolean;
|
|
49
|
+
credential?: boolean;
|
|
47
50
|
depends?: string;
|
|
48
51
|
description?: string;
|
|
49
52
|
default?: any;
|
|
@@ -63,6 +66,7 @@ export namespace networkAttributes {
|
|
|
63
66
|
mandatory: boolean;
|
|
64
67
|
collection: boolean;
|
|
65
68
|
private?: boolean;
|
|
69
|
+
credential?: boolean;
|
|
66
70
|
depends?: string;
|
|
67
71
|
description?: string;
|
|
68
72
|
default?: any;
|
|
@@ -83,6 +87,7 @@ export namespace networkAttributes {
|
|
|
83
87
|
mandatory: boolean;
|
|
84
88
|
collection: boolean;
|
|
85
89
|
private?: boolean;
|
|
90
|
+
credential?: boolean;
|
|
86
91
|
depends?: string;
|
|
87
92
|
description?: string;
|
|
88
93
|
default?: any;
|
|
@@ -102,6 +107,7 @@ export namespace networkAttributes {
|
|
|
102
107
|
mandatory: boolean;
|
|
103
108
|
collection: boolean;
|
|
104
109
|
private?: boolean;
|
|
110
|
+
credential?: boolean;
|
|
105
111
|
depends?: string;
|
|
106
112
|
description?: string;
|
|
107
113
|
set?: Function;
|
|
@@ -119,6 +125,7 @@ export namespace networkAttributes {
|
|
|
119
125
|
mandatory: boolean;
|
|
120
126
|
collection: boolean;
|
|
121
127
|
private?: boolean;
|
|
128
|
+
credential?: boolean;
|
|
122
129
|
depends?: string;
|
|
123
130
|
description?: string;
|
|
124
131
|
default?: any;
|
|
@@ -140,6 +147,7 @@ export namespace networkAddressAttributes {
|
|
|
140
147
|
mandatory: boolean;
|
|
141
148
|
collection: boolean;
|
|
142
149
|
private?: boolean;
|
|
150
|
+
credential?: boolean;
|
|
143
151
|
depends?: string;
|
|
144
152
|
description?: string;
|
|
145
153
|
default?: any;
|