pmcf 3.8.9 → 3.8.10
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 +3 -3
- package/src/base.mjs +4 -6
- package/src/cluster.mjs +3 -3
- package/src/host.mjs +17 -20
- package/src/network-interfaces/network-interface.mjs +5 -6
- package/src/network-support.mjs +15 -18
- package/src/owner.mjs +8 -7
- package/src/service.mjs +4 -5
- package/src/services/bind.mjs +6 -6
- package/src/services/systemd-journal-upload.mjs +2 -2
- package/types/base.d.mts +2 -28
- package/types/cluster.d.mts +102 -154
- package/types/extra-source-service.d.mts +25 -51
- package/types/host.d.mts +68 -94
- package/types/location.d.mts +64 -116
- package/types/network-interfaces/ethernet.d.mts +60 -112
- package/types/network-interfaces/loopback.d.mts +60 -112
- package/types/network-interfaces/network-interface.d.mts +60 -112
- package/types/network-interfaces/tun.d.mts +60 -112
- package/types/network-interfaces/wireguard.d.mts +60 -112
- package/types/network-interfaces/wlan.d.mts +90 -168
- package/types/network-support.d.mts +25 -25
- package/types/network.d.mts +37 -63
- package/types/owner.d.mts +32 -58
- package/types/root.d.mts +64 -116
- package/types/service.d.mts +52 -104
- package/types/services/bind.d.mts +55 -107
- package/types/services/chrony.d.mts +50 -102
- package/types/services/headscale.d.mts +50 -102
- package/types/services/influxdb.d.mts +50 -102
- package/types/services/kea.d.mts +50 -102
- package/types/services/mosquitto.d.mts +50 -102
- package/types/services/openldap.d.mts +50 -102
- package/types/services/systemd-journal-remote.d.mts +50 -102
- package/types/services/systemd-journal-upload.d.mts +51 -103
- package/types/services/systemd-journal.d.mts +50 -102
- package/types/services/systemd-resolved.d.mts +50 -102
- package/types/services/systemd-timesyncd.d.mts +50 -102
|
@@ -15,20 +15,7 @@ export class SystemdJournalUploadService extends Service {
|
|
|
15
15
|
writable: boolean;
|
|
16
16
|
};
|
|
17
17
|
type: import("pacc").AttributeDefinition;
|
|
18
|
-
name:
|
|
19
|
-
writable: boolean;
|
|
20
|
-
type: string;
|
|
21
|
-
isKey: boolean;
|
|
22
|
-
mandatory: boolean;
|
|
23
|
-
collection: boolean;
|
|
24
|
-
private?: boolean;
|
|
25
|
-
depends?: string;
|
|
26
|
-
description?: string;
|
|
27
|
-
default?: any;
|
|
28
|
-
set?: Function;
|
|
29
|
-
get?: Function;
|
|
30
|
-
env?: string[] | string;
|
|
31
|
-
};
|
|
18
|
+
name: import("pacc").AttributeDefinition;
|
|
32
19
|
description: {
|
|
33
20
|
writable: boolean;
|
|
34
21
|
type: string;
|
|
@@ -58,20 +45,7 @@ export class SystemdJournalUploadService extends Service {
|
|
|
58
45
|
get?: Function;
|
|
59
46
|
env?: string[] | string;
|
|
60
47
|
};
|
|
61
|
-
packaging:
|
|
62
|
-
writable: boolean;
|
|
63
|
-
type: string;
|
|
64
|
-
isKey: boolean;
|
|
65
|
-
mandatory: boolean;
|
|
66
|
-
collection: boolean;
|
|
67
|
-
private?: boolean;
|
|
68
|
-
depends?: string;
|
|
69
|
-
description?: string;
|
|
70
|
-
default?: any;
|
|
71
|
-
set?: Function;
|
|
72
|
-
get?: Function;
|
|
73
|
-
env?: string[] | string;
|
|
74
|
-
};
|
|
48
|
+
packaging: import("pacc").AttributeDefinition;
|
|
75
49
|
disabled: import("pacc").AttributeDefinition;
|
|
76
50
|
tags: import("pacc").AttributeDefinition;
|
|
77
51
|
};
|
|
@@ -80,9 +54,9 @@ export class SystemdJournalUploadService extends Service {
|
|
|
80
54
|
factoryFor(owner: any, value: any): any;
|
|
81
55
|
properties: {
|
|
82
56
|
alias: {
|
|
83
|
-
writable: boolean;
|
|
84
57
|
type: string;
|
|
85
58
|
isKey: boolean;
|
|
59
|
+
writable: boolean;
|
|
86
60
|
mandatory: boolean;
|
|
87
61
|
collection: boolean;
|
|
88
62
|
private?: boolean;
|
|
@@ -123,10 +97,10 @@ export class SystemdJournalUploadService extends Service {
|
|
|
123
97
|
env?: string[] | string;
|
|
124
98
|
};
|
|
125
99
|
protocol: {
|
|
126
|
-
writable: boolean;
|
|
127
100
|
values: string[];
|
|
128
101
|
type: string;
|
|
129
102
|
isKey: boolean;
|
|
103
|
+
writable: boolean;
|
|
130
104
|
mandatory: boolean;
|
|
131
105
|
collection: boolean;
|
|
132
106
|
private?: boolean;
|
|
@@ -138,9 +112,9 @@ export class SystemdJournalUploadService extends Service {
|
|
|
138
112
|
env?: string[] | string;
|
|
139
113
|
};
|
|
140
114
|
type: {
|
|
141
|
-
writable: boolean;
|
|
142
115
|
type: string;
|
|
143
116
|
isKey: boolean;
|
|
117
|
+
writable: boolean;
|
|
144
118
|
mandatory: boolean;
|
|
145
119
|
collection: boolean;
|
|
146
120
|
private?: boolean;
|
|
@@ -168,23 +142,23 @@ export class SystemdJournalUploadService extends Service {
|
|
|
168
142
|
env?: string[] | string;
|
|
169
143
|
};
|
|
170
144
|
cidrAddresses: {
|
|
171
|
-
writable: boolean;
|
|
172
|
-
collection: boolean;
|
|
173
145
|
type: string;
|
|
174
146
|
isKey: boolean;
|
|
147
|
+
writable: boolean;
|
|
175
148
|
mandatory: boolean;
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
149
|
+
collection: boolean;
|
|
150
|
+
private?: boolean;
|
|
151
|
+
depends?: string;
|
|
152
|
+
description?: string;
|
|
153
|
+
default?: any;
|
|
154
|
+
set?: Function;
|
|
155
|
+
get?: Function;
|
|
156
|
+
env?: string[] | string;
|
|
183
157
|
};
|
|
184
158
|
cidrAddress: {
|
|
185
|
-
writable: boolean;
|
|
186
159
|
type: string;
|
|
187
160
|
isKey: boolean;
|
|
161
|
+
writable: boolean;
|
|
188
162
|
mandatory: boolean;
|
|
189
163
|
collection: boolean;
|
|
190
164
|
private?: boolean;
|
|
@@ -196,23 +170,23 @@ export class SystemdJournalUploadService extends Service {
|
|
|
196
170
|
env?: string[] | string;
|
|
197
171
|
};
|
|
198
172
|
addresses: {
|
|
199
|
-
writable: boolean;
|
|
200
|
-
collection: boolean;
|
|
201
173
|
type: string;
|
|
202
174
|
isKey: boolean;
|
|
175
|
+
writable: boolean;
|
|
203
176
|
mandatory: boolean;
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
177
|
+
collection: boolean;
|
|
178
|
+
private?: boolean;
|
|
179
|
+
depends?: string;
|
|
180
|
+
description?: string;
|
|
181
|
+
default?: any;
|
|
182
|
+
set?: Function;
|
|
183
|
+
get?: Function;
|
|
184
|
+
env?: string[] | string;
|
|
211
185
|
};
|
|
212
186
|
address: {
|
|
213
|
-
writable: boolean;
|
|
214
187
|
type: string;
|
|
215
188
|
isKey: boolean;
|
|
189
|
+
writable: boolean;
|
|
216
190
|
mandatory: boolean;
|
|
217
191
|
collection: boolean;
|
|
218
192
|
private?: boolean;
|
|
@@ -240,20 +214,7 @@ export class SystemdJournalUploadService extends Service {
|
|
|
240
214
|
writable: boolean;
|
|
241
215
|
};
|
|
242
216
|
type: import("pacc").AttributeDefinition;
|
|
243
|
-
name:
|
|
244
|
-
writable: boolean;
|
|
245
|
-
type: string;
|
|
246
|
-
isKey: boolean;
|
|
247
|
-
mandatory: boolean;
|
|
248
|
-
collection: boolean;
|
|
249
|
-
private?: boolean;
|
|
250
|
-
depends?: string;
|
|
251
|
-
description?: string;
|
|
252
|
-
default?: any;
|
|
253
|
-
set?: Function;
|
|
254
|
-
get?: Function;
|
|
255
|
-
env?: string[] | string;
|
|
256
|
-
};
|
|
217
|
+
name: import("pacc").AttributeDefinition;
|
|
257
218
|
description: {
|
|
258
219
|
writable: boolean;
|
|
259
220
|
type: string;
|
|
@@ -283,20 +244,7 @@ export class SystemdJournalUploadService extends Service {
|
|
|
283
244
|
get?: Function;
|
|
284
245
|
env?: string[] | string;
|
|
285
246
|
};
|
|
286
|
-
packaging:
|
|
287
|
-
writable: boolean;
|
|
288
|
-
type: string;
|
|
289
|
-
isKey: boolean;
|
|
290
|
-
mandatory: boolean;
|
|
291
|
-
collection: boolean;
|
|
292
|
-
private?: boolean;
|
|
293
|
-
depends?: string;
|
|
294
|
-
description?: string;
|
|
295
|
-
default?: any;
|
|
296
|
-
set?: Function;
|
|
297
|
-
get?: Function;
|
|
298
|
-
env?: string[] | string;
|
|
299
|
-
};
|
|
247
|
+
packaging: import("pacc").AttributeDefinition;
|
|
300
248
|
disabled: import("pacc").AttributeDefinition;
|
|
301
249
|
tags: import("pacc").AttributeDefinition;
|
|
302
250
|
};
|
|
@@ -305,9 +253,9 @@ export class SystemdJournalUploadService extends Service {
|
|
|
305
253
|
factoryFor(owner: any, value: any): any;
|
|
306
254
|
properties: {
|
|
307
255
|
alias: {
|
|
308
|
-
writable: boolean;
|
|
309
256
|
type: string;
|
|
310
257
|
isKey: boolean;
|
|
258
|
+
writable: boolean;
|
|
311
259
|
mandatory: boolean;
|
|
312
260
|
collection: boolean;
|
|
313
261
|
private?: boolean;
|
|
@@ -348,10 +296,10 @@ export class SystemdJournalUploadService extends Service {
|
|
|
348
296
|
env?: string[] | string;
|
|
349
297
|
};
|
|
350
298
|
protocol: {
|
|
351
|
-
writable: boolean;
|
|
352
299
|
values: string[];
|
|
353
300
|
type: string;
|
|
354
301
|
isKey: boolean;
|
|
302
|
+
writable: boolean;
|
|
355
303
|
mandatory: boolean;
|
|
356
304
|
collection: boolean;
|
|
357
305
|
private?: boolean;
|
|
@@ -363,9 +311,9 @@ export class SystemdJournalUploadService extends Service {
|
|
|
363
311
|
env?: string[] | string;
|
|
364
312
|
};
|
|
365
313
|
type: {
|
|
366
|
-
writable: boolean;
|
|
367
314
|
type: string;
|
|
368
315
|
isKey: boolean;
|
|
316
|
+
writable: boolean;
|
|
369
317
|
mandatory: boolean;
|
|
370
318
|
collection: boolean;
|
|
371
319
|
private?: boolean;
|
|
@@ -393,23 +341,23 @@ export class SystemdJournalUploadService extends Service {
|
|
|
393
341
|
env?: string[] | string;
|
|
394
342
|
};
|
|
395
343
|
cidrAddresses: {
|
|
396
|
-
writable: boolean;
|
|
397
|
-
collection: boolean;
|
|
398
344
|
type: string;
|
|
399
345
|
isKey: boolean;
|
|
346
|
+
writable: boolean;
|
|
400
347
|
mandatory: boolean;
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
348
|
+
collection: boolean;
|
|
349
|
+
private?: boolean;
|
|
350
|
+
depends?: string;
|
|
351
|
+
description?: string;
|
|
352
|
+
default?: any;
|
|
353
|
+
set?: Function;
|
|
354
|
+
get?: Function;
|
|
355
|
+
env?: string[] | string;
|
|
408
356
|
};
|
|
409
357
|
cidrAddress: {
|
|
410
|
-
writable: boolean;
|
|
411
358
|
type: string;
|
|
412
359
|
isKey: boolean;
|
|
360
|
+
writable: boolean;
|
|
413
361
|
mandatory: boolean;
|
|
414
362
|
collection: boolean;
|
|
415
363
|
private?: boolean;
|
|
@@ -421,23 +369,23 @@ export class SystemdJournalUploadService extends Service {
|
|
|
421
369
|
env?: string[] | string;
|
|
422
370
|
};
|
|
423
371
|
addresses: {
|
|
424
|
-
writable: boolean;
|
|
425
|
-
collection: boolean;
|
|
426
372
|
type: string;
|
|
427
373
|
isKey: boolean;
|
|
374
|
+
writable: boolean;
|
|
428
375
|
mandatory: boolean;
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
376
|
+
collection: boolean;
|
|
377
|
+
private?: boolean;
|
|
378
|
+
depends?: string;
|
|
379
|
+
description?: string;
|
|
380
|
+
default?: any;
|
|
381
|
+
set?: Function;
|
|
382
|
+
get?: Function;
|
|
383
|
+
env?: string[] | string;
|
|
436
384
|
};
|
|
437
385
|
address: {
|
|
438
|
-
writable: boolean;
|
|
439
386
|
type: string;
|
|
440
387
|
isKey: boolean;
|
|
388
|
+
writable: boolean;
|
|
441
389
|
mandatory: boolean;
|
|
442
390
|
collection: boolean;
|
|
443
391
|
private?: boolean;
|
|
@@ -453,9 +401,9 @@ export class SystemdJournalUploadService extends Service {
|
|
|
453
401
|
priority: number;
|
|
454
402
|
properties: {
|
|
455
403
|
url: {
|
|
456
|
-
writable: boolean;
|
|
457
404
|
type: string;
|
|
458
405
|
isKey: boolean;
|
|
406
|
+
writable: boolean;
|
|
459
407
|
mandatory: boolean;
|
|
460
408
|
collection: boolean;
|
|
461
409
|
private?: boolean;
|
|
@@ -15,20 +15,7 @@ export class SystemdJournalService extends Service {
|
|
|
15
15
|
writable: boolean;
|
|
16
16
|
};
|
|
17
17
|
type: import("pacc").AttributeDefinition;
|
|
18
|
-
name:
|
|
19
|
-
writable: boolean;
|
|
20
|
-
type: string;
|
|
21
|
-
isKey: boolean;
|
|
22
|
-
mandatory: boolean;
|
|
23
|
-
collection: boolean;
|
|
24
|
-
private?: boolean;
|
|
25
|
-
depends?: string;
|
|
26
|
-
description?: string;
|
|
27
|
-
default?: any;
|
|
28
|
-
set?: Function;
|
|
29
|
-
get?: Function;
|
|
30
|
-
env?: string[] | string;
|
|
31
|
-
};
|
|
18
|
+
name: import("pacc").AttributeDefinition;
|
|
32
19
|
description: {
|
|
33
20
|
writable: boolean;
|
|
34
21
|
type: string;
|
|
@@ -58,20 +45,7 @@ export class SystemdJournalService extends Service {
|
|
|
58
45
|
get?: Function;
|
|
59
46
|
env?: string[] | string;
|
|
60
47
|
};
|
|
61
|
-
packaging:
|
|
62
|
-
writable: boolean;
|
|
63
|
-
type: string;
|
|
64
|
-
isKey: boolean;
|
|
65
|
-
mandatory: boolean;
|
|
66
|
-
collection: boolean;
|
|
67
|
-
private?: boolean;
|
|
68
|
-
depends?: string;
|
|
69
|
-
description?: string;
|
|
70
|
-
default?: any;
|
|
71
|
-
set?: Function;
|
|
72
|
-
get?: Function;
|
|
73
|
-
env?: string[] | string;
|
|
74
|
-
};
|
|
48
|
+
packaging: import("pacc").AttributeDefinition;
|
|
75
49
|
disabled: import("pacc").AttributeDefinition;
|
|
76
50
|
tags: import("pacc").AttributeDefinition;
|
|
77
51
|
};
|
|
@@ -80,9 +54,9 @@ export class SystemdJournalService extends Service {
|
|
|
80
54
|
factoryFor(owner: any, value: any): any;
|
|
81
55
|
properties: {
|
|
82
56
|
alias: {
|
|
83
|
-
writable: boolean;
|
|
84
57
|
type: string;
|
|
85
58
|
isKey: boolean;
|
|
59
|
+
writable: boolean;
|
|
86
60
|
mandatory: boolean;
|
|
87
61
|
collection: boolean;
|
|
88
62
|
private?: boolean;
|
|
@@ -123,10 +97,10 @@ export class SystemdJournalService extends Service {
|
|
|
123
97
|
env?: string[] | string;
|
|
124
98
|
};
|
|
125
99
|
protocol: {
|
|
126
|
-
writable: boolean;
|
|
127
100
|
values: string[];
|
|
128
101
|
type: string;
|
|
129
102
|
isKey: boolean;
|
|
103
|
+
writable: boolean;
|
|
130
104
|
mandatory: boolean;
|
|
131
105
|
collection: boolean;
|
|
132
106
|
private?: boolean;
|
|
@@ -138,9 +112,9 @@ export class SystemdJournalService extends Service {
|
|
|
138
112
|
env?: string[] | string;
|
|
139
113
|
};
|
|
140
114
|
type: {
|
|
141
|
-
writable: boolean;
|
|
142
115
|
type: string;
|
|
143
116
|
isKey: boolean;
|
|
117
|
+
writable: boolean;
|
|
144
118
|
mandatory: boolean;
|
|
145
119
|
collection: boolean;
|
|
146
120
|
private?: boolean;
|
|
@@ -168,23 +142,23 @@ export class SystemdJournalService extends Service {
|
|
|
168
142
|
env?: string[] | string;
|
|
169
143
|
};
|
|
170
144
|
cidrAddresses: {
|
|
171
|
-
writable: boolean;
|
|
172
|
-
collection: boolean;
|
|
173
145
|
type: string;
|
|
174
146
|
isKey: boolean;
|
|
147
|
+
writable: boolean;
|
|
175
148
|
mandatory: boolean;
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
149
|
+
collection: boolean;
|
|
150
|
+
private?: boolean;
|
|
151
|
+
depends?: string;
|
|
152
|
+
description?: string;
|
|
153
|
+
default?: any;
|
|
154
|
+
set?: Function;
|
|
155
|
+
get?: Function;
|
|
156
|
+
env?: string[] | string;
|
|
183
157
|
};
|
|
184
158
|
cidrAddress: {
|
|
185
|
-
writable: boolean;
|
|
186
159
|
type: string;
|
|
187
160
|
isKey: boolean;
|
|
161
|
+
writable: boolean;
|
|
188
162
|
mandatory: boolean;
|
|
189
163
|
collection: boolean;
|
|
190
164
|
private?: boolean;
|
|
@@ -196,23 +170,23 @@ export class SystemdJournalService extends Service {
|
|
|
196
170
|
env?: string[] | string;
|
|
197
171
|
};
|
|
198
172
|
addresses: {
|
|
199
|
-
writable: boolean;
|
|
200
|
-
collection: boolean;
|
|
201
173
|
type: string;
|
|
202
174
|
isKey: boolean;
|
|
175
|
+
writable: boolean;
|
|
203
176
|
mandatory: boolean;
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
177
|
+
collection: boolean;
|
|
178
|
+
private?: boolean;
|
|
179
|
+
depends?: string;
|
|
180
|
+
description?: string;
|
|
181
|
+
default?: any;
|
|
182
|
+
set?: Function;
|
|
183
|
+
get?: Function;
|
|
184
|
+
env?: string[] | string;
|
|
211
185
|
};
|
|
212
186
|
address: {
|
|
213
|
-
writable: boolean;
|
|
214
187
|
type: string;
|
|
215
188
|
isKey: boolean;
|
|
189
|
+
writable: boolean;
|
|
216
190
|
mandatory: boolean;
|
|
217
191
|
collection: boolean;
|
|
218
192
|
private?: boolean;
|
|
@@ -240,20 +214,7 @@ export class SystemdJournalService extends Service {
|
|
|
240
214
|
writable: boolean;
|
|
241
215
|
};
|
|
242
216
|
type: import("pacc").AttributeDefinition;
|
|
243
|
-
name:
|
|
244
|
-
writable: boolean;
|
|
245
|
-
type: string;
|
|
246
|
-
isKey: boolean;
|
|
247
|
-
mandatory: boolean;
|
|
248
|
-
collection: boolean;
|
|
249
|
-
private?: boolean;
|
|
250
|
-
depends?: string;
|
|
251
|
-
description?: string;
|
|
252
|
-
default?: any;
|
|
253
|
-
set?: Function;
|
|
254
|
-
get?: Function;
|
|
255
|
-
env?: string[] | string;
|
|
256
|
-
};
|
|
217
|
+
name: import("pacc").AttributeDefinition;
|
|
257
218
|
description: {
|
|
258
219
|
writable: boolean;
|
|
259
220
|
type: string;
|
|
@@ -283,20 +244,7 @@ export class SystemdJournalService extends Service {
|
|
|
283
244
|
get?: Function;
|
|
284
245
|
env?: string[] | string;
|
|
285
246
|
};
|
|
286
|
-
packaging:
|
|
287
|
-
writable: boolean;
|
|
288
|
-
type: string;
|
|
289
|
-
isKey: boolean;
|
|
290
|
-
mandatory: boolean;
|
|
291
|
-
collection: boolean;
|
|
292
|
-
private?: boolean;
|
|
293
|
-
depends?: string;
|
|
294
|
-
description?: string;
|
|
295
|
-
default?: any;
|
|
296
|
-
set?: Function;
|
|
297
|
-
get?: Function;
|
|
298
|
-
env?: string[] | string;
|
|
299
|
-
};
|
|
247
|
+
packaging: import("pacc").AttributeDefinition;
|
|
300
248
|
disabled: import("pacc").AttributeDefinition;
|
|
301
249
|
tags: import("pacc").AttributeDefinition;
|
|
302
250
|
};
|
|
@@ -305,9 +253,9 @@ export class SystemdJournalService extends Service {
|
|
|
305
253
|
factoryFor(owner: any, value: any): any;
|
|
306
254
|
properties: {
|
|
307
255
|
alias: {
|
|
308
|
-
writable: boolean;
|
|
309
256
|
type: string;
|
|
310
257
|
isKey: boolean;
|
|
258
|
+
writable: boolean;
|
|
311
259
|
mandatory: boolean;
|
|
312
260
|
collection: boolean;
|
|
313
261
|
private?: boolean;
|
|
@@ -348,10 +296,10 @@ export class SystemdJournalService extends Service {
|
|
|
348
296
|
env?: string[] | string;
|
|
349
297
|
};
|
|
350
298
|
protocol: {
|
|
351
|
-
writable: boolean;
|
|
352
299
|
values: string[];
|
|
353
300
|
type: string;
|
|
354
301
|
isKey: boolean;
|
|
302
|
+
writable: boolean;
|
|
355
303
|
mandatory: boolean;
|
|
356
304
|
collection: boolean;
|
|
357
305
|
private?: boolean;
|
|
@@ -363,9 +311,9 @@ export class SystemdJournalService extends Service {
|
|
|
363
311
|
env?: string[] | string;
|
|
364
312
|
};
|
|
365
313
|
type: {
|
|
366
|
-
writable: boolean;
|
|
367
314
|
type: string;
|
|
368
315
|
isKey: boolean;
|
|
316
|
+
writable: boolean;
|
|
369
317
|
mandatory: boolean;
|
|
370
318
|
collection: boolean;
|
|
371
319
|
private?: boolean;
|
|
@@ -393,23 +341,23 @@ export class SystemdJournalService extends Service {
|
|
|
393
341
|
env?: string[] | string;
|
|
394
342
|
};
|
|
395
343
|
cidrAddresses: {
|
|
396
|
-
writable: boolean;
|
|
397
|
-
collection: boolean;
|
|
398
344
|
type: string;
|
|
399
345
|
isKey: boolean;
|
|
346
|
+
writable: boolean;
|
|
400
347
|
mandatory: boolean;
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
348
|
+
collection: boolean;
|
|
349
|
+
private?: boolean;
|
|
350
|
+
depends?: string;
|
|
351
|
+
description?: string;
|
|
352
|
+
default?: any;
|
|
353
|
+
set?: Function;
|
|
354
|
+
get?: Function;
|
|
355
|
+
env?: string[] | string;
|
|
408
356
|
};
|
|
409
357
|
cidrAddress: {
|
|
410
|
-
writable: boolean;
|
|
411
358
|
type: string;
|
|
412
359
|
isKey: boolean;
|
|
360
|
+
writable: boolean;
|
|
413
361
|
mandatory: boolean;
|
|
414
362
|
collection: boolean;
|
|
415
363
|
private?: boolean;
|
|
@@ -421,23 +369,23 @@ export class SystemdJournalService extends Service {
|
|
|
421
369
|
env?: string[] | string;
|
|
422
370
|
};
|
|
423
371
|
addresses: {
|
|
424
|
-
writable: boolean;
|
|
425
|
-
collection: boolean;
|
|
426
372
|
type: string;
|
|
427
373
|
isKey: boolean;
|
|
374
|
+
writable: boolean;
|
|
428
375
|
mandatory: boolean;
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
376
|
+
collection: boolean;
|
|
377
|
+
private?: boolean;
|
|
378
|
+
depends?: string;
|
|
379
|
+
description?: string;
|
|
380
|
+
default?: any;
|
|
381
|
+
set?: Function;
|
|
382
|
+
get?: Function;
|
|
383
|
+
env?: string[] | string;
|
|
436
384
|
};
|
|
437
385
|
address: {
|
|
438
|
-
writable: boolean;
|
|
439
386
|
type: string;
|
|
440
387
|
isKey: boolean;
|
|
388
|
+
writable: boolean;
|
|
441
389
|
mandatory: boolean;
|
|
442
390
|
collection: boolean;
|
|
443
391
|
private?: boolean;
|