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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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;
|
|
@@ -28,6 +28,8 @@ export class InfluxdbService extends Service {
|
|
|
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 InfluxdbService extends Service {
|
|
|
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 InfluxdbService extends Service {
|
|
|
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 InfluxdbService extends Service {
|
|
|
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;
|
|
@@ -123,6 +130,8 @@ export class InfluxdbService extends Service {
|
|
|
123
130
|
default?: any;
|
|
124
131
|
set?: Function;
|
|
125
132
|
get?: Function;
|
|
133
|
+
values?: Set<any>;
|
|
134
|
+
externalName?: string;
|
|
126
135
|
env?: string[] | string;
|
|
127
136
|
};
|
|
128
137
|
priority: import("pacc").AttributeDefinition;
|
|
@@ -148,6 +157,8 @@ export class InfluxdbService extends Service {
|
|
|
148
157
|
default?: any;
|
|
149
158
|
set?: Function;
|
|
150
159
|
get?: Function;
|
|
160
|
+
values?: Set<any>;
|
|
161
|
+
externalName?: string;
|
|
151
162
|
env?: string[] | string;
|
|
152
163
|
};
|
|
153
164
|
systemd: import("pacc").AttributeDefinition;
|
|
@@ -165,6 +176,7 @@ export class InfluxdbService extends Service {
|
|
|
165
176
|
default?: any;
|
|
166
177
|
set?: Function;
|
|
167
178
|
get?: Function;
|
|
179
|
+
externalName?: string;
|
|
168
180
|
env?: string[] | string;
|
|
169
181
|
};
|
|
170
182
|
type: import("pacc").AttributeDefinition;
|
|
@@ -182,6 +194,8 @@ export class InfluxdbService extends Service {
|
|
|
182
194
|
default?: any;
|
|
183
195
|
set?: Function;
|
|
184
196
|
get?: Function;
|
|
197
|
+
values?: Set<any>;
|
|
198
|
+
externalName?: string;
|
|
185
199
|
env?: string[] | string;
|
|
186
200
|
};
|
|
187
201
|
cidrAddresses: import("pacc").AttributeDefinition;
|
|
@@ -205,6 +219,8 @@ export class InfluxdbService extends Service {
|
|
|
205
219
|
default?: any;
|
|
206
220
|
set?: Function;
|
|
207
221
|
get?: Function;
|
|
222
|
+
values?: Set<any>;
|
|
223
|
+
externalName?: string;
|
|
208
224
|
env?: string[] | string;
|
|
209
225
|
};
|
|
210
226
|
};
|
package/types/services/kea.d.mts
CHANGED
|
@@ -28,6 +28,8 @@ export class KeaService extends Service {
|
|
|
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 KeaService extends Service {
|
|
|
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 KeaService extends Service {
|
|
|
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 KeaService extends Service {
|
|
|
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;
|
|
@@ -123,6 +130,8 @@ export class KeaService extends Service {
|
|
|
123
130
|
default?: any;
|
|
124
131
|
set?: Function;
|
|
125
132
|
get?: Function;
|
|
133
|
+
values?: Set<any>;
|
|
134
|
+
externalName?: string;
|
|
126
135
|
env?: string[] | string;
|
|
127
136
|
};
|
|
128
137
|
priority: import("pacc").AttributeDefinition;
|
|
@@ -148,6 +157,8 @@ export class KeaService extends Service {
|
|
|
148
157
|
default?: any;
|
|
149
158
|
set?: Function;
|
|
150
159
|
get?: Function;
|
|
160
|
+
values?: Set<any>;
|
|
161
|
+
externalName?: string;
|
|
151
162
|
env?: string[] | string;
|
|
152
163
|
};
|
|
153
164
|
systemd: import("pacc").AttributeDefinition;
|
|
@@ -165,6 +176,7 @@ export class KeaService extends Service {
|
|
|
165
176
|
default?: any;
|
|
166
177
|
set?: Function;
|
|
167
178
|
get?: Function;
|
|
179
|
+
externalName?: string;
|
|
168
180
|
env?: string[] | string;
|
|
169
181
|
};
|
|
170
182
|
type: import("pacc").AttributeDefinition;
|
|
@@ -182,6 +194,8 @@ export class KeaService extends Service {
|
|
|
182
194
|
default?: any;
|
|
183
195
|
set?: Function;
|
|
184
196
|
get?: Function;
|
|
197
|
+
values?: Set<any>;
|
|
198
|
+
externalName?: string;
|
|
185
199
|
env?: string[] | string;
|
|
186
200
|
};
|
|
187
201
|
cidrAddresses: import("pacc").AttributeDefinition;
|
|
@@ -205,6 +219,8 @@ export class KeaService extends Service {
|
|
|
205
219
|
default?: any;
|
|
206
220
|
set?: Function;
|
|
207
221
|
get?: Function;
|
|
222
|
+
values?: Set<any>;
|
|
223
|
+
externalName?: string;
|
|
208
224
|
env?: string[] | string;
|
|
209
225
|
};
|
|
210
226
|
"renew-timer": {
|
|
@@ -220,6 +236,8 @@ export class KeaService extends Service {
|
|
|
220
236
|
description?: string;
|
|
221
237
|
set?: Function;
|
|
222
238
|
get?: Function;
|
|
239
|
+
values?: Set<any>;
|
|
240
|
+
externalName?: string;
|
|
223
241
|
env?: string[] | string;
|
|
224
242
|
};
|
|
225
243
|
"rebind-timer": {
|
|
@@ -235,6 +253,8 @@ export class KeaService extends Service {
|
|
|
235
253
|
description?: string;
|
|
236
254
|
set?: Function;
|
|
237
255
|
get?: Function;
|
|
256
|
+
values?: Set<any>;
|
|
257
|
+
externalName?: string;
|
|
238
258
|
env?: string[] | string;
|
|
239
259
|
};
|
|
240
260
|
"valid-lifetime": {
|
|
@@ -250,6 +270,8 @@ export class KeaService extends Service {
|
|
|
250
270
|
description?: string;
|
|
251
271
|
set?: Function;
|
|
252
272
|
get?: Function;
|
|
273
|
+
values?: Set<any>;
|
|
274
|
+
externalName?: string;
|
|
253
275
|
env?: string[] | string;
|
|
254
276
|
};
|
|
255
277
|
"ddns-conflict-resolution-mode": {
|
|
@@ -265,6 +287,8 @@ export class KeaService extends Service {
|
|
|
265
287
|
default?: any;
|
|
266
288
|
set?: Function;
|
|
267
289
|
get?: Function;
|
|
290
|
+
values?: Set<any>;
|
|
291
|
+
externalName?: string;
|
|
268
292
|
env?: string[] | string;
|
|
269
293
|
};
|
|
270
294
|
};
|
|
@@ -28,6 +28,8 @@ export class MosquittoService extends Service {
|
|
|
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 MosquittoService extends Service {
|
|
|
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 MosquittoService extends Service {
|
|
|
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 MosquittoService extends Service {
|
|
|
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;
|
|
@@ -123,6 +130,8 @@ export class MosquittoService extends Service {
|
|
|
123
130
|
default?: any;
|
|
124
131
|
set?: Function;
|
|
125
132
|
get?: Function;
|
|
133
|
+
values?: Set<any>;
|
|
134
|
+
externalName?: string;
|
|
126
135
|
env?: string[] | string;
|
|
127
136
|
};
|
|
128
137
|
priority: import("pacc").AttributeDefinition;
|
|
@@ -148,6 +157,8 @@ export class MosquittoService extends Service {
|
|
|
148
157
|
default?: any;
|
|
149
158
|
set?: Function;
|
|
150
159
|
get?: Function;
|
|
160
|
+
values?: Set<any>;
|
|
161
|
+
externalName?: string;
|
|
151
162
|
env?: string[] | string;
|
|
152
163
|
};
|
|
153
164
|
systemd: import("pacc").AttributeDefinition;
|
|
@@ -165,6 +176,7 @@ export class MosquittoService extends Service {
|
|
|
165
176
|
default?: any;
|
|
166
177
|
set?: Function;
|
|
167
178
|
get?: Function;
|
|
179
|
+
externalName?: string;
|
|
168
180
|
env?: string[] | string;
|
|
169
181
|
};
|
|
170
182
|
type: import("pacc").AttributeDefinition;
|
|
@@ -182,6 +194,8 @@ export class MosquittoService extends Service {
|
|
|
182
194
|
default?: any;
|
|
183
195
|
set?: Function;
|
|
184
196
|
get?: Function;
|
|
197
|
+
values?: Set<any>;
|
|
198
|
+
externalName?: string;
|
|
185
199
|
env?: string[] | string;
|
|
186
200
|
};
|
|
187
201
|
cidrAddresses: import("pacc").AttributeDefinition;
|
|
@@ -205,6 +219,8 @@ export class MosquittoService extends Service {
|
|
|
205
219
|
default?: any;
|
|
206
220
|
set?: Function;
|
|
207
221
|
get?: Function;
|
|
222
|
+
values?: Set<any>;
|
|
223
|
+
externalName?: string;
|
|
208
224
|
env?: string[] | string;
|
|
209
225
|
};
|
|
210
226
|
allow_anonymous: {
|
|
@@ -220,6 +236,8 @@ export class MosquittoService extends Service {
|
|
|
220
236
|
default?: any;
|
|
221
237
|
set?: Function;
|
|
222
238
|
get?: Function;
|
|
239
|
+
values?: Set<any>;
|
|
240
|
+
externalName?: string;
|
|
223
241
|
env?: string[] | string;
|
|
224
242
|
};
|
|
225
243
|
};
|
|
@@ -28,6 +28,8 @@ export class OpenLDAPService extends Service {
|
|
|
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 OpenLDAPService extends Service {
|
|
|
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 OpenLDAPService extends Service {
|
|
|
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 OpenLDAPService extends Service {
|
|
|
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;
|
|
@@ -123,6 +130,8 @@ export class OpenLDAPService extends Service {
|
|
|
123
130
|
default?: any;
|
|
124
131
|
set?: Function;
|
|
125
132
|
get?: Function;
|
|
133
|
+
values?: Set<any>;
|
|
134
|
+
externalName?: string;
|
|
126
135
|
env?: string[] | string;
|
|
127
136
|
};
|
|
128
137
|
priority: import("pacc").AttributeDefinition;
|
|
@@ -148,6 +157,8 @@ export class OpenLDAPService extends Service {
|
|
|
148
157
|
default?: any;
|
|
149
158
|
set?: Function;
|
|
150
159
|
get?: Function;
|
|
160
|
+
values?: Set<any>;
|
|
161
|
+
externalName?: string;
|
|
151
162
|
env?: string[] | string;
|
|
152
163
|
};
|
|
153
164
|
systemd: import("pacc").AttributeDefinition;
|
|
@@ -165,6 +176,7 @@ export class OpenLDAPService extends Service {
|
|
|
165
176
|
default?: any;
|
|
166
177
|
set?: Function;
|
|
167
178
|
get?: Function;
|
|
179
|
+
externalName?: string;
|
|
168
180
|
env?: string[] | string;
|
|
169
181
|
};
|
|
170
182
|
type: import("pacc").AttributeDefinition;
|
|
@@ -182,6 +194,8 @@ export class OpenLDAPService extends Service {
|
|
|
182
194
|
default?: any;
|
|
183
195
|
set?: Function;
|
|
184
196
|
get?: Function;
|
|
197
|
+
values?: Set<any>;
|
|
198
|
+
externalName?: string;
|
|
185
199
|
env?: string[] | string;
|
|
186
200
|
};
|
|
187
201
|
cidrAddresses: import("pacc").AttributeDefinition;
|
|
@@ -28,6 +28,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
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 SystemdJournalRemoteService extends Service {
|
|
|
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 SystemdJournalRemoteService extends Service {
|
|
|
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 SystemdJournalRemoteService extends Service {
|
|
|
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;
|
|
@@ -123,6 +130,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
123
130
|
default?: any;
|
|
124
131
|
set?: Function;
|
|
125
132
|
get?: Function;
|
|
133
|
+
values?: Set<any>;
|
|
134
|
+
externalName?: string;
|
|
126
135
|
env?: string[] | string;
|
|
127
136
|
};
|
|
128
137
|
priority: import("pacc").AttributeDefinition;
|
|
@@ -148,6 +157,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
148
157
|
default?: any;
|
|
149
158
|
set?: Function;
|
|
150
159
|
get?: Function;
|
|
160
|
+
values?: Set<any>;
|
|
161
|
+
externalName?: string;
|
|
151
162
|
env?: string[] | string;
|
|
152
163
|
};
|
|
153
164
|
systemd: import("pacc").AttributeDefinition;
|
|
@@ -165,6 +176,7 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
165
176
|
default?: any;
|
|
166
177
|
set?: Function;
|
|
167
178
|
get?: Function;
|
|
179
|
+
externalName?: string;
|
|
168
180
|
env?: string[] | string;
|
|
169
181
|
};
|
|
170
182
|
type: import("pacc").AttributeDefinition;
|
|
@@ -182,6 +194,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
182
194
|
default?: any;
|
|
183
195
|
set?: Function;
|
|
184
196
|
get?: Function;
|
|
197
|
+
values?: Set<any>;
|
|
198
|
+
externalName?: string;
|
|
185
199
|
env?: string[] | string;
|
|
186
200
|
};
|
|
187
201
|
cidrAddresses: import("pacc").AttributeDefinition;
|
|
@@ -28,6 +28,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
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 SystemdJournalUploadService extends Service {
|
|
|
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 SystemdJournalUploadService extends Service {
|
|
|
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 SystemdJournalUploadService extends Service {
|
|
|
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;
|
|
@@ -123,6 +130,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
123
130
|
default?: any;
|
|
124
131
|
set?: Function;
|
|
125
132
|
get?: Function;
|
|
133
|
+
values?: Set<any>;
|
|
134
|
+
externalName?: string;
|
|
126
135
|
env?: string[] | string;
|
|
127
136
|
};
|
|
128
137
|
priority: import("pacc").AttributeDefinition;
|
|
@@ -148,6 +157,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
148
157
|
default?: any;
|
|
149
158
|
set?: Function;
|
|
150
159
|
get?: Function;
|
|
160
|
+
values?: Set<any>;
|
|
161
|
+
externalName?: string;
|
|
151
162
|
env?: string[] | string;
|
|
152
163
|
};
|
|
153
164
|
systemd: import("pacc").AttributeDefinition;
|
|
@@ -165,6 +176,7 @@ export class SystemdJournalUploadService extends Service {
|
|
|
165
176
|
default?: any;
|
|
166
177
|
set?: Function;
|
|
167
178
|
get?: Function;
|
|
179
|
+
externalName?: string;
|
|
168
180
|
env?: string[] | string;
|
|
169
181
|
};
|
|
170
182
|
type: import("pacc").AttributeDefinition;
|
|
@@ -182,6 +194,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
182
194
|
default?: any;
|
|
183
195
|
set?: Function;
|
|
184
196
|
get?: Function;
|
|
197
|
+
values?: Set<any>;
|
|
198
|
+
externalName?: string;
|
|
185
199
|
env?: string[] | string;
|
|
186
200
|
};
|
|
187
201
|
cidrAddresses: import("pacc").AttributeDefinition;
|
|
@@ -28,6 +28,8 @@ export class SystemdJournalService extends Service {
|
|
|
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 SystemdJournalService extends Service {
|
|
|
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 SystemdJournalService extends Service {
|
|
|
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 SystemdJournalService extends Service {
|
|
|
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;
|
|
@@ -123,6 +130,8 @@ export class SystemdJournalService extends Service {
|
|
|
123
130
|
default?: any;
|
|
124
131
|
set?: Function;
|
|
125
132
|
get?: Function;
|
|
133
|
+
values?: Set<any>;
|
|
134
|
+
externalName?: string;
|
|
126
135
|
env?: string[] | string;
|
|
127
136
|
};
|
|
128
137
|
priority: import("pacc").AttributeDefinition;
|
|
@@ -148,6 +157,8 @@ export class SystemdJournalService extends Service {
|
|
|
148
157
|
default?: any;
|
|
149
158
|
set?: Function;
|
|
150
159
|
get?: Function;
|
|
160
|
+
values?: Set<any>;
|
|
161
|
+
externalName?: string;
|
|
151
162
|
env?: string[] | string;
|
|
152
163
|
};
|
|
153
164
|
systemd: import("pacc").AttributeDefinition;
|
|
@@ -165,6 +176,7 @@ export class SystemdJournalService extends Service {
|
|
|
165
176
|
default?: any;
|
|
166
177
|
set?: Function;
|
|
167
178
|
get?: Function;
|
|
179
|
+
externalName?: string;
|
|
168
180
|
env?: string[] | string;
|
|
169
181
|
};
|
|
170
182
|
type: import("pacc").AttributeDefinition;
|
|
@@ -182,6 +194,8 @@ export class SystemdJournalService extends Service {
|
|
|
182
194
|
default?: any;
|
|
183
195
|
set?: Function;
|
|
184
196
|
get?: Function;
|
|
197
|
+
values?: Set<any>;
|
|
198
|
+
externalName?: string;
|
|
185
199
|
env?: string[] | string;
|
|
186
200
|
};
|
|
187
201
|
cidrAddresses: import("pacc").AttributeDefinition;
|
|
@@ -28,6 +28,8 @@ export class SystemdResolvedService 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 SystemdResolvedService 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 SystemdResolvedService 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 SystemdResolvedService 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 SystemdResolvedService 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 SystemdResolvedService 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 SystemdResolvedService 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 SystemdResolvedService 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;
|