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,1158 +0,0 @@
1
- export namespace NetworkInterfaceTypeDefinition {
2
- export let name: string;
3
- export let owners: string[];
4
- let _extends: typeof Base;
5
- export { _extends as extends };
6
- export let specializations: {};
7
- export function factoryFor(owner: any, value: any): any;
8
- export let key: string;
9
- export let attributes: {
10
- services: {
11
- collection: boolean;
12
- type: string;
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
- hostName: {
33
- writable: boolean;
34
- type: object;
35
- isKey: boolean;
36
- mandatory: boolean;
37
- collection: 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
- ipAddresses: import("pacc").AttributeDefinition;
55
- hwaddr: import("pacc").AttributeDefinition;
56
- network: {
57
- type: {
58
- name: string;
59
- owners: string[];
60
- extends: {
61
- name: string;
62
- owners: string[];
63
- extends: typeof Base;
64
- key: string;
65
- attributes: {
66
- networks: {
67
- type: string;
68
- collection: boolean;
69
- isKey: boolean;
70
- writable: boolean;
71
- mandatory: boolean;
72
- constructor?: Function;
73
- private?: boolean;
74
- credential?: boolean;
75
- persistent?: boolean;
76
- depends?: string;
77
- description?: string;
78
- default?: any;
79
- set?: Function;
80
- get?: Function;
81
- toInternal?: Function;
82
- toExternal?: Function;
83
- values?: Set<any>;
84
- externalName?: string;
85
- env?: string[] | string;
86
- additionalValues?: object;
87
- };
88
- hosts: {
89
- type: string;
90
- collection: boolean;
91
- isKey: boolean;
92
- writable: boolean;
93
- mandatory: boolean;
94
- constructor?: Function;
95
- private?: boolean;
96
- credential?: boolean;
97
- persistent?: boolean;
98
- depends?: string;
99
- description?: string;
100
- default?: any;
101
- set?: Function;
102
- get?: Function;
103
- toInternal?: Function;
104
- toExternal?: Function;
105
- values?: Set<any>;
106
- externalName?: string;
107
- env?: string[] | string;
108
- additionalValues?: object;
109
- };
110
- clusters: {
111
- type: string;
112
- collection: boolean;
113
- isKey: boolean;
114
- writable: boolean;
115
- mandatory: 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
- values?: Set<any>;
128
- externalName?: string;
129
- env?: string[] | string;
130
- additionalValues?: object;
131
- };
132
- subnets: {
133
- type: {
134
- name: string;
135
- owners: string[];
136
- constructWithIdentifierOnly: boolean;
137
- key: string;
138
- attributes: {
139
- address: import("pacc").AttributeDefinition;
140
- networks: {
141
- type: string;
142
- collection: boolean;
143
- isKey: boolean;
144
- writable: boolean;
145
- mandatory: boolean;
146
- constructor?: Function;
147
- private?: boolean;
148
- credential?: boolean;
149
- persistent?: boolean;
150
- depends?: string;
151
- description?: string;
152
- default?: any;
153
- set?: Function;
154
- get?: Function;
155
- toInternal?: Function;
156
- toExternal?: Function;
157
- values?: Set<any>;
158
- externalName?: string;
159
- env?: string[] | string;
160
- additionalValues?: object;
161
- };
162
- prefixLength: import("pacc").AttributeDefinition;
163
- family: import("pacc").AttributeDefinition;
164
- };
165
- };
166
- collection: boolean;
167
- isKey: boolean;
168
- writable: boolean;
169
- mandatory: boolean;
170
- constructor?: Function;
171
- private?: boolean;
172
- credential?: boolean;
173
- persistent?: boolean;
174
- depends?: string;
175
- description?: string;
176
- default?: any;
177
- set?: Function;
178
- get?: Function;
179
- toInternal?: Function;
180
- toExternal?: Function;
181
- values?: Set<any>;
182
- externalName?: string;
183
- env?: string[] | string;
184
- additionalValues?: object;
185
- };
186
- country: import("pacc").AttributeDefinition;
187
- domain: import("pacc").AttributeDefinition;
188
- domains: import("pacc").AttributeDefinition;
189
- timezone: import("pacc").AttributeDefinition;
190
- architectures: import("pacc").AttributeDefinition;
191
- locales: import("pacc").AttributeDefinition;
192
- administratorEmail: {
193
- writable: boolean;
194
- type: object;
195
- isKey: boolean;
196
- mandatory: boolean;
197
- collection: boolean;
198
- constructor?: Function;
199
- private?: boolean;
200
- credential?: boolean;
201
- persistent?: boolean;
202
- depends?: string;
203
- description?: string;
204
- default?: any;
205
- set?: Function;
206
- get?: Function;
207
- toInternal?: Function;
208
- toExternal?: Function;
209
- values?: Set<any>;
210
- externalName?: string;
211
- env?: string[] | string;
212
- additionalValues?: object;
213
- };
214
- template: {
215
- private: boolean;
216
- type: object;
217
- isKey: boolean;
218
- writable: boolean;
219
- mandatory: boolean;
220
- collection: boolean;
221
- constructor?: Function;
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
- };
237
- };
238
- key: string;
239
- attributes: {
240
- bridge: {
241
- type: string;
242
- collection: boolean;
243
- isKey: boolean;
244
- writable: boolean;
245
- mandatory: boolean;
246
- constructor?: Function;
247
- private?: boolean;
248
- credential?: boolean;
249
- persistent?: boolean;
250
- depends?: string;
251
- description?: string;
252
- default?: any;
253
- set?: Function;
254
- get?: Function;
255
- toInternal?: Function;
256
- toExternal?: Function;
257
- values?: Set<any>;
258
- externalName?: string;
259
- env?: string[] | string;
260
- additionalValues?: object;
261
- };
262
- gateway: {
263
- type: string;
264
- isKey: boolean;
265
- writable: boolean;
266
- mandatory: boolean;
267
- collection: boolean;
268
- constructor?: Function;
269
- private?: boolean;
270
- credential?: boolean;
271
- persistent?: boolean;
272
- depends?: string;
273
- description?: string;
274
- default?: any;
275
- set?: Function;
276
- get?: Function;
277
- toInternal?: Function;
278
- toExternal?: Function;
279
- values?: Set<any>;
280
- externalName?: string;
281
- env?: string[] | string;
282
- additionalValues?: object;
283
- };
284
- scope: {
285
- values: string[];
286
- type: object;
287
- isKey: boolean;
288
- writable: boolean;
289
- mandatory: boolean;
290
- collection: boolean;
291
- constructor?: Function;
292
- private?: boolean;
293
- credential?: boolean;
294
- persistent?: boolean;
295
- depends?: string;
296
- description?: string;
297
- default?: any;
298
- set?: Function;
299
- get?: Function;
300
- toInternal?: Function;
301
- toExternal?: Function;
302
- externalName?: string;
303
- env?: string[] | string;
304
- additionalValues?: object;
305
- };
306
- class: {
307
- values: string[];
308
- type: object;
309
- isKey: boolean;
310
- writable: boolean;
311
- mandatory: boolean;
312
- collection: boolean;
313
- constructor?: Function;
314
- private?: boolean;
315
- credential?: boolean;
316
- persistent?: boolean;
317
- depends?: string;
318
- description?: string;
319
- default?: any;
320
- set?: Function;
321
- get?: Function;
322
- toInternal?: Function;
323
- toExternal?: Function;
324
- externalName?: string;
325
- env?: string[] | string;
326
- additionalValues?: object;
327
- };
328
- kind: {
329
- values: string[];
330
- type: object;
331
- isKey: boolean;
332
- writable: boolean;
333
- mandatory: boolean;
334
- collection: boolean;
335
- constructor?: Function;
336
- private?: boolean;
337
- credential?: boolean;
338
- persistent?: boolean;
339
- depends?: string;
340
- description?: string;
341
- default?: any;
342
- set?: Function;
343
- get?: Function;
344
- toInternal?: Function;
345
- toExternal?: Function;
346
- externalName?: string;
347
- env?: string[] | string;
348
- additionalValues?: object;
349
- };
350
- ssid: import("pacc").AttributeDefinition;
351
- psk: import("pacc").AttributeDefinition;
352
- secretName: import("pacc").AttributeDefinition;
353
- metric: {
354
- type: object;
355
- isKey: boolean;
356
- writable: boolean;
357
- mandatory: boolean;
358
- collection: boolean;
359
- constructor?: Function;
360
- private?: boolean;
361
- credential?: boolean;
362
- persistent?: boolean;
363
- depends?: string;
364
- description?: string;
365
- default?: any;
366
- set?: Function;
367
- get?: Function;
368
- toInternal?: Function;
369
- toExternal?: Function;
370
- values?: Set<any>;
371
- externalName?: string;
372
- env?: string[] | string;
373
- additionalValues?: object;
374
- };
375
- mtu: {
376
- default: number;
377
- type: object;
378
- isKey: boolean;
379
- writable: boolean;
380
- mandatory: boolean;
381
- collection: boolean;
382
- constructor?: Function;
383
- private?: boolean;
384
- credential?: boolean;
385
- persistent?: boolean;
386
- depends?: string;
387
- description?: string;
388
- set?: Function;
389
- get?: Function;
390
- toInternal?: Function;
391
- toExternal?: Function;
392
- values?: Set<any>;
393
- externalName?: string;
394
- env?: string[] | string;
395
- additionalValues?: object;
396
- };
397
- multicastDNS: import("pacc").AttributeDefinition;
398
- };
399
- };
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
- values?: Set<any>;
416
- externalName?: string;
417
- env?: string[] | string;
418
- additionalValues?: object;
419
- };
420
- destination: import("pacc").AttributeDefinition;
421
- cidrAddresses: import("pacc").AttributeDefinition;
422
- cidrAddress: import("pacc").AttributeDefinition;
423
- addresses: import("pacc").AttributeDefinition;
424
- address: import("pacc").AttributeDefinition;
425
- scope: {
426
- values: string[];
427
- type: object;
428
- isKey: boolean;
429
- writable: boolean;
430
- mandatory: boolean;
431
- collection: boolean;
432
- constructor?: Function;
433
- private?: boolean;
434
- credential?: boolean;
435
- persistent?: boolean;
436
- depends?: string;
437
- description?: string;
438
- default?: any;
439
- set?: Function;
440
- get?: Function;
441
- toInternal?: Function;
442
- toExternal?: Function;
443
- externalName?: string;
444
- env?: string[] | string;
445
- additionalValues?: object;
446
- };
447
- class: {
448
- values: string[];
449
- type: object;
450
- isKey: boolean;
451
- writable: boolean;
452
- mandatory: boolean;
453
- collection: boolean;
454
- constructor?: Function;
455
- private?: boolean;
456
- credential?: boolean;
457
- persistent?: boolean;
458
- depends?: string;
459
- description?: string;
460
- default?: any;
461
- set?: Function;
462
- get?: Function;
463
- toInternal?: Function;
464
- toExternal?: Function;
465
- externalName?: string;
466
- env?: string[] | string;
467
- additionalValues?: object;
468
- };
469
- kind: {
470
- values: string[];
471
- type: object;
472
- isKey: boolean;
473
- writable: boolean;
474
- mandatory: boolean;
475
- collection: boolean;
476
- constructor?: Function;
477
- private?: boolean;
478
- credential?: boolean;
479
- persistent?: boolean;
480
- depends?: string;
481
- description?: string;
482
- default?: any;
483
- set?: Function;
484
- get?: Function;
485
- toInternal?: Function;
486
- toExternal?: Function;
487
- externalName?: string;
488
- env?: string[] | string;
489
- additionalValues?: object;
490
- };
491
- ssid: import("pacc").AttributeDefinition;
492
- psk: import("pacc").AttributeDefinition;
493
- secretName: import("pacc").AttributeDefinition;
494
- metric: {
495
- type: object;
496
- isKey: boolean;
497
- writable: boolean;
498
- mandatory: boolean;
499
- collection: boolean;
500
- constructor?: Function;
501
- private?: boolean;
502
- credential?: boolean;
503
- persistent?: boolean;
504
- depends?: string;
505
- description?: string;
506
- default?: any;
507
- set?: Function;
508
- get?: Function;
509
- toInternal?: Function;
510
- toExternal?: Function;
511
- values?: Set<any>;
512
- externalName?: string;
513
- env?: string[] | string;
514
- additionalValues?: object;
515
- };
516
- mtu: {
517
- default: number;
518
- type: object;
519
- isKey: boolean;
520
- writable: boolean;
521
- mandatory: boolean;
522
- collection: boolean;
523
- constructor?: Function;
524
- private?: boolean;
525
- credential?: boolean;
526
- persistent?: boolean;
527
- depends?: string;
528
- description?: string;
529
- set?: Function;
530
- get?: Function;
531
- toInternal?: Function;
532
- toExternal?: Function;
533
- values?: Set<any>;
534
- externalName?: string;
535
- env?: string[] | string;
536
- additionalValues?: object;
537
- };
538
- gateway: {
539
- type: string;
540
- isKey: boolean;
541
- writable: boolean;
542
- mandatory: boolean;
543
- collection: boolean;
544
- constructor?: Function;
545
- private?: boolean;
546
- credential?: boolean;
547
- persistent?: boolean;
548
- depends?: string;
549
- description?: string;
550
- default?: any;
551
- set?: Function;
552
- get?: Function;
553
- toInternal?: Function;
554
- toExternal?: Function;
555
- values?: Set<any>;
556
- externalName?: string;
557
- env?: string[] | string;
558
- additionalValues?: object;
559
- };
560
- multicastDNS: import("pacc").AttributeDefinition;
561
- };
562
- }
563
- export class NetworkInterface extends SkeletonNetworkInterface {
564
- static get typeDefinition(): {
565
- name: string;
566
- owners: string[];
567
- extends: typeof Base;
568
- specializations: {};
569
- factoryFor(owner: any, value: any): any;
570
- key: string;
571
- attributes: {
572
- services: {
573
- collection: boolean;
574
- type: string;
575
- isKey: boolean;
576
- writable: boolean;
577
- mandatory: boolean;
578
- constructor?: Function;
579
- private?: boolean;
580
- credential?: boolean;
581
- persistent?: boolean;
582
- depends?: string;
583
- description?: string;
584
- default?: any;
585
- set?: Function;
586
- get?: Function;
587
- toInternal?: Function;
588
- toExternal?: Function;
589
- values?: Set<any>;
590
- externalName?: string;
591
- env?: string[] | string;
592
- additionalValues?: object;
593
- };
594
- hostName: {
595
- writable: boolean;
596
- type: object;
597
- isKey: boolean;
598
- mandatory: boolean;
599
- collection: boolean;
600
- constructor?: Function;
601
- private?: boolean;
602
- credential?: boolean;
603
- persistent?: boolean;
604
- depends?: string;
605
- description?: string;
606
- default?: any;
607
- set?: Function;
608
- get?: Function;
609
- toInternal?: Function;
610
- toExternal?: Function;
611
- values?: Set<any>;
612
- externalName?: string;
613
- env?: string[] | string;
614
- additionalValues?: object;
615
- };
616
- ipAddresses: import("pacc").AttributeDefinition;
617
- hwaddr: import("pacc").AttributeDefinition;
618
- network: {
619
- type: {
620
- name: string;
621
- owners: string[];
622
- extends: {
623
- name: string;
624
- owners: string[];
625
- extends: typeof Base;
626
- key: string;
627
- attributes: {
628
- networks: {
629
- type: string;
630
- collection: boolean;
631
- isKey: boolean;
632
- writable: boolean;
633
- mandatory: 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
- values?: Set<any>;
646
- externalName?: string;
647
- env?: string[] | string;
648
- additionalValues?: object;
649
- };
650
- hosts: {
651
- type: string;
652
- collection: boolean;
653
- isKey: boolean;
654
- writable: boolean;
655
- mandatory: 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
- values?: Set<any>;
668
- externalName?: string;
669
- env?: string[] | string;
670
- additionalValues?: object;
671
- };
672
- clusters: {
673
- type: string;
674
- collection: boolean;
675
- isKey: boolean;
676
- writable: boolean;
677
- mandatory: boolean;
678
- constructor?: Function;
679
- private?: boolean;
680
- credential?: boolean;
681
- persistent?: boolean;
682
- depends?: string;
683
- description?: string;
684
- default?: any;
685
- set?: Function;
686
- get?: Function;
687
- toInternal?: Function;
688
- toExternal?: Function;
689
- values?: Set<any>;
690
- externalName?: string;
691
- env?: string[] | string;
692
- additionalValues?: object;
693
- };
694
- subnets: {
695
- type: {
696
- name: string;
697
- owners: string[];
698
- constructWithIdentifierOnly: boolean;
699
- key: string;
700
- attributes: {
701
- address: import("pacc").AttributeDefinition;
702
- networks: {
703
- type: string;
704
- collection: boolean;
705
- isKey: boolean;
706
- writable: boolean;
707
- mandatory: boolean;
708
- constructor?: Function;
709
- private?: boolean;
710
- credential?: boolean;
711
- persistent?: boolean;
712
- depends?: string;
713
- description?: string;
714
- default?: any;
715
- set?: Function;
716
- get?: Function;
717
- toInternal?: Function;
718
- toExternal?: Function;
719
- values?: Set<any>;
720
- externalName?: string;
721
- env?: string[] | string;
722
- additionalValues?: object;
723
- };
724
- prefixLength: import("pacc").AttributeDefinition;
725
- family: import("pacc").AttributeDefinition;
726
- };
727
- };
728
- collection: boolean;
729
- isKey: boolean;
730
- writable: boolean;
731
- mandatory: boolean;
732
- constructor?: Function;
733
- private?: boolean;
734
- credential?: boolean;
735
- persistent?: boolean;
736
- depends?: string;
737
- description?: string;
738
- default?: any;
739
- set?: Function;
740
- get?: Function;
741
- toInternal?: Function;
742
- toExternal?: Function;
743
- values?: Set<any>;
744
- externalName?: string;
745
- env?: string[] | string;
746
- additionalValues?: object;
747
- };
748
- country: import("pacc").AttributeDefinition;
749
- domain: import("pacc").AttributeDefinition;
750
- domains: import("pacc").AttributeDefinition;
751
- timezone: import("pacc").AttributeDefinition;
752
- architectures: import("pacc").AttributeDefinition;
753
- locales: import("pacc").AttributeDefinition;
754
- administratorEmail: {
755
- writable: boolean;
756
- type: object;
757
- isKey: boolean;
758
- mandatory: boolean;
759
- collection: boolean;
760
- constructor?: Function;
761
- private?: boolean;
762
- credential?: boolean;
763
- persistent?: boolean;
764
- depends?: string;
765
- description?: string;
766
- default?: any;
767
- set?: Function;
768
- get?: Function;
769
- toInternal?: Function;
770
- toExternal?: Function;
771
- values?: Set<any>;
772
- externalName?: string;
773
- env?: string[] | string;
774
- additionalValues?: object;
775
- };
776
- template: {
777
- private: boolean;
778
- type: object;
779
- isKey: boolean;
780
- writable: boolean;
781
- mandatory: boolean;
782
- collection: boolean;
783
- constructor?: Function;
784
- credential?: boolean;
785
- persistent?: boolean;
786
- depends?: string;
787
- description?: string;
788
- default?: any;
789
- set?: Function;
790
- get?: Function;
791
- toInternal?: Function;
792
- toExternal?: Function;
793
- values?: Set<any>;
794
- externalName?: string;
795
- env?: string[] | string;
796
- additionalValues?: object;
797
- };
798
- };
799
- };
800
- key: string;
801
- attributes: {
802
- bridge: {
803
- type: string;
804
- collection: boolean;
805
- isKey: boolean;
806
- writable: boolean;
807
- mandatory: boolean;
808
- constructor?: Function;
809
- private?: boolean;
810
- credential?: boolean;
811
- persistent?: boolean;
812
- depends?: string;
813
- description?: string;
814
- default?: any;
815
- set?: Function;
816
- get?: Function;
817
- toInternal?: Function;
818
- toExternal?: Function;
819
- values?: Set<any>;
820
- externalName?: string;
821
- env?: string[] | string;
822
- additionalValues?: object;
823
- };
824
- gateway: {
825
- type: string;
826
- isKey: boolean;
827
- writable: boolean;
828
- mandatory: boolean;
829
- collection: boolean;
830
- constructor?: Function;
831
- private?: boolean;
832
- credential?: boolean;
833
- persistent?: boolean;
834
- depends?: string;
835
- description?: string;
836
- default?: any;
837
- set?: Function;
838
- get?: Function;
839
- toInternal?: Function;
840
- toExternal?: Function;
841
- values?: Set<any>;
842
- externalName?: string;
843
- env?: string[] | string;
844
- additionalValues?: object;
845
- };
846
- scope: {
847
- values: string[];
848
- type: object;
849
- isKey: boolean;
850
- writable: boolean;
851
- mandatory: boolean;
852
- collection: boolean;
853
- constructor?: Function;
854
- private?: boolean;
855
- credential?: boolean;
856
- persistent?: boolean;
857
- depends?: string;
858
- description?: string;
859
- default?: any;
860
- set?: Function;
861
- get?: Function;
862
- toInternal?: Function;
863
- toExternal?: Function;
864
- externalName?: string;
865
- env?: string[] | string;
866
- additionalValues?: object;
867
- };
868
- class: {
869
- values: string[];
870
- type: object;
871
- isKey: boolean;
872
- writable: boolean;
873
- mandatory: boolean;
874
- collection: boolean;
875
- constructor?: Function;
876
- private?: boolean;
877
- credential?: boolean;
878
- persistent?: boolean;
879
- depends?: string;
880
- description?: string;
881
- default?: any;
882
- set?: Function;
883
- get?: Function;
884
- toInternal?: Function;
885
- toExternal?: Function;
886
- externalName?: string;
887
- env?: string[] | string;
888
- additionalValues?: object;
889
- };
890
- kind: {
891
- values: string[];
892
- type: object;
893
- isKey: boolean;
894
- writable: boolean;
895
- mandatory: boolean;
896
- collection: boolean;
897
- constructor?: Function;
898
- private?: boolean;
899
- credential?: boolean;
900
- persistent?: boolean;
901
- depends?: string;
902
- description?: string;
903
- default?: any;
904
- set?: Function;
905
- get?: Function;
906
- toInternal?: Function;
907
- toExternal?: Function;
908
- externalName?: string;
909
- env?: string[] | string;
910
- additionalValues?: object;
911
- };
912
- ssid: import("pacc").AttributeDefinition;
913
- psk: import("pacc").AttributeDefinition;
914
- secretName: import("pacc").AttributeDefinition;
915
- metric: {
916
- type: object;
917
- isKey: boolean;
918
- writable: boolean;
919
- mandatory: boolean;
920
- collection: boolean;
921
- constructor?: Function;
922
- private?: boolean;
923
- credential?: boolean;
924
- persistent?: boolean;
925
- depends?: string;
926
- description?: string;
927
- default?: any;
928
- set?: Function;
929
- get?: Function;
930
- toInternal?: Function;
931
- toExternal?: Function;
932
- values?: Set<any>;
933
- externalName?: string;
934
- env?: string[] | string;
935
- additionalValues?: object;
936
- };
937
- mtu: {
938
- default: number;
939
- type: object;
940
- isKey: boolean;
941
- writable: boolean;
942
- mandatory: boolean;
943
- collection: boolean;
944
- constructor?: Function;
945
- private?: boolean;
946
- credential?: boolean;
947
- persistent?: boolean;
948
- depends?: string;
949
- description?: string;
950
- set?: Function;
951
- get?: Function;
952
- toInternal?: Function;
953
- toExternal?: Function;
954
- values?: Set<any>;
955
- externalName?: string;
956
- env?: string[] | string;
957
- additionalValues?: object;
958
- };
959
- multicastDNS: import("pacc").AttributeDefinition;
960
- };
961
- };
962
- isKey: boolean;
963
- writable: boolean;
964
- mandatory: boolean;
965
- collection: boolean;
966
- constructor?: Function;
967
- private?: boolean;
968
- credential?: boolean;
969
- persistent?: boolean;
970
- depends?: string;
971
- description?: string;
972
- default?: any;
973
- set?: Function;
974
- get?: Function;
975
- toInternal?: Function;
976
- toExternal?: Function;
977
- values?: Set<any>;
978
- externalName?: string;
979
- env?: string[] | string;
980
- additionalValues?: object;
981
- };
982
- destination: import("pacc").AttributeDefinition;
983
- cidrAddresses: import("pacc").AttributeDefinition;
984
- cidrAddress: import("pacc").AttributeDefinition;
985
- addresses: import("pacc").AttributeDefinition;
986
- address: import("pacc").AttributeDefinition;
987
- scope: {
988
- values: string[];
989
- type: object;
990
- isKey: boolean;
991
- writable: boolean;
992
- mandatory: boolean;
993
- collection: boolean;
994
- constructor?: Function;
995
- private?: boolean;
996
- credential?: boolean;
997
- persistent?: boolean;
998
- depends?: string;
999
- description?: string;
1000
- default?: any;
1001
- set?: Function;
1002
- get?: Function;
1003
- toInternal?: Function;
1004
- toExternal?: Function;
1005
- externalName?: string;
1006
- env?: string[] | string;
1007
- additionalValues?: object;
1008
- };
1009
- class: {
1010
- values: string[];
1011
- type: object;
1012
- isKey: boolean;
1013
- writable: boolean;
1014
- mandatory: boolean;
1015
- collection: boolean;
1016
- constructor?: Function;
1017
- private?: boolean;
1018
- credential?: boolean;
1019
- persistent?: boolean;
1020
- depends?: string;
1021
- description?: string;
1022
- default?: any;
1023
- set?: Function;
1024
- get?: Function;
1025
- toInternal?: Function;
1026
- toExternal?: Function;
1027
- externalName?: string;
1028
- env?: string[] | string;
1029
- additionalValues?: object;
1030
- };
1031
- kind: {
1032
- values: string[];
1033
- type: object;
1034
- isKey: boolean;
1035
- writable: boolean;
1036
- mandatory: boolean;
1037
- collection: boolean;
1038
- constructor?: Function;
1039
- private?: boolean;
1040
- credential?: boolean;
1041
- persistent?: boolean;
1042
- depends?: string;
1043
- description?: string;
1044
- default?: any;
1045
- set?: Function;
1046
- get?: Function;
1047
- toInternal?: Function;
1048
- toExternal?: Function;
1049
- externalName?: string;
1050
- env?: string[] | string;
1051
- additionalValues?: object;
1052
- };
1053
- ssid: import("pacc").AttributeDefinition;
1054
- psk: import("pacc").AttributeDefinition;
1055
- secretName: import("pacc").AttributeDefinition;
1056
- metric: {
1057
- type: object;
1058
- isKey: boolean;
1059
- writable: boolean;
1060
- mandatory: boolean;
1061
- collection: boolean;
1062
- constructor?: Function;
1063
- private?: boolean;
1064
- credential?: boolean;
1065
- persistent?: boolean;
1066
- depends?: string;
1067
- description?: string;
1068
- default?: any;
1069
- set?: Function;
1070
- get?: Function;
1071
- toInternal?: Function;
1072
- toExternal?: Function;
1073
- values?: Set<any>;
1074
- externalName?: string;
1075
- env?: string[] | string;
1076
- additionalValues?: object;
1077
- };
1078
- mtu: {
1079
- default: number;
1080
- type: object;
1081
- isKey: boolean;
1082
- writable: boolean;
1083
- mandatory: boolean;
1084
- collection: boolean;
1085
- constructor?: Function;
1086
- private?: boolean;
1087
- credential?: boolean;
1088
- persistent?: boolean;
1089
- depends?: string;
1090
- description?: string;
1091
- set?: Function;
1092
- get?: Function;
1093
- toInternal?: Function;
1094
- toExternal?: Function;
1095
- values?: Set<any>;
1096
- externalName?: string;
1097
- env?: string[] | string;
1098
- additionalValues?: object;
1099
- };
1100
- gateway: {
1101
- type: string;
1102
- isKey: boolean;
1103
- writable: boolean;
1104
- mandatory: boolean;
1105
- collection: boolean;
1106
- constructor?: Function;
1107
- private?: boolean;
1108
- credential?: boolean;
1109
- persistent?: boolean;
1110
- depends?: string;
1111
- description?: string;
1112
- default?: any;
1113
- set?: Function;
1114
- get?: Function;
1115
- toInternal?: Function;
1116
- toExternal?: Function;
1117
- values?: Set<any>;
1118
- externalName?: string;
1119
- env?: string[] | string;
1120
- additionalValues?: object;
1121
- };
1122
- multicastDNS: import("pacc").AttributeDefinition;
1123
- };
1124
- };
1125
- static isCommonName(name: any): boolean;
1126
- _ipAddresses: Map<any, any>;
1127
- _scope: any;
1128
- _metric: any;
1129
- _kind: any;
1130
- _hostName: any;
1131
- _hwaddr: any;
1132
- _class: any;
1133
- addSubnet(address: any): any;
1134
- set ipAddresses(value: Map<any, any>);
1135
- get ipAddresses(): Map<any, any>;
1136
- subnetForAddress(address: any): any;
1137
- get gateway(): any;
1138
- get gatewayAddress(): any;
1139
- set hostName(value: any);
1140
- get hostName(): any;
1141
- get domainNames(): Set<string>;
1142
- set scope(value: any);
1143
- get scope(): any;
1144
- set hwaddr(value: any);
1145
- get hwaddr(): any;
1146
- set metric(value: any);
1147
- get metric(): any;
1148
- set mtu(value: any);
1149
- get mtu(): any;
1150
- _mtu: any;
1151
- set class(value: any);
1152
- get class(): any;
1153
- set kind(value: any);
1154
- get kind(): any;
1155
- systemdDefinitions(dir: any, packageData: any): Promise<void>;
1156
- }
1157
- import { Base } from "pmcf";
1158
- import { SkeletonNetworkInterface } from "./skeleton.mjs";