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