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