pmcf 3.18.0 → 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
|
@@ -16,6 +16,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
16
16
|
writable: boolean;
|
|
17
17
|
mandatory: boolean;
|
|
18
18
|
private?: boolean;
|
|
19
|
+
credential?: boolean;
|
|
19
20
|
depends?: string;
|
|
20
21
|
description?: string;
|
|
21
22
|
default?: any;
|
|
@@ -34,6 +35,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
34
35
|
mandatory: boolean;
|
|
35
36
|
collection: boolean;
|
|
36
37
|
private?: boolean;
|
|
38
|
+
credential?: boolean;
|
|
37
39
|
depends?: string;
|
|
38
40
|
description?: string;
|
|
39
41
|
default?: any;
|
|
@@ -64,6 +66,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
64
66
|
writable: boolean;
|
|
65
67
|
mandatory: boolean;
|
|
66
68
|
private?: boolean;
|
|
69
|
+
credential?: boolean;
|
|
67
70
|
depends?: string;
|
|
68
71
|
description?: string;
|
|
69
72
|
default?: any;
|
|
@@ -82,6 +85,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
82
85
|
writable: boolean;
|
|
83
86
|
mandatory: boolean;
|
|
84
87
|
private?: boolean;
|
|
88
|
+
credential?: boolean;
|
|
85
89
|
depends?: string;
|
|
86
90
|
description?: string;
|
|
87
91
|
default?: any;
|
|
@@ -100,6 +104,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
100
104
|
writable: boolean;
|
|
101
105
|
mandatory: boolean;
|
|
102
106
|
private?: boolean;
|
|
107
|
+
credential?: boolean;
|
|
103
108
|
depends?: string;
|
|
104
109
|
description?: string;
|
|
105
110
|
default?: any;
|
|
@@ -126,6 +131,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
126
131
|
writable: boolean;
|
|
127
132
|
mandatory: boolean;
|
|
128
133
|
private?: boolean;
|
|
134
|
+
credential?: boolean;
|
|
129
135
|
depends?: string;
|
|
130
136
|
description?: string;
|
|
131
137
|
default?: any;
|
|
@@ -146,6 +152,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
146
152
|
writable: boolean;
|
|
147
153
|
mandatory: boolean;
|
|
148
154
|
private?: boolean;
|
|
155
|
+
credential?: boolean;
|
|
149
156
|
depends?: string;
|
|
150
157
|
description?: string;
|
|
151
158
|
default?: any;
|
|
@@ -170,6 +177,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
170
177
|
mandatory: boolean;
|
|
171
178
|
collection: boolean;
|
|
172
179
|
private?: boolean;
|
|
180
|
+
credential?: boolean;
|
|
173
181
|
depends?: string;
|
|
174
182
|
description?: string;
|
|
175
183
|
default?: any;
|
|
@@ -192,6 +200,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
192
200
|
writable: boolean;
|
|
193
201
|
mandatory: boolean;
|
|
194
202
|
private?: boolean;
|
|
203
|
+
credential?: boolean;
|
|
195
204
|
depends?: string;
|
|
196
205
|
description?: string;
|
|
197
206
|
default?: any;
|
|
@@ -210,6 +219,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
210
219
|
mandatory: boolean;
|
|
211
220
|
collection: boolean;
|
|
212
221
|
private?: boolean;
|
|
222
|
+
credential?: boolean;
|
|
213
223
|
depends?: string;
|
|
214
224
|
description?: string;
|
|
215
225
|
default?: any;
|
|
@@ -229,6 +239,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
229
239
|
mandatory: boolean;
|
|
230
240
|
collection: boolean;
|
|
231
241
|
private?: boolean;
|
|
242
|
+
credential?: boolean;
|
|
232
243
|
depends?: string;
|
|
233
244
|
description?: string;
|
|
234
245
|
default?: any;
|
|
@@ -247,6 +258,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
247
258
|
mandatory: boolean;
|
|
248
259
|
collection: boolean;
|
|
249
260
|
private?: boolean;
|
|
261
|
+
credential?: boolean;
|
|
250
262
|
depends?: string;
|
|
251
263
|
description?: string;
|
|
252
264
|
default?: any;
|
|
@@ -265,6 +277,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
265
277
|
mandatory: boolean;
|
|
266
278
|
collection: boolean;
|
|
267
279
|
private?: boolean;
|
|
280
|
+
credential?: boolean;
|
|
268
281
|
depends?: string;
|
|
269
282
|
description?: string;
|
|
270
283
|
default?: any;
|
|
@@ -285,6 +298,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
285
298
|
mandatory: boolean;
|
|
286
299
|
collection: boolean;
|
|
287
300
|
private?: boolean;
|
|
301
|
+
credential?: boolean;
|
|
288
302
|
depends?: string;
|
|
289
303
|
description?: string;
|
|
290
304
|
default?: any;
|
|
@@ -304,6 +318,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
304
318
|
mandatory: boolean;
|
|
305
319
|
collection: boolean;
|
|
306
320
|
private?: boolean;
|
|
321
|
+
credential?: boolean;
|
|
307
322
|
depends?: string;
|
|
308
323
|
description?: string;
|
|
309
324
|
set?: Function;
|
|
@@ -322,6 +337,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
322
337
|
mandatory: boolean;
|
|
323
338
|
collection: boolean;
|
|
324
339
|
private?: boolean;
|
|
340
|
+
credential?: boolean;
|
|
325
341
|
depends?: string;
|
|
326
342
|
description?: string;
|
|
327
343
|
default?: any;
|
|
@@ -346,6 +362,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
346
362
|
mandatory: boolean;
|
|
347
363
|
collection: boolean;
|
|
348
364
|
private?: boolean;
|
|
365
|
+
credential?: boolean;
|
|
349
366
|
depends?: string;
|
|
350
367
|
description?: string;
|
|
351
368
|
default?: any;
|
|
@@ -364,6 +381,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
364
381
|
mandatory: boolean;
|
|
365
382
|
collection: boolean;
|
|
366
383
|
private?: boolean;
|
|
384
|
+
credential?: boolean;
|
|
367
385
|
depends?: string;
|
|
368
386
|
description?: string;
|
|
369
387
|
default?: any;
|
|
@@ -382,6 +400,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
382
400
|
mandatory: boolean;
|
|
383
401
|
collection: boolean;
|
|
384
402
|
private?: boolean;
|
|
403
|
+
credential?: boolean;
|
|
385
404
|
depends?: string;
|
|
386
405
|
description?: string;
|
|
387
406
|
default?: any;
|
|
@@ -402,6 +421,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
402
421
|
mandatory: boolean;
|
|
403
422
|
collection: boolean;
|
|
404
423
|
private?: boolean;
|
|
424
|
+
credential?: boolean;
|
|
405
425
|
depends?: string;
|
|
406
426
|
description?: string;
|
|
407
427
|
default?: any;
|
|
@@ -421,6 +441,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
421
441
|
mandatory: boolean;
|
|
422
442
|
collection: boolean;
|
|
423
443
|
private?: boolean;
|
|
444
|
+
credential?: boolean;
|
|
424
445
|
depends?: string;
|
|
425
446
|
description?: string;
|
|
426
447
|
set?: Function;
|
|
@@ -438,6 +459,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
438
459
|
mandatory: boolean;
|
|
439
460
|
collection: boolean;
|
|
440
461
|
private?: boolean;
|
|
462
|
+
credential?: boolean;
|
|
441
463
|
depends?: string;
|
|
442
464
|
description?: string;
|
|
443
465
|
default?: any;
|
|
@@ -467,6 +489,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
467
489
|
writable: boolean;
|
|
468
490
|
mandatory: boolean;
|
|
469
491
|
private?: boolean;
|
|
492
|
+
credential?: boolean;
|
|
470
493
|
depends?: string;
|
|
471
494
|
description?: string;
|
|
472
495
|
default?: any;
|
|
@@ -485,6 +508,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
485
508
|
mandatory: boolean;
|
|
486
509
|
collection: boolean;
|
|
487
510
|
private?: boolean;
|
|
511
|
+
credential?: boolean;
|
|
488
512
|
depends?: string;
|
|
489
513
|
description?: string;
|
|
490
514
|
default?: any;
|
|
@@ -515,6 +539,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
515
539
|
writable: boolean;
|
|
516
540
|
mandatory: boolean;
|
|
517
541
|
private?: boolean;
|
|
542
|
+
credential?: boolean;
|
|
518
543
|
depends?: string;
|
|
519
544
|
description?: string;
|
|
520
545
|
default?: any;
|
|
@@ -533,6 +558,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
533
558
|
writable: boolean;
|
|
534
559
|
mandatory: boolean;
|
|
535
560
|
private?: boolean;
|
|
561
|
+
credential?: boolean;
|
|
536
562
|
depends?: string;
|
|
537
563
|
description?: string;
|
|
538
564
|
default?: any;
|
|
@@ -551,6 +577,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
551
577
|
writable: boolean;
|
|
552
578
|
mandatory: boolean;
|
|
553
579
|
private?: boolean;
|
|
580
|
+
credential?: boolean;
|
|
554
581
|
depends?: string;
|
|
555
582
|
description?: string;
|
|
556
583
|
default?: any;
|
|
@@ -577,6 +604,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
577
604
|
writable: boolean;
|
|
578
605
|
mandatory: boolean;
|
|
579
606
|
private?: boolean;
|
|
607
|
+
credential?: boolean;
|
|
580
608
|
depends?: string;
|
|
581
609
|
description?: string;
|
|
582
610
|
default?: any;
|
|
@@ -597,6 +625,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
597
625
|
writable: boolean;
|
|
598
626
|
mandatory: boolean;
|
|
599
627
|
private?: boolean;
|
|
628
|
+
credential?: boolean;
|
|
600
629
|
depends?: string;
|
|
601
630
|
description?: string;
|
|
602
631
|
default?: any;
|
|
@@ -621,6 +650,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
621
650
|
mandatory: boolean;
|
|
622
651
|
collection: boolean;
|
|
623
652
|
private?: boolean;
|
|
653
|
+
credential?: boolean;
|
|
624
654
|
depends?: string;
|
|
625
655
|
description?: string;
|
|
626
656
|
default?: any;
|
|
@@ -643,6 +673,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
643
673
|
writable: boolean;
|
|
644
674
|
mandatory: boolean;
|
|
645
675
|
private?: boolean;
|
|
676
|
+
credential?: boolean;
|
|
646
677
|
depends?: string;
|
|
647
678
|
description?: string;
|
|
648
679
|
default?: any;
|
|
@@ -661,6 +692,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
661
692
|
mandatory: boolean;
|
|
662
693
|
collection: boolean;
|
|
663
694
|
private?: boolean;
|
|
695
|
+
credential?: boolean;
|
|
664
696
|
depends?: string;
|
|
665
697
|
description?: string;
|
|
666
698
|
default?: any;
|
|
@@ -680,6 +712,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
680
712
|
mandatory: boolean;
|
|
681
713
|
collection: boolean;
|
|
682
714
|
private?: boolean;
|
|
715
|
+
credential?: boolean;
|
|
683
716
|
depends?: string;
|
|
684
717
|
description?: string;
|
|
685
718
|
default?: any;
|
|
@@ -698,6 +731,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
698
731
|
mandatory: boolean;
|
|
699
732
|
collection: boolean;
|
|
700
733
|
private?: boolean;
|
|
734
|
+
credential?: boolean;
|
|
701
735
|
depends?: string;
|
|
702
736
|
description?: string;
|
|
703
737
|
default?: any;
|
|
@@ -716,6 +750,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
716
750
|
mandatory: boolean;
|
|
717
751
|
collection: boolean;
|
|
718
752
|
private?: boolean;
|
|
753
|
+
credential?: boolean;
|
|
719
754
|
depends?: string;
|
|
720
755
|
description?: string;
|
|
721
756
|
default?: any;
|
|
@@ -736,6 +771,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
736
771
|
mandatory: boolean;
|
|
737
772
|
collection: boolean;
|
|
738
773
|
private?: boolean;
|
|
774
|
+
credential?: boolean;
|
|
739
775
|
depends?: string;
|
|
740
776
|
description?: string;
|
|
741
777
|
default?: any;
|
|
@@ -755,6 +791,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
755
791
|
mandatory: boolean;
|
|
756
792
|
collection: boolean;
|
|
757
793
|
private?: boolean;
|
|
794
|
+
credential?: boolean;
|
|
758
795
|
depends?: string;
|
|
759
796
|
description?: string;
|
|
760
797
|
set?: Function;
|
|
@@ -773,6 +810,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
773
810
|
mandatory: boolean;
|
|
774
811
|
collection: boolean;
|
|
775
812
|
private?: boolean;
|
|
813
|
+
credential?: boolean;
|
|
776
814
|
depends?: string;
|
|
777
815
|
description?: string;
|
|
778
816
|
default?: any;
|
|
@@ -797,6 +835,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
797
835
|
mandatory: boolean;
|
|
798
836
|
collection: boolean;
|
|
799
837
|
private?: boolean;
|
|
838
|
+
credential?: boolean;
|
|
800
839
|
depends?: string;
|
|
801
840
|
description?: string;
|
|
802
841
|
default?: any;
|
|
@@ -815,6 +854,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
815
854
|
mandatory: boolean;
|
|
816
855
|
collection: boolean;
|
|
817
856
|
private?: boolean;
|
|
857
|
+
credential?: boolean;
|
|
818
858
|
depends?: string;
|
|
819
859
|
description?: string;
|
|
820
860
|
default?: any;
|
|
@@ -833,6 +873,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
833
873
|
mandatory: boolean;
|
|
834
874
|
collection: boolean;
|
|
835
875
|
private?: boolean;
|
|
876
|
+
credential?: boolean;
|
|
836
877
|
depends?: string;
|
|
837
878
|
description?: string;
|
|
838
879
|
default?: any;
|
|
@@ -853,6 +894,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
853
894
|
mandatory: boolean;
|
|
854
895
|
collection: boolean;
|
|
855
896
|
private?: boolean;
|
|
897
|
+
credential?: boolean;
|
|
856
898
|
depends?: string;
|
|
857
899
|
description?: string;
|
|
858
900
|
default?: any;
|
|
@@ -872,6 +914,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
872
914
|
mandatory: boolean;
|
|
873
915
|
collection: boolean;
|
|
874
916
|
private?: boolean;
|
|
917
|
+
credential?: boolean;
|
|
875
918
|
depends?: string;
|
|
876
919
|
description?: string;
|
|
877
920
|
set?: Function;
|
|
@@ -889,6 +932,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
889
932
|
mandatory: boolean;
|
|
890
933
|
collection: boolean;
|
|
891
934
|
private?: boolean;
|
|
935
|
+
credential?: boolean;
|
|
892
936
|
depends?: string;
|
|
893
937
|
description?: string;
|
|
894
938
|
default?: any;
|
|
@@ -14,6 +14,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
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 namespace NetworkInterfaceTypeDefinition {
|
|
|
32
33
|
mandatory: boolean;
|
|
33
34
|
collection: boolean;
|
|
34
35
|
private?: boolean;
|
|
36
|
+
credential?: boolean;
|
|
35
37
|
depends?: string;
|
|
36
38
|
description?: string;
|
|
37
39
|
default?: any;
|
|
@@ -62,6 +64,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
62
64
|
writable: boolean;
|
|
63
65
|
mandatory: boolean;
|
|
64
66
|
private?: boolean;
|
|
67
|
+
credential?: boolean;
|
|
65
68
|
depends?: string;
|
|
66
69
|
description?: string;
|
|
67
70
|
default?: any;
|
|
@@ -80,6 +83,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
80
83
|
writable: boolean;
|
|
81
84
|
mandatory: boolean;
|
|
82
85
|
private?: boolean;
|
|
86
|
+
credential?: boolean;
|
|
83
87
|
depends?: string;
|
|
84
88
|
description?: string;
|
|
85
89
|
default?: any;
|
|
@@ -98,6 +102,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
98
102
|
writable: boolean;
|
|
99
103
|
mandatory: boolean;
|
|
100
104
|
private?: boolean;
|
|
105
|
+
credential?: boolean;
|
|
101
106
|
depends?: string;
|
|
102
107
|
description?: string;
|
|
103
108
|
default?: any;
|
|
@@ -124,6 +129,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
124
129
|
writable: boolean;
|
|
125
130
|
mandatory: boolean;
|
|
126
131
|
private?: boolean;
|
|
132
|
+
credential?: boolean;
|
|
127
133
|
depends?: string;
|
|
128
134
|
description?: string;
|
|
129
135
|
default?: any;
|
|
@@ -144,6 +150,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
144
150
|
writable: boolean;
|
|
145
151
|
mandatory: boolean;
|
|
146
152
|
private?: boolean;
|
|
153
|
+
credential?: boolean;
|
|
147
154
|
depends?: string;
|
|
148
155
|
description?: string;
|
|
149
156
|
default?: any;
|
|
@@ -168,6 +175,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
168
175
|
mandatory: boolean;
|
|
169
176
|
collection: boolean;
|
|
170
177
|
private?: boolean;
|
|
178
|
+
credential?: boolean;
|
|
171
179
|
depends?: string;
|
|
172
180
|
description?: string;
|
|
173
181
|
default?: any;
|
|
@@ -190,6 +198,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
190
198
|
writable: boolean;
|
|
191
199
|
mandatory: boolean;
|
|
192
200
|
private?: boolean;
|
|
201
|
+
credential?: boolean;
|
|
193
202
|
depends?: string;
|
|
194
203
|
description?: string;
|
|
195
204
|
default?: any;
|
|
@@ -208,6 +217,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
208
217
|
mandatory: boolean;
|
|
209
218
|
collection: boolean;
|
|
210
219
|
private?: boolean;
|
|
220
|
+
credential?: boolean;
|
|
211
221
|
depends?: string;
|
|
212
222
|
description?: string;
|
|
213
223
|
default?: any;
|
|
@@ -227,6 +237,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
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;
|
|
@@ -245,6 +256,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
245
256
|
mandatory: boolean;
|
|
246
257
|
collection: boolean;
|
|
247
258
|
private?: boolean;
|
|
259
|
+
credential?: boolean;
|
|
248
260
|
depends?: string;
|
|
249
261
|
description?: string;
|
|
250
262
|
default?: any;
|
|
@@ -263,6 +275,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
263
275
|
mandatory: boolean;
|
|
264
276
|
collection: boolean;
|
|
265
277
|
private?: boolean;
|
|
278
|
+
credential?: boolean;
|
|
266
279
|
depends?: string;
|
|
267
280
|
description?: string;
|
|
268
281
|
default?: any;
|
|
@@ -283,6 +296,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
283
296
|
mandatory: boolean;
|
|
284
297
|
collection: boolean;
|
|
285
298
|
private?: boolean;
|
|
299
|
+
credential?: boolean;
|
|
286
300
|
depends?: string;
|
|
287
301
|
description?: string;
|
|
288
302
|
default?: any;
|
|
@@ -302,6 +316,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
302
316
|
mandatory: boolean;
|
|
303
317
|
collection: boolean;
|
|
304
318
|
private?: boolean;
|
|
319
|
+
credential?: boolean;
|
|
305
320
|
depends?: string;
|
|
306
321
|
description?: string;
|
|
307
322
|
set?: Function;
|
|
@@ -320,6 +335,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
320
335
|
mandatory: boolean;
|
|
321
336
|
collection: boolean;
|
|
322
337
|
private?: boolean;
|
|
338
|
+
credential?: boolean;
|
|
323
339
|
depends?: string;
|
|
324
340
|
description?: string;
|
|
325
341
|
default?: any;
|
|
@@ -344,6 +360,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
344
360
|
mandatory: boolean;
|
|
345
361
|
collection: boolean;
|
|
346
362
|
private?: boolean;
|
|
363
|
+
credential?: boolean;
|
|
347
364
|
depends?: string;
|
|
348
365
|
description?: string;
|
|
349
366
|
default?: any;
|
|
@@ -362,6 +379,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
362
379
|
mandatory: boolean;
|
|
363
380
|
collection: boolean;
|
|
364
381
|
private?: boolean;
|
|
382
|
+
credential?: boolean;
|
|
365
383
|
depends?: string;
|
|
366
384
|
description?: string;
|
|
367
385
|
default?: any;
|
|
@@ -380,6 +398,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
380
398
|
mandatory: boolean;
|
|
381
399
|
collection: boolean;
|
|
382
400
|
private?: boolean;
|
|
401
|
+
credential?: boolean;
|
|
383
402
|
depends?: string;
|
|
384
403
|
description?: string;
|
|
385
404
|
default?: any;
|
|
@@ -400,6 +419,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
400
419
|
mandatory: boolean;
|
|
401
420
|
collection: boolean;
|
|
402
421
|
private?: boolean;
|
|
422
|
+
credential?: boolean;
|
|
403
423
|
depends?: string;
|
|
404
424
|
description?: string;
|
|
405
425
|
default?: any;
|
|
@@ -419,6 +439,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
419
439
|
mandatory: boolean;
|
|
420
440
|
collection: boolean;
|
|
421
441
|
private?: boolean;
|
|
442
|
+
credential?: boolean;
|
|
422
443
|
depends?: string;
|
|
423
444
|
description?: string;
|
|
424
445
|
set?: Function;
|
|
@@ -436,6 +457,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
436
457
|
mandatory: boolean;
|
|
437
458
|
collection: boolean;
|
|
438
459
|
private?: boolean;
|
|
460
|
+
credential?: boolean;
|
|
439
461
|
depends?: string;
|
|
440
462
|
description?: string;
|
|
441
463
|
default?: any;
|
|
@@ -466,6 +488,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
466
488
|
writable: boolean;
|
|
467
489
|
mandatory: boolean;
|
|
468
490
|
private?: boolean;
|
|
491
|
+
credential?: boolean;
|
|
469
492
|
depends?: string;
|
|
470
493
|
description?: string;
|
|
471
494
|
default?: any;
|
|
@@ -484,6 +507,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
484
507
|
mandatory: boolean;
|
|
485
508
|
collection: boolean;
|
|
486
509
|
private?: boolean;
|
|
510
|
+
credential?: boolean;
|
|
487
511
|
depends?: string;
|
|
488
512
|
description?: string;
|
|
489
513
|
default?: any;
|
|
@@ -514,6 +538,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
514
538
|
writable: boolean;
|
|
515
539
|
mandatory: boolean;
|
|
516
540
|
private?: boolean;
|
|
541
|
+
credential?: boolean;
|
|
517
542
|
depends?: string;
|
|
518
543
|
description?: string;
|
|
519
544
|
default?: any;
|
|
@@ -532,6 +557,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
532
557
|
writable: boolean;
|
|
533
558
|
mandatory: boolean;
|
|
534
559
|
private?: boolean;
|
|
560
|
+
credential?: boolean;
|
|
535
561
|
depends?: string;
|
|
536
562
|
description?: string;
|
|
537
563
|
default?: any;
|
|
@@ -550,6 +576,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
550
576
|
writable: boolean;
|
|
551
577
|
mandatory: boolean;
|
|
552
578
|
private?: boolean;
|
|
579
|
+
credential?: boolean;
|
|
553
580
|
depends?: string;
|
|
554
581
|
description?: string;
|
|
555
582
|
default?: any;
|
|
@@ -576,6 +603,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
576
603
|
writable: boolean;
|
|
577
604
|
mandatory: boolean;
|
|
578
605
|
private?: boolean;
|
|
606
|
+
credential?: boolean;
|
|
579
607
|
depends?: string;
|
|
580
608
|
description?: string;
|
|
581
609
|
default?: any;
|
|
@@ -596,6 +624,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
596
624
|
writable: boolean;
|
|
597
625
|
mandatory: boolean;
|
|
598
626
|
private?: boolean;
|
|
627
|
+
credential?: boolean;
|
|
599
628
|
depends?: string;
|
|
600
629
|
description?: string;
|
|
601
630
|
default?: any;
|
|
@@ -620,6 +649,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
620
649
|
mandatory: boolean;
|
|
621
650
|
collection: boolean;
|
|
622
651
|
private?: boolean;
|
|
652
|
+
credential?: boolean;
|
|
623
653
|
depends?: string;
|
|
624
654
|
description?: string;
|
|
625
655
|
default?: any;
|
|
@@ -642,6 +672,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
642
672
|
writable: boolean;
|
|
643
673
|
mandatory: boolean;
|
|
644
674
|
private?: boolean;
|
|
675
|
+
credential?: boolean;
|
|
645
676
|
depends?: string;
|
|
646
677
|
description?: string;
|
|
647
678
|
default?: any;
|
|
@@ -660,6 +691,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
660
691
|
mandatory: boolean;
|
|
661
692
|
collection: boolean;
|
|
662
693
|
private?: boolean;
|
|
694
|
+
credential?: boolean;
|
|
663
695
|
depends?: string;
|
|
664
696
|
description?: string;
|
|
665
697
|
default?: any;
|
|
@@ -679,6 +711,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
679
711
|
mandatory: boolean;
|
|
680
712
|
collection: boolean;
|
|
681
713
|
private?: boolean;
|
|
714
|
+
credential?: boolean;
|
|
682
715
|
depends?: string;
|
|
683
716
|
description?: string;
|
|
684
717
|
default?: any;
|
|
@@ -697,6 +730,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
697
730
|
mandatory: boolean;
|
|
698
731
|
collection: boolean;
|
|
699
732
|
private?: boolean;
|
|
733
|
+
credential?: boolean;
|
|
700
734
|
depends?: string;
|
|
701
735
|
description?: string;
|
|
702
736
|
default?: any;
|
|
@@ -715,6 +749,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
715
749
|
mandatory: boolean;
|
|
716
750
|
collection: boolean;
|
|
717
751
|
private?: boolean;
|
|
752
|
+
credential?: boolean;
|
|
718
753
|
depends?: string;
|
|
719
754
|
description?: string;
|
|
720
755
|
default?: any;
|
|
@@ -735,6 +770,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
735
770
|
mandatory: boolean;
|
|
736
771
|
collection: boolean;
|
|
737
772
|
private?: boolean;
|
|
773
|
+
credential?: boolean;
|
|
738
774
|
depends?: string;
|
|
739
775
|
description?: string;
|
|
740
776
|
default?: any;
|
|
@@ -754,6 +790,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
754
790
|
mandatory: boolean;
|
|
755
791
|
collection: boolean;
|
|
756
792
|
private?: boolean;
|
|
793
|
+
credential?: boolean;
|
|
757
794
|
depends?: string;
|
|
758
795
|
description?: string;
|
|
759
796
|
set?: Function;
|
|
@@ -772,6 +809,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
772
809
|
mandatory: boolean;
|
|
773
810
|
collection: boolean;
|
|
774
811
|
private?: boolean;
|
|
812
|
+
credential?: boolean;
|
|
775
813
|
depends?: string;
|
|
776
814
|
description?: string;
|
|
777
815
|
default?: any;
|
|
@@ -796,6 +834,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
796
834
|
mandatory: boolean;
|
|
797
835
|
collection: boolean;
|
|
798
836
|
private?: boolean;
|
|
837
|
+
credential?: boolean;
|
|
799
838
|
depends?: string;
|
|
800
839
|
description?: string;
|
|
801
840
|
default?: any;
|
|
@@ -814,6 +853,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
814
853
|
mandatory: boolean;
|
|
815
854
|
collection: boolean;
|
|
816
855
|
private?: boolean;
|
|
856
|
+
credential?: boolean;
|
|
817
857
|
depends?: string;
|
|
818
858
|
description?: string;
|
|
819
859
|
default?: any;
|
|
@@ -832,6 +872,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
832
872
|
mandatory: boolean;
|
|
833
873
|
collection: boolean;
|
|
834
874
|
private?: boolean;
|
|
875
|
+
credential?: boolean;
|
|
835
876
|
depends?: string;
|
|
836
877
|
description?: string;
|
|
837
878
|
default?: any;
|
|
@@ -852,6 +893,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
852
893
|
mandatory: boolean;
|
|
853
894
|
collection: boolean;
|
|
854
895
|
private?: boolean;
|
|
896
|
+
credential?: boolean;
|
|
855
897
|
depends?: string;
|
|
856
898
|
description?: string;
|
|
857
899
|
default?: any;
|
|
@@ -871,6 +913,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
871
913
|
mandatory: boolean;
|
|
872
914
|
collection: boolean;
|
|
873
915
|
private?: boolean;
|
|
916
|
+
credential?: boolean;
|
|
874
917
|
depends?: string;
|
|
875
918
|
description?: string;
|
|
876
919
|
set?: Function;
|
|
@@ -888,6 +931,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
888
931
|
mandatory: boolean;
|
|
889
932
|
collection: boolean;
|
|
890
933
|
private?: boolean;
|
|
934
|
+
credential?: boolean;
|
|
891
935
|
depends?: string;
|
|
892
936
|
description?: string;
|
|
893
937
|
default?: any;
|