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