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