pmcf 3.10.24 → 3.10.26
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.
- package/package.json +2 -2
- package/types/base.d.mts +2 -0
- package/types/cluster.d.mts +12 -0
- package/types/extra-source-service.d.mts +7 -0
- package/types/host.d.mts +8 -0
- package/types/location.d.mts +8 -0
- package/types/network-interfaces/ethernet.d.mts +34 -0
- package/types/network-interfaces/loopback.d.mts +34 -0
- package/types/network-interfaces/network-interface.d.mts +34 -0
- package/types/network-interfaces/tun.d.mts +34 -0
- package/types/network-interfaces/wireguard.d.mts +34 -0
- package/types/network-interfaces/wlan.d.mts +53 -0
- package/types/network-support.d.mts +9 -0
- package/types/network.d.mts +15 -0
- package/types/owner.d.mts +4 -0
- package/types/root.d.mts +8 -0
- package/types/service.d.mts +15 -0
- package/types/services/bind.d.mts +22 -0
- package/types/services/chrony.d.mts +14 -0
- package/types/services/headscale.d.mts +14 -0
- package/types/services/influxdb.d.mts +16 -0
- package/types/services/kea.d.mts +24 -0
- package/types/services/mosquitto.d.mts +18 -0
- package/types/services/openldap.d.mts +14 -0
- package/types/services/systemd-journal-remote.d.mts +14 -0
- package/types/services/systemd-journal-upload.d.mts +14 -0
- package/types/services/systemd-journal.d.mts +14 -0
- package/types/services/systemd-resolved.d.mts +14 -0
- package/types/services/systemd-timesyncd.d.mts +14 -0
|
@@ -28,6 +28,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
28
28
|
default?: any;
|
|
29
29
|
set?: Function;
|
|
30
30
|
get?: Function;
|
|
31
|
+
values?: Set<any>;
|
|
32
|
+
externalName?: string;
|
|
31
33
|
env?: string[] | string;
|
|
32
34
|
};
|
|
33
35
|
priority: import("pacc").AttributeDefinition;
|
|
@@ -57,6 +59,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
57
59
|
default?: any;
|
|
58
60
|
set?: Function;
|
|
59
61
|
get?: Function;
|
|
62
|
+
values?: Set<any>;
|
|
63
|
+
externalName?: string;
|
|
60
64
|
env?: string[] | string;
|
|
61
65
|
};
|
|
62
66
|
ipAddresses: {
|
|
@@ -71,6 +75,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
71
75
|
default?: any;
|
|
72
76
|
set?: Function;
|
|
73
77
|
get?: Function;
|
|
78
|
+
values?: Set<any>;
|
|
79
|
+
externalName?: string;
|
|
74
80
|
env?: string[] | string;
|
|
75
81
|
};
|
|
76
82
|
hwaddr: {
|
|
@@ -85,6 +91,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
85
91
|
default?: any;
|
|
86
92
|
set?: Function;
|
|
87
93
|
get?: Function;
|
|
94
|
+
values?: Set<any>;
|
|
95
|
+
externalName?: string;
|
|
88
96
|
env?: string[] | string;
|
|
89
97
|
};
|
|
90
98
|
network: {
|
|
@@ -104,6 +112,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
104
112
|
default?: any;
|
|
105
113
|
set?: Function;
|
|
106
114
|
get?: Function;
|
|
115
|
+
values?: Set<any>;
|
|
116
|
+
externalName?: string;
|
|
107
117
|
env?: string[] | string;
|
|
108
118
|
};
|
|
109
119
|
cidrAddresses: import("pacc").AttributeDefinition;
|
|
@@ -123,6 +133,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
123
133
|
default?: any;
|
|
124
134
|
set?: Function;
|
|
125
135
|
get?: Function;
|
|
136
|
+
externalName?: string;
|
|
126
137
|
env?: string[] | string;
|
|
127
138
|
};
|
|
128
139
|
class: {
|
|
@@ -138,6 +149,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
138
149
|
default?: any;
|
|
139
150
|
set?: Function;
|
|
140
151
|
get?: Function;
|
|
152
|
+
externalName?: string;
|
|
141
153
|
env?: string[] | string;
|
|
142
154
|
};
|
|
143
155
|
kind: {
|
|
@@ -153,6 +165,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
153
165
|
default?: any;
|
|
154
166
|
set?: Function;
|
|
155
167
|
get?: Function;
|
|
168
|
+
externalName?: string;
|
|
156
169
|
env?: string[] | string;
|
|
157
170
|
};
|
|
158
171
|
ssid: import("pacc").AttributeDefinition;
|
|
@@ -170,6 +183,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
170
183
|
default?: any;
|
|
171
184
|
set?: Function;
|
|
172
185
|
get?: Function;
|
|
186
|
+
values?: Set<any>;
|
|
187
|
+
externalName?: string;
|
|
173
188
|
env?: string[] | string;
|
|
174
189
|
};
|
|
175
190
|
mtu: {
|
|
@@ -184,6 +199,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
184
199
|
description?: string;
|
|
185
200
|
set?: Function;
|
|
186
201
|
get?: Function;
|
|
202
|
+
values?: Set<any>;
|
|
203
|
+
externalName?: string;
|
|
187
204
|
env?: string[] | string;
|
|
188
205
|
};
|
|
189
206
|
gateway: {
|
|
@@ -224,6 +241,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
224
241
|
default?: any;
|
|
225
242
|
set?: Function;
|
|
226
243
|
get?: Function;
|
|
244
|
+
values?: Set<any>;
|
|
245
|
+
externalName?: string;
|
|
227
246
|
env?: string[] | string;
|
|
228
247
|
};
|
|
229
248
|
priority: import("pacc").AttributeDefinition;
|
|
@@ -253,6 +272,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
253
272
|
default?: any;
|
|
254
273
|
set?: Function;
|
|
255
274
|
get?: Function;
|
|
275
|
+
values?: Set<any>;
|
|
276
|
+
externalName?: string;
|
|
256
277
|
env?: string[] | string;
|
|
257
278
|
};
|
|
258
279
|
ipAddresses: {
|
|
@@ -267,6 +288,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
267
288
|
default?: any;
|
|
268
289
|
set?: Function;
|
|
269
290
|
get?: Function;
|
|
291
|
+
values?: Set<any>;
|
|
292
|
+
externalName?: string;
|
|
270
293
|
env?: string[] | string;
|
|
271
294
|
};
|
|
272
295
|
hwaddr: {
|
|
@@ -281,6 +304,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
281
304
|
default?: any;
|
|
282
305
|
set?: Function;
|
|
283
306
|
get?: Function;
|
|
307
|
+
values?: Set<any>;
|
|
308
|
+
externalName?: string;
|
|
284
309
|
env?: string[] | string;
|
|
285
310
|
};
|
|
286
311
|
network: {
|
|
@@ -300,6 +325,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
300
325
|
default?: any;
|
|
301
326
|
set?: Function;
|
|
302
327
|
get?: Function;
|
|
328
|
+
values?: Set<any>;
|
|
329
|
+
externalName?: string;
|
|
303
330
|
env?: string[] | string;
|
|
304
331
|
};
|
|
305
332
|
cidrAddresses: import("pacc").AttributeDefinition;
|
|
@@ -319,6 +346,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
319
346
|
default?: any;
|
|
320
347
|
set?: Function;
|
|
321
348
|
get?: Function;
|
|
349
|
+
externalName?: string;
|
|
322
350
|
env?: string[] | string;
|
|
323
351
|
};
|
|
324
352
|
class: {
|
|
@@ -334,6 +362,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
334
362
|
default?: any;
|
|
335
363
|
set?: Function;
|
|
336
364
|
get?: Function;
|
|
365
|
+
externalName?: string;
|
|
337
366
|
env?: string[] | string;
|
|
338
367
|
};
|
|
339
368
|
kind: {
|
|
@@ -349,6 +378,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
349
378
|
default?: any;
|
|
350
379
|
set?: Function;
|
|
351
380
|
get?: Function;
|
|
381
|
+
externalName?: string;
|
|
352
382
|
env?: string[] | string;
|
|
353
383
|
};
|
|
354
384
|
ssid: import("pacc").AttributeDefinition;
|
|
@@ -366,6 +396,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
366
396
|
default?: any;
|
|
367
397
|
set?: Function;
|
|
368
398
|
get?: Function;
|
|
399
|
+
values?: Set<any>;
|
|
400
|
+
externalName?: string;
|
|
369
401
|
env?: string[] | string;
|
|
370
402
|
};
|
|
371
403
|
mtu: {
|
|
@@ -380,6 +412,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
380
412
|
description?: string;
|
|
381
413
|
set?: Function;
|
|
382
414
|
get?: Function;
|
|
415
|
+
values?: Set<any>;
|
|
416
|
+
externalName?: string;
|
|
383
417
|
env?: string[] | string;
|
|
384
418
|
};
|
|
385
419
|
gateway: {
|
|
@@ -418,6 +452,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
418
452
|
default?: any;
|
|
419
453
|
set?: Function;
|
|
420
454
|
get?: Function;
|
|
455
|
+
values?: Set<any>;
|
|
456
|
+
externalName?: string;
|
|
421
457
|
env?: string[] | string;
|
|
422
458
|
};
|
|
423
459
|
priority: import("pacc").AttributeDefinition;
|
|
@@ -447,6 +483,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
447
483
|
default?: any;
|
|
448
484
|
set?: Function;
|
|
449
485
|
get?: Function;
|
|
486
|
+
values?: Set<any>;
|
|
487
|
+
externalName?: string;
|
|
450
488
|
env?: string[] | string;
|
|
451
489
|
};
|
|
452
490
|
ipAddresses: {
|
|
@@ -461,6 +499,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
461
499
|
default?: any;
|
|
462
500
|
set?: Function;
|
|
463
501
|
get?: Function;
|
|
502
|
+
values?: Set<any>;
|
|
503
|
+
externalName?: string;
|
|
464
504
|
env?: string[] | string;
|
|
465
505
|
};
|
|
466
506
|
hwaddr: {
|
|
@@ -475,6 +515,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
475
515
|
default?: any;
|
|
476
516
|
set?: Function;
|
|
477
517
|
get?: Function;
|
|
518
|
+
values?: Set<any>;
|
|
519
|
+
externalName?: string;
|
|
478
520
|
env?: string[] | string;
|
|
479
521
|
};
|
|
480
522
|
network: {
|
|
@@ -494,6 +536,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
494
536
|
default?: any;
|
|
495
537
|
set?: Function;
|
|
496
538
|
get?: Function;
|
|
539
|
+
values?: Set<any>;
|
|
540
|
+
externalName?: string;
|
|
497
541
|
env?: string[] | string;
|
|
498
542
|
};
|
|
499
543
|
cidrAddresses: import("pacc").AttributeDefinition;
|
|
@@ -513,6 +557,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
513
557
|
default?: any;
|
|
514
558
|
set?: Function;
|
|
515
559
|
get?: Function;
|
|
560
|
+
externalName?: string;
|
|
516
561
|
env?: string[] | string;
|
|
517
562
|
};
|
|
518
563
|
class: {
|
|
@@ -528,6 +573,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
528
573
|
default?: any;
|
|
529
574
|
set?: Function;
|
|
530
575
|
get?: Function;
|
|
576
|
+
externalName?: string;
|
|
531
577
|
env?: string[] | string;
|
|
532
578
|
};
|
|
533
579
|
kind: {
|
|
@@ -543,6 +589,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
543
589
|
default?: any;
|
|
544
590
|
set?: Function;
|
|
545
591
|
get?: Function;
|
|
592
|
+
externalName?: string;
|
|
546
593
|
env?: string[] | string;
|
|
547
594
|
};
|
|
548
595
|
ssid: import("pacc").AttributeDefinition;
|
|
@@ -560,6 +607,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
560
607
|
default?: any;
|
|
561
608
|
set?: Function;
|
|
562
609
|
get?: Function;
|
|
610
|
+
values?: Set<any>;
|
|
611
|
+
externalName?: string;
|
|
563
612
|
env?: string[] | string;
|
|
564
613
|
};
|
|
565
614
|
mtu: {
|
|
@@ -574,6 +623,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
574
623
|
description?: string;
|
|
575
624
|
set?: Function;
|
|
576
625
|
get?: Function;
|
|
626
|
+
values?: Set<any>;
|
|
627
|
+
externalName?: string;
|
|
577
628
|
env?: string[] | string;
|
|
578
629
|
};
|
|
579
630
|
gateway: {
|
|
@@ -608,6 +659,8 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
608
659
|
default?: any;
|
|
609
660
|
set?: Function;
|
|
610
661
|
get?: Function;
|
|
662
|
+
values?: Set<any>;
|
|
663
|
+
externalName?: string;
|
|
611
664
|
env?: string[] | string;
|
|
612
665
|
};
|
|
613
666
|
secretName: import("pacc").AttributeDefinition;
|
|
@@ -13,6 +13,7 @@ export namespace networkAttributes {
|
|
|
13
13
|
default?: any;
|
|
14
14
|
set?: Function;
|
|
15
15
|
get?: Function;
|
|
16
|
+
externalName?: string;
|
|
16
17
|
env?: string[] | string;
|
|
17
18
|
};
|
|
18
19
|
let _class: {
|
|
@@ -28,6 +29,7 @@ export namespace networkAttributes {
|
|
|
28
29
|
default?: any;
|
|
29
30
|
set?: Function;
|
|
30
31
|
get?: Function;
|
|
32
|
+
externalName?: string;
|
|
31
33
|
env?: string[] | string;
|
|
32
34
|
};
|
|
33
35
|
export { _class as class };
|
|
@@ -44,6 +46,7 @@ export namespace networkAttributes {
|
|
|
44
46
|
default?: any;
|
|
45
47
|
set?: Function;
|
|
46
48
|
get?: Function;
|
|
49
|
+
externalName?: string;
|
|
47
50
|
env?: string[] | string;
|
|
48
51
|
};
|
|
49
52
|
export { string_attribute_writable as ssid };
|
|
@@ -61,6 +64,8 @@ export namespace networkAttributes {
|
|
|
61
64
|
default?: any;
|
|
62
65
|
set?: Function;
|
|
63
66
|
get?: Function;
|
|
67
|
+
values?: Set<any>;
|
|
68
|
+
externalName?: string;
|
|
64
69
|
env?: string[] | string;
|
|
65
70
|
};
|
|
66
71
|
export let mtu: {
|
|
@@ -75,6 +80,8 @@ export namespace networkAttributes {
|
|
|
75
80
|
description?: string;
|
|
76
81
|
set?: Function;
|
|
77
82
|
get?: Function;
|
|
83
|
+
values?: Set<any>;
|
|
84
|
+
externalName?: string;
|
|
78
85
|
env?: string[] | string;
|
|
79
86
|
};
|
|
80
87
|
export namespace gateway {
|
|
@@ -97,6 +104,8 @@ export namespace networkAddressAttributes {
|
|
|
97
104
|
default?: any;
|
|
98
105
|
set?: Function;
|
|
99
106
|
get?: Function;
|
|
107
|
+
values?: Set<any>;
|
|
108
|
+
externalName?: string;
|
|
100
109
|
env?: string[] | string;
|
|
101
110
|
};
|
|
102
111
|
export { string_collection_attribute_writable as cidrAddresses };
|
package/types/network.d.mts
CHANGED
|
@@ -30,6 +30,8 @@ export class Network extends Owner {
|
|
|
30
30
|
default?: any;
|
|
31
31
|
set?: Function;
|
|
32
32
|
get?: Function;
|
|
33
|
+
values?: Set<any>;
|
|
34
|
+
externalName?: string;
|
|
33
35
|
env?: string[] | string;
|
|
34
36
|
};
|
|
35
37
|
priority: import("pacc").AttributeDefinition;
|
|
@@ -93,6 +95,8 @@ export class Network extends Owner {
|
|
|
93
95
|
default?: any;
|
|
94
96
|
set?: Function;
|
|
95
97
|
get?: Function;
|
|
98
|
+
values?: Set<any>;
|
|
99
|
+
externalName?: string;
|
|
96
100
|
env?: string[] | string;
|
|
97
101
|
};
|
|
98
102
|
};
|
|
@@ -110,6 +114,8 @@ export class Network extends Owner {
|
|
|
110
114
|
default?: any;
|
|
111
115
|
set?: Function;
|
|
112
116
|
get?: Function;
|
|
117
|
+
values?: Set<any>;
|
|
118
|
+
externalName?: string;
|
|
113
119
|
env?: string[] | string;
|
|
114
120
|
};
|
|
115
121
|
gateway: {
|
|
@@ -124,6 +130,8 @@ export class Network extends Owner {
|
|
|
124
130
|
default?: any;
|
|
125
131
|
set?: Function;
|
|
126
132
|
get?: Function;
|
|
133
|
+
values?: Set<any>;
|
|
134
|
+
externalName?: string;
|
|
127
135
|
env?: string[] | string;
|
|
128
136
|
};
|
|
129
137
|
scope: {
|
|
@@ -139,6 +147,7 @@ export class Network extends Owner {
|
|
|
139
147
|
default?: any;
|
|
140
148
|
set?: Function;
|
|
141
149
|
get?: Function;
|
|
150
|
+
externalName?: string;
|
|
142
151
|
env?: string[] | string;
|
|
143
152
|
};
|
|
144
153
|
class: {
|
|
@@ -154,6 +163,7 @@ export class Network extends Owner {
|
|
|
154
163
|
default?: any;
|
|
155
164
|
set?: Function;
|
|
156
165
|
get?: Function;
|
|
166
|
+
externalName?: string;
|
|
157
167
|
env?: string[] | string;
|
|
158
168
|
};
|
|
159
169
|
kind: {
|
|
@@ -169,6 +179,7 @@ export class Network extends Owner {
|
|
|
169
179
|
default?: any;
|
|
170
180
|
set?: Function;
|
|
171
181
|
get?: Function;
|
|
182
|
+
externalName?: string;
|
|
172
183
|
env?: string[] | string;
|
|
173
184
|
};
|
|
174
185
|
ssid: import("pacc").AttributeDefinition;
|
|
@@ -186,6 +197,8 @@ export class Network extends Owner {
|
|
|
186
197
|
default?: any;
|
|
187
198
|
set?: Function;
|
|
188
199
|
get?: Function;
|
|
200
|
+
values?: Set<any>;
|
|
201
|
+
externalName?: string;
|
|
189
202
|
env?: string[] | string;
|
|
190
203
|
};
|
|
191
204
|
mtu: {
|
|
@@ -200,6 +213,8 @@ export class Network extends Owner {
|
|
|
200
213
|
description?: string;
|
|
201
214
|
set?: Function;
|
|
202
215
|
get?: Function;
|
|
216
|
+
values?: Set<any>;
|
|
217
|
+
externalName?: string;
|
|
203
218
|
env?: string[] | string;
|
|
204
219
|
};
|
|
205
220
|
multicastDNS: import("pacc").AttributeDefinition;
|
package/types/owner.d.mts
CHANGED
|
@@ -26,6 +26,8 @@ export class Owner extends Base {
|
|
|
26
26
|
default?: any;
|
|
27
27
|
set?: Function;
|
|
28
28
|
get?: Function;
|
|
29
|
+
values?: Set<any>;
|
|
30
|
+
externalName?: string;
|
|
29
31
|
env?: string[] | string;
|
|
30
32
|
};
|
|
31
33
|
priority: import("pacc").AttributeDefinition;
|
|
@@ -89,6 +91,8 @@ export class Owner extends Base {
|
|
|
89
91
|
default?: any;
|
|
90
92
|
set?: Function;
|
|
91
93
|
get?: Function;
|
|
94
|
+
values?: Set<any>;
|
|
95
|
+
externalName?: string;
|
|
92
96
|
env?: string[] | string;
|
|
93
97
|
};
|
|
94
98
|
};
|
package/types/root.d.mts
CHANGED
|
@@ -32,6 +32,8 @@ export class Root extends Location {
|
|
|
32
32
|
default?: any;
|
|
33
33
|
set?: Function;
|
|
34
34
|
get?: Function;
|
|
35
|
+
values?: Set<any>;
|
|
36
|
+
externalName?: string;
|
|
35
37
|
env?: string[] | string;
|
|
36
38
|
};
|
|
37
39
|
priority: import("pacc").AttributeDefinition;
|
|
@@ -95,6 +97,8 @@ export class Root extends Location {
|
|
|
95
97
|
default?: any;
|
|
96
98
|
set?: Function;
|
|
97
99
|
get?: Function;
|
|
100
|
+
values?: Set<any>;
|
|
101
|
+
externalName?: string;
|
|
98
102
|
env?: string[] | string;
|
|
99
103
|
};
|
|
100
104
|
};
|
|
@@ -127,6 +131,8 @@ export class Root extends Location {
|
|
|
127
131
|
default?: any;
|
|
128
132
|
set?: Function;
|
|
129
133
|
get?: Function;
|
|
134
|
+
values?: Set<any>;
|
|
135
|
+
externalName?: string;
|
|
130
136
|
env?: string[] | string;
|
|
131
137
|
};
|
|
132
138
|
priority: import("pacc").AttributeDefinition;
|
|
@@ -190,6 +196,8 @@ export class Root extends Location {
|
|
|
190
196
|
default?: any;
|
|
191
197
|
set?: Function;
|
|
192
198
|
get?: Function;
|
|
199
|
+
values?: Set<any>;
|
|
200
|
+
externalName?: string;
|
|
193
201
|
env?: string[] | string;
|
|
194
202
|
};
|
|
195
203
|
};
|
package/types/service.d.mts
CHANGED
|
@@ -31,6 +31,7 @@ export namespace endpointAttributes {
|
|
|
31
31
|
default?: any;
|
|
32
32
|
set?: Function;
|
|
33
33
|
get?: Function;
|
|
34
|
+
externalName?: string;
|
|
34
35
|
env?: string[] | string;
|
|
35
36
|
};
|
|
36
37
|
export { string_attribute_writable as type };
|
|
@@ -74,6 +75,8 @@ export namespace ServiceTypeDefinition {
|
|
|
74
75
|
default?: any;
|
|
75
76
|
set?: Function;
|
|
76
77
|
get?: Function;
|
|
78
|
+
values?: Set<any>;
|
|
79
|
+
externalName?: string;
|
|
77
80
|
env?: string[] | string;
|
|
78
81
|
};
|
|
79
82
|
priority: import("pacc").AttributeDefinition;
|
|
@@ -101,6 +104,8 @@ export namespace ServiceTypeDefinition {
|
|
|
101
104
|
default?: any;
|
|
102
105
|
set?: Function;
|
|
103
106
|
get?: Function;
|
|
107
|
+
values?: Set<any>;
|
|
108
|
+
externalName?: string;
|
|
104
109
|
env?: string[] | string;
|
|
105
110
|
};
|
|
106
111
|
systemd: import("pacc").AttributeDefinition;
|
|
@@ -118,6 +123,7 @@ export namespace ServiceTypeDefinition {
|
|
|
118
123
|
default?: any;
|
|
119
124
|
set?: Function;
|
|
120
125
|
get?: Function;
|
|
126
|
+
externalName?: string;
|
|
121
127
|
env?: string[] | string;
|
|
122
128
|
};
|
|
123
129
|
type: import("pacc").AttributeDefinition;
|
|
@@ -135,6 +141,8 @@ export namespace ServiceTypeDefinition {
|
|
|
135
141
|
default?: any;
|
|
136
142
|
set?: Function;
|
|
137
143
|
get?: Function;
|
|
144
|
+
values?: Set<any>;
|
|
145
|
+
externalName?: string;
|
|
138
146
|
env?: string[] | string;
|
|
139
147
|
};
|
|
140
148
|
cidrAddresses: import("pacc").AttributeDefinition;
|
|
@@ -171,6 +179,8 @@ export class Service extends Base {
|
|
|
171
179
|
default?: any;
|
|
172
180
|
set?: Function;
|
|
173
181
|
get?: Function;
|
|
182
|
+
values?: Set<any>;
|
|
183
|
+
externalName?: string;
|
|
174
184
|
env?: string[] | string;
|
|
175
185
|
};
|
|
176
186
|
priority: import("pacc").AttributeDefinition;
|
|
@@ -196,6 +206,8 @@ export class Service extends Base {
|
|
|
196
206
|
default?: any;
|
|
197
207
|
set?: Function;
|
|
198
208
|
get?: Function;
|
|
209
|
+
values?: Set<any>;
|
|
210
|
+
externalName?: string;
|
|
199
211
|
env?: string[] | string;
|
|
200
212
|
};
|
|
201
213
|
systemd: import("pacc").AttributeDefinition;
|
|
@@ -213,6 +225,7 @@ export class Service extends Base {
|
|
|
213
225
|
default?: any;
|
|
214
226
|
set?: Function;
|
|
215
227
|
get?: Function;
|
|
228
|
+
externalName?: string;
|
|
216
229
|
env?: string[] | string;
|
|
217
230
|
};
|
|
218
231
|
type: import("pacc").AttributeDefinition;
|
|
@@ -230,6 +243,8 @@ export class Service extends Base {
|
|
|
230
243
|
default?: any;
|
|
231
244
|
set?: Function;
|
|
232
245
|
get?: Function;
|
|
246
|
+
values?: Set<any>;
|
|
247
|
+
externalName?: string;
|
|
233
248
|
env?: string[] | string;
|
|
234
249
|
};
|
|
235
250
|
cidrAddresses: import("pacc").AttributeDefinition;
|
|
@@ -28,6 +28,8 @@ export class BindService extends ExtraSourceService {
|
|
|
28
28
|
default?: any;
|
|
29
29
|
set?: Function;
|
|
30
30
|
get?: Function;
|
|
31
|
+
values?: Set<any>;
|
|
32
|
+
externalName?: string;
|
|
31
33
|
env?: string[] | string;
|
|
32
34
|
};
|
|
33
35
|
priority: import("pacc").AttributeDefinition;
|
|
@@ -53,6 +55,8 @@ export class BindService extends ExtraSourceService {
|
|
|
53
55
|
default?: any;
|
|
54
56
|
set?: Function;
|
|
55
57
|
get?: Function;
|
|
58
|
+
values?: Set<any>;
|
|
59
|
+
externalName?: string;
|
|
56
60
|
env?: string[] | string;
|
|
57
61
|
};
|
|
58
62
|
systemd: import("pacc").AttributeDefinition;
|
|
@@ -70,6 +74,7 @@ export class BindService extends ExtraSourceService {
|
|
|
70
74
|
default?: any;
|
|
71
75
|
set?: Function;
|
|
72
76
|
get?: Function;
|
|
77
|
+
externalName?: string;
|
|
73
78
|
env?: string[] | string;
|
|
74
79
|
};
|
|
75
80
|
type: import("pacc").AttributeDefinition;
|
|
@@ -87,6 +92,8 @@ export class BindService extends ExtraSourceService {
|
|
|
87
92
|
default?: any;
|
|
88
93
|
set?: Function;
|
|
89
94
|
get?: Function;
|
|
95
|
+
values?: Set<any>;
|
|
96
|
+
externalName?: string;
|
|
90
97
|
env?: string[] | string;
|
|
91
98
|
};
|
|
92
99
|
cidrAddresses: import("pacc").AttributeDefinition;
|
|
@@ -126,6 +133,8 @@ export class BindService extends ExtraSourceService {
|
|
|
126
133
|
default?: any;
|
|
127
134
|
set?: Function;
|
|
128
135
|
get?: Function;
|
|
136
|
+
values?: Set<any>;
|
|
137
|
+
externalName?: string;
|
|
129
138
|
env?: string[] | string;
|
|
130
139
|
};
|
|
131
140
|
priority: import("pacc").AttributeDefinition;
|
|
@@ -151,6 +160,8 @@ export class BindService extends ExtraSourceService {
|
|
|
151
160
|
default?: any;
|
|
152
161
|
set?: Function;
|
|
153
162
|
get?: Function;
|
|
163
|
+
values?: Set<any>;
|
|
164
|
+
externalName?: string;
|
|
154
165
|
env?: string[] | string;
|
|
155
166
|
};
|
|
156
167
|
systemd: import("pacc").AttributeDefinition;
|
|
@@ -168,6 +179,7 @@ export class BindService extends ExtraSourceService {
|
|
|
168
179
|
default?: any;
|
|
169
180
|
set?: Function;
|
|
170
181
|
get?: Function;
|
|
182
|
+
externalName?: string;
|
|
171
183
|
env?: string[] | string;
|
|
172
184
|
};
|
|
173
185
|
type: import("pacc").AttributeDefinition;
|
|
@@ -185,6 +197,8 @@ export class BindService extends ExtraSourceService {
|
|
|
185
197
|
default?: any;
|
|
186
198
|
set?: Function;
|
|
187
199
|
get?: Function;
|
|
200
|
+
values?: Set<any>;
|
|
201
|
+
externalName?: string;
|
|
188
202
|
env?: string[] | string;
|
|
189
203
|
};
|
|
190
204
|
cidrAddresses: import("pacc").AttributeDefinition;
|
|
@@ -249,6 +263,8 @@ export class BindService extends ExtraSourceService {
|
|
|
249
263
|
description?: string;
|
|
250
264
|
set?: Function;
|
|
251
265
|
get?: Function;
|
|
266
|
+
values?: Set<any>;
|
|
267
|
+
externalName?: string;
|
|
252
268
|
env?: string[] | string;
|
|
253
269
|
};
|
|
254
270
|
retry: {
|
|
@@ -263,6 +279,8 @@ export class BindService extends ExtraSourceService {
|
|
|
263
279
|
description?: string;
|
|
264
280
|
set?: Function;
|
|
265
281
|
get?: Function;
|
|
282
|
+
values?: Set<any>;
|
|
283
|
+
externalName?: string;
|
|
266
284
|
env?: string[] | string;
|
|
267
285
|
};
|
|
268
286
|
expire: {
|
|
@@ -277,6 +295,8 @@ export class BindService extends ExtraSourceService {
|
|
|
277
295
|
description?: string;
|
|
278
296
|
set?: Function;
|
|
279
297
|
get?: Function;
|
|
298
|
+
values?: Set<any>;
|
|
299
|
+
externalName?: string;
|
|
280
300
|
env?: string[] | string;
|
|
281
301
|
};
|
|
282
302
|
minimum: {
|
|
@@ -291,6 +311,8 @@ export class BindService extends ExtraSourceService {
|
|
|
291
311
|
description?: string;
|
|
292
312
|
set?: Function;
|
|
293
313
|
get?: Function;
|
|
314
|
+
values?: Set<any>;
|
|
315
|
+
externalName?: string;
|
|
294
316
|
env?: string[] | string;
|
|
295
317
|
};
|
|
296
318
|
allowedUpdates: import("pacc").AttributeDefinition;
|
|
@@ -28,6 +28,8 @@ export class ChronyService extends ExtraSourceService {
|
|
|
28
28
|
default?: any;
|
|
29
29
|
set?: Function;
|
|
30
30
|
get?: Function;
|
|
31
|
+
values?: Set<any>;
|
|
32
|
+
externalName?: string;
|
|
31
33
|
env?: string[] | string;
|
|
32
34
|
};
|
|
33
35
|
priority: import("pacc").AttributeDefinition;
|
|
@@ -53,6 +55,8 @@ export class ChronyService extends ExtraSourceService {
|
|
|
53
55
|
default?: any;
|
|
54
56
|
set?: Function;
|
|
55
57
|
get?: Function;
|
|
58
|
+
values?: Set<any>;
|
|
59
|
+
externalName?: string;
|
|
56
60
|
env?: string[] | string;
|
|
57
61
|
};
|
|
58
62
|
systemd: import("pacc").AttributeDefinition;
|
|
@@ -70,6 +74,7 @@ export class ChronyService extends ExtraSourceService {
|
|
|
70
74
|
default?: any;
|
|
71
75
|
set?: Function;
|
|
72
76
|
get?: Function;
|
|
77
|
+
externalName?: string;
|
|
73
78
|
env?: string[] | string;
|
|
74
79
|
};
|
|
75
80
|
type: import("pacc").AttributeDefinition;
|
|
@@ -87,6 +92,8 @@ export class ChronyService extends ExtraSourceService {
|
|
|
87
92
|
default?: any;
|
|
88
93
|
set?: Function;
|
|
89
94
|
get?: Function;
|
|
95
|
+
values?: Set<any>;
|
|
96
|
+
externalName?: string;
|
|
90
97
|
env?: string[] | string;
|
|
91
98
|
};
|
|
92
99
|
cidrAddresses: import("pacc").AttributeDefinition;
|
|
@@ -126,6 +133,8 @@ export class ChronyService extends ExtraSourceService {
|
|
|
126
133
|
default?: any;
|
|
127
134
|
set?: Function;
|
|
128
135
|
get?: Function;
|
|
136
|
+
values?: Set<any>;
|
|
137
|
+
externalName?: string;
|
|
129
138
|
env?: string[] | string;
|
|
130
139
|
};
|
|
131
140
|
priority: import("pacc").AttributeDefinition;
|
|
@@ -151,6 +160,8 @@ export class ChronyService extends ExtraSourceService {
|
|
|
151
160
|
default?: any;
|
|
152
161
|
set?: Function;
|
|
153
162
|
get?: Function;
|
|
163
|
+
values?: Set<any>;
|
|
164
|
+
externalName?: string;
|
|
154
165
|
env?: string[] | string;
|
|
155
166
|
};
|
|
156
167
|
systemd: import("pacc").AttributeDefinition;
|
|
@@ -168,6 +179,7 @@ export class ChronyService extends ExtraSourceService {
|
|
|
168
179
|
default?: any;
|
|
169
180
|
set?: Function;
|
|
170
181
|
get?: Function;
|
|
182
|
+
externalName?: string;
|
|
171
183
|
env?: string[] | string;
|
|
172
184
|
};
|
|
173
185
|
type: import("pacc").AttributeDefinition;
|
|
@@ -185,6 +197,8 @@ export class ChronyService extends ExtraSourceService {
|
|
|
185
197
|
default?: any;
|
|
186
198
|
set?: Function;
|
|
187
199
|
get?: Function;
|
|
200
|
+
values?: Set<any>;
|
|
201
|
+
externalName?: string;
|
|
188
202
|
env?: string[] | string;
|
|
189
203
|
};
|
|
190
204
|
cidrAddresses: import("pacc").AttributeDefinition;
|