pmcf 3.18.4 → 3.18.6
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 +4 -4
- 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
|
@@ -17,6 +17,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
17
17
|
mandatory: boolean;
|
|
18
18
|
private?: boolean;
|
|
19
19
|
credential?: boolean;
|
|
20
|
+
persistent?: boolean;
|
|
20
21
|
depends?: string;
|
|
21
22
|
description?: string;
|
|
22
23
|
default?: any;
|
|
@@ -36,6 +37,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
36
37
|
collection: boolean;
|
|
37
38
|
private?: boolean;
|
|
38
39
|
credential?: boolean;
|
|
40
|
+
persistent?: boolean;
|
|
39
41
|
depends?: string;
|
|
40
42
|
description?: string;
|
|
41
43
|
default?: any;
|
|
@@ -67,6 +69,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
67
69
|
mandatory: boolean;
|
|
68
70
|
private?: boolean;
|
|
69
71
|
credential?: boolean;
|
|
72
|
+
persistent?: boolean;
|
|
70
73
|
depends?: string;
|
|
71
74
|
description?: string;
|
|
72
75
|
default?: any;
|
|
@@ -86,6 +89,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
86
89
|
mandatory: boolean;
|
|
87
90
|
private?: boolean;
|
|
88
91
|
credential?: boolean;
|
|
92
|
+
persistent?: boolean;
|
|
89
93
|
depends?: string;
|
|
90
94
|
description?: string;
|
|
91
95
|
default?: any;
|
|
@@ -105,6 +109,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
105
109
|
mandatory: boolean;
|
|
106
110
|
private?: boolean;
|
|
107
111
|
credential?: boolean;
|
|
112
|
+
persistent?: boolean;
|
|
108
113
|
depends?: string;
|
|
109
114
|
description?: string;
|
|
110
115
|
default?: any;
|
|
@@ -132,6 +137,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
132
137
|
mandatory: boolean;
|
|
133
138
|
private?: boolean;
|
|
134
139
|
credential?: boolean;
|
|
140
|
+
persistent?: boolean;
|
|
135
141
|
depends?: string;
|
|
136
142
|
description?: string;
|
|
137
143
|
default?: any;
|
|
@@ -153,6 +159,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
153
159
|
mandatory: boolean;
|
|
154
160
|
private?: boolean;
|
|
155
161
|
credential?: boolean;
|
|
162
|
+
persistent?: boolean;
|
|
156
163
|
depends?: string;
|
|
157
164
|
description?: string;
|
|
158
165
|
default?: any;
|
|
@@ -178,6 +185,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
178
185
|
collection: boolean;
|
|
179
186
|
private?: boolean;
|
|
180
187
|
credential?: boolean;
|
|
188
|
+
persistent?: boolean;
|
|
181
189
|
depends?: string;
|
|
182
190
|
description?: string;
|
|
183
191
|
default?: any;
|
|
@@ -201,6 +209,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
201
209
|
mandatory: boolean;
|
|
202
210
|
private?: boolean;
|
|
203
211
|
credential?: boolean;
|
|
212
|
+
persistent?: boolean;
|
|
204
213
|
depends?: string;
|
|
205
214
|
description?: string;
|
|
206
215
|
default?: any;
|
|
@@ -220,6 +229,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
220
229
|
collection: boolean;
|
|
221
230
|
private?: boolean;
|
|
222
231
|
credential?: boolean;
|
|
232
|
+
persistent?: boolean;
|
|
223
233
|
depends?: string;
|
|
224
234
|
description?: string;
|
|
225
235
|
default?: any;
|
|
@@ -240,6 +250,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
240
250
|
collection: boolean;
|
|
241
251
|
private?: boolean;
|
|
242
252
|
credential?: boolean;
|
|
253
|
+
persistent?: boolean;
|
|
243
254
|
depends?: string;
|
|
244
255
|
description?: string;
|
|
245
256
|
default?: any;
|
|
@@ -259,6 +270,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
259
270
|
collection: boolean;
|
|
260
271
|
private?: boolean;
|
|
261
272
|
credential?: boolean;
|
|
273
|
+
persistent?: boolean;
|
|
262
274
|
depends?: string;
|
|
263
275
|
description?: string;
|
|
264
276
|
default?: any;
|
|
@@ -278,6 +290,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
278
290
|
collection: boolean;
|
|
279
291
|
private?: boolean;
|
|
280
292
|
credential?: boolean;
|
|
293
|
+
persistent?: boolean;
|
|
281
294
|
depends?: string;
|
|
282
295
|
description?: string;
|
|
283
296
|
default?: any;
|
|
@@ -299,6 +312,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
299
312
|
collection: boolean;
|
|
300
313
|
private?: boolean;
|
|
301
314
|
credential?: boolean;
|
|
315
|
+
persistent?: boolean;
|
|
302
316
|
depends?: string;
|
|
303
317
|
description?: string;
|
|
304
318
|
default?: any;
|
|
@@ -319,6 +333,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
319
333
|
collection: boolean;
|
|
320
334
|
private?: boolean;
|
|
321
335
|
credential?: boolean;
|
|
336
|
+
persistent?: boolean;
|
|
322
337
|
depends?: string;
|
|
323
338
|
description?: string;
|
|
324
339
|
set?: Function;
|
|
@@ -338,6 +353,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
338
353
|
collection: boolean;
|
|
339
354
|
private?: boolean;
|
|
340
355
|
credential?: boolean;
|
|
356
|
+
persistent?: boolean;
|
|
341
357
|
depends?: string;
|
|
342
358
|
description?: string;
|
|
343
359
|
default?: any;
|
|
@@ -363,6 +379,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
363
379
|
collection: boolean;
|
|
364
380
|
private?: boolean;
|
|
365
381
|
credential?: boolean;
|
|
382
|
+
persistent?: boolean;
|
|
366
383
|
depends?: string;
|
|
367
384
|
description?: string;
|
|
368
385
|
default?: any;
|
|
@@ -382,6 +399,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
382
399
|
collection: boolean;
|
|
383
400
|
private?: boolean;
|
|
384
401
|
credential?: boolean;
|
|
402
|
+
persistent?: boolean;
|
|
385
403
|
depends?: string;
|
|
386
404
|
description?: string;
|
|
387
405
|
default?: any;
|
|
@@ -401,6 +419,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
401
419
|
collection: boolean;
|
|
402
420
|
private?: boolean;
|
|
403
421
|
credential?: boolean;
|
|
422
|
+
persistent?: boolean;
|
|
404
423
|
depends?: string;
|
|
405
424
|
description?: string;
|
|
406
425
|
default?: any;
|
|
@@ -422,6 +441,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
422
441
|
collection: boolean;
|
|
423
442
|
private?: boolean;
|
|
424
443
|
credential?: boolean;
|
|
444
|
+
persistent?: boolean;
|
|
425
445
|
depends?: string;
|
|
426
446
|
description?: string;
|
|
427
447
|
default?: any;
|
|
@@ -442,6 +462,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
442
462
|
collection: boolean;
|
|
443
463
|
private?: boolean;
|
|
444
464
|
credential?: boolean;
|
|
465
|
+
persistent?: boolean;
|
|
445
466
|
depends?: string;
|
|
446
467
|
description?: string;
|
|
447
468
|
set?: Function;
|
|
@@ -460,6 +481,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
460
481
|
collection: boolean;
|
|
461
482
|
private?: boolean;
|
|
462
483
|
credential?: boolean;
|
|
484
|
+
persistent?: boolean;
|
|
463
485
|
depends?: string;
|
|
464
486
|
description?: string;
|
|
465
487
|
default?: any;
|
|
@@ -490,6 +512,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
490
512
|
mandatory: boolean;
|
|
491
513
|
private?: boolean;
|
|
492
514
|
credential?: boolean;
|
|
515
|
+
persistent?: boolean;
|
|
493
516
|
depends?: string;
|
|
494
517
|
description?: string;
|
|
495
518
|
default?: any;
|
|
@@ -509,6 +532,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
509
532
|
collection: boolean;
|
|
510
533
|
private?: boolean;
|
|
511
534
|
credential?: boolean;
|
|
535
|
+
persistent?: boolean;
|
|
512
536
|
depends?: string;
|
|
513
537
|
description?: string;
|
|
514
538
|
default?: any;
|
|
@@ -540,6 +564,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
540
564
|
mandatory: boolean;
|
|
541
565
|
private?: boolean;
|
|
542
566
|
credential?: boolean;
|
|
567
|
+
persistent?: boolean;
|
|
543
568
|
depends?: string;
|
|
544
569
|
description?: string;
|
|
545
570
|
default?: any;
|
|
@@ -559,6 +584,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
559
584
|
mandatory: boolean;
|
|
560
585
|
private?: boolean;
|
|
561
586
|
credential?: boolean;
|
|
587
|
+
persistent?: boolean;
|
|
562
588
|
depends?: string;
|
|
563
589
|
description?: string;
|
|
564
590
|
default?: any;
|
|
@@ -578,6 +604,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
578
604
|
mandatory: boolean;
|
|
579
605
|
private?: boolean;
|
|
580
606
|
credential?: boolean;
|
|
607
|
+
persistent?: boolean;
|
|
581
608
|
depends?: string;
|
|
582
609
|
description?: string;
|
|
583
610
|
default?: any;
|
|
@@ -605,6 +632,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
605
632
|
mandatory: boolean;
|
|
606
633
|
private?: boolean;
|
|
607
634
|
credential?: boolean;
|
|
635
|
+
persistent?: boolean;
|
|
608
636
|
depends?: string;
|
|
609
637
|
description?: string;
|
|
610
638
|
default?: any;
|
|
@@ -626,6 +654,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
626
654
|
mandatory: boolean;
|
|
627
655
|
private?: boolean;
|
|
628
656
|
credential?: boolean;
|
|
657
|
+
persistent?: boolean;
|
|
629
658
|
depends?: string;
|
|
630
659
|
description?: string;
|
|
631
660
|
default?: any;
|
|
@@ -651,6 +680,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
651
680
|
collection: boolean;
|
|
652
681
|
private?: boolean;
|
|
653
682
|
credential?: boolean;
|
|
683
|
+
persistent?: boolean;
|
|
654
684
|
depends?: string;
|
|
655
685
|
description?: string;
|
|
656
686
|
default?: any;
|
|
@@ -674,6 +704,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
674
704
|
mandatory: boolean;
|
|
675
705
|
private?: boolean;
|
|
676
706
|
credential?: boolean;
|
|
707
|
+
persistent?: boolean;
|
|
677
708
|
depends?: string;
|
|
678
709
|
description?: string;
|
|
679
710
|
default?: any;
|
|
@@ -693,6 +724,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
693
724
|
collection: boolean;
|
|
694
725
|
private?: boolean;
|
|
695
726
|
credential?: boolean;
|
|
727
|
+
persistent?: boolean;
|
|
696
728
|
depends?: string;
|
|
697
729
|
description?: string;
|
|
698
730
|
default?: any;
|
|
@@ -713,6 +745,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
713
745
|
collection: boolean;
|
|
714
746
|
private?: boolean;
|
|
715
747
|
credential?: boolean;
|
|
748
|
+
persistent?: boolean;
|
|
716
749
|
depends?: string;
|
|
717
750
|
description?: string;
|
|
718
751
|
default?: any;
|
|
@@ -732,6 +765,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
732
765
|
collection: boolean;
|
|
733
766
|
private?: boolean;
|
|
734
767
|
credential?: boolean;
|
|
768
|
+
persistent?: boolean;
|
|
735
769
|
depends?: string;
|
|
736
770
|
description?: string;
|
|
737
771
|
default?: any;
|
|
@@ -751,6 +785,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
751
785
|
collection: boolean;
|
|
752
786
|
private?: boolean;
|
|
753
787
|
credential?: boolean;
|
|
788
|
+
persistent?: boolean;
|
|
754
789
|
depends?: string;
|
|
755
790
|
description?: string;
|
|
756
791
|
default?: any;
|
|
@@ -772,6 +807,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
772
807
|
collection: boolean;
|
|
773
808
|
private?: boolean;
|
|
774
809
|
credential?: boolean;
|
|
810
|
+
persistent?: boolean;
|
|
775
811
|
depends?: string;
|
|
776
812
|
description?: string;
|
|
777
813
|
default?: any;
|
|
@@ -792,6 +828,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
792
828
|
collection: boolean;
|
|
793
829
|
private?: boolean;
|
|
794
830
|
credential?: boolean;
|
|
831
|
+
persistent?: boolean;
|
|
795
832
|
depends?: string;
|
|
796
833
|
description?: string;
|
|
797
834
|
set?: Function;
|
|
@@ -811,6 +848,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
811
848
|
collection: boolean;
|
|
812
849
|
private?: boolean;
|
|
813
850
|
credential?: boolean;
|
|
851
|
+
persistent?: boolean;
|
|
814
852
|
depends?: string;
|
|
815
853
|
description?: string;
|
|
816
854
|
default?: any;
|
|
@@ -836,6 +874,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
836
874
|
collection: boolean;
|
|
837
875
|
private?: boolean;
|
|
838
876
|
credential?: boolean;
|
|
877
|
+
persistent?: boolean;
|
|
839
878
|
depends?: string;
|
|
840
879
|
description?: string;
|
|
841
880
|
default?: any;
|
|
@@ -855,6 +894,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
855
894
|
collection: boolean;
|
|
856
895
|
private?: boolean;
|
|
857
896
|
credential?: boolean;
|
|
897
|
+
persistent?: boolean;
|
|
858
898
|
depends?: string;
|
|
859
899
|
description?: string;
|
|
860
900
|
default?: any;
|
|
@@ -874,6 +914,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
874
914
|
collection: boolean;
|
|
875
915
|
private?: boolean;
|
|
876
916
|
credential?: boolean;
|
|
917
|
+
persistent?: boolean;
|
|
877
918
|
depends?: string;
|
|
878
919
|
description?: string;
|
|
879
920
|
default?: any;
|
|
@@ -895,6 +936,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
895
936
|
collection: boolean;
|
|
896
937
|
private?: boolean;
|
|
897
938
|
credential?: boolean;
|
|
939
|
+
persistent?: boolean;
|
|
898
940
|
depends?: string;
|
|
899
941
|
description?: string;
|
|
900
942
|
default?: any;
|
|
@@ -915,6 +957,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
915
957
|
collection: boolean;
|
|
916
958
|
private?: boolean;
|
|
917
959
|
credential?: boolean;
|
|
960
|
+
persistent?: boolean;
|
|
918
961
|
depends?: string;
|
|
919
962
|
description?: string;
|
|
920
963
|
set?: Function;
|
|
@@ -933,6 +976,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
933
976
|
collection: boolean;
|
|
934
977
|
private?: boolean;
|
|
935
978
|
credential?: boolean;
|
|
979
|
+
persistent?: boolean;
|
|
936
980
|
depends?: string;
|
|
937
981
|
description?: string;
|
|
938
982
|
default?: any;
|
|
@@ -15,6 +15,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
15
15
|
mandatory: boolean;
|
|
16
16
|
private?: boolean;
|
|
17
17
|
credential?: boolean;
|
|
18
|
+
persistent?: boolean;
|
|
18
19
|
depends?: string;
|
|
19
20
|
description?: string;
|
|
20
21
|
default?: any;
|
|
@@ -34,6 +35,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
34
35
|
collection: boolean;
|
|
35
36
|
private?: boolean;
|
|
36
37
|
credential?: boolean;
|
|
38
|
+
persistent?: boolean;
|
|
37
39
|
depends?: string;
|
|
38
40
|
description?: string;
|
|
39
41
|
default?: any;
|
|
@@ -65,6 +67,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
65
67
|
mandatory: boolean;
|
|
66
68
|
private?: boolean;
|
|
67
69
|
credential?: boolean;
|
|
70
|
+
persistent?: boolean;
|
|
68
71
|
depends?: string;
|
|
69
72
|
description?: string;
|
|
70
73
|
default?: any;
|
|
@@ -84,6 +87,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
84
87
|
mandatory: boolean;
|
|
85
88
|
private?: boolean;
|
|
86
89
|
credential?: boolean;
|
|
90
|
+
persistent?: boolean;
|
|
87
91
|
depends?: string;
|
|
88
92
|
description?: string;
|
|
89
93
|
default?: any;
|
|
@@ -103,6 +107,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
103
107
|
mandatory: boolean;
|
|
104
108
|
private?: boolean;
|
|
105
109
|
credential?: boolean;
|
|
110
|
+
persistent?: boolean;
|
|
106
111
|
depends?: string;
|
|
107
112
|
description?: string;
|
|
108
113
|
default?: any;
|
|
@@ -130,6 +135,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
130
135
|
mandatory: boolean;
|
|
131
136
|
private?: boolean;
|
|
132
137
|
credential?: boolean;
|
|
138
|
+
persistent?: boolean;
|
|
133
139
|
depends?: string;
|
|
134
140
|
description?: string;
|
|
135
141
|
default?: any;
|
|
@@ -151,6 +157,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
151
157
|
mandatory: boolean;
|
|
152
158
|
private?: boolean;
|
|
153
159
|
credential?: boolean;
|
|
160
|
+
persistent?: boolean;
|
|
154
161
|
depends?: string;
|
|
155
162
|
description?: string;
|
|
156
163
|
default?: any;
|
|
@@ -176,6 +183,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
176
183
|
collection: boolean;
|
|
177
184
|
private?: boolean;
|
|
178
185
|
credential?: boolean;
|
|
186
|
+
persistent?: boolean;
|
|
179
187
|
depends?: string;
|
|
180
188
|
description?: string;
|
|
181
189
|
default?: any;
|
|
@@ -199,6 +207,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
199
207
|
mandatory: boolean;
|
|
200
208
|
private?: boolean;
|
|
201
209
|
credential?: boolean;
|
|
210
|
+
persistent?: boolean;
|
|
202
211
|
depends?: string;
|
|
203
212
|
description?: string;
|
|
204
213
|
default?: any;
|
|
@@ -218,6 +227,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
218
227
|
collection: boolean;
|
|
219
228
|
private?: boolean;
|
|
220
229
|
credential?: boolean;
|
|
230
|
+
persistent?: boolean;
|
|
221
231
|
depends?: string;
|
|
222
232
|
description?: string;
|
|
223
233
|
default?: any;
|
|
@@ -238,6 +248,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
238
248
|
collection: boolean;
|
|
239
249
|
private?: boolean;
|
|
240
250
|
credential?: boolean;
|
|
251
|
+
persistent?: boolean;
|
|
241
252
|
depends?: string;
|
|
242
253
|
description?: string;
|
|
243
254
|
default?: any;
|
|
@@ -257,6 +268,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
257
268
|
collection: boolean;
|
|
258
269
|
private?: boolean;
|
|
259
270
|
credential?: boolean;
|
|
271
|
+
persistent?: boolean;
|
|
260
272
|
depends?: string;
|
|
261
273
|
description?: string;
|
|
262
274
|
default?: any;
|
|
@@ -276,6 +288,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
276
288
|
collection: boolean;
|
|
277
289
|
private?: boolean;
|
|
278
290
|
credential?: boolean;
|
|
291
|
+
persistent?: boolean;
|
|
279
292
|
depends?: string;
|
|
280
293
|
description?: string;
|
|
281
294
|
default?: any;
|
|
@@ -297,6 +310,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
297
310
|
collection: boolean;
|
|
298
311
|
private?: boolean;
|
|
299
312
|
credential?: boolean;
|
|
313
|
+
persistent?: boolean;
|
|
300
314
|
depends?: string;
|
|
301
315
|
description?: string;
|
|
302
316
|
default?: any;
|
|
@@ -317,6 +331,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
317
331
|
collection: boolean;
|
|
318
332
|
private?: boolean;
|
|
319
333
|
credential?: boolean;
|
|
334
|
+
persistent?: boolean;
|
|
320
335
|
depends?: string;
|
|
321
336
|
description?: string;
|
|
322
337
|
set?: Function;
|
|
@@ -336,6 +351,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
336
351
|
collection: boolean;
|
|
337
352
|
private?: boolean;
|
|
338
353
|
credential?: boolean;
|
|
354
|
+
persistent?: boolean;
|
|
339
355
|
depends?: string;
|
|
340
356
|
description?: string;
|
|
341
357
|
default?: any;
|
|
@@ -361,6 +377,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
361
377
|
collection: boolean;
|
|
362
378
|
private?: boolean;
|
|
363
379
|
credential?: boolean;
|
|
380
|
+
persistent?: boolean;
|
|
364
381
|
depends?: string;
|
|
365
382
|
description?: string;
|
|
366
383
|
default?: any;
|
|
@@ -380,6 +397,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
380
397
|
collection: boolean;
|
|
381
398
|
private?: boolean;
|
|
382
399
|
credential?: boolean;
|
|
400
|
+
persistent?: boolean;
|
|
383
401
|
depends?: string;
|
|
384
402
|
description?: string;
|
|
385
403
|
default?: any;
|
|
@@ -399,6 +417,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
399
417
|
collection: boolean;
|
|
400
418
|
private?: boolean;
|
|
401
419
|
credential?: boolean;
|
|
420
|
+
persistent?: boolean;
|
|
402
421
|
depends?: string;
|
|
403
422
|
description?: string;
|
|
404
423
|
default?: any;
|
|
@@ -420,6 +439,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
420
439
|
collection: boolean;
|
|
421
440
|
private?: boolean;
|
|
422
441
|
credential?: boolean;
|
|
442
|
+
persistent?: boolean;
|
|
423
443
|
depends?: string;
|
|
424
444
|
description?: string;
|
|
425
445
|
default?: any;
|
|
@@ -440,6 +460,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
440
460
|
collection: boolean;
|
|
441
461
|
private?: boolean;
|
|
442
462
|
credential?: boolean;
|
|
463
|
+
persistent?: boolean;
|
|
443
464
|
depends?: string;
|
|
444
465
|
description?: string;
|
|
445
466
|
set?: Function;
|
|
@@ -458,6 +479,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
458
479
|
collection: boolean;
|
|
459
480
|
private?: boolean;
|
|
460
481
|
credential?: boolean;
|
|
482
|
+
persistent?: boolean;
|
|
461
483
|
depends?: string;
|
|
462
484
|
description?: string;
|
|
463
485
|
default?: any;
|
|
@@ -489,6 +511,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
489
511
|
mandatory: boolean;
|
|
490
512
|
private?: boolean;
|
|
491
513
|
credential?: boolean;
|
|
514
|
+
persistent?: boolean;
|
|
492
515
|
depends?: string;
|
|
493
516
|
description?: string;
|
|
494
517
|
default?: any;
|
|
@@ -508,6 +531,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
508
531
|
collection: boolean;
|
|
509
532
|
private?: boolean;
|
|
510
533
|
credential?: boolean;
|
|
534
|
+
persistent?: boolean;
|
|
511
535
|
depends?: string;
|
|
512
536
|
description?: string;
|
|
513
537
|
default?: any;
|
|
@@ -539,6 +563,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
539
563
|
mandatory: boolean;
|
|
540
564
|
private?: boolean;
|
|
541
565
|
credential?: boolean;
|
|
566
|
+
persistent?: boolean;
|
|
542
567
|
depends?: string;
|
|
543
568
|
description?: string;
|
|
544
569
|
default?: any;
|
|
@@ -558,6 +583,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
558
583
|
mandatory: boolean;
|
|
559
584
|
private?: boolean;
|
|
560
585
|
credential?: boolean;
|
|
586
|
+
persistent?: boolean;
|
|
561
587
|
depends?: string;
|
|
562
588
|
description?: string;
|
|
563
589
|
default?: any;
|
|
@@ -577,6 +603,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
577
603
|
mandatory: boolean;
|
|
578
604
|
private?: boolean;
|
|
579
605
|
credential?: boolean;
|
|
606
|
+
persistent?: boolean;
|
|
580
607
|
depends?: string;
|
|
581
608
|
description?: string;
|
|
582
609
|
default?: any;
|
|
@@ -604,6 +631,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
604
631
|
mandatory: boolean;
|
|
605
632
|
private?: boolean;
|
|
606
633
|
credential?: boolean;
|
|
634
|
+
persistent?: boolean;
|
|
607
635
|
depends?: string;
|
|
608
636
|
description?: string;
|
|
609
637
|
default?: any;
|
|
@@ -625,6 +653,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
625
653
|
mandatory: boolean;
|
|
626
654
|
private?: boolean;
|
|
627
655
|
credential?: boolean;
|
|
656
|
+
persistent?: boolean;
|
|
628
657
|
depends?: string;
|
|
629
658
|
description?: string;
|
|
630
659
|
default?: any;
|
|
@@ -650,6 +679,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
650
679
|
collection: boolean;
|
|
651
680
|
private?: boolean;
|
|
652
681
|
credential?: boolean;
|
|
682
|
+
persistent?: boolean;
|
|
653
683
|
depends?: string;
|
|
654
684
|
description?: string;
|
|
655
685
|
default?: any;
|
|
@@ -673,6 +703,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
673
703
|
mandatory: boolean;
|
|
674
704
|
private?: boolean;
|
|
675
705
|
credential?: boolean;
|
|
706
|
+
persistent?: boolean;
|
|
676
707
|
depends?: string;
|
|
677
708
|
description?: string;
|
|
678
709
|
default?: any;
|
|
@@ -692,6 +723,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
692
723
|
collection: boolean;
|
|
693
724
|
private?: boolean;
|
|
694
725
|
credential?: boolean;
|
|
726
|
+
persistent?: boolean;
|
|
695
727
|
depends?: string;
|
|
696
728
|
description?: string;
|
|
697
729
|
default?: any;
|
|
@@ -712,6 +744,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
712
744
|
collection: boolean;
|
|
713
745
|
private?: boolean;
|
|
714
746
|
credential?: boolean;
|
|
747
|
+
persistent?: boolean;
|
|
715
748
|
depends?: string;
|
|
716
749
|
description?: string;
|
|
717
750
|
default?: any;
|
|
@@ -731,6 +764,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
731
764
|
collection: boolean;
|
|
732
765
|
private?: boolean;
|
|
733
766
|
credential?: boolean;
|
|
767
|
+
persistent?: boolean;
|
|
734
768
|
depends?: string;
|
|
735
769
|
description?: string;
|
|
736
770
|
default?: any;
|
|
@@ -750,6 +784,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
750
784
|
collection: boolean;
|
|
751
785
|
private?: boolean;
|
|
752
786
|
credential?: boolean;
|
|
787
|
+
persistent?: boolean;
|
|
753
788
|
depends?: string;
|
|
754
789
|
description?: string;
|
|
755
790
|
default?: any;
|
|
@@ -771,6 +806,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
771
806
|
collection: boolean;
|
|
772
807
|
private?: boolean;
|
|
773
808
|
credential?: boolean;
|
|
809
|
+
persistent?: boolean;
|
|
774
810
|
depends?: string;
|
|
775
811
|
description?: string;
|
|
776
812
|
default?: any;
|
|
@@ -791,6 +827,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
791
827
|
collection: boolean;
|
|
792
828
|
private?: boolean;
|
|
793
829
|
credential?: boolean;
|
|
830
|
+
persistent?: boolean;
|
|
794
831
|
depends?: string;
|
|
795
832
|
description?: string;
|
|
796
833
|
set?: Function;
|
|
@@ -810,6 +847,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
810
847
|
collection: boolean;
|
|
811
848
|
private?: boolean;
|
|
812
849
|
credential?: boolean;
|
|
850
|
+
persistent?: boolean;
|
|
813
851
|
depends?: string;
|
|
814
852
|
description?: string;
|
|
815
853
|
default?: any;
|
|
@@ -835,6 +873,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
835
873
|
collection: boolean;
|
|
836
874
|
private?: boolean;
|
|
837
875
|
credential?: boolean;
|
|
876
|
+
persistent?: boolean;
|
|
838
877
|
depends?: string;
|
|
839
878
|
description?: string;
|
|
840
879
|
default?: any;
|
|
@@ -854,6 +893,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
854
893
|
collection: boolean;
|
|
855
894
|
private?: boolean;
|
|
856
895
|
credential?: boolean;
|
|
896
|
+
persistent?: boolean;
|
|
857
897
|
depends?: string;
|
|
858
898
|
description?: string;
|
|
859
899
|
default?: any;
|
|
@@ -873,6 +913,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
873
913
|
collection: boolean;
|
|
874
914
|
private?: boolean;
|
|
875
915
|
credential?: boolean;
|
|
916
|
+
persistent?: boolean;
|
|
876
917
|
depends?: string;
|
|
877
918
|
description?: string;
|
|
878
919
|
default?: any;
|
|
@@ -894,6 +935,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
894
935
|
collection: boolean;
|
|
895
936
|
private?: boolean;
|
|
896
937
|
credential?: boolean;
|
|
938
|
+
persistent?: boolean;
|
|
897
939
|
depends?: string;
|
|
898
940
|
description?: string;
|
|
899
941
|
default?: any;
|
|
@@ -914,6 +956,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
914
956
|
collection: boolean;
|
|
915
957
|
private?: boolean;
|
|
916
958
|
credential?: boolean;
|
|
959
|
+
persistent?: boolean;
|
|
917
960
|
depends?: string;
|
|
918
961
|
description?: string;
|
|
919
962
|
set?: Function;
|
|
@@ -932,6 +975,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
932
975
|
collection: boolean;
|
|
933
976
|
private?: boolean;
|
|
934
977
|
credential?: boolean;
|
|
978
|
+
persistent?: boolean;
|
|
935
979
|
depends?: string;
|
|
936
980
|
description?: string;
|
|
937
981
|
default?: any;
|