pmcf 3.11.2 → 3.11.4
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/src/base.mjs +4 -3
- package/src/cluster.mjs +22 -5
- package/src/extra-source-service.mjs +6 -1
- package/src/host.mjs +10 -6
- package/src/network-interfaces/ethernet.mjs +6 -1
- package/src/network-interfaces/network-interface.mjs +15 -8
- package/src/owner.mjs +12 -3
- package/src/services/bind.mjs +19 -4
- package/src/services/chrony.mjs +1 -1
- package/types/base.d.mts +4 -8
- package/types/cluster.d.mts +125 -16
- package/types/extra-source-service.d.mts +164 -38
- package/types/host.d.mts +43 -8
- package/types/location.d.mts +86 -16
- package/types/network-interfaces/ethernet.d.mts +137 -99
- package/types/network-interfaces/loopback.d.mts +106 -94
- package/types/network-interfaces/network-interface.d.mts +106 -94
- package/types/network-interfaces/tun.d.mts +106 -94
- package/types/network-interfaces/wireguard.d.mts +106 -94
- package/types/network-interfaces/wlan.d.mts +172 -141
- package/types/network.d.mts +86 -16
- package/types/owner.d.mts +43 -8
- package/types/root.d.mts +86 -16
- package/types/service.d.mts +94 -32
- package/types/services/bind.d.mts +232 -48
- package/types/services/chrony.d.mts +193 -48
- package/types/services/headscale.d.mts +193 -48
- package/types/services/influxdb.d.mts +137 -40
- package/types/services/kea.d.mts +137 -40
- package/types/services/mosquitto.d.mts +137 -40
- package/types/services/openldap.d.mts +137 -40
- package/types/services/systemd-journal-remote.d.mts +137 -40
- package/types/services/systemd-journal-upload.d.mts +137 -40
- package/types/services/systemd-journal.d.mts +137 -40
- package/types/services/systemd-resolved.d.mts +193 -48
- package/types/services/systemd-timesyncd.d.mts +193 -48
|
@@ -13,15 +13,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
13
13
|
attributes: {
|
|
14
14
|
owner: {
|
|
15
15
|
type: string;
|
|
16
|
-
collection: boolean;
|
|
17
|
-
writable: boolean;
|
|
18
|
-
};
|
|
19
|
-
type: import("pacc").AttributeDefinition;
|
|
20
|
-
name: import("pacc").AttributeDefinition;
|
|
21
|
-
description: {
|
|
22
|
-
writable: boolean;
|
|
23
|
-
type: object;
|
|
24
16
|
isKey: boolean;
|
|
17
|
+
writable: boolean;
|
|
25
18
|
mandatory: boolean;
|
|
26
19
|
collection: boolean;
|
|
27
20
|
private?: boolean;
|
|
@@ -36,6 +29,9 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
36
29
|
env?: string[] | string;
|
|
37
30
|
additionalValues?: object;
|
|
38
31
|
};
|
|
32
|
+
type: import("pacc").AttributeDefinition;
|
|
33
|
+
name: import("pacc").AttributeDefinition;
|
|
34
|
+
description: import("pacc").AttributeDefinition;
|
|
39
35
|
priority: import("pacc").AttributeDefinition;
|
|
40
36
|
directory: import("pacc").AttributeDefinition;
|
|
41
37
|
packaging: import("pacc").AttributeDefinition;
|
|
@@ -48,12 +44,38 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
48
44
|
networkInterfaces: {
|
|
49
45
|
type: string;
|
|
50
46
|
collection: boolean;
|
|
47
|
+
isKey: boolean;
|
|
51
48
|
writable: boolean;
|
|
49
|
+
mandatory: boolean;
|
|
50
|
+
private?: boolean;
|
|
51
|
+
depends?: string;
|
|
52
|
+
description?: string;
|
|
53
|
+
default?: any;
|
|
54
|
+
set?: Function;
|
|
55
|
+
get?: Function;
|
|
56
|
+
prepareValue?: Function;
|
|
57
|
+
values?: Set<any>;
|
|
58
|
+
externalName?: string;
|
|
59
|
+
env?: string[] | string;
|
|
60
|
+
additionalValues?: object;
|
|
52
61
|
};
|
|
53
62
|
services: {
|
|
54
63
|
type: string;
|
|
55
64
|
collection: boolean;
|
|
65
|
+
isKey: boolean;
|
|
56
66
|
writable: boolean;
|
|
67
|
+
mandatory: boolean;
|
|
68
|
+
private?: boolean;
|
|
69
|
+
depends?: string;
|
|
70
|
+
description?: string;
|
|
71
|
+
default?: any;
|
|
72
|
+
set?: Function;
|
|
73
|
+
get?: Function;
|
|
74
|
+
prepareValue?: Function;
|
|
75
|
+
values?: Set<any>;
|
|
76
|
+
externalName?: string;
|
|
77
|
+
env?: string[] | string;
|
|
78
|
+
additionalValues?: object;
|
|
57
79
|
};
|
|
58
80
|
aliases: import("pacc").AttributeDefinition;
|
|
59
81
|
os: {
|
|
@@ -140,7 +162,20 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
140
162
|
extends: {
|
|
141
163
|
type: string;
|
|
142
164
|
collection: boolean;
|
|
165
|
+
isKey: boolean;
|
|
143
166
|
writable: boolean;
|
|
167
|
+
mandatory: boolean;
|
|
168
|
+
private?: boolean;
|
|
169
|
+
depends?: string;
|
|
170
|
+
description?: string;
|
|
171
|
+
default?: any;
|
|
172
|
+
set?: Function;
|
|
173
|
+
get?: Function;
|
|
174
|
+
prepareValue?: Function;
|
|
175
|
+
values?: Set<any>;
|
|
176
|
+
externalName?: string;
|
|
177
|
+
env?: string[] | string;
|
|
178
|
+
additionalValues?: object;
|
|
144
179
|
};
|
|
145
180
|
model: import("pacc").AttributeDefinition;
|
|
146
181
|
isModel: import("pacc").AttributeDefinition;
|
|
@@ -175,15 +210,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
175
210
|
attributes: {
|
|
176
211
|
owner: {
|
|
177
212
|
type: string;
|
|
178
|
-
collection: boolean;
|
|
179
|
-
writable: boolean;
|
|
180
|
-
};
|
|
181
|
-
type: import("pacc").AttributeDefinition;
|
|
182
|
-
name: import("pacc").AttributeDefinition;
|
|
183
|
-
description: {
|
|
184
|
-
writable: boolean;
|
|
185
|
-
type: object;
|
|
186
213
|
isKey: boolean;
|
|
214
|
+
writable: boolean;
|
|
187
215
|
mandatory: boolean;
|
|
188
216
|
collection: boolean;
|
|
189
217
|
private?: boolean;
|
|
@@ -198,6 +226,9 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
198
226
|
env?: string[] | string;
|
|
199
227
|
additionalValues?: object;
|
|
200
228
|
};
|
|
229
|
+
type: import("pacc").AttributeDefinition;
|
|
230
|
+
name: import("pacc").AttributeDefinition;
|
|
231
|
+
description: import("pacc").AttributeDefinition;
|
|
201
232
|
priority: import("pacc").AttributeDefinition;
|
|
202
233
|
directory: import("pacc").AttributeDefinition;
|
|
203
234
|
packaging: import("pacc").AttributeDefinition;
|
|
@@ -285,15 +316,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
285
316
|
attributes: {
|
|
286
317
|
owner: {
|
|
287
318
|
type: string;
|
|
288
|
-
collection: boolean;
|
|
289
|
-
writable: boolean;
|
|
290
|
-
};
|
|
291
|
-
type: import("pacc").AttributeDefinition;
|
|
292
|
-
name: import("pacc").AttributeDefinition;
|
|
293
|
-
description: {
|
|
294
|
-
writable: boolean;
|
|
295
|
-
type: object;
|
|
296
319
|
isKey: boolean;
|
|
320
|
+
writable: boolean;
|
|
297
321
|
mandatory: boolean;
|
|
298
322
|
collection: boolean;
|
|
299
323
|
private?: boolean;
|
|
@@ -308,6 +332,9 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
308
332
|
env?: string[] | string;
|
|
309
333
|
additionalValues?: object;
|
|
310
334
|
};
|
|
335
|
+
type: import("pacc").AttributeDefinition;
|
|
336
|
+
name: import("pacc").AttributeDefinition;
|
|
337
|
+
description: import("pacc").AttributeDefinition;
|
|
311
338
|
priority: import("pacc").AttributeDefinition;
|
|
312
339
|
directory: import("pacc").AttributeDefinition;
|
|
313
340
|
packaging: import("pacc").AttributeDefinition;
|
|
@@ -320,12 +347,38 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
320
347
|
networkInterfaces: {
|
|
321
348
|
type: string;
|
|
322
349
|
collection: boolean;
|
|
350
|
+
isKey: boolean;
|
|
323
351
|
writable: boolean;
|
|
352
|
+
mandatory: boolean;
|
|
353
|
+
private?: boolean;
|
|
354
|
+
depends?: string;
|
|
355
|
+
description?: string;
|
|
356
|
+
default?: any;
|
|
357
|
+
set?: Function;
|
|
358
|
+
get?: Function;
|
|
359
|
+
prepareValue?: Function;
|
|
360
|
+
values?: Set<any>;
|
|
361
|
+
externalName?: string;
|
|
362
|
+
env?: string[] | string;
|
|
363
|
+
additionalValues?: object;
|
|
324
364
|
};
|
|
325
365
|
services: {
|
|
326
366
|
type: string;
|
|
327
367
|
collection: boolean;
|
|
368
|
+
isKey: boolean;
|
|
328
369
|
writable: boolean;
|
|
370
|
+
mandatory: boolean;
|
|
371
|
+
private?: boolean;
|
|
372
|
+
depends?: string;
|
|
373
|
+
description?: string;
|
|
374
|
+
default?: any;
|
|
375
|
+
set?: Function;
|
|
376
|
+
get?: Function;
|
|
377
|
+
prepareValue?: Function;
|
|
378
|
+
values?: Set<any>;
|
|
379
|
+
externalName?: string;
|
|
380
|
+
env?: string[] | string;
|
|
381
|
+
additionalValues?: object;
|
|
329
382
|
};
|
|
330
383
|
aliases: import("pacc").AttributeDefinition;
|
|
331
384
|
os: {
|
|
@@ -412,7 +465,20 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
412
465
|
extends: {
|
|
413
466
|
type: string;
|
|
414
467
|
collection: boolean;
|
|
468
|
+
isKey: boolean;
|
|
415
469
|
writable: boolean;
|
|
470
|
+
mandatory: boolean;
|
|
471
|
+
private?: boolean;
|
|
472
|
+
depends?: string;
|
|
473
|
+
description?: string;
|
|
474
|
+
default?: any;
|
|
475
|
+
set?: Function;
|
|
476
|
+
get?: Function;
|
|
477
|
+
prepareValue?: Function;
|
|
478
|
+
values?: Set<any>;
|
|
479
|
+
externalName?: string;
|
|
480
|
+
env?: string[] | string;
|
|
481
|
+
additionalValues?: object;
|
|
416
482
|
};
|
|
417
483
|
model: import("pacc").AttributeDefinition;
|
|
418
484
|
isModel: import("pacc").AttributeDefinition;
|
|
@@ -452,15 +518,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
452
518
|
attributes: {
|
|
453
519
|
owner: {
|
|
454
520
|
type: string;
|
|
455
|
-
collection: boolean;
|
|
456
|
-
writable: boolean;
|
|
457
|
-
};
|
|
458
|
-
type: import("pacc").AttributeDefinition;
|
|
459
|
-
name: import("pacc").AttributeDefinition;
|
|
460
|
-
description: {
|
|
461
|
-
writable: boolean;
|
|
462
|
-
type: object;
|
|
463
521
|
isKey: boolean;
|
|
522
|
+
writable: boolean;
|
|
464
523
|
mandatory: boolean;
|
|
465
524
|
collection: boolean;
|
|
466
525
|
private?: boolean;
|
|
@@ -475,6 +534,9 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
475
534
|
env?: string[] | string;
|
|
476
535
|
additionalValues?: object;
|
|
477
536
|
};
|
|
537
|
+
type: import("pacc").AttributeDefinition;
|
|
538
|
+
name: import("pacc").AttributeDefinition;
|
|
539
|
+
description: import("pacc").AttributeDefinition;
|
|
478
540
|
priority: import("pacc").AttributeDefinition;
|
|
479
541
|
directory: import("pacc").AttributeDefinition;
|
|
480
542
|
packaging: import("pacc").AttributeDefinition;
|
|
@@ -487,12 +549,38 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
487
549
|
networkInterfaces: {
|
|
488
550
|
type: string;
|
|
489
551
|
collection: boolean;
|
|
552
|
+
isKey: boolean;
|
|
490
553
|
writable: boolean;
|
|
554
|
+
mandatory: boolean;
|
|
555
|
+
private?: boolean;
|
|
556
|
+
depends?: string;
|
|
557
|
+
description?: string;
|
|
558
|
+
default?: any;
|
|
559
|
+
set?: Function;
|
|
560
|
+
get?: Function;
|
|
561
|
+
prepareValue?: Function;
|
|
562
|
+
values?: Set<any>;
|
|
563
|
+
externalName?: string;
|
|
564
|
+
env?: string[] | string;
|
|
565
|
+
additionalValues?: object;
|
|
491
566
|
};
|
|
492
567
|
services: {
|
|
493
568
|
type: string;
|
|
494
569
|
collection: boolean;
|
|
570
|
+
isKey: boolean;
|
|
495
571
|
writable: boolean;
|
|
572
|
+
mandatory: boolean;
|
|
573
|
+
private?: boolean;
|
|
574
|
+
depends?: string;
|
|
575
|
+
description?: string;
|
|
576
|
+
default?: any;
|
|
577
|
+
set?: Function;
|
|
578
|
+
get?: Function;
|
|
579
|
+
prepareValue?: Function;
|
|
580
|
+
values?: Set<any>;
|
|
581
|
+
externalName?: string;
|
|
582
|
+
env?: string[] | string;
|
|
583
|
+
additionalValues?: object;
|
|
496
584
|
};
|
|
497
585
|
aliases: import("pacc").AttributeDefinition;
|
|
498
586
|
os: {
|
|
@@ -579,7 +667,20 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
579
667
|
extends: {
|
|
580
668
|
type: string;
|
|
581
669
|
collection: boolean;
|
|
670
|
+
isKey: boolean;
|
|
582
671
|
writable: boolean;
|
|
672
|
+
mandatory: boolean;
|
|
673
|
+
private?: boolean;
|
|
674
|
+
depends?: string;
|
|
675
|
+
description?: string;
|
|
676
|
+
default?: any;
|
|
677
|
+
set?: Function;
|
|
678
|
+
get?: Function;
|
|
679
|
+
prepareValue?: Function;
|
|
680
|
+
values?: Set<any>;
|
|
681
|
+
externalName?: string;
|
|
682
|
+
env?: string[] | string;
|
|
683
|
+
additionalValues?: object;
|
|
583
684
|
};
|
|
584
685
|
model: import("pacc").AttributeDefinition;
|
|
585
686
|
isModel: import("pacc").AttributeDefinition;
|
|
@@ -614,15 +715,8 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
614
715
|
attributes: {
|
|
615
716
|
owner: {
|
|
616
717
|
type: string;
|
|
617
|
-
collection: boolean;
|
|
618
|
-
writable: boolean;
|
|
619
|
-
};
|
|
620
|
-
type: import("pacc").AttributeDefinition;
|
|
621
|
-
name: import("pacc").AttributeDefinition;
|
|
622
|
-
description: {
|
|
623
|
-
writable: boolean;
|
|
624
|
-
type: object;
|
|
625
718
|
isKey: boolean;
|
|
719
|
+
writable: boolean;
|
|
626
720
|
mandatory: boolean;
|
|
627
721
|
collection: boolean;
|
|
628
722
|
private?: boolean;
|
|
@@ -637,6 +731,9 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
637
731
|
env?: string[] | string;
|
|
638
732
|
additionalValues?: object;
|
|
639
733
|
};
|
|
734
|
+
type: import("pacc").AttributeDefinition;
|
|
735
|
+
name: import("pacc").AttributeDefinition;
|
|
736
|
+
description: import("pacc").AttributeDefinition;
|
|
640
737
|
priority: import("pacc").AttributeDefinition;
|
|
641
738
|
directory: import("pacc").AttributeDefinition;
|
|
642
739
|
packaging: import("pacc").AttributeDefinition;
|
|
@@ -13,15 +13,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
13
13
|
attributes: {
|
|
14
14
|
owner: {
|
|
15
15
|
type: string;
|
|
16
|
-
collection: boolean;
|
|
17
|
-
writable: boolean;
|
|
18
|
-
};
|
|
19
|
-
type: import("pacc").AttributeDefinition;
|
|
20
|
-
name: import("pacc").AttributeDefinition;
|
|
21
|
-
description: {
|
|
22
|
-
writable: boolean;
|
|
23
|
-
type: object;
|
|
24
16
|
isKey: boolean;
|
|
17
|
+
writable: boolean;
|
|
25
18
|
mandatory: boolean;
|
|
26
19
|
collection: boolean;
|
|
27
20
|
private?: boolean;
|
|
@@ -36,6 +29,9 @@ export class SystemdJournalUploadService extends Service {
|
|
|
36
29
|
env?: string[] | string;
|
|
37
30
|
additionalValues?: object;
|
|
38
31
|
};
|
|
32
|
+
type: import("pacc").AttributeDefinition;
|
|
33
|
+
name: import("pacc").AttributeDefinition;
|
|
34
|
+
description: import("pacc").AttributeDefinition;
|
|
39
35
|
priority: import("pacc").AttributeDefinition;
|
|
40
36
|
directory: import("pacc").AttributeDefinition;
|
|
41
37
|
packaging: import("pacc").AttributeDefinition;
|
|
@@ -48,12 +44,38 @@ export class SystemdJournalUploadService extends Service {
|
|
|
48
44
|
networkInterfaces: {
|
|
49
45
|
type: string;
|
|
50
46
|
collection: boolean;
|
|
47
|
+
isKey: boolean;
|
|
51
48
|
writable: boolean;
|
|
49
|
+
mandatory: boolean;
|
|
50
|
+
private?: boolean;
|
|
51
|
+
depends?: string;
|
|
52
|
+
description?: string;
|
|
53
|
+
default?: any;
|
|
54
|
+
set?: Function;
|
|
55
|
+
get?: Function;
|
|
56
|
+
prepareValue?: Function;
|
|
57
|
+
values?: Set<any>;
|
|
58
|
+
externalName?: string;
|
|
59
|
+
env?: string[] | string;
|
|
60
|
+
additionalValues?: object;
|
|
52
61
|
};
|
|
53
62
|
services: {
|
|
54
63
|
type: string;
|
|
55
64
|
collection: boolean;
|
|
65
|
+
isKey: boolean;
|
|
56
66
|
writable: boolean;
|
|
67
|
+
mandatory: boolean;
|
|
68
|
+
private?: boolean;
|
|
69
|
+
depends?: string;
|
|
70
|
+
description?: string;
|
|
71
|
+
default?: any;
|
|
72
|
+
set?: Function;
|
|
73
|
+
get?: Function;
|
|
74
|
+
prepareValue?: Function;
|
|
75
|
+
values?: Set<any>;
|
|
76
|
+
externalName?: string;
|
|
77
|
+
env?: string[] | string;
|
|
78
|
+
additionalValues?: object;
|
|
57
79
|
};
|
|
58
80
|
aliases: import("pacc").AttributeDefinition;
|
|
59
81
|
os: {
|
|
@@ -140,7 +162,20 @@ export class SystemdJournalUploadService extends Service {
|
|
|
140
162
|
extends: {
|
|
141
163
|
type: string;
|
|
142
164
|
collection: boolean;
|
|
165
|
+
isKey: boolean;
|
|
143
166
|
writable: boolean;
|
|
167
|
+
mandatory: boolean;
|
|
168
|
+
private?: boolean;
|
|
169
|
+
depends?: string;
|
|
170
|
+
description?: string;
|
|
171
|
+
default?: any;
|
|
172
|
+
set?: Function;
|
|
173
|
+
get?: Function;
|
|
174
|
+
prepareValue?: Function;
|
|
175
|
+
values?: Set<any>;
|
|
176
|
+
externalName?: string;
|
|
177
|
+
env?: string[] | string;
|
|
178
|
+
additionalValues?: object;
|
|
144
179
|
};
|
|
145
180
|
model: import("pacc").AttributeDefinition;
|
|
146
181
|
isModel: import("pacc").AttributeDefinition;
|
|
@@ -175,15 +210,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
175
210
|
attributes: {
|
|
176
211
|
owner: {
|
|
177
212
|
type: string;
|
|
178
|
-
collection: boolean;
|
|
179
|
-
writable: boolean;
|
|
180
|
-
};
|
|
181
|
-
type: import("pacc").AttributeDefinition;
|
|
182
|
-
name: import("pacc").AttributeDefinition;
|
|
183
|
-
description: {
|
|
184
|
-
writable: boolean;
|
|
185
|
-
type: object;
|
|
186
213
|
isKey: boolean;
|
|
214
|
+
writable: boolean;
|
|
187
215
|
mandatory: boolean;
|
|
188
216
|
collection: boolean;
|
|
189
217
|
private?: boolean;
|
|
@@ -198,6 +226,9 @@ export class SystemdJournalUploadService extends Service {
|
|
|
198
226
|
env?: string[] | string;
|
|
199
227
|
additionalValues?: object;
|
|
200
228
|
};
|
|
229
|
+
type: import("pacc").AttributeDefinition;
|
|
230
|
+
name: import("pacc").AttributeDefinition;
|
|
231
|
+
description: import("pacc").AttributeDefinition;
|
|
201
232
|
priority: import("pacc").AttributeDefinition;
|
|
202
233
|
directory: import("pacc").AttributeDefinition;
|
|
203
234
|
packaging: import("pacc").AttributeDefinition;
|
|
@@ -285,15 +316,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
285
316
|
attributes: {
|
|
286
317
|
owner: {
|
|
287
318
|
type: string;
|
|
288
|
-
collection: boolean;
|
|
289
|
-
writable: boolean;
|
|
290
|
-
};
|
|
291
|
-
type: import("pacc").AttributeDefinition;
|
|
292
|
-
name: import("pacc").AttributeDefinition;
|
|
293
|
-
description: {
|
|
294
|
-
writable: boolean;
|
|
295
|
-
type: object;
|
|
296
319
|
isKey: boolean;
|
|
320
|
+
writable: boolean;
|
|
297
321
|
mandatory: boolean;
|
|
298
322
|
collection: boolean;
|
|
299
323
|
private?: boolean;
|
|
@@ -308,6 +332,9 @@ export class SystemdJournalUploadService extends Service {
|
|
|
308
332
|
env?: string[] | string;
|
|
309
333
|
additionalValues?: object;
|
|
310
334
|
};
|
|
335
|
+
type: import("pacc").AttributeDefinition;
|
|
336
|
+
name: import("pacc").AttributeDefinition;
|
|
337
|
+
description: import("pacc").AttributeDefinition;
|
|
311
338
|
priority: import("pacc").AttributeDefinition;
|
|
312
339
|
directory: import("pacc").AttributeDefinition;
|
|
313
340
|
packaging: import("pacc").AttributeDefinition;
|
|
@@ -320,12 +347,38 @@ export class SystemdJournalUploadService extends Service {
|
|
|
320
347
|
networkInterfaces: {
|
|
321
348
|
type: string;
|
|
322
349
|
collection: boolean;
|
|
350
|
+
isKey: boolean;
|
|
323
351
|
writable: boolean;
|
|
352
|
+
mandatory: boolean;
|
|
353
|
+
private?: boolean;
|
|
354
|
+
depends?: string;
|
|
355
|
+
description?: string;
|
|
356
|
+
default?: any;
|
|
357
|
+
set?: Function;
|
|
358
|
+
get?: Function;
|
|
359
|
+
prepareValue?: Function;
|
|
360
|
+
values?: Set<any>;
|
|
361
|
+
externalName?: string;
|
|
362
|
+
env?: string[] | string;
|
|
363
|
+
additionalValues?: object;
|
|
324
364
|
};
|
|
325
365
|
services: {
|
|
326
366
|
type: string;
|
|
327
367
|
collection: boolean;
|
|
368
|
+
isKey: boolean;
|
|
328
369
|
writable: boolean;
|
|
370
|
+
mandatory: boolean;
|
|
371
|
+
private?: boolean;
|
|
372
|
+
depends?: string;
|
|
373
|
+
description?: string;
|
|
374
|
+
default?: any;
|
|
375
|
+
set?: Function;
|
|
376
|
+
get?: Function;
|
|
377
|
+
prepareValue?: Function;
|
|
378
|
+
values?: Set<any>;
|
|
379
|
+
externalName?: string;
|
|
380
|
+
env?: string[] | string;
|
|
381
|
+
additionalValues?: object;
|
|
329
382
|
};
|
|
330
383
|
aliases: import("pacc").AttributeDefinition;
|
|
331
384
|
os: {
|
|
@@ -412,7 +465,20 @@ export class SystemdJournalUploadService extends Service {
|
|
|
412
465
|
extends: {
|
|
413
466
|
type: string;
|
|
414
467
|
collection: boolean;
|
|
468
|
+
isKey: boolean;
|
|
415
469
|
writable: boolean;
|
|
470
|
+
mandatory: boolean;
|
|
471
|
+
private?: boolean;
|
|
472
|
+
depends?: string;
|
|
473
|
+
description?: string;
|
|
474
|
+
default?: any;
|
|
475
|
+
set?: Function;
|
|
476
|
+
get?: Function;
|
|
477
|
+
prepareValue?: Function;
|
|
478
|
+
values?: Set<any>;
|
|
479
|
+
externalName?: string;
|
|
480
|
+
env?: string[] | string;
|
|
481
|
+
additionalValues?: object;
|
|
416
482
|
};
|
|
417
483
|
model: import("pacc").AttributeDefinition;
|
|
418
484
|
isModel: import("pacc").AttributeDefinition;
|
|
@@ -452,15 +518,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
452
518
|
attributes: {
|
|
453
519
|
owner: {
|
|
454
520
|
type: string;
|
|
455
|
-
collection: boolean;
|
|
456
|
-
writable: boolean;
|
|
457
|
-
};
|
|
458
|
-
type: import("pacc").AttributeDefinition;
|
|
459
|
-
name: import("pacc").AttributeDefinition;
|
|
460
|
-
description: {
|
|
461
|
-
writable: boolean;
|
|
462
|
-
type: object;
|
|
463
521
|
isKey: boolean;
|
|
522
|
+
writable: boolean;
|
|
464
523
|
mandatory: boolean;
|
|
465
524
|
collection: boolean;
|
|
466
525
|
private?: boolean;
|
|
@@ -475,6 +534,9 @@ export class SystemdJournalUploadService extends Service {
|
|
|
475
534
|
env?: string[] | string;
|
|
476
535
|
additionalValues?: object;
|
|
477
536
|
};
|
|
537
|
+
type: import("pacc").AttributeDefinition;
|
|
538
|
+
name: import("pacc").AttributeDefinition;
|
|
539
|
+
description: import("pacc").AttributeDefinition;
|
|
478
540
|
priority: import("pacc").AttributeDefinition;
|
|
479
541
|
directory: import("pacc").AttributeDefinition;
|
|
480
542
|
packaging: import("pacc").AttributeDefinition;
|
|
@@ -487,12 +549,38 @@ export class SystemdJournalUploadService extends Service {
|
|
|
487
549
|
networkInterfaces: {
|
|
488
550
|
type: string;
|
|
489
551
|
collection: boolean;
|
|
552
|
+
isKey: boolean;
|
|
490
553
|
writable: boolean;
|
|
554
|
+
mandatory: boolean;
|
|
555
|
+
private?: boolean;
|
|
556
|
+
depends?: string;
|
|
557
|
+
description?: string;
|
|
558
|
+
default?: any;
|
|
559
|
+
set?: Function;
|
|
560
|
+
get?: Function;
|
|
561
|
+
prepareValue?: Function;
|
|
562
|
+
values?: Set<any>;
|
|
563
|
+
externalName?: string;
|
|
564
|
+
env?: string[] | string;
|
|
565
|
+
additionalValues?: object;
|
|
491
566
|
};
|
|
492
567
|
services: {
|
|
493
568
|
type: string;
|
|
494
569
|
collection: boolean;
|
|
570
|
+
isKey: boolean;
|
|
495
571
|
writable: boolean;
|
|
572
|
+
mandatory: boolean;
|
|
573
|
+
private?: boolean;
|
|
574
|
+
depends?: string;
|
|
575
|
+
description?: string;
|
|
576
|
+
default?: any;
|
|
577
|
+
set?: Function;
|
|
578
|
+
get?: Function;
|
|
579
|
+
prepareValue?: Function;
|
|
580
|
+
values?: Set<any>;
|
|
581
|
+
externalName?: string;
|
|
582
|
+
env?: string[] | string;
|
|
583
|
+
additionalValues?: object;
|
|
496
584
|
};
|
|
497
585
|
aliases: import("pacc").AttributeDefinition;
|
|
498
586
|
os: {
|
|
@@ -579,7 +667,20 @@ export class SystemdJournalUploadService extends Service {
|
|
|
579
667
|
extends: {
|
|
580
668
|
type: string;
|
|
581
669
|
collection: boolean;
|
|
670
|
+
isKey: boolean;
|
|
582
671
|
writable: boolean;
|
|
672
|
+
mandatory: boolean;
|
|
673
|
+
private?: boolean;
|
|
674
|
+
depends?: string;
|
|
675
|
+
description?: string;
|
|
676
|
+
default?: any;
|
|
677
|
+
set?: Function;
|
|
678
|
+
get?: Function;
|
|
679
|
+
prepareValue?: Function;
|
|
680
|
+
values?: Set<any>;
|
|
681
|
+
externalName?: string;
|
|
682
|
+
env?: string[] | string;
|
|
683
|
+
additionalValues?: object;
|
|
583
684
|
};
|
|
584
685
|
model: import("pacc").AttributeDefinition;
|
|
585
686
|
isModel: import("pacc").AttributeDefinition;
|
|
@@ -614,15 +715,8 @@ export class SystemdJournalUploadService extends Service {
|
|
|
614
715
|
attributes: {
|
|
615
716
|
owner: {
|
|
616
717
|
type: string;
|
|
617
|
-
collection: boolean;
|
|
618
|
-
writable: boolean;
|
|
619
|
-
};
|
|
620
|
-
type: import("pacc").AttributeDefinition;
|
|
621
|
-
name: import("pacc").AttributeDefinition;
|
|
622
|
-
description: {
|
|
623
|
-
writable: boolean;
|
|
624
|
-
type: object;
|
|
625
718
|
isKey: boolean;
|
|
719
|
+
writable: boolean;
|
|
626
720
|
mandatory: boolean;
|
|
627
721
|
collection: boolean;
|
|
628
722
|
private?: boolean;
|
|
@@ -637,6 +731,9 @@ export class SystemdJournalUploadService extends Service {
|
|
|
637
731
|
env?: string[] | string;
|
|
638
732
|
additionalValues?: object;
|
|
639
733
|
};
|
|
734
|
+
type: import("pacc").AttributeDefinition;
|
|
735
|
+
name: import("pacc").AttributeDefinition;
|
|
736
|
+
description: import("pacc").AttributeDefinition;
|
|
640
737
|
priority: import("pacc").AttributeDefinition;
|
|
641
738
|
directory: import("pacc").AttributeDefinition;
|
|
642
739
|
packaging: import("pacc").AttributeDefinition;
|