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,1310 +0,0 @@
1
- export class ChronyService extends ExtraSourceService {
2
- static get typeDefinition(): {
3
- name: string;
4
- extends: {
5
- name: string;
6
- extends: {
7
- name: string;
8
- owners: (string | {
9
- name: string;
10
- owners: string[];
11
- extends: typeof import("pmcf").Base;
12
- key: string;
13
- attributes: {
14
- networkInterfaces: {
15
- type: string;
16
- collection: boolean;
17
- isKey: boolean;
18
- writable: boolean;
19
- mandatory: boolean;
20
- constructor?: Function;
21
- private?: boolean;
22
- credential?: boolean;
23
- persistent?: boolean;
24
- depends?: string;
25
- description?: string;
26
- default?: any;
27
- set?: Function;
28
- get?: Function;
29
- toInternal?: Function;
30
- toExternal?: Function;
31
- values?: Set<any>;
32
- externalName?: string;
33
- env?: string[] | string;
34
- additionalValues?: object;
35
- };
36
- services: {
37
- type: string;
38
- collection: boolean;
39
- isKey: boolean;
40
- writable: boolean;
41
- mandatory: boolean;
42
- constructor?: Function;
43
- private?: boolean;
44
- credential?: boolean;
45
- persistent?: boolean;
46
- depends?: string;
47
- description?: string;
48
- default?: any;
49
- set?: Function;
50
- get?: Function;
51
- toInternal?: Function;
52
- toExternal?: Function;
53
- values?: Set<any>;
54
- externalName?: string;
55
- env?: string[] | string;
56
- additionalValues?: object;
57
- };
58
- aliases: import("pacc").AttributeDefinition;
59
- os: {
60
- values: string[];
61
- type: object;
62
- isKey: boolean;
63
- writable: boolean;
64
- mandatory: boolean;
65
- collection: boolean;
66
- constructor?: Function;
67
- private?: boolean;
68
- credential?: boolean;
69
- persistent?: boolean;
70
- depends?: string;
71
- description?: string;
72
- default?: any;
73
- set?: Function;
74
- get?: Function;
75
- toInternal?: Function;
76
- toExternal?: Function;
77
- externalName?: string;
78
- env?: string[] | string;
79
- additionalValues?: object;
80
- };
81
- "machine-id": import("pacc").AttributeDefinition;
82
- distribution: import("pacc").AttributeDefinition;
83
- deployment: {
84
- values: string[];
85
- type: object;
86
- isKey: boolean;
87
- writable: boolean;
88
- mandatory: boolean;
89
- collection: boolean;
90
- constructor?: Function;
91
- private?: boolean;
92
- credential?: boolean;
93
- persistent?: boolean;
94
- depends?: string;
95
- description?: string;
96
- default?: any;
97
- set?: Function;
98
- get?: Function;
99
- toInternal?: Function;
100
- toExternal?: Function;
101
- externalName?: string;
102
- env?: string[] | string;
103
- additionalValues?: object;
104
- };
105
- weight: import("pacc").AttributeDefinition;
106
- serial: import("pacc").AttributeDefinition;
107
- vendor: import("pacc").AttributeDefinition;
108
- keymap: import("pacc").AttributeDefinition;
109
- chassis: {
110
- values: string[];
111
- type: object;
112
- isKey: boolean;
113
- writable: boolean;
114
- mandatory: boolean;
115
- collection: boolean;
116
- constructor?: Function;
117
- private?: boolean;
118
- credential?: boolean;
119
- persistent?: boolean;
120
- depends?: string;
121
- description?: string;
122
- default?: any;
123
- set?: Function;
124
- get?: Function;
125
- toInternal?: Function;
126
- toExternal?: Function;
127
- externalName?: string;
128
- env?: string[] | string;
129
- additionalValues?: object;
130
- };
131
- architecture: {
132
- values: string[];
133
- type: object;
134
- isKey: boolean;
135
- writable: boolean;
136
- mandatory: boolean;
137
- collection: boolean;
138
- constructor?: Function;
139
- private?: boolean;
140
- credential?: boolean;
141
- persistent?: boolean;
142
- depends?: string;
143
- description?: string;
144
- default?: any;
145
- set?: Function;
146
- get?: Function;
147
- toInternal?: Function;
148
- toExternal?: Function;
149
- externalName?: string;
150
- env?: string[] | string;
151
- additionalValues?: object;
152
- };
153
- replaces: import("pacc").AttributeDefinition;
154
- depends: import("pacc").AttributeDefinition;
155
- provides: import("pacc").AttributeDefinition;
156
- extends: {
157
- type: string;
158
- collection: boolean;
159
- isKey: boolean;
160
- writable: boolean;
161
- mandatory: boolean;
162
- constructor?: Function;
163
- private?: boolean;
164
- credential?: boolean;
165
- persistent?: boolean;
166
- depends?: string;
167
- description?: string;
168
- default?: any;
169
- set?: Function;
170
- get?: Function;
171
- toInternal?: Function;
172
- toExternal?: Function;
173
- values?: Set<any>;
174
- externalName?: string;
175
- env?: string[] | string;
176
- additionalValues?: object;
177
- };
178
- model: import("pacc").AttributeDefinition;
179
- isModel: import("pacc").AttributeDefinition;
180
- hostName: {
181
- writable: boolean;
182
- type: object;
183
- isKey: boolean;
184
- mandatory: boolean;
185
- collection: boolean;
186
- constructor?: Function;
187
- private?: boolean;
188
- credential?: boolean;
189
- persistent?: boolean;
190
- depends?: string;
191
- description?: string;
192
- default?: any;
193
- set?: Function;
194
- get?: Function;
195
- toInternal?: Function;
196
- toExternal?: Function;
197
- values?: Set<any>;
198
- externalName?: string;
199
- env?: string[] | string;
200
- additionalValues?: object;
201
- };
202
- cidrAddresses: import("pacc").AttributeDefinition;
203
- cidrAddress: import("pacc").AttributeDefinition;
204
- addresses: import("pacc").AttributeDefinition;
205
- address: import("pacc").AttributeDefinition;
206
- };
207
- })[];
208
- extends: typeof import("pmcf").Base;
209
- specializations: {};
210
- factoryFor(owner: any, value: any): any;
211
- key: string;
212
- attributes: {
213
- alias: import("pacc").AttributeDefinition;
214
- weight: {
215
- type: object;
216
- isKey: boolean;
217
- writable: boolean;
218
- mandatory: boolean;
219
- collection: boolean;
220
- constructor?: Function;
221
- private?: boolean;
222
- credential?: boolean;
223
- persistent?: boolean;
224
- depends?: string;
225
- description?: string;
226
- default?: any;
227
- set?: Function;
228
- get?: Function;
229
- toInternal?: Function;
230
- toExternal?: Function;
231
- values?: Set<any>;
232
- externalName?: string;
233
- env?: string[] | string;
234
- additionalValues?: object;
235
- };
236
- systemdService: import("pacc").AttributeDefinition;
237
- port: import("pacc").AttributeDefinition;
238
- protocol: {
239
- values: string[];
240
- type: object;
241
- isKey: boolean;
242
- writable: boolean;
243
- mandatory: boolean;
244
- collection: boolean;
245
- constructor?: Function;
246
- private?: boolean;
247
- credential?: boolean;
248
- persistent?: boolean;
249
- depends?: string;
250
- description?: string;
251
- default?: any;
252
- set?: Function;
253
- get?: Function;
254
- toInternal?: Function;
255
- toExternal?: Function;
256
- externalName?: string;
257
- env?: string[] | string;
258
- additionalValues?: object;
259
- };
260
- type: import("pacc").AttributeDefinition;
261
- types: import("pacc").AttributeDefinition;
262
- tls: import("pacc").AttributeDefinition;
263
- hostName: {
264
- writable: boolean;
265
- type: object;
266
- isKey: boolean;
267
- mandatory: boolean;
268
- collection: boolean;
269
- constructor?: Function;
270
- private?: boolean;
271
- credential?: boolean;
272
- persistent?: boolean;
273
- depends?: string;
274
- description?: string;
275
- default?: any;
276
- set?: Function;
277
- get?: Function;
278
- toInternal?: Function;
279
- toExternal?: Function;
280
- values?: Set<any>;
281
- externalName?: string;
282
- env?: string[] | string;
283
- additionalValues?: object;
284
- };
285
- cidrAddresses: import("pacc").AttributeDefinition;
286
- cidrAddress: import("pacc").AttributeDefinition;
287
- addresses: import("pacc").AttributeDefinition;
288
- address: import("pacc").AttributeDefinition;
289
- };
290
- };
291
- specializationOf: {
292
- name: string;
293
- owners: (string | {
294
- name: string;
295
- owners: string[];
296
- extends: typeof import("pmcf").Base;
297
- key: string;
298
- attributes: {
299
- networkInterfaces: {
300
- type: string;
301
- collection: boolean;
302
- isKey: boolean;
303
- writable: boolean;
304
- mandatory: boolean;
305
- constructor?: Function;
306
- private?: boolean;
307
- credential?: boolean;
308
- persistent?: boolean;
309
- depends?: string;
310
- description?: string;
311
- default?: any;
312
- set?: Function;
313
- get?: Function;
314
- toInternal?: Function;
315
- toExternal?: Function;
316
- values?: Set<any>;
317
- externalName?: string;
318
- env?: string[] | string;
319
- additionalValues?: object;
320
- };
321
- services: {
322
- type: string;
323
- collection: boolean;
324
- isKey: boolean;
325
- writable: boolean;
326
- mandatory: boolean;
327
- constructor?: Function;
328
- private?: boolean;
329
- credential?: boolean;
330
- persistent?: boolean;
331
- depends?: string;
332
- description?: string;
333
- default?: any;
334
- set?: Function;
335
- get?: Function;
336
- toInternal?: Function;
337
- toExternal?: Function;
338
- values?: Set<any>;
339
- externalName?: string;
340
- env?: string[] | string;
341
- additionalValues?: object;
342
- };
343
- aliases: import("pacc").AttributeDefinition;
344
- os: {
345
- values: string[];
346
- type: object;
347
- isKey: boolean;
348
- writable: boolean;
349
- mandatory: boolean;
350
- collection: boolean;
351
- constructor?: Function;
352
- private?: boolean;
353
- credential?: boolean;
354
- persistent?: boolean;
355
- depends?: string;
356
- description?: string;
357
- default?: any;
358
- set?: Function;
359
- get?: Function;
360
- toInternal?: Function;
361
- toExternal?: Function;
362
- externalName?: string;
363
- env?: string[] | string;
364
- additionalValues?: object;
365
- };
366
- "machine-id": import("pacc").AttributeDefinition;
367
- distribution: import("pacc").AttributeDefinition;
368
- deployment: {
369
- values: string[];
370
- type: object;
371
- isKey: boolean;
372
- writable: boolean;
373
- mandatory: boolean;
374
- collection: boolean;
375
- constructor?: Function;
376
- private?: boolean;
377
- credential?: boolean;
378
- persistent?: boolean;
379
- depends?: string;
380
- description?: string;
381
- default?: any;
382
- set?: Function;
383
- get?: Function;
384
- toInternal?: Function;
385
- toExternal?: Function;
386
- externalName?: string;
387
- env?: string[] | string;
388
- additionalValues?: object;
389
- };
390
- weight: import("pacc").AttributeDefinition;
391
- serial: import("pacc").AttributeDefinition;
392
- vendor: import("pacc").AttributeDefinition;
393
- keymap: import("pacc").AttributeDefinition;
394
- chassis: {
395
- values: string[];
396
- type: object;
397
- isKey: boolean;
398
- writable: boolean;
399
- mandatory: boolean;
400
- collection: boolean;
401
- constructor?: Function;
402
- private?: boolean;
403
- credential?: boolean;
404
- persistent?: boolean;
405
- depends?: string;
406
- description?: string;
407
- default?: any;
408
- set?: Function;
409
- get?: Function;
410
- toInternal?: Function;
411
- toExternal?: Function;
412
- externalName?: string;
413
- env?: string[] | string;
414
- additionalValues?: object;
415
- };
416
- architecture: {
417
- values: string[];
418
- type: object;
419
- isKey: boolean;
420
- writable: boolean;
421
- mandatory: boolean;
422
- collection: boolean;
423
- constructor?: Function;
424
- private?: boolean;
425
- credential?: boolean;
426
- persistent?: boolean;
427
- depends?: string;
428
- description?: string;
429
- default?: any;
430
- set?: Function;
431
- get?: Function;
432
- toInternal?: Function;
433
- toExternal?: Function;
434
- externalName?: string;
435
- env?: string[] | string;
436
- additionalValues?: object;
437
- };
438
- replaces: import("pacc").AttributeDefinition;
439
- depends: import("pacc").AttributeDefinition;
440
- provides: import("pacc").AttributeDefinition;
441
- extends: {
442
- type: string;
443
- collection: boolean;
444
- isKey: boolean;
445
- writable: boolean;
446
- mandatory: boolean;
447
- constructor?: Function;
448
- private?: boolean;
449
- credential?: boolean;
450
- persistent?: boolean;
451
- depends?: string;
452
- description?: string;
453
- default?: any;
454
- set?: Function;
455
- get?: Function;
456
- toInternal?: Function;
457
- toExternal?: Function;
458
- values?: Set<any>;
459
- externalName?: string;
460
- env?: string[] | string;
461
- additionalValues?: object;
462
- };
463
- model: import("pacc").AttributeDefinition;
464
- isModel: import("pacc").AttributeDefinition;
465
- hostName: {
466
- writable: boolean;
467
- type: object;
468
- isKey: boolean;
469
- mandatory: boolean;
470
- collection: boolean;
471
- constructor?: Function;
472
- private?: boolean;
473
- credential?: boolean;
474
- persistent?: boolean;
475
- depends?: string;
476
- description?: string;
477
- default?: any;
478
- set?: Function;
479
- get?: Function;
480
- toInternal?: Function;
481
- toExternal?: Function;
482
- values?: Set<any>;
483
- externalName?: string;
484
- env?: string[] | string;
485
- additionalValues?: object;
486
- };
487
- cidrAddresses: import("pacc").AttributeDefinition;
488
- cidrAddress: import("pacc").AttributeDefinition;
489
- addresses: import("pacc").AttributeDefinition;
490
- address: import("pacc").AttributeDefinition;
491
- };
492
- })[];
493
- extends: typeof import("pmcf").Base;
494
- specializations: {};
495
- factoryFor(owner: any, value: any): any;
496
- key: string;
497
- attributes: {
498
- alias: import("pacc").AttributeDefinition;
499
- weight: {
500
- type: object;
501
- isKey: boolean;
502
- writable: boolean;
503
- mandatory: boolean;
504
- collection: boolean;
505
- constructor?: Function;
506
- private?: boolean;
507
- credential?: boolean;
508
- persistent?: boolean;
509
- depends?: string;
510
- description?: string;
511
- default?: any;
512
- set?: Function;
513
- get?: Function;
514
- toInternal?: Function;
515
- toExternal?: Function;
516
- values?: Set<any>;
517
- externalName?: string;
518
- env?: string[] | string;
519
- additionalValues?: object;
520
- };
521
- systemdService: import("pacc").AttributeDefinition;
522
- port: import("pacc").AttributeDefinition;
523
- protocol: {
524
- values: string[];
525
- type: object;
526
- isKey: boolean;
527
- writable: boolean;
528
- mandatory: boolean;
529
- collection: boolean;
530
- constructor?: Function;
531
- private?: boolean;
532
- credential?: boolean;
533
- persistent?: boolean;
534
- depends?: string;
535
- description?: string;
536
- default?: any;
537
- set?: Function;
538
- get?: Function;
539
- toInternal?: Function;
540
- toExternal?: Function;
541
- externalName?: string;
542
- env?: string[] | string;
543
- additionalValues?: object;
544
- };
545
- type: import("pacc").AttributeDefinition;
546
- types: import("pacc").AttributeDefinition;
547
- tls: import("pacc").AttributeDefinition;
548
- hostName: {
549
- writable: boolean;
550
- type: object;
551
- isKey: boolean;
552
- mandatory: boolean;
553
- collection: boolean;
554
- constructor?: Function;
555
- private?: boolean;
556
- credential?: boolean;
557
- persistent?: boolean;
558
- depends?: string;
559
- description?: string;
560
- default?: any;
561
- set?: Function;
562
- get?: Function;
563
- toInternal?: Function;
564
- toExternal?: Function;
565
- values?: Set<any>;
566
- externalName?: string;
567
- env?: string[] | string;
568
- additionalValues?: object;
569
- };
570
- cidrAddresses: import("pacc").AttributeDefinition;
571
- cidrAddress: import("pacc").AttributeDefinition;
572
- addresses: import("pacc").AttributeDefinition;
573
- address: import("pacc").AttributeDefinition;
574
- };
575
- };
576
- owners: (string | {
577
- name: string;
578
- owners: string[];
579
- extends: typeof import("pmcf").Base;
580
- key: string;
581
- attributes: {
582
- networkInterfaces: {
583
- type: string;
584
- collection: boolean;
585
- isKey: boolean;
586
- writable: boolean;
587
- mandatory: boolean;
588
- constructor?: Function;
589
- private?: boolean;
590
- credential?: boolean;
591
- persistent?: boolean;
592
- depends?: string;
593
- description?: string;
594
- default?: any;
595
- set?: Function;
596
- get?: Function;
597
- toInternal?: Function;
598
- toExternal?: Function;
599
- values?: Set<any>;
600
- externalName?: string;
601
- env?: string[] | string;
602
- additionalValues?: object;
603
- };
604
- services: {
605
- type: string;
606
- collection: boolean;
607
- isKey: boolean;
608
- writable: boolean;
609
- mandatory: boolean;
610
- constructor?: Function;
611
- private?: boolean;
612
- credential?: boolean;
613
- persistent?: boolean;
614
- depends?: string;
615
- description?: string;
616
- default?: any;
617
- set?: Function;
618
- get?: Function;
619
- toInternal?: Function;
620
- toExternal?: Function;
621
- values?: Set<any>;
622
- externalName?: string;
623
- env?: string[] | string;
624
- additionalValues?: object;
625
- };
626
- aliases: import("pacc").AttributeDefinition;
627
- os: {
628
- values: string[];
629
- type: object;
630
- isKey: boolean;
631
- writable: boolean;
632
- mandatory: boolean;
633
- collection: boolean;
634
- constructor?: Function;
635
- private?: boolean;
636
- credential?: boolean;
637
- persistent?: boolean;
638
- depends?: string;
639
- description?: string;
640
- default?: any;
641
- set?: Function;
642
- get?: Function;
643
- toInternal?: Function;
644
- toExternal?: Function;
645
- externalName?: string;
646
- env?: string[] | string;
647
- additionalValues?: object;
648
- };
649
- "machine-id": import("pacc").AttributeDefinition;
650
- distribution: import("pacc").AttributeDefinition;
651
- deployment: {
652
- values: string[];
653
- type: object;
654
- isKey: boolean;
655
- writable: boolean;
656
- mandatory: boolean;
657
- collection: boolean;
658
- constructor?: Function;
659
- private?: boolean;
660
- credential?: boolean;
661
- persistent?: boolean;
662
- depends?: string;
663
- description?: string;
664
- default?: any;
665
- set?: Function;
666
- get?: Function;
667
- toInternal?: Function;
668
- toExternal?: Function;
669
- externalName?: string;
670
- env?: string[] | string;
671
- additionalValues?: object;
672
- };
673
- weight: import("pacc").AttributeDefinition;
674
- serial: import("pacc").AttributeDefinition;
675
- vendor: import("pacc").AttributeDefinition;
676
- keymap: import("pacc").AttributeDefinition;
677
- chassis: {
678
- values: string[];
679
- type: object;
680
- isKey: boolean;
681
- writable: boolean;
682
- mandatory: boolean;
683
- collection: boolean;
684
- constructor?: Function;
685
- private?: boolean;
686
- credential?: boolean;
687
- persistent?: boolean;
688
- depends?: string;
689
- description?: string;
690
- default?: any;
691
- set?: Function;
692
- get?: Function;
693
- toInternal?: Function;
694
- toExternal?: Function;
695
- externalName?: string;
696
- env?: string[] | string;
697
- additionalValues?: object;
698
- };
699
- architecture: {
700
- values: string[];
701
- type: object;
702
- isKey: boolean;
703
- writable: boolean;
704
- mandatory: boolean;
705
- collection: boolean;
706
- constructor?: Function;
707
- private?: boolean;
708
- credential?: boolean;
709
- persistent?: boolean;
710
- depends?: string;
711
- description?: string;
712
- default?: any;
713
- set?: Function;
714
- get?: Function;
715
- toInternal?: Function;
716
- toExternal?: Function;
717
- externalName?: string;
718
- env?: string[] | string;
719
- additionalValues?: object;
720
- };
721
- replaces: import("pacc").AttributeDefinition;
722
- depends: import("pacc").AttributeDefinition;
723
- provides: import("pacc").AttributeDefinition;
724
- extends: {
725
- type: string;
726
- collection: boolean;
727
- isKey: boolean;
728
- writable: boolean;
729
- mandatory: boolean;
730
- constructor?: Function;
731
- private?: boolean;
732
- credential?: boolean;
733
- persistent?: boolean;
734
- depends?: string;
735
- description?: string;
736
- default?: any;
737
- set?: Function;
738
- get?: Function;
739
- toInternal?: Function;
740
- toExternal?: Function;
741
- values?: Set<any>;
742
- externalName?: string;
743
- env?: string[] | string;
744
- additionalValues?: object;
745
- };
746
- model: import("pacc").AttributeDefinition;
747
- isModel: import("pacc").AttributeDefinition;
748
- hostName: {
749
- writable: boolean;
750
- type: object;
751
- isKey: boolean;
752
- mandatory: boolean;
753
- collection: boolean;
754
- constructor?: Function;
755
- private?: boolean;
756
- credential?: boolean;
757
- persistent?: boolean;
758
- depends?: string;
759
- description?: string;
760
- default?: any;
761
- set?: Function;
762
- get?: Function;
763
- toInternal?: Function;
764
- toExternal?: Function;
765
- values?: Set<any>;
766
- externalName?: string;
767
- env?: string[] | string;
768
- additionalValues?: object;
769
- };
770
- cidrAddresses: import("pacc").AttributeDefinition;
771
- cidrAddress: import("pacc").AttributeDefinition;
772
- addresses: import("pacc").AttributeDefinition;
773
- address: import("pacc").AttributeDefinition;
774
- };
775
- })[];
776
- attributes: {
777
- source: {
778
- type: string;
779
- collection: boolean;
780
- isKey: boolean;
781
- writable: boolean;
782
- mandatory: boolean;
783
- constructor?: Function;
784
- private?: boolean;
785
- credential?: boolean;
786
- persistent?: boolean;
787
- depends?: string;
788
- description?: string;
789
- default?: any;
790
- set?: Function;
791
- get?: Function;
792
- toInternal?: Function;
793
- toExternal?: Function;
794
- values?: Set<any>;
795
- externalName?: string;
796
- env?: string[] | string;
797
- additionalValues?: object;
798
- };
799
- };
800
- };
801
- specializationOf: {
802
- name: string;
803
- owners: (string | {
804
- name: string;
805
- owners: string[];
806
- extends: typeof import("pmcf").Base;
807
- key: string;
808
- attributes: {
809
- networkInterfaces: {
810
- type: string;
811
- collection: boolean;
812
- isKey: boolean;
813
- writable: boolean;
814
- mandatory: boolean;
815
- constructor?: Function;
816
- private?: boolean;
817
- credential?: boolean;
818
- persistent?: boolean;
819
- depends?: string;
820
- description?: string;
821
- default?: any;
822
- set?: Function;
823
- get?: Function;
824
- toInternal?: Function;
825
- toExternal?: Function;
826
- values?: Set<any>;
827
- externalName?: string;
828
- env?: string[] | string;
829
- additionalValues?: object;
830
- };
831
- services: {
832
- type: string;
833
- collection: boolean;
834
- isKey: boolean;
835
- writable: boolean;
836
- mandatory: boolean;
837
- constructor?: Function;
838
- private?: boolean;
839
- credential?: boolean;
840
- persistent?: boolean;
841
- depends?: string;
842
- description?: string;
843
- default?: any;
844
- set?: Function;
845
- get?: Function;
846
- toInternal?: Function;
847
- toExternal?: Function;
848
- values?: Set<any>;
849
- externalName?: string;
850
- env?: string[] | string;
851
- additionalValues?: object;
852
- };
853
- aliases: import("pacc").AttributeDefinition;
854
- os: {
855
- values: string[];
856
- type: object;
857
- isKey: boolean;
858
- writable: boolean;
859
- mandatory: boolean;
860
- collection: boolean;
861
- constructor?: Function;
862
- private?: boolean;
863
- credential?: boolean;
864
- persistent?: boolean;
865
- depends?: string;
866
- description?: string;
867
- default?: any;
868
- set?: Function;
869
- get?: Function;
870
- toInternal?: Function;
871
- toExternal?: Function;
872
- externalName?: string;
873
- env?: string[] | string;
874
- additionalValues?: object;
875
- };
876
- "machine-id": import("pacc").AttributeDefinition;
877
- distribution: import("pacc").AttributeDefinition;
878
- deployment: {
879
- values: string[];
880
- type: object;
881
- isKey: boolean;
882
- writable: boolean;
883
- mandatory: boolean;
884
- collection: boolean;
885
- constructor?: Function;
886
- private?: boolean;
887
- credential?: boolean;
888
- persistent?: boolean;
889
- depends?: string;
890
- description?: string;
891
- default?: any;
892
- set?: Function;
893
- get?: Function;
894
- toInternal?: Function;
895
- toExternal?: Function;
896
- externalName?: string;
897
- env?: string[] | string;
898
- additionalValues?: object;
899
- };
900
- weight: import("pacc").AttributeDefinition;
901
- serial: import("pacc").AttributeDefinition;
902
- vendor: import("pacc").AttributeDefinition;
903
- keymap: import("pacc").AttributeDefinition;
904
- chassis: {
905
- values: string[];
906
- type: object;
907
- isKey: boolean;
908
- writable: boolean;
909
- mandatory: boolean;
910
- collection: boolean;
911
- constructor?: Function;
912
- private?: boolean;
913
- credential?: boolean;
914
- persistent?: boolean;
915
- depends?: string;
916
- description?: string;
917
- default?: any;
918
- set?: Function;
919
- get?: Function;
920
- toInternal?: Function;
921
- toExternal?: Function;
922
- externalName?: string;
923
- env?: string[] | string;
924
- additionalValues?: object;
925
- };
926
- architecture: {
927
- values: string[];
928
- type: object;
929
- isKey: boolean;
930
- writable: boolean;
931
- mandatory: boolean;
932
- collection: boolean;
933
- constructor?: Function;
934
- private?: boolean;
935
- credential?: boolean;
936
- persistent?: boolean;
937
- depends?: string;
938
- description?: string;
939
- default?: any;
940
- set?: Function;
941
- get?: Function;
942
- toInternal?: Function;
943
- toExternal?: Function;
944
- externalName?: string;
945
- env?: string[] | string;
946
- additionalValues?: object;
947
- };
948
- replaces: import("pacc").AttributeDefinition;
949
- depends: import("pacc").AttributeDefinition;
950
- provides: import("pacc").AttributeDefinition;
951
- extends: {
952
- type: string;
953
- collection: boolean;
954
- isKey: boolean;
955
- writable: boolean;
956
- mandatory: boolean;
957
- constructor?: Function;
958
- private?: boolean;
959
- credential?: boolean;
960
- persistent?: boolean;
961
- depends?: string;
962
- description?: string;
963
- default?: any;
964
- set?: Function;
965
- get?: Function;
966
- toInternal?: Function;
967
- toExternal?: Function;
968
- values?: Set<any>;
969
- externalName?: string;
970
- env?: string[] | string;
971
- additionalValues?: object;
972
- };
973
- model: import("pacc").AttributeDefinition;
974
- isModel: import("pacc").AttributeDefinition;
975
- hostName: {
976
- writable: boolean;
977
- type: object;
978
- isKey: boolean;
979
- mandatory: boolean;
980
- collection: boolean;
981
- constructor?: Function;
982
- private?: boolean;
983
- credential?: boolean;
984
- persistent?: boolean;
985
- depends?: string;
986
- description?: string;
987
- default?: any;
988
- set?: Function;
989
- get?: Function;
990
- toInternal?: Function;
991
- toExternal?: Function;
992
- values?: Set<any>;
993
- externalName?: string;
994
- env?: string[] | string;
995
- additionalValues?: object;
996
- };
997
- cidrAddresses: import("pacc").AttributeDefinition;
998
- cidrAddress: import("pacc").AttributeDefinition;
999
- addresses: import("pacc").AttributeDefinition;
1000
- address: import("pacc").AttributeDefinition;
1001
- };
1002
- })[];
1003
- extends: typeof import("pmcf").Base;
1004
- specializations: {};
1005
- factoryFor(owner: any, value: any): any;
1006
- key: string;
1007
- attributes: {
1008
- alias: import("pacc").AttributeDefinition;
1009
- weight: {
1010
- type: object;
1011
- isKey: boolean;
1012
- writable: boolean;
1013
- mandatory: boolean;
1014
- collection: boolean;
1015
- constructor?: Function;
1016
- private?: boolean;
1017
- credential?: boolean;
1018
- persistent?: boolean;
1019
- depends?: string;
1020
- description?: string;
1021
- default?: any;
1022
- set?: Function;
1023
- get?: Function;
1024
- toInternal?: Function;
1025
- toExternal?: Function;
1026
- values?: Set<any>;
1027
- externalName?: string;
1028
- env?: string[] | string;
1029
- additionalValues?: object;
1030
- };
1031
- systemdService: import("pacc").AttributeDefinition;
1032
- port: import("pacc").AttributeDefinition;
1033
- protocol: {
1034
- values: string[];
1035
- type: object;
1036
- isKey: boolean;
1037
- writable: boolean;
1038
- mandatory: boolean;
1039
- collection: boolean;
1040
- constructor?: Function;
1041
- private?: boolean;
1042
- credential?: boolean;
1043
- persistent?: boolean;
1044
- depends?: string;
1045
- description?: string;
1046
- default?: any;
1047
- set?: Function;
1048
- get?: Function;
1049
- toInternal?: Function;
1050
- toExternal?: Function;
1051
- externalName?: string;
1052
- env?: string[] | string;
1053
- additionalValues?: object;
1054
- };
1055
- type: import("pacc").AttributeDefinition;
1056
- types: import("pacc").AttributeDefinition;
1057
- tls: import("pacc").AttributeDefinition;
1058
- hostName: {
1059
- writable: boolean;
1060
- type: object;
1061
- isKey: boolean;
1062
- mandatory: boolean;
1063
- collection: boolean;
1064
- constructor?: Function;
1065
- private?: boolean;
1066
- credential?: boolean;
1067
- persistent?: boolean;
1068
- depends?: string;
1069
- description?: string;
1070
- default?: any;
1071
- set?: Function;
1072
- get?: Function;
1073
- toInternal?: Function;
1074
- toExternal?: Function;
1075
- values?: Set<any>;
1076
- externalName?: string;
1077
- env?: string[] | string;
1078
- additionalValues?: object;
1079
- };
1080
- cidrAddresses: import("pacc").AttributeDefinition;
1081
- cidrAddress: import("pacc").AttributeDefinition;
1082
- addresses: import("pacc").AttributeDefinition;
1083
- address: import("pacc").AttributeDefinition;
1084
- };
1085
- };
1086
- owners: (string | {
1087
- name: string;
1088
- owners: string[];
1089
- extends: typeof import("pmcf").Base;
1090
- key: string;
1091
- attributes: {
1092
- networkInterfaces: {
1093
- type: string;
1094
- collection: boolean;
1095
- isKey: boolean;
1096
- writable: boolean;
1097
- mandatory: boolean;
1098
- constructor?: Function;
1099
- private?: boolean;
1100
- credential?: boolean;
1101
- persistent?: boolean;
1102
- depends?: string;
1103
- description?: string;
1104
- default?: any;
1105
- set?: Function;
1106
- get?: Function;
1107
- toInternal?: Function;
1108
- toExternal?: Function;
1109
- values?: Set<any>;
1110
- externalName?: string;
1111
- env?: string[] | string;
1112
- additionalValues?: object;
1113
- };
1114
- services: {
1115
- type: string;
1116
- collection: boolean;
1117
- isKey: boolean;
1118
- writable: boolean;
1119
- mandatory: boolean;
1120
- constructor?: Function;
1121
- private?: boolean;
1122
- credential?: boolean;
1123
- persistent?: boolean;
1124
- depends?: string;
1125
- description?: string;
1126
- default?: any;
1127
- set?: Function;
1128
- get?: Function;
1129
- toInternal?: Function;
1130
- toExternal?: Function;
1131
- values?: Set<any>;
1132
- externalName?: string;
1133
- env?: string[] | string;
1134
- additionalValues?: object;
1135
- };
1136
- aliases: import("pacc").AttributeDefinition;
1137
- os: {
1138
- values: string[];
1139
- type: object;
1140
- isKey: boolean;
1141
- writable: boolean;
1142
- mandatory: boolean;
1143
- collection: boolean;
1144
- constructor?: Function;
1145
- private?: boolean;
1146
- credential?: boolean;
1147
- persistent?: boolean;
1148
- depends?: string;
1149
- description?: string;
1150
- default?: any;
1151
- set?: Function;
1152
- get?: Function;
1153
- toInternal?: Function;
1154
- toExternal?: Function;
1155
- externalName?: string;
1156
- env?: string[] | string;
1157
- additionalValues?: object;
1158
- };
1159
- "machine-id": import("pacc").AttributeDefinition;
1160
- distribution: import("pacc").AttributeDefinition;
1161
- deployment: {
1162
- values: string[];
1163
- type: object;
1164
- isKey: boolean;
1165
- writable: boolean;
1166
- mandatory: boolean;
1167
- collection: boolean;
1168
- constructor?: Function;
1169
- private?: boolean;
1170
- credential?: boolean;
1171
- persistent?: boolean;
1172
- depends?: string;
1173
- description?: string;
1174
- default?: any;
1175
- set?: Function;
1176
- get?: Function;
1177
- toInternal?: Function;
1178
- toExternal?: Function;
1179
- externalName?: string;
1180
- env?: string[] | string;
1181
- additionalValues?: object;
1182
- };
1183
- weight: import("pacc").AttributeDefinition;
1184
- serial: import("pacc").AttributeDefinition;
1185
- vendor: import("pacc").AttributeDefinition;
1186
- keymap: import("pacc").AttributeDefinition;
1187
- chassis: {
1188
- values: string[];
1189
- type: object;
1190
- isKey: boolean;
1191
- writable: boolean;
1192
- mandatory: boolean;
1193
- collection: boolean;
1194
- constructor?: Function;
1195
- private?: boolean;
1196
- credential?: boolean;
1197
- persistent?: boolean;
1198
- depends?: string;
1199
- description?: string;
1200
- default?: any;
1201
- set?: Function;
1202
- get?: Function;
1203
- toInternal?: Function;
1204
- toExternal?: Function;
1205
- externalName?: string;
1206
- env?: string[] | string;
1207
- additionalValues?: object;
1208
- };
1209
- architecture: {
1210
- values: string[];
1211
- type: object;
1212
- isKey: boolean;
1213
- writable: boolean;
1214
- mandatory: boolean;
1215
- collection: boolean;
1216
- constructor?: Function;
1217
- private?: boolean;
1218
- credential?: boolean;
1219
- persistent?: boolean;
1220
- depends?: string;
1221
- description?: string;
1222
- default?: any;
1223
- set?: Function;
1224
- get?: Function;
1225
- toInternal?: Function;
1226
- toExternal?: Function;
1227
- externalName?: string;
1228
- env?: string[] | string;
1229
- additionalValues?: object;
1230
- };
1231
- replaces: import("pacc").AttributeDefinition;
1232
- depends: import("pacc").AttributeDefinition;
1233
- provides: import("pacc").AttributeDefinition;
1234
- extends: {
1235
- type: string;
1236
- collection: boolean;
1237
- isKey: boolean;
1238
- writable: boolean;
1239
- mandatory: boolean;
1240
- constructor?: Function;
1241
- private?: boolean;
1242
- credential?: boolean;
1243
- persistent?: boolean;
1244
- depends?: string;
1245
- description?: string;
1246
- default?: any;
1247
- set?: Function;
1248
- get?: Function;
1249
- toInternal?: Function;
1250
- toExternal?: Function;
1251
- values?: Set<any>;
1252
- externalName?: string;
1253
- env?: string[] | string;
1254
- additionalValues?: object;
1255
- };
1256
- model: import("pacc").AttributeDefinition;
1257
- isModel: import("pacc").AttributeDefinition;
1258
- hostName: {
1259
- writable: boolean;
1260
- type: object;
1261
- isKey: boolean;
1262
- mandatory: boolean;
1263
- collection: boolean;
1264
- constructor?: Function;
1265
- private?: boolean;
1266
- credential?: boolean;
1267
- persistent?: boolean;
1268
- depends?: string;
1269
- description?: string;
1270
- default?: any;
1271
- set?: Function;
1272
- get?: Function;
1273
- toInternal?: Function;
1274
- toExternal?: Function;
1275
- values?: Set<any>;
1276
- externalName?: string;
1277
- env?: string[] | string;
1278
- additionalValues?: object;
1279
- };
1280
- cidrAddresses: import("pacc").AttributeDefinition;
1281
- cidrAddress: import("pacc").AttributeDefinition;
1282
- addresses: import("pacc").AttributeDefinition;
1283
- address: import("pacc").AttributeDefinition;
1284
- };
1285
- })[];
1286
- key: string;
1287
- service: {
1288
- systemdService: string;
1289
- extends: string[];
1290
- services: {
1291
- "chrony-cmd": {
1292
- endpoints: ({
1293
- family: string;
1294
- port: number;
1295
- protocol: string;
1296
- tls: boolean;
1297
- path?: undefined;
1298
- } | {
1299
- family: string;
1300
- path: string;
1301
- port?: undefined;
1302
- protocol?: undefined;
1303
- tls?: undefined;
1304
- })[];
1305
- };
1306
- };
1307
- };
1308
- };
1309
- }
1310
- import { ExtraSourceService } from "../extra-source-service.mjs";