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