pmcf 3.18.1 → 3.18.2
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/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 SystemdTimesyncdService extends ExtraSourceService {
|
|
|
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 SystemdTimesyncdService extends ExtraSourceService {
|
|
|
36
37
|
writable: boolean;
|
|
37
38
|
mandatory: boolean;
|
|
38
39
|
private?: boolean;
|
|
40
|
+
credential?: boolean;
|
|
39
41
|
depends?: string;
|
|
40
42
|
description?: string;
|
|
41
43
|
default?: any;
|
|
@@ -56,6 +58,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
56
58
|
mandatory: boolean;
|
|
57
59
|
collection: boolean;
|
|
58
60
|
private?: boolean;
|
|
61
|
+
credential?: boolean;
|
|
59
62
|
depends?: string;
|
|
60
63
|
description?: string;
|
|
61
64
|
default?: any;
|
|
@@ -76,6 +79,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
76
79
|
mandatory: boolean;
|
|
77
80
|
collection: boolean;
|
|
78
81
|
private?: boolean;
|
|
82
|
+
credential?: boolean;
|
|
79
83
|
depends?: string;
|
|
80
84
|
description?: string;
|
|
81
85
|
default?: any;
|
|
@@ -98,6 +102,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
98
102
|
mandatory: boolean;
|
|
99
103
|
collection: boolean;
|
|
100
104
|
private?: boolean;
|
|
105
|
+
credential?: boolean;
|
|
101
106
|
depends?: string;
|
|
102
107
|
description?: string;
|
|
103
108
|
default?: any;
|
|
@@ -116,6 +121,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
116
121
|
mandatory: boolean;
|
|
117
122
|
collection: boolean;
|
|
118
123
|
private?: boolean;
|
|
124
|
+
credential?: boolean;
|
|
119
125
|
depends?: string;
|
|
120
126
|
description?: string;
|
|
121
127
|
default?: any;
|
|
@@ -136,6 +142,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
136
142
|
writable: boolean;
|
|
137
143
|
mandatory: boolean;
|
|
138
144
|
private?: boolean;
|
|
145
|
+
credential?: boolean;
|
|
139
146
|
depends?: string;
|
|
140
147
|
description?: string;
|
|
141
148
|
default?: any;
|
|
@@ -156,6 +163,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
156
163
|
mandatory: boolean;
|
|
157
164
|
collection: boolean;
|
|
158
165
|
private?: boolean;
|
|
166
|
+
credential?: boolean;
|
|
159
167
|
depends?: string;
|
|
160
168
|
description?: string;
|
|
161
169
|
default?: any;
|
|
@@ -186,6 +194,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
186
194
|
mandatory: boolean;
|
|
187
195
|
collection: boolean;
|
|
188
196
|
private?: boolean;
|
|
197
|
+
credential?: boolean;
|
|
189
198
|
depends?: string;
|
|
190
199
|
description?: string;
|
|
191
200
|
default?: any;
|
|
@@ -207,6 +216,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
207
216
|
mandatory: boolean;
|
|
208
217
|
collection: boolean;
|
|
209
218
|
private?: boolean;
|
|
219
|
+
credential?: boolean;
|
|
210
220
|
depends?: string;
|
|
211
221
|
description?: string;
|
|
212
222
|
default?: any;
|
|
@@ -227,6 +237,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
227
237
|
mandatory: boolean;
|
|
228
238
|
collection: boolean;
|
|
229
239
|
private?: boolean;
|
|
240
|
+
credential?: boolean;
|
|
230
241
|
depends?: string;
|
|
231
242
|
description?: string;
|
|
232
243
|
default?: any;
|
|
@@ -259,6 +270,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
259
270
|
writable: boolean;
|
|
260
271
|
mandatory: boolean;
|
|
261
272
|
private?: boolean;
|
|
273
|
+
credential?: boolean;
|
|
262
274
|
depends?: string;
|
|
263
275
|
description?: string;
|
|
264
276
|
default?: any;
|
|
@@ -277,6 +289,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
277
289
|
writable: boolean;
|
|
278
290
|
mandatory: boolean;
|
|
279
291
|
private?: boolean;
|
|
292
|
+
credential?: boolean;
|
|
280
293
|
depends?: string;
|
|
281
294
|
description?: string;
|
|
282
295
|
default?: any;
|
|
@@ -297,6 +310,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
297
310
|
mandatory: boolean;
|
|
298
311
|
collection: boolean;
|
|
299
312
|
private?: boolean;
|
|
313
|
+
credential?: boolean;
|
|
300
314
|
depends?: string;
|
|
301
315
|
description?: string;
|
|
302
316
|
default?: any;
|
|
@@ -317,6 +331,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
317
331
|
mandatory: boolean;
|
|
318
332
|
collection: boolean;
|
|
319
333
|
private?: boolean;
|
|
334
|
+
credential?: boolean;
|
|
320
335
|
depends?: string;
|
|
321
336
|
description?: string;
|
|
322
337
|
default?: any;
|
|
@@ -339,6 +354,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
339
354
|
mandatory: boolean;
|
|
340
355
|
collection: boolean;
|
|
341
356
|
private?: boolean;
|
|
357
|
+
credential?: boolean;
|
|
342
358
|
depends?: string;
|
|
343
359
|
description?: string;
|
|
344
360
|
default?: any;
|
|
@@ -357,6 +373,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
357
373
|
mandatory: boolean;
|
|
358
374
|
collection: boolean;
|
|
359
375
|
private?: boolean;
|
|
376
|
+
credential?: boolean;
|
|
360
377
|
depends?: string;
|
|
361
378
|
description?: string;
|
|
362
379
|
default?: any;
|
|
@@ -377,6 +394,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
377
394
|
writable: boolean;
|
|
378
395
|
mandatory: boolean;
|
|
379
396
|
private?: boolean;
|
|
397
|
+
credential?: boolean;
|
|
380
398
|
depends?: string;
|
|
381
399
|
description?: string;
|
|
382
400
|
default?: any;
|
|
@@ -397,6 +415,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
397
415
|
mandatory: boolean;
|
|
398
416
|
collection: boolean;
|
|
399
417
|
private?: boolean;
|
|
418
|
+
credential?: boolean;
|
|
400
419
|
depends?: string;
|
|
401
420
|
description?: string;
|
|
402
421
|
default?: any;
|
|
@@ -427,6 +446,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
427
446
|
mandatory: boolean;
|
|
428
447
|
collection: boolean;
|
|
429
448
|
private?: boolean;
|
|
449
|
+
credential?: boolean;
|
|
430
450
|
depends?: string;
|
|
431
451
|
description?: string;
|
|
432
452
|
default?: any;
|
|
@@ -448,6 +468,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
448
468
|
mandatory: boolean;
|
|
449
469
|
collection: boolean;
|
|
450
470
|
private?: boolean;
|
|
471
|
+
credential?: boolean;
|
|
451
472
|
depends?: string;
|
|
452
473
|
description?: string;
|
|
453
474
|
default?: any;
|
|
@@ -468,6 +489,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
468
489
|
mandatory: boolean;
|
|
469
490
|
collection: boolean;
|
|
470
491
|
private?: boolean;
|
|
492
|
+
credential?: boolean;
|
|
471
493
|
depends?: string;
|
|
472
494
|
description?: string;
|
|
473
495
|
default?: any;
|
|
@@ -498,6 +520,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
498
520
|
writable: boolean;
|
|
499
521
|
mandatory: boolean;
|
|
500
522
|
private?: boolean;
|
|
523
|
+
credential?: boolean;
|
|
501
524
|
depends?: string;
|
|
502
525
|
description?: string;
|
|
503
526
|
default?: any;
|
|
@@ -516,6 +539,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
516
539
|
writable: boolean;
|
|
517
540
|
mandatory: boolean;
|
|
518
541
|
private?: boolean;
|
|
542
|
+
credential?: boolean;
|
|
519
543
|
depends?: string;
|
|
520
544
|
description?: string;
|
|
521
545
|
default?: any;
|
|
@@ -536,6 +560,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
536
560
|
mandatory: boolean;
|
|
537
561
|
collection: boolean;
|
|
538
562
|
private?: boolean;
|
|
563
|
+
credential?: boolean;
|
|
539
564
|
depends?: string;
|
|
540
565
|
description?: string;
|
|
541
566
|
default?: any;
|
|
@@ -556,6 +581,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
556
581
|
mandatory: boolean;
|
|
557
582
|
collection: boolean;
|
|
558
583
|
private?: boolean;
|
|
584
|
+
credential?: boolean;
|
|
559
585
|
depends?: string;
|
|
560
586
|
description?: string;
|
|
561
587
|
default?: any;
|
|
@@ -578,6 +604,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
578
604
|
mandatory: boolean;
|
|
579
605
|
collection: boolean;
|
|
580
606
|
private?: boolean;
|
|
607
|
+
credential?: boolean;
|
|
581
608
|
depends?: string;
|
|
582
609
|
description?: string;
|
|
583
610
|
default?: any;
|
|
@@ -596,6 +623,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
596
623
|
mandatory: boolean;
|
|
597
624
|
collection: boolean;
|
|
598
625
|
private?: boolean;
|
|
626
|
+
credential?: boolean;
|
|
599
627
|
depends?: string;
|
|
600
628
|
description?: string;
|
|
601
629
|
default?: any;
|
|
@@ -616,6 +644,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
616
644
|
writable: boolean;
|
|
617
645
|
mandatory: boolean;
|
|
618
646
|
private?: boolean;
|
|
647
|
+
credential?: boolean;
|
|
619
648
|
depends?: string;
|
|
620
649
|
description?: string;
|
|
621
650
|
default?: any;
|
|
@@ -636,6 +665,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
636
665
|
mandatory: boolean;
|
|
637
666
|
collection: boolean;
|
|
638
667
|
private?: boolean;
|
|
668
|
+
credential?: boolean;
|
|
639
669
|
depends?: string;
|
|
640
670
|
description?: string;
|
|
641
671
|
default?: any;
|
|
@@ -661,6 +691,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
661
691
|
writable: boolean;
|
|
662
692
|
mandatory: boolean;
|
|
663
693
|
private?: boolean;
|
|
694
|
+
credential?: boolean;
|
|
664
695
|
depends?: string;
|
|
665
696
|
description?: string;
|
|
666
697
|
default?: any;
|
|
@@ -689,6 +720,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
689
720
|
writable: boolean;
|
|
690
721
|
mandatory: boolean;
|
|
691
722
|
private?: boolean;
|
|
723
|
+
credential?: boolean;
|
|
692
724
|
depends?: string;
|
|
693
725
|
description?: string;
|
|
694
726
|
default?: any;
|
|
@@ -707,6 +739,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
707
739
|
writable: boolean;
|
|
708
740
|
mandatory: boolean;
|
|
709
741
|
private?: boolean;
|
|
742
|
+
credential?: boolean;
|
|
710
743
|
depends?: string;
|
|
711
744
|
description?: string;
|
|
712
745
|
default?: any;
|
|
@@ -727,6 +760,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
727
760
|
mandatory: boolean;
|
|
728
761
|
collection: boolean;
|
|
729
762
|
private?: boolean;
|
|
763
|
+
credential?: boolean;
|
|
730
764
|
depends?: string;
|
|
731
765
|
description?: string;
|
|
732
766
|
default?: any;
|
|
@@ -747,6 +781,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
747
781
|
mandatory: boolean;
|
|
748
782
|
collection: boolean;
|
|
749
783
|
private?: boolean;
|
|
784
|
+
credential?: boolean;
|
|
750
785
|
depends?: string;
|
|
751
786
|
description?: string;
|
|
752
787
|
default?: any;
|
|
@@ -769,6 +804,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
769
804
|
mandatory: boolean;
|
|
770
805
|
collection: boolean;
|
|
771
806
|
private?: boolean;
|
|
807
|
+
credential?: boolean;
|
|
772
808
|
depends?: string;
|
|
773
809
|
description?: string;
|
|
774
810
|
default?: any;
|
|
@@ -787,6 +823,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
787
823
|
mandatory: boolean;
|
|
788
824
|
collection: boolean;
|
|
789
825
|
private?: boolean;
|
|
826
|
+
credential?: boolean;
|
|
790
827
|
depends?: string;
|
|
791
828
|
description?: string;
|
|
792
829
|
default?: any;
|
|
@@ -807,6 +844,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
807
844
|
writable: boolean;
|
|
808
845
|
mandatory: boolean;
|
|
809
846
|
private?: boolean;
|
|
847
|
+
credential?: boolean;
|
|
810
848
|
depends?: string;
|
|
811
849
|
description?: string;
|
|
812
850
|
default?: any;
|
|
@@ -827,6 +865,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
827
865
|
mandatory: boolean;
|
|
828
866
|
collection: boolean;
|
|
829
867
|
private?: boolean;
|
|
868
|
+
credential?: boolean;
|
|
830
869
|
depends?: string;
|
|
831
870
|
description?: string;
|
|
832
871
|
default?: any;
|
|
@@ -857,6 +896,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
857
896
|
mandatory: boolean;
|
|
858
897
|
collection: boolean;
|
|
859
898
|
private?: boolean;
|
|
899
|
+
credential?: boolean;
|
|
860
900
|
depends?: string;
|
|
861
901
|
description?: string;
|
|
862
902
|
default?: any;
|
|
@@ -878,6 +918,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
878
918
|
mandatory: boolean;
|
|
879
919
|
collection: boolean;
|
|
880
920
|
private?: boolean;
|
|
921
|
+
credential?: boolean;
|
|
881
922
|
depends?: string;
|
|
882
923
|
description?: string;
|
|
883
924
|
default?: any;
|
|
@@ -898,6 +939,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
898
939
|
mandatory: boolean;
|
|
899
940
|
collection: boolean;
|
|
900
941
|
private?: boolean;
|
|
942
|
+
credential?: boolean;
|
|
901
943
|
depends?: string;
|
|
902
944
|
description?: string;
|
|
903
945
|
default?: any;
|
|
@@ -928,6 +970,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
928
970
|
writable: boolean;
|
|
929
971
|
mandatory: boolean;
|
|
930
972
|
private?: boolean;
|
|
973
|
+
credential?: boolean;
|
|
931
974
|
depends?: string;
|
|
932
975
|
description?: string;
|
|
933
976
|
default?: any;
|
|
@@ -946,6 +989,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
946
989
|
writable: boolean;
|
|
947
990
|
mandatory: boolean;
|
|
948
991
|
private?: boolean;
|
|
992
|
+
credential?: boolean;
|
|
949
993
|
depends?: string;
|
|
950
994
|
description?: string;
|
|
951
995
|
default?: any;
|
|
@@ -966,6 +1010,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
966
1010
|
mandatory: boolean;
|
|
967
1011
|
collection: boolean;
|
|
968
1012
|
private?: boolean;
|
|
1013
|
+
credential?: boolean;
|
|
969
1014
|
depends?: string;
|
|
970
1015
|
description?: string;
|
|
971
1016
|
default?: any;
|
|
@@ -986,6 +1031,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
986
1031
|
mandatory: boolean;
|
|
987
1032
|
collection: boolean;
|
|
988
1033
|
private?: boolean;
|
|
1034
|
+
credential?: boolean;
|
|
989
1035
|
depends?: string;
|
|
990
1036
|
description?: string;
|
|
991
1037
|
default?: any;
|
|
@@ -1008,6 +1054,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
1008
1054
|
mandatory: boolean;
|
|
1009
1055
|
collection: boolean;
|
|
1010
1056
|
private?: boolean;
|
|
1057
|
+
credential?: boolean;
|
|
1011
1058
|
depends?: string;
|
|
1012
1059
|
description?: string;
|
|
1013
1060
|
default?: any;
|
|
@@ -1026,6 +1073,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
1026
1073
|
mandatory: boolean;
|
|
1027
1074
|
collection: boolean;
|
|
1028
1075
|
private?: boolean;
|
|
1076
|
+
credential?: boolean;
|
|
1029
1077
|
depends?: string;
|
|
1030
1078
|
description?: string;
|
|
1031
1079
|
default?: any;
|
|
@@ -1046,6 +1094,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
1046
1094
|
writable: boolean;
|
|
1047
1095
|
mandatory: boolean;
|
|
1048
1096
|
private?: boolean;
|
|
1097
|
+
credential?: boolean;
|
|
1049
1098
|
depends?: string;
|
|
1050
1099
|
description?: string;
|
|
1051
1100
|
default?: any;
|
|
@@ -1066,6 +1115,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
1066
1115
|
mandatory: boolean;
|
|
1067
1116
|
collection: boolean;
|
|
1068
1117
|
private?: boolean;
|
|
1118
|
+
credential?: boolean;
|
|
1069
1119
|
depends?: string;
|
|
1070
1120
|
description?: string;
|
|
1071
1121
|
default?: any;
|
|
@@ -14,6 +14,7 @@ export class TailscaleService extends Service {
|
|
|
14
14
|
writable: boolean;
|
|
15
15
|
mandatory: boolean;
|
|
16
16
|
private?: boolean;
|
|
17
|
+
credential?: boolean;
|
|
17
18
|
depends?: string;
|
|
18
19
|
description?: string;
|
|
19
20
|
default?: any;
|
|
@@ -32,6 +33,7 @@ export class TailscaleService extends Service {
|
|
|
32
33
|
writable: boolean;
|
|
33
34
|
mandatory: boolean;
|
|
34
35
|
private?: boolean;
|
|
36
|
+
credential?: boolean;
|
|
35
37
|
depends?: string;
|
|
36
38
|
description?: string;
|
|
37
39
|
default?: any;
|
|
@@ -52,6 +54,7 @@ export class TailscaleService extends Service {
|
|
|
52
54
|
mandatory: boolean;
|
|
53
55
|
collection: boolean;
|
|
54
56
|
private?: boolean;
|
|
57
|
+
credential?: boolean;
|
|
55
58
|
depends?: string;
|
|
56
59
|
description?: string;
|
|
57
60
|
default?: any;
|
|
@@ -72,6 +75,7 @@ export class TailscaleService extends Service {
|
|
|
72
75
|
mandatory: boolean;
|
|
73
76
|
collection: boolean;
|
|
74
77
|
private?: boolean;
|
|
78
|
+
credential?: boolean;
|
|
75
79
|
depends?: string;
|
|
76
80
|
description?: string;
|
|
77
81
|
default?: any;
|
|
@@ -94,6 +98,7 @@ export class TailscaleService extends Service {
|
|
|
94
98
|
mandatory: boolean;
|
|
95
99
|
collection: boolean;
|
|
96
100
|
private?: boolean;
|
|
101
|
+
credential?: boolean;
|
|
97
102
|
depends?: string;
|
|
98
103
|
description?: string;
|
|
99
104
|
default?: any;
|
|
@@ -112,6 +117,7 @@ export class TailscaleService extends Service {
|
|
|
112
117
|
mandatory: boolean;
|
|
113
118
|
collection: boolean;
|
|
114
119
|
private?: boolean;
|
|
120
|
+
credential?: boolean;
|
|
115
121
|
depends?: string;
|
|
116
122
|
description?: string;
|
|
117
123
|
default?: any;
|
|
@@ -132,6 +138,7 @@ export class TailscaleService extends Service {
|
|
|
132
138
|
writable: boolean;
|
|
133
139
|
mandatory: boolean;
|
|
134
140
|
private?: boolean;
|
|
141
|
+
credential?: boolean;
|
|
135
142
|
depends?: string;
|
|
136
143
|
description?: string;
|
|
137
144
|
default?: any;
|
|
@@ -152,6 +159,7 @@ export class TailscaleService extends Service {
|
|
|
152
159
|
mandatory: boolean;
|
|
153
160
|
collection: boolean;
|
|
154
161
|
private?: boolean;
|
|
162
|
+
credential?: boolean;
|
|
155
163
|
depends?: string;
|
|
156
164
|
description?: string;
|
|
157
165
|
default?: any;
|
|
@@ -182,6 +190,7 @@ export class TailscaleService extends Service {
|
|
|
182
190
|
mandatory: boolean;
|
|
183
191
|
collection: boolean;
|
|
184
192
|
private?: boolean;
|
|
193
|
+
credential?: boolean;
|
|
185
194
|
depends?: string;
|
|
186
195
|
description?: string;
|
|
187
196
|
default?: any;
|
|
@@ -203,6 +212,7 @@ export class TailscaleService extends Service {
|
|
|
203
212
|
mandatory: boolean;
|
|
204
213
|
collection: boolean;
|
|
205
214
|
private?: boolean;
|
|
215
|
+
credential?: boolean;
|
|
206
216
|
depends?: string;
|
|
207
217
|
description?: string;
|
|
208
218
|
default?: any;
|
|
@@ -223,6 +233,7 @@ export class TailscaleService extends Service {
|
|
|
223
233
|
mandatory: boolean;
|
|
224
234
|
collection: boolean;
|
|
225
235
|
private?: boolean;
|
|
236
|
+
credential?: boolean;
|
|
226
237
|
depends?: string;
|
|
227
238
|
description?: string;
|
|
228
239
|
default?: any;
|
|
@@ -255,6 +266,7 @@ export class TailscaleService extends Service {
|
|
|
255
266
|
writable: boolean;
|
|
256
267
|
mandatory: boolean;
|
|
257
268
|
private?: boolean;
|
|
269
|
+
credential?: boolean;
|
|
258
270
|
depends?: string;
|
|
259
271
|
description?: string;
|
|
260
272
|
default?: any;
|
|
@@ -273,6 +285,7 @@ export class TailscaleService extends Service {
|
|
|
273
285
|
writable: boolean;
|
|
274
286
|
mandatory: boolean;
|
|
275
287
|
private?: boolean;
|
|
288
|
+
credential?: boolean;
|
|
276
289
|
depends?: string;
|
|
277
290
|
description?: string;
|
|
278
291
|
default?: any;
|
|
@@ -293,6 +306,7 @@ export class TailscaleService extends Service {
|
|
|
293
306
|
mandatory: boolean;
|
|
294
307
|
collection: boolean;
|
|
295
308
|
private?: boolean;
|
|
309
|
+
credential?: boolean;
|
|
296
310
|
depends?: string;
|
|
297
311
|
description?: string;
|
|
298
312
|
default?: any;
|
|
@@ -313,6 +327,7 @@ export class TailscaleService extends Service {
|
|
|
313
327
|
mandatory: boolean;
|
|
314
328
|
collection: boolean;
|
|
315
329
|
private?: boolean;
|
|
330
|
+
credential?: boolean;
|
|
316
331
|
depends?: string;
|
|
317
332
|
description?: string;
|
|
318
333
|
default?: any;
|
|
@@ -335,6 +350,7 @@ export class TailscaleService extends Service {
|
|
|
335
350
|
mandatory: boolean;
|
|
336
351
|
collection: boolean;
|
|
337
352
|
private?: boolean;
|
|
353
|
+
credential?: boolean;
|
|
338
354
|
depends?: string;
|
|
339
355
|
description?: string;
|
|
340
356
|
default?: any;
|
|
@@ -353,6 +369,7 @@ export class TailscaleService extends Service {
|
|
|
353
369
|
mandatory: boolean;
|
|
354
370
|
collection: boolean;
|
|
355
371
|
private?: boolean;
|
|
372
|
+
credential?: boolean;
|
|
356
373
|
depends?: string;
|
|
357
374
|
description?: string;
|
|
358
375
|
default?: any;
|
|
@@ -373,6 +390,7 @@ export class TailscaleService extends Service {
|
|
|
373
390
|
writable: boolean;
|
|
374
391
|
mandatory: boolean;
|
|
375
392
|
private?: boolean;
|
|
393
|
+
credential?: boolean;
|
|
376
394
|
depends?: string;
|
|
377
395
|
description?: string;
|
|
378
396
|
default?: any;
|
|
@@ -393,6 +411,7 @@ export class TailscaleService extends Service {
|
|
|
393
411
|
mandatory: boolean;
|
|
394
412
|
collection: boolean;
|
|
395
413
|
private?: boolean;
|
|
414
|
+
credential?: boolean;
|
|
396
415
|
depends?: string;
|
|
397
416
|
description?: string;
|
|
398
417
|
default?: any;
|
|
@@ -423,6 +442,7 @@ export class TailscaleService extends Service {
|
|
|
423
442
|
mandatory: boolean;
|
|
424
443
|
collection: boolean;
|
|
425
444
|
private?: boolean;
|
|
445
|
+
credential?: boolean;
|
|
426
446
|
depends?: string;
|
|
427
447
|
description?: string;
|
|
428
448
|
default?: any;
|
|
@@ -444,6 +464,7 @@ export class TailscaleService extends Service {
|
|
|
444
464
|
mandatory: boolean;
|
|
445
465
|
collection: boolean;
|
|
446
466
|
private?: boolean;
|
|
467
|
+
credential?: boolean;
|
|
447
468
|
depends?: string;
|
|
448
469
|
description?: string;
|
|
449
470
|
default?: any;
|
|
@@ -464,6 +485,7 @@ export class TailscaleService extends Service {
|
|
|
464
485
|
mandatory: boolean;
|
|
465
486
|
collection: boolean;
|
|
466
487
|
private?: boolean;
|
|
488
|
+
credential?: boolean;
|
|
467
489
|
depends?: string;
|
|
468
490
|
description?: string;
|
|
469
491
|
default?: any;
|
|
@@ -494,6 +516,7 @@ export class TailscaleService extends Service {
|
|
|
494
516
|
writable: boolean;
|
|
495
517
|
mandatory: boolean;
|
|
496
518
|
private?: boolean;
|
|
519
|
+
credential?: boolean;
|
|
497
520
|
depends?: string;
|
|
498
521
|
description?: string;
|
|
499
522
|
default?: any;
|
|
@@ -512,6 +535,7 @@ export class TailscaleService extends Service {
|
|
|
512
535
|
writable: boolean;
|
|
513
536
|
mandatory: boolean;
|
|
514
537
|
private?: boolean;
|
|
538
|
+
credential?: boolean;
|
|
515
539
|
depends?: string;
|
|
516
540
|
description?: string;
|
|
517
541
|
default?: any;
|
|
@@ -532,6 +556,7 @@ export class TailscaleService extends Service {
|
|
|
532
556
|
mandatory: boolean;
|
|
533
557
|
collection: boolean;
|
|
534
558
|
private?: boolean;
|
|
559
|
+
credential?: boolean;
|
|
535
560
|
depends?: string;
|
|
536
561
|
description?: string;
|
|
537
562
|
default?: any;
|
|
@@ -552,6 +577,7 @@ export class TailscaleService extends Service {
|
|
|
552
577
|
mandatory: boolean;
|
|
553
578
|
collection: boolean;
|
|
554
579
|
private?: boolean;
|
|
580
|
+
credential?: boolean;
|
|
555
581
|
depends?: string;
|
|
556
582
|
description?: string;
|
|
557
583
|
default?: any;
|
|
@@ -574,6 +600,7 @@ export class TailscaleService extends Service {
|
|
|
574
600
|
mandatory: boolean;
|
|
575
601
|
collection: boolean;
|
|
576
602
|
private?: boolean;
|
|
603
|
+
credential?: boolean;
|
|
577
604
|
depends?: string;
|
|
578
605
|
description?: string;
|
|
579
606
|
default?: any;
|
|
@@ -592,6 +619,7 @@ export class TailscaleService extends Service {
|
|
|
592
619
|
mandatory: boolean;
|
|
593
620
|
collection: boolean;
|
|
594
621
|
private?: boolean;
|
|
622
|
+
credential?: boolean;
|
|
595
623
|
depends?: string;
|
|
596
624
|
description?: string;
|
|
597
625
|
default?: any;
|
|
@@ -612,6 +640,7 @@ export class TailscaleService extends Service {
|
|
|
612
640
|
writable: boolean;
|
|
613
641
|
mandatory: boolean;
|
|
614
642
|
private?: boolean;
|
|
643
|
+
credential?: boolean;
|
|
615
644
|
depends?: string;
|
|
616
645
|
description?: string;
|
|
617
646
|
default?: any;
|
|
@@ -632,6 +661,7 @@ export class TailscaleService extends Service {
|
|
|
632
661
|
mandatory: boolean;
|
|
633
662
|
collection: boolean;
|
|
634
663
|
private?: boolean;
|
|
664
|
+
credential?: boolean;
|
|
635
665
|
depends?: string;
|
|
636
666
|
description?: string;
|
|
637
667
|
default?: any;
|