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,1734 +0,0 @@
1
- export class WLANNetworkInterface extends EthernetNetworkInterface {
2
- static get typeDefinition(): {
3
- name: string;
4
- extends: {
5
- name: string;
6
- extends: {
7
- name: string;
8
- owners: string[];
9
- extends: typeof import("../base.mjs").Base;
10
- specializations: {};
11
- factoryFor(owner: any, value: any): any;
12
- key: string;
13
- attributes: {
14
- services: {
15
- collection: boolean;
16
- type: string;
17
- isKey: boolean;
18
- writable: boolean;
19
- mandatory: boolean;
20
- constructor?: Function;
21
- private?: boolean;
22
- credential?: boolean;
23
- persistent?: boolean;
24
- depends?: string;
25
- description?: string;
26
- default?: any;
27
- set?: Function;
28
- get?: Function;
29
- toInternal?: Function;
30
- toExternal?: Function;
31
- values?: Set<any>;
32
- externalName?: string;
33
- env?: string[] | string;
34
- additionalValues?: object;
35
- };
36
- hostName: {
37
- writable: boolean;
38
- type: object;
39
- isKey: boolean;
40
- mandatory: boolean;
41
- collection: boolean;
42
- constructor?: Function;
43
- private?: boolean;
44
- credential?: boolean;
45
- persistent?: boolean;
46
- depends?: string;
47
- description?: string;
48
- default?: any;
49
- set?: Function;
50
- get?: Function;
51
- toInternal?: Function;
52
- toExternal?: Function;
53
- values?: Set<any>;
54
- externalName?: string;
55
- env?: string[] | string;
56
- additionalValues?: object;
57
- };
58
- ipAddresses: import("pacc").AttributeDefinition;
59
- hwaddr: import("pacc").AttributeDefinition;
60
- network: {
61
- type: {
62
- name: string;
63
- owners: string[];
64
- extends: {
65
- name: string;
66
- owners: string[];
67
- extends: typeof import("../base.mjs").Base;
68
- key: string;
69
- attributes: {
70
- networks: {
71
- type: string;
72
- collection: boolean;
73
- isKey: boolean;
74
- writable: boolean;
75
- mandatory: boolean;
76
- constructor?: Function;
77
- private?: boolean;
78
- credential?: boolean;
79
- persistent?: boolean;
80
- depends?: string;
81
- description?: string;
82
- default?: any;
83
- set?: Function;
84
- get?: Function;
85
- toInternal?: Function;
86
- toExternal?: Function;
87
- values?: Set<any>;
88
- externalName?: string;
89
- env?: string[] | string;
90
- additionalValues?: object;
91
- };
92
- hosts: {
93
- type: string;
94
- collection: boolean;
95
- isKey: boolean;
96
- writable: boolean;
97
- mandatory: boolean;
98
- constructor?: Function;
99
- private?: boolean;
100
- credential?: boolean;
101
- persistent?: boolean;
102
- depends?: string;
103
- description?: string;
104
- default?: any;
105
- set?: Function;
106
- get?: Function;
107
- toInternal?: Function;
108
- toExternal?: Function;
109
- values?: Set<any>;
110
- externalName?: string;
111
- env?: string[] | string;
112
- additionalValues?: object;
113
- };
114
- clusters: {
115
- type: string;
116
- collection: boolean;
117
- isKey: boolean;
118
- writable: boolean;
119
- mandatory: boolean;
120
- constructor?: Function;
121
- private?: boolean;
122
- credential?: boolean;
123
- persistent?: boolean;
124
- depends?: string;
125
- description?: string;
126
- default?: any;
127
- set?: Function;
128
- get?: Function;
129
- toInternal?: Function;
130
- toExternal?: Function;
131
- values?: Set<any>;
132
- externalName?: string;
133
- env?: string[] | string;
134
- additionalValues?: object;
135
- };
136
- subnets: {
137
- type: {
138
- name: string;
139
- owners: string[];
140
- constructWithIdentifierOnly: boolean;
141
- key: string;
142
- attributes: {
143
- address: import("pacc").AttributeDefinition;
144
- networks: {
145
- type: string;
146
- collection: boolean;
147
- isKey: boolean;
148
- writable: boolean;
149
- mandatory: boolean;
150
- constructor?: Function;
151
- private?: boolean;
152
- credential?: boolean;
153
- persistent?: boolean;
154
- depends?: string;
155
- description?: string;
156
- default?: any;
157
- set?: Function;
158
- get?: Function;
159
- toInternal?: Function;
160
- toExternal?: Function;
161
- values?: Set<any>;
162
- externalName?: string;
163
- env?: string[] | string;
164
- additionalValues?: object;
165
- };
166
- prefixLength: import("pacc").AttributeDefinition;
167
- family: import("pacc").AttributeDefinition;
168
- };
169
- };
170
- collection: boolean;
171
- isKey: boolean;
172
- writable: boolean;
173
- mandatory: boolean;
174
- constructor?: Function;
175
- private?: boolean;
176
- credential?: boolean;
177
- persistent?: boolean;
178
- depends?: string;
179
- description?: string;
180
- default?: any;
181
- set?: Function;
182
- get?: Function;
183
- toInternal?: Function;
184
- toExternal?: Function;
185
- values?: Set<any>;
186
- externalName?: string;
187
- env?: string[] | string;
188
- additionalValues?: object;
189
- };
190
- country: import("pacc").AttributeDefinition;
191
- domain: import("pacc").AttributeDefinition;
192
- domains: import("pacc").AttributeDefinition;
193
- timezone: import("pacc").AttributeDefinition;
194
- architectures: import("pacc").AttributeDefinition;
195
- locales: import("pacc").AttributeDefinition;
196
- administratorEmail: {
197
- writable: boolean;
198
- type: object;
199
- isKey: boolean;
200
- mandatory: boolean;
201
- collection: boolean;
202
- constructor?: Function;
203
- private?: boolean;
204
- credential?: boolean;
205
- persistent?: boolean;
206
- depends?: string;
207
- description?: string;
208
- default?: any;
209
- set?: Function;
210
- get?: Function;
211
- toInternal?: Function;
212
- toExternal?: Function;
213
- values?: Set<any>;
214
- externalName?: string;
215
- env?: string[] | string;
216
- additionalValues?: object;
217
- };
218
- template: {
219
- private: boolean;
220
- type: object;
221
- isKey: boolean;
222
- writable: boolean;
223
- mandatory: boolean;
224
- collection: boolean;
225
- constructor?: Function;
226
- credential?: boolean;
227
- persistent?: boolean;
228
- depends?: string;
229
- description?: string;
230
- default?: any;
231
- set?: Function;
232
- get?: Function;
233
- toInternal?: Function;
234
- toExternal?: Function;
235
- values?: Set<any>;
236
- externalName?: string;
237
- env?: string[] | string;
238
- additionalValues?: object;
239
- };
240
- };
241
- };
242
- key: string;
243
- attributes: {
244
- bridge: {
245
- type: string;
246
- collection: boolean;
247
- isKey: boolean;
248
- writable: boolean;
249
- mandatory: boolean;
250
- constructor?: Function;
251
- private?: boolean;
252
- credential?: boolean;
253
- persistent?: boolean;
254
- depends?: string;
255
- description?: string;
256
- default?: any;
257
- set?: Function;
258
- get?: Function;
259
- toInternal?: Function;
260
- toExternal?: Function;
261
- values?: Set<any>;
262
- externalName?: string;
263
- env?: string[] | string;
264
- additionalValues?: object;
265
- };
266
- gateway: {
267
- type: string;
268
- isKey: boolean;
269
- writable: boolean;
270
- mandatory: boolean;
271
- collection: boolean;
272
- constructor?: Function;
273
- private?: boolean;
274
- credential?: boolean;
275
- persistent?: boolean;
276
- depends?: string;
277
- description?: string;
278
- default?: any;
279
- set?: Function;
280
- get?: Function;
281
- toInternal?: Function;
282
- toExternal?: Function;
283
- values?: Set<any>;
284
- externalName?: string;
285
- env?: string[] | string;
286
- additionalValues?: object;
287
- };
288
- scope: {
289
- values: string[];
290
- type: object;
291
- isKey: boolean;
292
- writable: boolean;
293
- mandatory: boolean;
294
- collection: boolean;
295
- constructor?: Function;
296
- private?: boolean;
297
- credential?: boolean;
298
- persistent?: boolean;
299
- depends?: string;
300
- description?: string;
301
- default?: any;
302
- set?: Function;
303
- get?: Function;
304
- toInternal?: Function;
305
- toExternal?: Function;
306
- externalName?: string;
307
- env?: string[] | string;
308
- additionalValues?: object;
309
- };
310
- class: {
311
- values: string[];
312
- type: object;
313
- isKey: boolean;
314
- writable: boolean;
315
- mandatory: boolean;
316
- collection: boolean;
317
- constructor?: Function;
318
- private?: boolean;
319
- credential?: boolean;
320
- persistent?: boolean;
321
- depends?: string;
322
- description?: string;
323
- default?: any;
324
- set?: Function;
325
- get?: Function;
326
- toInternal?: Function;
327
- toExternal?: Function;
328
- externalName?: string;
329
- env?: string[] | string;
330
- additionalValues?: object;
331
- };
332
- kind: {
333
- values: string[];
334
- type: object;
335
- isKey: boolean;
336
- writable: boolean;
337
- mandatory: boolean;
338
- collection: boolean;
339
- constructor?: Function;
340
- private?: boolean;
341
- credential?: boolean;
342
- persistent?: boolean;
343
- depends?: string;
344
- description?: string;
345
- default?: any;
346
- set?: Function;
347
- get?: Function;
348
- toInternal?: Function;
349
- toExternal?: Function;
350
- externalName?: string;
351
- env?: string[] | string;
352
- additionalValues?: object;
353
- };
354
- ssid: import("pacc").AttributeDefinition;
355
- psk: import("pacc").AttributeDefinition;
356
- secretName: import("pacc").AttributeDefinition;
357
- metric: {
358
- type: object;
359
- isKey: boolean;
360
- writable: boolean;
361
- mandatory: boolean;
362
- collection: boolean;
363
- constructor?: Function;
364
- private?: boolean;
365
- credential?: boolean;
366
- persistent?: boolean;
367
- depends?: string;
368
- description?: string;
369
- default?: any;
370
- set?: Function;
371
- get?: Function;
372
- toInternal?: Function;
373
- toExternal?: Function;
374
- values?: Set<any>;
375
- externalName?: string;
376
- env?: string[] | string;
377
- additionalValues?: object;
378
- };
379
- mtu: {
380
- default: number;
381
- type: object;
382
- isKey: boolean;
383
- writable: boolean;
384
- mandatory: boolean;
385
- collection: boolean;
386
- constructor?: Function;
387
- private?: boolean;
388
- credential?: boolean;
389
- persistent?: boolean;
390
- depends?: string;
391
- description?: string;
392
- set?: Function;
393
- get?: Function;
394
- toInternal?: Function;
395
- toExternal?: Function;
396
- values?: Set<any>;
397
- externalName?: string;
398
- env?: string[] | string;
399
- additionalValues?: object;
400
- };
401
- multicastDNS: import("pacc").AttributeDefinition;
402
- };
403
- };
404
- isKey: boolean;
405
- writable: boolean;
406
- mandatory: boolean;
407
- collection: boolean;
408
- constructor?: Function;
409
- private?: boolean;
410
- credential?: boolean;
411
- persistent?: boolean;
412
- depends?: string;
413
- description?: string;
414
- default?: any;
415
- set?: Function;
416
- get?: Function;
417
- toInternal?: Function;
418
- toExternal?: Function;
419
- values?: Set<any>;
420
- externalName?: string;
421
- env?: string[] | string;
422
- additionalValues?: object;
423
- };
424
- destination: import("pacc").AttributeDefinition;
425
- cidrAddresses: import("pacc").AttributeDefinition;
426
- cidrAddress: import("pacc").AttributeDefinition;
427
- addresses: import("pacc").AttributeDefinition;
428
- address: import("pacc").AttributeDefinition;
429
- scope: {
430
- values: string[];
431
- type: object;
432
- isKey: boolean;
433
- writable: boolean;
434
- mandatory: boolean;
435
- collection: boolean;
436
- constructor?: Function;
437
- private?: boolean;
438
- credential?: boolean;
439
- persistent?: boolean;
440
- depends?: string;
441
- description?: string;
442
- default?: any;
443
- set?: Function;
444
- get?: Function;
445
- toInternal?: Function;
446
- toExternal?: Function;
447
- externalName?: string;
448
- env?: string[] | string;
449
- additionalValues?: object;
450
- };
451
- class: {
452
- values: string[];
453
- type: object;
454
- isKey: boolean;
455
- writable: boolean;
456
- mandatory: boolean;
457
- collection: boolean;
458
- constructor?: Function;
459
- private?: boolean;
460
- credential?: boolean;
461
- persistent?: boolean;
462
- depends?: string;
463
- description?: string;
464
- default?: any;
465
- set?: Function;
466
- get?: Function;
467
- toInternal?: Function;
468
- toExternal?: Function;
469
- externalName?: string;
470
- env?: string[] | string;
471
- additionalValues?: object;
472
- };
473
- kind: {
474
- values: string[];
475
- type: object;
476
- isKey: boolean;
477
- writable: boolean;
478
- mandatory: boolean;
479
- collection: boolean;
480
- constructor?: Function;
481
- private?: boolean;
482
- credential?: boolean;
483
- persistent?: boolean;
484
- depends?: string;
485
- description?: string;
486
- default?: any;
487
- set?: Function;
488
- get?: Function;
489
- toInternal?: Function;
490
- toExternal?: Function;
491
- externalName?: string;
492
- env?: string[] | string;
493
- additionalValues?: object;
494
- };
495
- ssid: import("pacc").AttributeDefinition;
496
- psk: import("pacc").AttributeDefinition;
497
- secretName: import("pacc").AttributeDefinition;
498
- metric: {
499
- type: object;
500
- isKey: boolean;
501
- writable: boolean;
502
- mandatory: boolean;
503
- collection: boolean;
504
- constructor?: Function;
505
- private?: boolean;
506
- credential?: boolean;
507
- persistent?: boolean;
508
- depends?: string;
509
- description?: string;
510
- default?: any;
511
- set?: Function;
512
- get?: Function;
513
- toInternal?: Function;
514
- toExternal?: Function;
515
- values?: Set<any>;
516
- externalName?: string;
517
- env?: string[] | string;
518
- additionalValues?: object;
519
- };
520
- mtu: {
521
- default: number;
522
- type: object;
523
- isKey: boolean;
524
- writable: boolean;
525
- mandatory: boolean;
526
- collection: boolean;
527
- constructor?: Function;
528
- private?: boolean;
529
- credential?: boolean;
530
- persistent?: boolean;
531
- depends?: string;
532
- description?: string;
533
- set?: Function;
534
- get?: Function;
535
- toInternal?: Function;
536
- toExternal?: Function;
537
- values?: Set<any>;
538
- externalName?: string;
539
- env?: string[] | string;
540
- additionalValues?: object;
541
- };
542
- gateway: {
543
- type: string;
544
- isKey: boolean;
545
- writable: boolean;
546
- mandatory: boolean;
547
- collection: boolean;
548
- constructor?: Function;
549
- private?: boolean;
550
- credential?: boolean;
551
- persistent?: boolean;
552
- depends?: string;
553
- description?: string;
554
- default?: any;
555
- set?: Function;
556
- get?: Function;
557
- toInternal?: Function;
558
- toExternal?: Function;
559
- values?: Set<any>;
560
- externalName?: string;
561
- env?: string[] | string;
562
- additionalValues?: object;
563
- };
564
- multicastDNS: import("pacc").AttributeDefinition;
565
- };
566
- };
567
- specializationOf: {
568
- name: string;
569
- owners: string[];
570
- extends: typeof import("../base.mjs").Base;
571
- specializations: {};
572
- factoryFor(owner: any, value: any): any;
573
- key: string;
574
- attributes: {
575
- services: {
576
- collection: boolean;
577
- type: string;
578
- isKey: boolean;
579
- writable: boolean;
580
- mandatory: boolean;
581
- constructor?: Function;
582
- private?: boolean;
583
- credential?: boolean;
584
- persistent?: boolean;
585
- depends?: string;
586
- description?: string;
587
- default?: any;
588
- set?: Function;
589
- get?: Function;
590
- toInternal?: Function;
591
- toExternal?: Function;
592
- values?: Set<any>;
593
- externalName?: string;
594
- env?: string[] | string;
595
- additionalValues?: object;
596
- };
597
- hostName: {
598
- writable: boolean;
599
- type: object;
600
- isKey: boolean;
601
- mandatory: boolean;
602
- collection: boolean;
603
- constructor?: Function;
604
- private?: boolean;
605
- credential?: boolean;
606
- persistent?: boolean;
607
- depends?: string;
608
- description?: string;
609
- default?: any;
610
- set?: Function;
611
- get?: Function;
612
- toInternal?: Function;
613
- toExternal?: Function;
614
- values?: Set<any>;
615
- externalName?: string;
616
- env?: string[] | string;
617
- additionalValues?: object;
618
- };
619
- ipAddresses: import("pacc").AttributeDefinition;
620
- hwaddr: import("pacc").AttributeDefinition;
621
- network: {
622
- type: {
623
- name: string;
624
- owners: string[];
625
- extends: {
626
- name: string;
627
- owners: string[];
628
- extends: typeof import("../base.mjs").Base;
629
- key: string;
630
- attributes: {
631
- networks: {
632
- type: string;
633
- collection: boolean;
634
- isKey: boolean;
635
- writable: boolean;
636
- mandatory: boolean;
637
- constructor?: Function;
638
- private?: boolean;
639
- credential?: boolean;
640
- persistent?: boolean;
641
- depends?: string;
642
- description?: string;
643
- default?: any;
644
- set?: Function;
645
- get?: Function;
646
- toInternal?: Function;
647
- toExternal?: Function;
648
- values?: Set<any>;
649
- externalName?: string;
650
- env?: string[] | string;
651
- additionalValues?: object;
652
- };
653
- hosts: {
654
- type: string;
655
- collection: boolean;
656
- isKey: boolean;
657
- writable: boolean;
658
- mandatory: boolean;
659
- constructor?: Function;
660
- private?: boolean;
661
- credential?: boolean;
662
- persistent?: boolean;
663
- depends?: string;
664
- description?: string;
665
- default?: any;
666
- set?: Function;
667
- get?: Function;
668
- toInternal?: Function;
669
- toExternal?: Function;
670
- values?: Set<any>;
671
- externalName?: string;
672
- env?: string[] | string;
673
- additionalValues?: object;
674
- };
675
- clusters: {
676
- type: string;
677
- collection: boolean;
678
- isKey: boolean;
679
- writable: boolean;
680
- mandatory: boolean;
681
- constructor?: Function;
682
- private?: boolean;
683
- credential?: boolean;
684
- persistent?: boolean;
685
- depends?: string;
686
- description?: string;
687
- default?: any;
688
- set?: Function;
689
- get?: Function;
690
- toInternal?: Function;
691
- toExternal?: Function;
692
- values?: Set<any>;
693
- externalName?: string;
694
- env?: string[] | string;
695
- additionalValues?: object;
696
- };
697
- subnets: {
698
- type: {
699
- name: string;
700
- owners: string[];
701
- constructWithIdentifierOnly: boolean;
702
- key: string;
703
- attributes: {
704
- address: import("pacc").AttributeDefinition;
705
- networks: {
706
- type: string;
707
- collection: boolean;
708
- isKey: boolean;
709
- writable: boolean;
710
- mandatory: boolean;
711
- constructor?: Function;
712
- private?: boolean;
713
- credential?: boolean;
714
- persistent?: boolean;
715
- depends?: string;
716
- description?: string;
717
- default?: any;
718
- set?: Function;
719
- get?: Function;
720
- toInternal?: Function;
721
- toExternal?: Function;
722
- values?: Set<any>;
723
- externalName?: string;
724
- env?: string[] | string;
725
- additionalValues?: object;
726
- };
727
- prefixLength: import("pacc").AttributeDefinition;
728
- family: import("pacc").AttributeDefinition;
729
- };
730
- };
731
- collection: boolean;
732
- isKey: boolean;
733
- writable: boolean;
734
- mandatory: boolean;
735
- constructor?: Function;
736
- private?: boolean;
737
- credential?: boolean;
738
- persistent?: boolean;
739
- depends?: string;
740
- description?: string;
741
- default?: any;
742
- set?: Function;
743
- get?: Function;
744
- toInternal?: Function;
745
- toExternal?: Function;
746
- values?: Set<any>;
747
- externalName?: string;
748
- env?: string[] | string;
749
- additionalValues?: object;
750
- };
751
- country: import("pacc").AttributeDefinition;
752
- domain: import("pacc").AttributeDefinition;
753
- domains: import("pacc").AttributeDefinition;
754
- timezone: import("pacc").AttributeDefinition;
755
- architectures: import("pacc").AttributeDefinition;
756
- locales: import("pacc").AttributeDefinition;
757
- administratorEmail: {
758
- writable: boolean;
759
- type: object;
760
- isKey: boolean;
761
- mandatory: boolean;
762
- collection: boolean;
763
- constructor?: Function;
764
- private?: boolean;
765
- credential?: boolean;
766
- persistent?: boolean;
767
- depends?: string;
768
- description?: string;
769
- default?: any;
770
- set?: Function;
771
- get?: Function;
772
- toInternal?: Function;
773
- toExternal?: Function;
774
- values?: Set<any>;
775
- externalName?: string;
776
- env?: string[] | string;
777
- additionalValues?: object;
778
- };
779
- template: {
780
- private: boolean;
781
- type: object;
782
- isKey: boolean;
783
- writable: boolean;
784
- mandatory: boolean;
785
- collection: boolean;
786
- constructor?: Function;
787
- credential?: boolean;
788
- persistent?: boolean;
789
- depends?: string;
790
- description?: string;
791
- default?: any;
792
- set?: Function;
793
- get?: Function;
794
- toInternal?: Function;
795
- toExternal?: Function;
796
- values?: Set<any>;
797
- externalName?: string;
798
- env?: string[] | string;
799
- additionalValues?: object;
800
- };
801
- };
802
- };
803
- key: string;
804
- attributes: {
805
- bridge: {
806
- type: string;
807
- collection: boolean;
808
- isKey: boolean;
809
- writable: boolean;
810
- mandatory: boolean;
811
- constructor?: Function;
812
- private?: boolean;
813
- credential?: boolean;
814
- persistent?: boolean;
815
- depends?: string;
816
- description?: string;
817
- default?: any;
818
- set?: Function;
819
- get?: Function;
820
- toInternal?: Function;
821
- toExternal?: Function;
822
- values?: Set<any>;
823
- externalName?: string;
824
- env?: string[] | string;
825
- additionalValues?: object;
826
- };
827
- gateway: {
828
- type: string;
829
- isKey: boolean;
830
- writable: boolean;
831
- mandatory: boolean;
832
- collection: boolean;
833
- constructor?: Function;
834
- private?: boolean;
835
- credential?: boolean;
836
- persistent?: boolean;
837
- depends?: string;
838
- description?: string;
839
- default?: any;
840
- set?: Function;
841
- get?: Function;
842
- toInternal?: Function;
843
- toExternal?: Function;
844
- values?: Set<any>;
845
- externalName?: string;
846
- env?: string[] | string;
847
- additionalValues?: object;
848
- };
849
- scope: {
850
- values: string[];
851
- type: object;
852
- isKey: boolean;
853
- writable: boolean;
854
- mandatory: boolean;
855
- collection: boolean;
856
- constructor?: Function;
857
- private?: boolean;
858
- credential?: boolean;
859
- persistent?: boolean;
860
- depends?: string;
861
- description?: string;
862
- default?: any;
863
- set?: Function;
864
- get?: Function;
865
- toInternal?: Function;
866
- toExternal?: Function;
867
- externalName?: string;
868
- env?: string[] | string;
869
- additionalValues?: object;
870
- };
871
- class: {
872
- values: string[];
873
- type: object;
874
- isKey: boolean;
875
- writable: boolean;
876
- mandatory: boolean;
877
- collection: boolean;
878
- constructor?: Function;
879
- private?: boolean;
880
- credential?: boolean;
881
- persistent?: boolean;
882
- depends?: string;
883
- description?: string;
884
- default?: any;
885
- set?: Function;
886
- get?: Function;
887
- toInternal?: Function;
888
- toExternal?: Function;
889
- externalName?: string;
890
- env?: string[] | string;
891
- additionalValues?: object;
892
- };
893
- kind: {
894
- values: string[];
895
- type: object;
896
- isKey: boolean;
897
- writable: boolean;
898
- mandatory: boolean;
899
- collection: boolean;
900
- constructor?: Function;
901
- private?: boolean;
902
- credential?: boolean;
903
- persistent?: boolean;
904
- depends?: string;
905
- description?: string;
906
- default?: any;
907
- set?: Function;
908
- get?: Function;
909
- toInternal?: Function;
910
- toExternal?: Function;
911
- externalName?: string;
912
- env?: string[] | string;
913
- additionalValues?: object;
914
- };
915
- ssid: import("pacc").AttributeDefinition;
916
- psk: import("pacc").AttributeDefinition;
917
- secretName: import("pacc").AttributeDefinition;
918
- metric: {
919
- type: object;
920
- isKey: boolean;
921
- writable: boolean;
922
- mandatory: boolean;
923
- collection: boolean;
924
- constructor?: Function;
925
- private?: boolean;
926
- credential?: boolean;
927
- persistent?: boolean;
928
- depends?: string;
929
- description?: string;
930
- default?: any;
931
- set?: Function;
932
- get?: Function;
933
- toInternal?: Function;
934
- toExternal?: Function;
935
- values?: Set<any>;
936
- externalName?: string;
937
- env?: string[] | string;
938
- additionalValues?: object;
939
- };
940
- mtu: {
941
- default: number;
942
- type: object;
943
- isKey: boolean;
944
- writable: boolean;
945
- mandatory: boolean;
946
- collection: boolean;
947
- constructor?: Function;
948
- private?: boolean;
949
- credential?: boolean;
950
- persistent?: boolean;
951
- depends?: string;
952
- description?: string;
953
- set?: Function;
954
- get?: Function;
955
- toInternal?: Function;
956
- toExternal?: Function;
957
- values?: Set<any>;
958
- externalName?: string;
959
- env?: string[] | string;
960
- additionalValues?: object;
961
- };
962
- multicastDNS: import("pacc").AttributeDefinition;
963
- };
964
- };
965
- isKey: boolean;
966
- writable: boolean;
967
- mandatory: boolean;
968
- collection: boolean;
969
- constructor?: Function;
970
- private?: boolean;
971
- credential?: boolean;
972
- persistent?: boolean;
973
- depends?: string;
974
- description?: string;
975
- default?: any;
976
- set?: Function;
977
- get?: Function;
978
- toInternal?: Function;
979
- toExternal?: Function;
980
- values?: Set<any>;
981
- externalName?: string;
982
- env?: string[] | string;
983
- additionalValues?: object;
984
- };
985
- destination: import("pacc").AttributeDefinition;
986
- cidrAddresses: import("pacc").AttributeDefinition;
987
- cidrAddress: import("pacc").AttributeDefinition;
988
- addresses: import("pacc").AttributeDefinition;
989
- address: import("pacc").AttributeDefinition;
990
- scope: {
991
- values: string[];
992
- type: object;
993
- isKey: boolean;
994
- writable: boolean;
995
- mandatory: boolean;
996
- collection: boolean;
997
- constructor?: Function;
998
- private?: boolean;
999
- credential?: boolean;
1000
- persistent?: boolean;
1001
- depends?: string;
1002
- description?: string;
1003
- default?: any;
1004
- set?: Function;
1005
- get?: Function;
1006
- toInternal?: Function;
1007
- toExternal?: Function;
1008
- externalName?: string;
1009
- env?: string[] | string;
1010
- additionalValues?: object;
1011
- };
1012
- class: {
1013
- values: string[];
1014
- type: object;
1015
- isKey: boolean;
1016
- writable: boolean;
1017
- mandatory: boolean;
1018
- collection: boolean;
1019
- constructor?: Function;
1020
- private?: boolean;
1021
- credential?: boolean;
1022
- persistent?: boolean;
1023
- depends?: string;
1024
- description?: string;
1025
- default?: any;
1026
- set?: Function;
1027
- get?: Function;
1028
- toInternal?: Function;
1029
- toExternal?: Function;
1030
- externalName?: string;
1031
- env?: string[] | string;
1032
- additionalValues?: object;
1033
- };
1034
- kind: {
1035
- values: string[];
1036
- type: object;
1037
- isKey: boolean;
1038
- writable: boolean;
1039
- mandatory: boolean;
1040
- collection: boolean;
1041
- constructor?: Function;
1042
- private?: boolean;
1043
- credential?: boolean;
1044
- persistent?: boolean;
1045
- depends?: string;
1046
- description?: string;
1047
- default?: any;
1048
- set?: Function;
1049
- get?: Function;
1050
- toInternal?: Function;
1051
- toExternal?: Function;
1052
- externalName?: string;
1053
- env?: string[] | string;
1054
- additionalValues?: object;
1055
- };
1056
- ssid: import("pacc").AttributeDefinition;
1057
- psk: import("pacc").AttributeDefinition;
1058
- secretName: import("pacc").AttributeDefinition;
1059
- metric: {
1060
- type: object;
1061
- isKey: boolean;
1062
- writable: boolean;
1063
- mandatory: boolean;
1064
- collection: boolean;
1065
- constructor?: Function;
1066
- private?: boolean;
1067
- credential?: boolean;
1068
- persistent?: boolean;
1069
- depends?: string;
1070
- description?: string;
1071
- default?: any;
1072
- set?: Function;
1073
- get?: Function;
1074
- toInternal?: Function;
1075
- toExternal?: Function;
1076
- values?: Set<any>;
1077
- externalName?: string;
1078
- env?: string[] | string;
1079
- additionalValues?: object;
1080
- };
1081
- mtu: {
1082
- default: number;
1083
- type: object;
1084
- isKey: boolean;
1085
- writable: boolean;
1086
- mandatory: boolean;
1087
- collection: boolean;
1088
- constructor?: Function;
1089
- private?: boolean;
1090
- credential?: boolean;
1091
- persistent?: boolean;
1092
- depends?: string;
1093
- description?: string;
1094
- set?: Function;
1095
- get?: Function;
1096
- toInternal?: Function;
1097
- toExternal?: Function;
1098
- values?: Set<any>;
1099
- externalName?: string;
1100
- env?: string[] | string;
1101
- additionalValues?: object;
1102
- };
1103
- gateway: {
1104
- type: string;
1105
- isKey: boolean;
1106
- writable: boolean;
1107
- mandatory: boolean;
1108
- collection: boolean;
1109
- constructor?: Function;
1110
- private?: boolean;
1111
- credential?: boolean;
1112
- persistent?: boolean;
1113
- depends?: string;
1114
- description?: string;
1115
- default?: any;
1116
- set?: Function;
1117
- get?: Function;
1118
- toInternal?: Function;
1119
- toExternal?: Function;
1120
- values?: Set<any>;
1121
- externalName?: string;
1122
- env?: string[] | string;
1123
- additionalValues?: object;
1124
- };
1125
- multicastDNS: import("pacc").AttributeDefinition;
1126
- };
1127
- };
1128
- owners: string[];
1129
- key: string;
1130
- attributes: {
1131
- arpbridge: {
1132
- type: string;
1133
- collection: boolean;
1134
- isKey: boolean;
1135
- writable: boolean;
1136
- mandatory: boolean;
1137
- constructor?: Function;
1138
- private?: boolean;
1139
- credential?: boolean;
1140
- persistent?: boolean;
1141
- depends?: string;
1142
- description?: string;
1143
- default?: any;
1144
- set?: Function;
1145
- get?: Function;
1146
- toInternal?: Function;
1147
- toExternal?: Function;
1148
- values?: Set<any>;
1149
- externalName?: string;
1150
- env?: string[] | string;
1151
- additionalValues?: object;
1152
- };
1153
- };
1154
- };
1155
- specializationOf: {
1156
- name: string;
1157
- owners: string[];
1158
- extends: typeof import("../base.mjs").Base;
1159
- specializations: {};
1160
- factoryFor(owner: any, value: any): any;
1161
- key: string;
1162
- attributes: {
1163
- services: {
1164
- collection: boolean;
1165
- type: string;
1166
- isKey: boolean;
1167
- writable: boolean;
1168
- mandatory: boolean;
1169
- constructor?: Function;
1170
- private?: boolean;
1171
- credential?: boolean;
1172
- persistent?: boolean;
1173
- depends?: string;
1174
- description?: string;
1175
- default?: any;
1176
- set?: Function;
1177
- get?: Function;
1178
- toInternal?: Function;
1179
- toExternal?: Function;
1180
- values?: Set<any>;
1181
- externalName?: string;
1182
- env?: string[] | string;
1183
- additionalValues?: object;
1184
- };
1185
- hostName: {
1186
- writable: boolean;
1187
- type: object;
1188
- isKey: boolean;
1189
- mandatory: boolean;
1190
- collection: boolean;
1191
- constructor?: Function;
1192
- private?: boolean;
1193
- credential?: boolean;
1194
- persistent?: boolean;
1195
- depends?: string;
1196
- description?: string;
1197
- default?: any;
1198
- set?: Function;
1199
- get?: Function;
1200
- toInternal?: Function;
1201
- toExternal?: Function;
1202
- values?: Set<any>;
1203
- externalName?: string;
1204
- env?: string[] | string;
1205
- additionalValues?: object;
1206
- };
1207
- ipAddresses: import("pacc").AttributeDefinition;
1208
- hwaddr: import("pacc").AttributeDefinition;
1209
- network: {
1210
- type: {
1211
- name: string;
1212
- owners: string[];
1213
- extends: {
1214
- name: string;
1215
- owners: string[];
1216
- extends: typeof import("../base.mjs").Base;
1217
- key: string;
1218
- attributes: {
1219
- networks: {
1220
- type: string;
1221
- collection: boolean;
1222
- isKey: boolean;
1223
- writable: boolean;
1224
- mandatory: boolean;
1225
- constructor?: Function;
1226
- private?: boolean;
1227
- credential?: boolean;
1228
- persistent?: boolean;
1229
- depends?: string;
1230
- description?: string;
1231
- default?: any;
1232
- set?: Function;
1233
- get?: Function;
1234
- toInternal?: Function;
1235
- toExternal?: Function;
1236
- values?: Set<any>;
1237
- externalName?: string;
1238
- env?: string[] | string;
1239
- additionalValues?: object;
1240
- };
1241
- hosts: {
1242
- type: string;
1243
- collection: boolean;
1244
- isKey: boolean;
1245
- writable: boolean;
1246
- mandatory: boolean;
1247
- constructor?: Function;
1248
- private?: boolean;
1249
- credential?: boolean;
1250
- persistent?: boolean;
1251
- depends?: string;
1252
- description?: string;
1253
- default?: any;
1254
- set?: Function;
1255
- get?: Function;
1256
- toInternal?: Function;
1257
- toExternal?: Function;
1258
- values?: Set<any>;
1259
- externalName?: string;
1260
- env?: string[] | string;
1261
- additionalValues?: object;
1262
- };
1263
- clusters: {
1264
- type: string;
1265
- collection: boolean;
1266
- isKey: boolean;
1267
- writable: boolean;
1268
- mandatory: boolean;
1269
- constructor?: Function;
1270
- private?: boolean;
1271
- credential?: boolean;
1272
- persistent?: boolean;
1273
- depends?: string;
1274
- description?: string;
1275
- default?: any;
1276
- set?: Function;
1277
- get?: Function;
1278
- toInternal?: Function;
1279
- toExternal?: Function;
1280
- values?: Set<any>;
1281
- externalName?: string;
1282
- env?: string[] | string;
1283
- additionalValues?: object;
1284
- };
1285
- subnets: {
1286
- type: {
1287
- name: string;
1288
- owners: string[];
1289
- constructWithIdentifierOnly: boolean;
1290
- key: string;
1291
- attributes: {
1292
- address: import("pacc").AttributeDefinition;
1293
- networks: {
1294
- type: string;
1295
- collection: boolean;
1296
- isKey: boolean;
1297
- writable: boolean;
1298
- mandatory: boolean;
1299
- constructor?: Function;
1300
- private?: boolean;
1301
- credential?: boolean;
1302
- persistent?: boolean;
1303
- depends?: string;
1304
- description?: string;
1305
- default?: any;
1306
- set?: Function;
1307
- get?: Function;
1308
- toInternal?: Function;
1309
- toExternal?: Function;
1310
- values?: Set<any>;
1311
- externalName?: string;
1312
- env?: string[] | string;
1313
- additionalValues?: object;
1314
- };
1315
- prefixLength: import("pacc").AttributeDefinition;
1316
- family: import("pacc").AttributeDefinition;
1317
- };
1318
- };
1319
- collection: boolean;
1320
- isKey: boolean;
1321
- writable: boolean;
1322
- mandatory: boolean;
1323
- constructor?: Function;
1324
- private?: boolean;
1325
- credential?: boolean;
1326
- persistent?: boolean;
1327
- depends?: string;
1328
- description?: string;
1329
- default?: any;
1330
- set?: Function;
1331
- get?: Function;
1332
- toInternal?: Function;
1333
- toExternal?: Function;
1334
- values?: Set<any>;
1335
- externalName?: string;
1336
- env?: string[] | string;
1337
- additionalValues?: object;
1338
- };
1339
- country: import("pacc").AttributeDefinition;
1340
- domain: import("pacc").AttributeDefinition;
1341
- domains: import("pacc").AttributeDefinition;
1342
- timezone: import("pacc").AttributeDefinition;
1343
- architectures: import("pacc").AttributeDefinition;
1344
- locales: import("pacc").AttributeDefinition;
1345
- administratorEmail: {
1346
- writable: boolean;
1347
- type: object;
1348
- isKey: boolean;
1349
- mandatory: boolean;
1350
- collection: boolean;
1351
- constructor?: Function;
1352
- private?: boolean;
1353
- credential?: boolean;
1354
- persistent?: boolean;
1355
- depends?: string;
1356
- description?: string;
1357
- default?: any;
1358
- set?: Function;
1359
- get?: Function;
1360
- toInternal?: Function;
1361
- toExternal?: Function;
1362
- values?: Set<any>;
1363
- externalName?: string;
1364
- env?: string[] | string;
1365
- additionalValues?: object;
1366
- };
1367
- template: {
1368
- private: boolean;
1369
- type: object;
1370
- isKey: boolean;
1371
- writable: boolean;
1372
- mandatory: boolean;
1373
- collection: boolean;
1374
- constructor?: Function;
1375
- credential?: boolean;
1376
- persistent?: boolean;
1377
- depends?: string;
1378
- description?: string;
1379
- default?: any;
1380
- set?: Function;
1381
- get?: Function;
1382
- toInternal?: Function;
1383
- toExternal?: Function;
1384
- values?: Set<any>;
1385
- externalName?: string;
1386
- env?: string[] | string;
1387
- additionalValues?: object;
1388
- };
1389
- };
1390
- };
1391
- key: string;
1392
- attributes: {
1393
- bridge: {
1394
- type: string;
1395
- collection: boolean;
1396
- isKey: boolean;
1397
- writable: boolean;
1398
- mandatory: boolean;
1399
- constructor?: Function;
1400
- private?: boolean;
1401
- credential?: boolean;
1402
- persistent?: boolean;
1403
- depends?: string;
1404
- description?: string;
1405
- default?: any;
1406
- set?: Function;
1407
- get?: Function;
1408
- toInternal?: Function;
1409
- toExternal?: Function;
1410
- values?: Set<any>;
1411
- externalName?: string;
1412
- env?: string[] | string;
1413
- additionalValues?: object;
1414
- };
1415
- gateway: {
1416
- type: string;
1417
- isKey: boolean;
1418
- writable: boolean;
1419
- mandatory: boolean;
1420
- collection: boolean;
1421
- constructor?: Function;
1422
- private?: boolean;
1423
- credential?: boolean;
1424
- persistent?: boolean;
1425
- depends?: string;
1426
- description?: string;
1427
- default?: any;
1428
- set?: Function;
1429
- get?: Function;
1430
- toInternal?: Function;
1431
- toExternal?: Function;
1432
- values?: Set<any>;
1433
- externalName?: string;
1434
- env?: string[] | string;
1435
- additionalValues?: object;
1436
- };
1437
- scope: {
1438
- values: string[];
1439
- type: object;
1440
- isKey: boolean;
1441
- writable: boolean;
1442
- mandatory: boolean;
1443
- collection: boolean;
1444
- constructor?: Function;
1445
- private?: boolean;
1446
- credential?: boolean;
1447
- persistent?: boolean;
1448
- depends?: string;
1449
- description?: string;
1450
- default?: any;
1451
- set?: Function;
1452
- get?: Function;
1453
- toInternal?: Function;
1454
- toExternal?: Function;
1455
- externalName?: string;
1456
- env?: string[] | string;
1457
- additionalValues?: object;
1458
- };
1459
- class: {
1460
- values: string[];
1461
- type: object;
1462
- isKey: boolean;
1463
- writable: boolean;
1464
- mandatory: boolean;
1465
- collection: boolean;
1466
- constructor?: Function;
1467
- private?: boolean;
1468
- credential?: boolean;
1469
- persistent?: boolean;
1470
- depends?: string;
1471
- description?: string;
1472
- default?: any;
1473
- set?: Function;
1474
- get?: Function;
1475
- toInternal?: Function;
1476
- toExternal?: Function;
1477
- externalName?: string;
1478
- env?: string[] | string;
1479
- additionalValues?: object;
1480
- };
1481
- kind: {
1482
- values: string[];
1483
- type: object;
1484
- isKey: boolean;
1485
- writable: boolean;
1486
- mandatory: boolean;
1487
- collection: boolean;
1488
- constructor?: Function;
1489
- private?: boolean;
1490
- credential?: boolean;
1491
- persistent?: boolean;
1492
- depends?: string;
1493
- description?: string;
1494
- default?: any;
1495
- set?: Function;
1496
- get?: Function;
1497
- toInternal?: Function;
1498
- toExternal?: Function;
1499
- externalName?: string;
1500
- env?: string[] | string;
1501
- additionalValues?: object;
1502
- };
1503
- ssid: import("pacc").AttributeDefinition;
1504
- psk: import("pacc").AttributeDefinition;
1505
- secretName: import("pacc").AttributeDefinition;
1506
- metric: {
1507
- type: object;
1508
- isKey: boolean;
1509
- writable: boolean;
1510
- mandatory: boolean;
1511
- collection: boolean;
1512
- constructor?: Function;
1513
- private?: boolean;
1514
- credential?: boolean;
1515
- persistent?: boolean;
1516
- depends?: string;
1517
- description?: string;
1518
- default?: any;
1519
- set?: Function;
1520
- get?: Function;
1521
- toInternal?: Function;
1522
- toExternal?: Function;
1523
- values?: Set<any>;
1524
- externalName?: string;
1525
- env?: string[] | string;
1526
- additionalValues?: object;
1527
- };
1528
- mtu: {
1529
- default: number;
1530
- type: object;
1531
- isKey: boolean;
1532
- writable: boolean;
1533
- mandatory: boolean;
1534
- collection: boolean;
1535
- constructor?: Function;
1536
- private?: boolean;
1537
- credential?: boolean;
1538
- persistent?: boolean;
1539
- depends?: string;
1540
- description?: string;
1541
- set?: Function;
1542
- get?: Function;
1543
- toInternal?: Function;
1544
- toExternal?: Function;
1545
- values?: Set<any>;
1546
- externalName?: string;
1547
- env?: string[] | string;
1548
- additionalValues?: object;
1549
- };
1550
- multicastDNS: import("pacc").AttributeDefinition;
1551
- };
1552
- };
1553
- isKey: boolean;
1554
- writable: boolean;
1555
- mandatory: boolean;
1556
- collection: boolean;
1557
- constructor?: Function;
1558
- private?: boolean;
1559
- credential?: boolean;
1560
- persistent?: boolean;
1561
- depends?: string;
1562
- description?: string;
1563
- default?: any;
1564
- set?: Function;
1565
- get?: Function;
1566
- toInternal?: Function;
1567
- toExternal?: Function;
1568
- values?: Set<any>;
1569
- externalName?: string;
1570
- env?: string[] | string;
1571
- additionalValues?: object;
1572
- };
1573
- destination: import("pacc").AttributeDefinition;
1574
- cidrAddresses: import("pacc").AttributeDefinition;
1575
- cidrAddress: import("pacc").AttributeDefinition;
1576
- addresses: import("pacc").AttributeDefinition;
1577
- address: import("pacc").AttributeDefinition;
1578
- scope: {
1579
- values: string[];
1580
- type: object;
1581
- isKey: boolean;
1582
- writable: boolean;
1583
- mandatory: boolean;
1584
- collection: boolean;
1585
- constructor?: Function;
1586
- private?: boolean;
1587
- credential?: boolean;
1588
- persistent?: boolean;
1589
- depends?: string;
1590
- description?: string;
1591
- default?: any;
1592
- set?: Function;
1593
- get?: Function;
1594
- toInternal?: Function;
1595
- toExternal?: Function;
1596
- externalName?: string;
1597
- env?: string[] | string;
1598
- additionalValues?: object;
1599
- };
1600
- class: {
1601
- values: string[];
1602
- type: object;
1603
- isKey: boolean;
1604
- writable: boolean;
1605
- mandatory: boolean;
1606
- collection: boolean;
1607
- constructor?: Function;
1608
- private?: boolean;
1609
- credential?: boolean;
1610
- persistent?: boolean;
1611
- depends?: string;
1612
- description?: string;
1613
- default?: any;
1614
- set?: Function;
1615
- get?: Function;
1616
- toInternal?: Function;
1617
- toExternal?: Function;
1618
- externalName?: string;
1619
- env?: string[] | string;
1620
- additionalValues?: object;
1621
- };
1622
- kind: {
1623
- values: string[];
1624
- type: object;
1625
- isKey: boolean;
1626
- writable: boolean;
1627
- mandatory: boolean;
1628
- collection: boolean;
1629
- constructor?: Function;
1630
- private?: boolean;
1631
- credential?: boolean;
1632
- persistent?: boolean;
1633
- depends?: string;
1634
- description?: string;
1635
- default?: any;
1636
- set?: Function;
1637
- get?: Function;
1638
- toInternal?: Function;
1639
- toExternal?: Function;
1640
- externalName?: string;
1641
- env?: string[] | string;
1642
- additionalValues?: object;
1643
- };
1644
- ssid: import("pacc").AttributeDefinition;
1645
- psk: import("pacc").AttributeDefinition;
1646
- secretName: import("pacc").AttributeDefinition;
1647
- metric: {
1648
- type: object;
1649
- isKey: boolean;
1650
- writable: boolean;
1651
- mandatory: boolean;
1652
- collection: boolean;
1653
- constructor?: Function;
1654
- private?: boolean;
1655
- credential?: boolean;
1656
- persistent?: boolean;
1657
- depends?: string;
1658
- description?: string;
1659
- default?: any;
1660
- set?: Function;
1661
- get?: Function;
1662
- toInternal?: Function;
1663
- toExternal?: Function;
1664
- values?: Set<any>;
1665
- externalName?: string;
1666
- env?: string[] | string;
1667
- additionalValues?: object;
1668
- };
1669
- mtu: {
1670
- default: number;
1671
- type: object;
1672
- isKey: boolean;
1673
- writable: boolean;
1674
- mandatory: boolean;
1675
- collection: boolean;
1676
- constructor?: Function;
1677
- private?: boolean;
1678
- credential?: boolean;
1679
- persistent?: boolean;
1680
- depends?: string;
1681
- description?: string;
1682
- set?: Function;
1683
- get?: Function;
1684
- toInternal?: Function;
1685
- toExternal?: Function;
1686
- values?: Set<any>;
1687
- externalName?: string;
1688
- env?: string[] | string;
1689
- additionalValues?: object;
1690
- };
1691
- gateway: {
1692
- type: string;
1693
- isKey: boolean;
1694
- writable: boolean;
1695
- mandatory: boolean;
1696
- collection: boolean;
1697
- constructor?: Function;
1698
- private?: boolean;
1699
- credential?: boolean;
1700
- persistent?: boolean;
1701
- depends?: string;
1702
- description?: string;
1703
- default?: any;
1704
- set?: Function;
1705
- get?: Function;
1706
- toInternal?: Function;
1707
- toExternal?: Function;
1708
- values?: Set<any>;
1709
- externalName?: string;
1710
- env?: string[] | string;
1711
- additionalValues?: object;
1712
- };
1713
- multicastDNS: import("pacc").AttributeDefinition;
1714
- };
1715
- };
1716
- owners: string[];
1717
- key: string;
1718
- attributes: {
1719
- ssid: import("pacc").AttributeDefinition;
1720
- psk: import("pacc").AttributeDefinition;
1721
- secretName: import("pacc").AttributeDefinition;
1722
- };
1723
- };
1724
- _ssid: any;
1725
- _psk: any;
1726
- _secretName: any;
1727
- set secretName(value: any);
1728
- get secretName(): any;
1729
- set ssid(value: any);
1730
- get ssid(): any;
1731
- set psk(value: any);
1732
- get psk(): any;
1733
- }
1734
- import { EthernetNetworkInterface } from "./ethernet.mjs";