pmcf 4.19.2 → 4.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. package/README.md +93 -72
  2. package/package.json +19 -19
  3. package/src/base.mjs +23 -241
  4. package/src/cli.mjs +4 -4
  5. package/src/cluster.mjs +13 -11
  6. package/src/extra-source-service.mjs +7 -10
  7. package/src/host.mjs +30 -44
  8. package/src/initialization-context.mjs +324 -0
  9. package/src/location.mjs +4 -14
  10. package/src/module.mjs +1 -0
  11. package/src/network-interfaces/ethernet.mjs +3 -5
  12. package/src/network-interfaces/loopback.mjs +2 -4
  13. package/src/network-interfaces/network-interface.mjs +3 -5
  14. package/src/network-interfaces/skeleton.mjs +9 -3
  15. package/src/network-interfaces/tun.mjs +2 -4
  16. package/src/network-interfaces/wireguard.mjs +3 -5
  17. package/src/network-interfaces/wlan.mjs +4 -7
  18. package/src/network.mjs +10 -8
  19. package/src/owner.mjs +7 -31
  20. package/src/root.mjs +4 -73
  21. package/src/service-owner.mjs +19 -18
  22. package/src/service.mjs +13 -18
  23. package/src/services/alpm.mjs +4 -9
  24. package/src/services/bind.mjs +424 -388
  25. package/src/services/chrony.mjs +3 -5
  26. package/src/services/headscale.mjs +2 -4
  27. package/src/services/influxdb.mjs +2 -4
  28. package/src/services/kea.mjs +6 -10
  29. package/src/services/mosquitto.mjs +2 -4
  30. package/src/services/openldap.mjs +2 -4
  31. package/src/services/postfix.mjs +2 -4
  32. package/src/services/systemd-journal-remote.mjs +2 -4
  33. package/src/services/systemd-journal-upload.mjs +9 -10
  34. package/src/services/systemd-journald.mjs +2 -4
  35. package/src/services/systemd-resolved.mjs +42 -42
  36. package/src/services/systemd-timesyncd.mjs +9 -13
  37. package/src/services/tailscale.mjs +5 -2
  38. package/src/subnet.mjs +9 -5
  39. package/types/base.d.mts +0 -180
  40. package/types/cli.d.mts +0 -10
  41. package/types/cluster.d.mts +0 -507
  42. package/types/dns-utils.d.mts +0 -14
  43. package/types/endpoint.d.mts +0 -79
  44. package/types/extra-source-service.d.mts +0 -1033
  45. package/types/hooks.d.mts +0 -2
  46. package/types/host-utils.d.mts +0 -1
  47. package/types/host.d.mts +0 -285
  48. package/types/location.d.mts +0 -379
  49. package/types/module.d.mts +0 -36
  50. package/types/network-address.d.mts +0 -41
  51. package/types/network-interfaces/ethernet.d.mts +0 -1189
  52. package/types/network-interfaces/loopback.d.mts +0 -1140
  53. package/types/network-interfaces/network-interface.d.mts +0 -1158
  54. package/types/network-interfaces/skeleton.d.mts +0 -30
  55. package/types/network-interfaces/tun.d.mts +0 -1131
  56. package/types/network-interfaces/wireguard.d.mts +0 -1131
  57. package/types/network-interfaces/wlan.d.mts +0 -1734
  58. package/types/network-support.d.mts +0 -193
  59. package/types/network.d.mts +0 -702
  60. package/types/owner.d.mts +0 -235
  61. package/types/root.d.mts +0 -10
  62. package/types/service-owner.d.mts +0 -14
  63. package/types/service-types.d.mts +0 -246
  64. package/types/service.d.mts +0 -689
  65. package/types/services/alpm.d.mts +0 -805
  66. package/types/services/bind.d.mts +0 -1574
  67. package/types/services/chrony.d.mts +0 -1310
  68. package/types/services/headscale.d.mts +0 -801
  69. package/types/services/influxdb.d.mts +0 -812
  70. package/types/services/kea.d.mts +0 -945
  71. package/types/services/mosquitto.d.mts +0 -876
  72. package/types/services/openldap.d.mts +0 -793
  73. package/types/services/postfix.d.mts +0 -784
  74. package/types/services/systemd-journal-remote.d.mts +0 -1030
  75. package/types/services/systemd-journal-upload.d.mts +0 -932
  76. package/types/services/systemd-journald.d.mts +0 -1317
  77. package/types/services/systemd-resolved.d.mts +0 -1644
  78. package/types/services/systemd-timesyncd.d.mts +0 -1459
  79. package/types/services/tailscale.d.mts +0 -781
  80. package/types/subnet.d.mts +0 -57
  81. package/types/utils.d.mts +0 -37
@@ -1,1030 +0,0 @@
1
- /**
2
- * @property {string} ServerCertificateFile
3
- * @property {string} ServerKeyFile
4
- */
5
- export class SystemdJournalRemoteService extends Service {
6
- static get typeDefinition(): {
7
- name: string;
8
- extends: {
9
- name: string;
10
- owners: (string | {
11
- name: string;
12
- owners: string[];
13
- extends: typeof import("pmcf").Base;
14
- key: string;
15
- attributes: {
16
- networkInterfaces: {
17
- type: string;
18
- collection: boolean;
19
- isKey: boolean;
20
- writable: boolean;
21
- mandatory: boolean;
22
- constructor?: Function;
23
- private?: boolean;
24
- credential?: boolean;
25
- persistent?: boolean;
26
- depends?: string;
27
- description?: string;
28
- default?: any;
29
- set?: Function;
30
- get?: Function;
31
- toInternal?: Function;
32
- toExternal?: Function;
33
- values?: Set<any>;
34
- externalName?: string;
35
- env?: string[] | string;
36
- additionalValues?: object;
37
- };
38
- services: {
39
- type: string;
40
- collection: boolean;
41
- isKey: boolean;
42
- writable: boolean;
43
- mandatory: boolean;
44
- constructor?: Function;
45
- private?: boolean;
46
- credential?: boolean;
47
- persistent?: boolean;
48
- depends?: string;
49
- description?: string;
50
- default?: any;
51
- set?: Function;
52
- get?: Function;
53
- toInternal?: Function;
54
- toExternal?: Function;
55
- values?: Set<any>;
56
- externalName?: string;
57
- env?: string[] | string;
58
- additionalValues?: object;
59
- };
60
- aliases: import("pacc").AttributeDefinition;
61
- os: {
62
- values: string[];
63
- type: object;
64
- isKey: boolean;
65
- writable: boolean;
66
- mandatory: boolean;
67
- collection: boolean;
68
- constructor?: Function;
69
- private?: boolean;
70
- credential?: boolean;
71
- persistent?: boolean;
72
- depends?: string;
73
- description?: string;
74
- default?: any;
75
- set?: Function;
76
- get?: Function;
77
- toInternal?: Function;
78
- toExternal?: Function;
79
- externalName?: string;
80
- env?: string[] | string;
81
- additionalValues?: object;
82
- };
83
- "machine-id": import("pacc").AttributeDefinition;
84
- distribution: import("pacc").AttributeDefinition;
85
- deployment: {
86
- values: string[];
87
- type: object;
88
- isKey: boolean;
89
- writable: boolean;
90
- mandatory: boolean;
91
- collection: boolean;
92
- constructor?: Function;
93
- private?: boolean;
94
- credential?: boolean;
95
- persistent?: boolean;
96
- depends?: string;
97
- description?: string;
98
- default?: any;
99
- set?: Function;
100
- get?: Function;
101
- toInternal?: Function;
102
- toExternal?: Function;
103
- externalName?: string;
104
- env?: string[] | string;
105
- additionalValues?: object;
106
- };
107
- weight: import("pacc").AttributeDefinition;
108
- serial: import("pacc").AttributeDefinition;
109
- vendor: import("pacc").AttributeDefinition;
110
- keymap: import("pacc").AttributeDefinition;
111
- chassis: {
112
- values: string[];
113
- type: object;
114
- isKey: boolean;
115
- writable: boolean;
116
- mandatory: boolean;
117
- collection: boolean;
118
- constructor?: Function;
119
- private?: boolean;
120
- credential?: boolean;
121
- persistent?: boolean;
122
- depends?: string;
123
- description?: string;
124
- default?: any;
125
- set?: Function;
126
- get?: Function;
127
- toInternal?: Function;
128
- toExternal?: Function;
129
- externalName?: string;
130
- env?: string[] | string;
131
- additionalValues?: object;
132
- };
133
- architecture: {
134
- values: string[];
135
- type: object;
136
- isKey: boolean;
137
- writable: boolean;
138
- mandatory: boolean;
139
- collection: boolean;
140
- constructor?: Function;
141
- private?: boolean;
142
- credential?: boolean;
143
- persistent?: boolean;
144
- depends?: string;
145
- description?: string;
146
- default?: any;
147
- set?: Function;
148
- get?: Function;
149
- toInternal?: Function;
150
- toExternal?: Function;
151
- externalName?: string;
152
- env?: string[] | string;
153
- additionalValues?: object;
154
- };
155
- replaces: import("pacc").AttributeDefinition;
156
- depends: import("pacc").AttributeDefinition;
157
- provides: import("pacc").AttributeDefinition;
158
- extends: {
159
- type: string;
160
- collection: boolean;
161
- isKey: boolean;
162
- writable: boolean;
163
- mandatory: boolean;
164
- constructor?: Function;
165
- private?: boolean;
166
- credential?: boolean;
167
- persistent?: boolean;
168
- depends?: string;
169
- description?: string;
170
- default?: any;
171
- set?: Function;
172
- get?: Function;
173
- toInternal?: Function;
174
- toExternal?: Function;
175
- values?: Set<any>;
176
- externalName?: string;
177
- env?: string[] | string;
178
- additionalValues?: object;
179
- };
180
- model: import("pacc").AttributeDefinition;
181
- isModel: import("pacc").AttributeDefinition;
182
- hostName: {
183
- writable: boolean;
184
- type: object;
185
- isKey: boolean;
186
- mandatory: boolean;
187
- collection: boolean;
188
- constructor?: Function;
189
- private?: boolean;
190
- credential?: boolean;
191
- persistent?: boolean;
192
- depends?: string;
193
- description?: string;
194
- default?: any;
195
- set?: Function;
196
- get?: Function;
197
- toInternal?: Function;
198
- toExternal?: Function;
199
- values?: Set<any>;
200
- externalName?: string;
201
- env?: string[] | string;
202
- additionalValues?: object;
203
- };
204
- cidrAddresses: import("pacc").AttributeDefinition;
205
- cidrAddress: import("pacc").AttributeDefinition;
206
- addresses: import("pacc").AttributeDefinition;
207
- address: import("pacc").AttributeDefinition;
208
- };
209
- })[];
210
- extends: typeof import("pmcf").Base;
211
- specializations: {};
212
- factoryFor(owner: any, value: any): any;
213
- key: string;
214
- attributes: {
215
- alias: import("pacc").AttributeDefinition;
216
- weight: {
217
- type: object;
218
- isKey: boolean;
219
- writable: boolean;
220
- mandatory: boolean;
221
- collection: boolean;
222
- constructor?: Function;
223
- private?: boolean;
224
- credential?: boolean;
225
- persistent?: boolean;
226
- depends?: string;
227
- description?: string;
228
- default?: any;
229
- set?: Function;
230
- get?: Function;
231
- toInternal?: Function;
232
- toExternal?: Function;
233
- values?: Set<any>;
234
- externalName?: string;
235
- env?: string[] | string;
236
- additionalValues?: object;
237
- };
238
- systemdService: import("pacc").AttributeDefinition;
239
- port: import("pacc").AttributeDefinition;
240
- protocol: {
241
- values: string[];
242
- type: object;
243
- isKey: boolean;
244
- writable: boolean;
245
- mandatory: boolean;
246
- collection: boolean;
247
- constructor?: Function;
248
- private?: boolean;
249
- credential?: boolean;
250
- persistent?: boolean;
251
- depends?: string;
252
- description?: string;
253
- default?: any;
254
- set?: Function;
255
- get?: Function;
256
- toInternal?: Function;
257
- toExternal?: Function;
258
- externalName?: string;
259
- env?: string[] | string;
260
- additionalValues?: object;
261
- };
262
- type: import("pacc").AttributeDefinition;
263
- types: import("pacc").AttributeDefinition;
264
- tls: import("pacc").AttributeDefinition;
265
- hostName: {
266
- writable: boolean;
267
- type: object;
268
- isKey: boolean;
269
- mandatory: boolean;
270
- collection: boolean;
271
- constructor?: Function;
272
- private?: boolean;
273
- credential?: boolean;
274
- persistent?: boolean;
275
- depends?: string;
276
- description?: string;
277
- default?: any;
278
- set?: Function;
279
- get?: Function;
280
- toInternal?: Function;
281
- toExternal?: Function;
282
- values?: Set<any>;
283
- externalName?: string;
284
- env?: string[] | string;
285
- additionalValues?: object;
286
- };
287
- cidrAddresses: import("pacc").AttributeDefinition;
288
- cidrAddress: import("pacc").AttributeDefinition;
289
- addresses: import("pacc").AttributeDefinition;
290
- address: import("pacc").AttributeDefinition;
291
- };
292
- };
293
- specializationOf: {
294
- name: string;
295
- owners: (string | {
296
- name: string;
297
- owners: string[];
298
- extends: typeof import("pmcf").Base;
299
- key: string;
300
- attributes: {
301
- networkInterfaces: {
302
- type: string;
303
- collection: boolean;
304
- isKey: boolean;
305
- writable: boolean;
306
- mandatory: boolean;
307
- constructor?: Function;
308
- private?: boolean;
309
- credential?: boolean;
310
- persistent?: boolean;
311
- depends?: string;
312
- description?: string;
313
- default?: any;
314
- set?: Function;
315
- get?: Function;
316
- toInternal?: Function;
317
- toExternal?: Function;
318
- values?: Set<any>;
319
- externalName?: string;
320
- env?: string[] | string;
321
- additionalValues?: object;
322
- };
323
- services: {
324
- type: string;
325
- collection: boolean;
326
- isKey: boolean;
327
- writable: boolean;
328
- mandatory: boolean;
329
- constructor?: Function;
330
- private?: boolean;
331
- credential?: boolean;
332
- persistent?: boolean;
333
- depends?: string;
334
- description?: string;
335
- default?: any;
336
- set?: Function;
337
- get?: Function;
338
- toInternal?: Function;
339
- toExternal?: Function;
340
- values?: Set<any>;
341
- externalName?: string;
342
- env?: string[] | string;
343
- additionalValues?: object;
344
- };
345
- aliases: import("pacc").AttributeDefinition;
346
- os: {
347
- values: string[];
348
- type: object;
349
- isKey: boolean;
350
- writable: boolean;
351
- mandatory: boolean;
352
- collection: boolean;
353
- constructor?: Function;
354
- private?: boolean;
355
- credential?: boolean;
356
- persistent?: boolean;
357
- depends?: string;
358
- description?: string;
359
- default?: any;
360
- set?: Function;
361
- get?: Function;
362
- toInternal?: Function;
363
- toExternal?: Function;
364
- externalName?: string;
365
- env?: string[] | string;
366
- additionalValues?: object;
367
- };
368
- "machine-id": import("pacc").AttributeDefinition;
369
- distribution: import("pacc").AttributeDefinition;
370
- deployment: {
371
- values: string[];
372
- type: object;
373
- isKey: boolean;
374
- writable: boolean;
375
- mandatory: boolean;
376
- collection: boolean;
377
- constructor?: Function;
378
- private?: boolean;
379
- credential?: boolean;
380
- persistent?: boolean;
381
- depends?: string;
382
- description?: string;
383
- default?: any;
384
- set?: Function;
385
- get?: Function;
386
- toInternal?: Function;
387
- toExternal?: Function;
388
- externalName?: string;
389
- env?: string[] | string;
390
- additionalValues?: object;
391
- };
392
- weight: import("pacc").AttributeDefinition;
393
- serial: import("pacc").AttributeDefinition;
394
- vendor: import("pacc").AttributeDefinition;
395
- keymap: import("pacc").AttributeDefinition;
396
- chassis: {
397
- values: string[];
398
- type: object;
399
- isKey: boolean;
400
- writable: boolean;
401
- mandatory: boolean;
402
- collection: boolean;
403
- constructor?: Function;
404
- private?: boolean;
405
- credential?: boolean;
406
- persistent?: boolean;
407
- depends?: string;
408
- description?: string;
409
- default?: any;
410
- set?: Function;
411
- get?: Function;
412
- toInternal?: Function;
413
- toExternal?: Function;
414
- externalName?: string;
415
- env?: string[] | string;
416
- additionalValues?: object;
417
- };
418
- architecture: {
419
- values: string[];
420
- type: object;
421
- isKey: boolean;
422
- writable: boolean;
423
- mandatory: boolean;
424
- collection: boolean;
425
- constructor?: Function;
426
- private?: boolean;
427
- credential?: boolean;
428
- persistent?: boolean;
429
- depends?: string;
430
- description?: string;
431
- default?: any;
432
- set?: Function;
433
- get?: Function;
434
- toInternal?: Function;
435
- toExternal?: Function;
436
- externalName?: string;
437
- env?: string[] | string;
438
- additionalValues?: object;
439
- };
440
- replaces: import("pacc").AttributeDefinition;
441
- depends: import("pacc").AttributeDefinition;
442
- provides: import("pacc").AttributeDefinition;
443
- extends: {
444
- type: string;
445
- collection: boolean;
446
- isKey: boolean;
447
- writable: boolean;
448
- mandatory: boolean;
449
- constructor?: Function;
450
- private?: boolean;
451
- credential?: boolean;
452
- persistent?: boolean;
453
- depends?: string;
454
- description?: string;
455
- default?: any;
456
- set?: Function;
457
- get?: Function;
458
- toInternal?: Function;
459
- toExternal?: Function;
460
- values?: Set<any>;
461
- externalName?: string;
462
- env?: string[] | string;
463
- additionalValues?: object;
464
- };
465
- model: import("pacc").AttributeDefinition;
466
- isModel: import("pacc").AttributeDefinition;
467
- hostName: {
468
- writable: boolean;
469
- type: object;
470
- isKey: boolean;
471
- mandatory: boolean;
472
- collection: boolean;
473
- constructor?: Function;
474
- private?: boolean;
475
- credential?: boolean;
476
- persistent?: boolean;
477
- depends?: string;
478
- description?: string;
479
- default?: any;
480
- set?: Function;
481
- get?: Function;
482
- toInternal?: Function;
483
- toExternal?: Function;
484
- values?: Set<any>;
485
- externalName?: string;
486
- env?: string[] | string;
487
- additionalValues?: object;
488
- };
489
- cidrAddresses: import("pacc").AttributeDefinition;
490
- cidrAddress: import("pacc").AttributeDefinition;
491
- addresses: import("pacc").AttributeDefinition;
492
- address: import("pacc").AttributeDefinition;
493
- };
494
- })[];
495
- extends: typeof import("pmcf").Base;
496
- specializations: {};
497
- factoryFor(owner: any, value: any): any;
498
- key: string;
499
- attributes: {
500
- alias: import("pacc").AttributeDefinition;
501
- weight: {
502
- type: object;
503
- isKey: boolean;
504
- writable: boolean;
505
- mandatory: boolean;
506
- collection: boolean;
507
- constructor?: Function;
508
- private?: boolean;
509
- credential?: boolean;
510
- persistent?: boolean;
511
- depends?: string;
512
- description?: string;
513
- default?: any;
514
- set?: Function;
515
- get?: Function;
516
- toInternal?: Function;
517
- toExternal?: Function;
518
- values?: Set<any>;
519
- externalName?: string;
520
- env?: string[] | string;
521
- additionalValues?: object;
522
- };
523
- systemdService: import("pacc").AttributeDefinition;
524
- port: import("pacc").AttributeDefinition;
525
- protocol: {
526
- values: string[];
527
- type: object;
528
- isKey: boolean;
529
- writable: boolean;
530
- mandatory: boolean;
531
- collection: boolean;
532
- constructor?: Function;
533
- private?: boolean;
534
- credential?: boolean;
535
- persistent?: boolean;
536
- depends?: string;
537
- description?: string;
538
- default?: any;
539
- set?: Function;
540
- get?: Function;
541
- toInternal?: Function;
542
- toExternal?: Function;
543
- externalName?: string;
544
- env?: string[] | string;
545
- additionalValues?: object;
546
- };
547
- type: import("pacc").AttributeDefinition;
548
- types: import("pacc").AttributeDefinition;
549
- tls: import("pacc").AttributeDefinition;
550
- hostName: {
551
- writable: boolean;
552
- type: object;
553
- isKey: boolean;
554
- mandatory: boolean;
555
- collection: boolean;
556
- constructor?: Function;
557
- private?: boolean;
558
- credential?: boolean;
559
- persistent?: boolean;
560
- depends?: string;
561
- description?: string;
562
- default?: any;
563
- set?: Function;
564
- get?: Function;
565
- toInternal?: Function;
566
- toExternal?: Function;
567
- values?: Set<any>;
568
- externalName?: string;
569
- env?: string[] | string;
570
- additionalValues?: object;
571
- };
572
- cidrAddresses: import("pacc").AttributeDefinition;
573
- cidrAddress: import("pacc").AttributeDefinition;
574
- addresses: import("pacc").AttributeDefinition;
575
- address: import("pacc").AttributeDefinition;
576
- };
577
- };
578
- owners: (string | {
579
- name: string;
580
- owners: string[];
581
- extends: typeof import("pmcf").Base;
582
- key: string;
583
- attributes: {
584
- networkInterfaces: {
585
- type: string;
586
- collection: boolean;
587
- isKey: boolean;
588
- writable: boolean;
589
- mandatory: boolean;
590
- constructor?: Function;
591
- private?: boolean;
592
- credential?: boolean;
593
- persistent?: boolean;
594
- depends?: string;
595
- description?: string;
596
- default?: any;
597
- set?: Function;
598
- get?: Function;
599
- toInternal?: Function;
600
- toExternal?: Function;
601
- values?: Set<any>;
602
- externalName?: string;
603
- env?: string[] | string;
604
- additionalValues?: object;
605
- };
606
- services: {
607
- type: string;
608
- collection: boolean;
609
- isKey: boolean;
610
- writable: boolean;
611
- mandatory: boolean;
612
- constructor?: Function;
613
- private?: boolean;
614
- credential?: boolean;
615
- persistent?: boolean;
616
- depends?: string;
617
- description?: string;
618
- default?: any;
619
- set?: Function;
620
- get?: Function;
621
- toInternal?: Function;
622
- toExternal?: Function;
623
- values?: Set<any>;
624
- externalName?: string;
625
- env?: string[] | string;
626
- additionalValues?: object;
627
- };
628
- aliases: import("pacc").AttributeDefinition;
629
- os: {
630
- values: string[];
631
- type: object;
632
- isKey: boolean;
633
- writable: boolean;
634
- mandatory: boolean;
635
- collection: boolean;
636
- constructor?: Function;
637
- private?: boolean;
638
- credential?: boolean;
639
- persistent?: boolean;
640
- depends?: string;
641
- description?: string;
642
- default?: any;
643
- set?: Function;
644
- get?: Function;
645
- toInternal?: Function;
646
- toExternal?: Function;
647
- externalName?: string;
648
- env?: string[] | string;
649
- additionalValues?: object;
650
- };
651
- "machine-id": import("pacc").AttributeDefinition;
652
- distribution: import("pacc").AttributeDefinition;
653
- deployment: {
654
- values: string[];
655
- type: object;
656
- isKey: boolean;
657
- writable: boolean;
658
- mandatory: boolean;
659
- collection: boolean;
660
- constructor?: Function;
661
- private?: boolean;
662
- credential?: boolean;
663
- persistent?: boolean;
664
- depends?: string;
665
- description?: string;
666
- default?: any;
667
- set?: Function;
668
- get?: Function;
669
- toInternal?: Function;
670
- toExternal?: Function;
671
- externalName?: string;
672
- env?: string[] | string;
673
- additionalValues?: object;
674
- };
675
- weight: import("pacc").AttributeDefinition;
676
- serial: import("pacc").AttributeDefinition;
677
- vendor: import("pacc").AttributeDefinition;
678
- keymap: import("pacc").AttributeDefinition;
679
- chassis: {
680
- values: string[];
681
- type: object;
682
- isKey: boolean;
683
- writable: boolean;
684
- mandatory: boolean;
685
- collection: boolean;
686
- constructor?: Function;
687
- private?: boolean;
688
- credential?: boolean;
689
- persistent?: boolean;
690
- depends?: string;
691
- description?: string;
692
- default?: any;
693
- set?: Function;
694
- get?: Function;
695
- toInternal?: Function;
696
- toExternal?: Function;
697
- externalName?: string;
698
- env?: string[] | string;
699
- additionalValues?: object;
700
- };
701
- architecture: {
702
- values: string[];
703
- type: object;
704
- isKey: boolean;
705
- writable: boolean;
706
- mandatory: boolean;
707
- collection: boolean;
708
- constructor?: Function;
709
- private?: boolean;
710
- credential?: boolean;
711
- persistent?: boolean;
712
- depends?: string;
713
- description?: string;
714
- default?: any;
715
- set?: Function;
716
- get?: Function;
717
- toInternal?: Function;
718
- toExternal?: Function;
719
- externalName?: string;
720
- env?: string[] | string;
721
- additionalValues?: object;
722
- };
723
- replaces: import("pacc").AttributeDefinition;
724
- depends: import("pacc").AttributeDefinition;
725
- provides: import("pacc").AttributeDefinition;
726
- extends: {
727
- type: string;
728
- collection: boolean;
729
- isKey: boolean;
730
- writable: boolean;
731
- mandatory: boolean;
732
- constructor?: Function;
733
- private?: boolean;
734
- credential?: boolean;
735
- persistent?: boolean;
736
- depends?: string;
737
- description?: string;
738
- default?: any;
739
- set?: Function;
740
- get?: Function;
741
- toInternal?: Function;
742
- toExternal?: Function;
743
- values?: Set<any>;
744
- externalName?: string;
745
- env?: string[] | string;
746
- additionalValues?: object;
747
- };
748
- model: import("pacc").AttributeDefinition;
749
- isModel: import("pacc").AttributeDefinition;
750
- hostName: {
751
- writable: boolean;
752
- type: object;
753
- isKey: boolean;
754
- mandatory: boolean;
755
- collection: boolean;
756
- constructor?: Function;
757
- private?: boolean;
758
- credential?: boolean;
759
- persistent?: boolean;
760
- depends?: string;
761
- description?: string;
762
- default?: any;
763
- set?: Function;
764
- get?: Function;
765
- toInternal?: Function;
766
- toExternal?: Function;
767
- values?: Set<any>;
768
- externalName?: string;
769
- env?: string[] | string;
770
- additionalValues?: object;
771
- };
772
- cidrAddresses: import("pacc").AttributeDefinition;
773
- cidrAddress: import("pacc").AttributeDefinition;
774
- addresses: import("pacc").AttributeDefinition;
775
- address: import("pacc").AttributeDefinition;
776
- };
777
- })[];
778
- key: string;
779
- attributes: {
780
- Seal: {
781
- configurable: boolean;
782
- type: object;
783
- isKey: boolean;
784
- writable: boolean;
785
- mandatory: boolean;
786
- collection: boolean;
787
- constructor?: Function;
788
- private?: boolean;
789
- credential?: boolean;
790
- persistent?: boolean;
791
- depends?: string;
792
- description?: string;
793
- default?: any;
794
- set?: Function;
795
- get?: Function;
796
- toInternal?: Function;
797
- toExternal?: Function;
798
- values?: Set<any>;
799
- externalName?: string;
800
- env?: string[] | string;
801
- additionalValues?: object;
802
- };
803
- SplitMode: {
804
- values: (string | boolean)[];
805
- configurable: boolean;
806
- type: object;
807
- isKey: boolean;
808
- writable: boolean;
809
- mandatory: boolean;
810
- collection: boolean;
811
- constructor?: Function;
812
- private?: boolean;
813
- credential?: boolean;
814
- persistent?: boolean;
815
- depends?: string;
816
- description?: string;
817
- default?: any;
818
- set?: Function;
819
- get?: Function;
820
- toInternal?: Function;
821
- toExternal?: Function;
822
- externalName?: string;
823
- env?: string[] | string;
824
- additionalValues?: object;
825
- };
826
- ServerKeyFile: {
827
- configurable: boolean;
828
- type: object;
829
- isKey: boolean;
830
- writable: boolean;
831
- mandatory: boolean;
832
- collection: boolean;
833
- constructor?: Function;
834
- private?: boolean;
835
- credential?: boolean;
836
- persistent?: boolean;
837
- depends?: string;
838
- description?: string;
839
- default?: any;
840
- set?: Function;
841
- get?: Function;
842
- toInternal?: Function;
843
- toExternal?: Function;
844
- values?: Set<any>;
845
- externalName?: string;
846
- env?: string[] | string;
847
- additionalValues?: object;
848
- };
849
- ServerCertificateFile: {
850
- configurable: boolean;
851
- type: object;
852
- isKey: boolean;
853
- writable: boolean;
854
- mandatory: boolean;
855
- collection: boolean;
856
- constructor?: Function;
857
- private?: boolean;
858
- credential?: boolean;
859
- persistent?: boolean;
860
- depends?: string;
861
- description?: string;
862
- default?: any;
863
- set?: Function;
864
- get?: Function;
865
- toInternal?: Function;
866
- toExternal?: Function;
867
- values?: Set<any>;
868
- externalName?: string;
869
- env?: string[] | string;
870
- additionalValues?: object;
871
- };
872
- TrustedCertificateFile: {
873
- configurable: boolean;
874
- type: object;
875
- isKey: boolean;
876
- writable: boolean;
877
- mandatory: boolean;
878
- collection: boolean;
879
- constructor?: Function;
880
- private?: boolean;
881
- credential?: boolean;
882
- persistent?: boolean;
883
- depends?: string;
884
- description?: string;
885
- default?: any;
886
- set?: Function;
887
- get?: Function;
888
- toInternal?: Function;
889
- toExternal?: Function;
890
- values?: Set<any>;
891
- externalName?: string;
892
- env?: string[] | string;
893
- additionalValues?: object;
894
- };
895
- MaxUse: {
896
- configurable: boolean;
897
- type: object;
898
- isKey: boolean;
899
- writable: boolean;
900
- mandatory: boolean;
901
- collection: boolean;
902
- constructor?: Function;
903
- private?: boolean;
904
- credential?: boolean;
905
- persistent?: boolean;
906
- depends?: string;
907
- description?: string;
908
- default?: any;
909
- set?: Function;
910
- get?: Function;
911
- toInternal?: Function;
912
- toExternal?: Function;
913
- values?: Set<any>;
914
- externalName?: string;
915
- env?: string[] | string;
916
- additionalValues?: object;
917
- };
918
- KeepFree: {
919
- configurable: boolean;
920
- type: object;
921
- isKey: boolean;
922
- writable: boolean;
923
- mandatory: boolean;
924
- collection: boolean;
925
- constructor?: Function;
926
- private?: boolean;
927
- credential?: boolean;
928
- persistent?: boolean;
929
- depends?: string;
930
- description?: string;
931
- default?: any;
932
- set?: Function;
933
- get?: Function;
934
- toInternal?: Function;
935
- toExternal?: Function;
936
- values?: Set<any>;
937
- externalName?: string;
938
- env?: string[] | string;
939
- additionalValues?: object;
940
- };
941
- MaxFileSize: {
942
- configurable: boolean;
943
- type: object;
944
- isKey: boolean;
945
- writable: boolean;
946
- mandatory: boolean;
947
- collection: boolean;
948
- constructor?: Function;
949
- private?: boolean;
950
- credential?: boolean;
951
- persistent?: boolean;
952
- depends?: string;
953
- description?: string;
954
- default?: any;
955
- set?: Function;
956
- get?: Function;
957
- toInternal?: Function;
958
- toExternal?: Function;
959
- values?: Set<any>;
960
- externalName?: string;
961
- env?: string[] | string;
962
- additionalValues?: object;
963
- };
964
- MaxFiles: {
965
- configurable: boolean;
966
- type: object;
967
- isKey: boolean;
968
- writable: boolean;
969
- mandatory: boolean;
970
- collection: boolean;
971
- constructor?: Function;
972
- private?: boolean;
973
- credential?: boolean;
974
- persistent?: boolean;
975
- depends?: string;
976
- description?: string;
977
- default?: any;
978
- set?: Function;
979
- get?: Function;
980
- toInternal?: Function;
981
- toExternal?: Function;
982
- values?: Set<any>;
983
- externalName?: string;
984
- env?: string[] | string;
985
- additionalValues?: object;
986
- };
987
- Compression: {
988
- configurable: boolean;
989
- type: object;
990
- isKey: boolean;
991
- writable: boolean;
992
- mandatory: boolean;
993
- collection: boolean;
994
- constructor?: Function;
995
- private?: boolean;
996
- credential?: boolean;
997
- persistent?: boolean;
998
- depends?: string;
999
- description?: string;
1000
- default?: any;
1001
- set?: Function;
1002
- get?: Function;
1003
- toInternal?: Function;
1004
- toExternal?: Function;
1005
- values?: Set<any>;
1006
- externalName?: string;
1007
- env?: string[] | string;
1008
- additionalValues?: object;
1009
- };
1010
- };
1011
- service: {
1012
- systemdService: string;
1013
- endpoints: {
1014
- family: string;
1015
- port: number;
1016
- protocol: string;
1017
- tls: boolean;
1018
- pathname: string;
1019
- }[];
1020
- };
1021
- };
1022
- get type(): string;
1023
- /**
1024
- *
1025
- * @param {string} name
1026
- * @returns {Object}
1027
- */
1028
- systemdConfigs(name: string): any;
1029
- }
1030
- import { Service } from "pmcf";