pmcf 2.73.12 → 2.74.1
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 +5 -5
- package/src/host.mjs +13 -18
- package/src/owner.mjs +4 -4
- package/src/services/kea.mjs +1 -1
- package/src/subnet.mjs +2 -3
- package/types/base.d.mts +48 -4
- package/types/cluster.d.mts +256 -26
- package/types/extra-source-service.d.mts +48 -4
- package/types/host.d.mts +160 -17
- package/types/location.d.mts +192 -18
- package/types/network-interfaces/ethernet.d.mts +96 -8
- package/types/network-interfaces/loopback.d.mts +96 -8
- package/types/network-interfaces/network-interface.d.mts +96 -8
- package/types/network-interfaces/wireguard.d.mts +96 -8
- package/types/network-interfaces/wlan.d.mts +144 -12
- package/types/network.d.mts +96 -9
- package/types/owner.d.mts +96 -9
- package/types/root.d.mts +192 -18
- package/types/service.d.mts +96 -8
- package/types/services/bind.d.mts +96 -8
- package/types/services/chrony.d.mts +96 -8
- package/types/services/influxdb.d.mts +96 -8
- package/types/services/kea.d.mts +96 -8
- package/types/services/mosquitto.d.mts +96 -8
- package/types/services/openldap.d.mts +96 -8
- package/types/services/systemd-journal-remote.d.mts +96 -8
- package/types/services/systemd-journal-upload.d.mts +96 -8
- package/types/services/systemd-journal.d.mts +96 -8
- package/types/services/systemd-resolved.d.mts +96 -8
- package/types/services/systemd-timesyncd.d.mts +96 -8
- package/types/subnet.d.mts +12 -2
|
@@ -26,9 +26,20 @@ export class OpenLDAPService extends Service {
|
|
|
26
26
|
writeable: boolean;
|
|
27
27
|
};
|
|
28
28
|
description: {
|
|
29
|
+
writeable: boolean;
|
|
29
30
|
type: string;
|
|
31
|
+
isKey: boolean;
|
|
32
|
+
writable: boolean;
|
|
33
|
+
mandatory: boolean;
|
|
30
34
|
collection: boolean;
|
|
31
|
-
|
|
35
|
+
private?: boolean;
|
|
36
|
+
depends?: string;
|
|
37
|
+
additionalAttributes: string[];
|
|
38
|
+
description?: string;
|
|
39
|
+
default?: any;
|
|
40
|
+
set?: Function;
|
|
41
|
+
get?: Function;
|
|
42
|
+
env?: string[] | string;
|
|
32
43
|
};
|
|
33
44
|
priority: {
|
|
34
45
|
type: string;
|
|
@@ -36,14 +47,36 @@ export class OpenLDAPService extends Service {
|
|
|
36
47
|
writeable: boolean;
|
|
37
48
|
};
|
|
38
49
|
directory: {
|
|
50
|
+
writeable: boolean;
|
|
39
51
|
type: string;
|
|
52
|
+
isKey: boolean;
|
|
53
|
+
writable: boolean;
|
|
54
|
+
mandatory: boolean;
|
|
40
55
|
collection: boolean;
|
|
41
|
-
|
|
56
|
+
private?: boolean;
|
|
57
|
+
depends?: string;
|
|
58
|
+
additionalAttributes: string[];
|
|
59
|
+
description?: string;
|
|
60
|
+
default?: any;
|
|
61
|
+
set?: Function;
|
|
62
|
+
get?: Function;
|
|
63
|
+
env?: string[] | string;
|
|
42
64
|
};
|
|
43
65
|
packaging: {
|
|
66
|
+
writeable: boolean;
|
|
44
67
|
type: string;
|
|
68
|
+
isKey: boolean;
|
|
69
|
+
writable: boolean;
|
|
70
|
+
mandatory: boolean;
|
|
45
71
|
collection: boolean;
|
|
46
|
-
|
|
72
|
+
private?: boolean;
|
|
73
|
+
depends?: string;
|
|
74
|
+
additionalAttributes: string[];
|
|
75
|
+
description?: string;
|
|
76
|
+
default?: any;
|
|
77
|
+
set?: Function;
|
|
78
|
+
get?: Function;
|
|
79
|
+
env?: string[] | string;
|
|
47
80
|
};
|
|
48
81
|
disabled: {
|
|
49
82
|
type: string;
|
|
@@ -52,9 +85,20 @@ export class OpenLDAPService extends Service {
|
|
|
52
85
|
default: boolean;
|
|
53
86
|
};
|
|
54
87
|
tags: {
|
|
55
|
-
type: string;
|
|
56
88
|
collection: boolean;
|
|
57
89
|
writeable: boolean;
|
|
90
|
+
type: string;
|
|
91
|
+
isKey: boolean;
|
|
92
|
+
writable: boolean;
|
|
93
|
+
mandatory: boolean;
|
|
94
|
+
private?: boolean;
|
|
95
|
+
depends?: string;
|
|
96
|
+
additionalAttributes: string[];
|
|
97
|
+
description?: string;
|
|
98
|
+
default?: any;
|
|
99
|
+
set?: Function;
|
|
100
|
+
get?: Function;
|
|
101
|
+
env?: string[] | string;
|
|
58
102
|
};
|
|
59
103
|
};
|
|
60
104
|
};
|
|
@@ -157,9 +201,20 @@ export class OpenLDAPService extends Service {
|
|
|
157
201
|
writeable: boolean;
|
|
158
202
|
};
|
|
159
203
|
description: {
|
|
204
|
+
writeable: boolean;
|
|
160
205
|
type: string;
|
|
206
|
+
isKey: boolean;
|
|
207
|
+
writable: boolean;
|
|
208
|
+
mandatory: boolean;
|
|
161
209
|
collection: boolean;
|
|
162
|
-
|
|
210
|
+
private?: boolean;
|
|
211
|
+
depends?: string;
|
|
212
|
+
additionalAttributes: string[];
|
|
213
|
+
description?: string;
|
|
214
|
+
default?: any;
|
|
215
|
+
set?: Function;
|
|
216
|
+
get?: Function;
|
|
217
|
+
env?: string[] | string;
|
|
163
218
|
};
|
|
164
219
|
priority: {
|
|
165
220
|
type: string;
|
|
@@ -167,14 +222,36 @@ export class OpenLDAPService extends Service {
|
|
|
167
222
|
writeable: boolean;
|
|
168
223
|
};
|
|
169
224
|
directory: {
|
|
225
|
+
writeable: boolean;
|
|
170
226
|
type: string;
|
|
227
|
+
isKey: boolean;
|
|
228
|
+
writable: boolean;
|
|
229
|
+
mandatory: boolean;
|
|
171
230
|
collection: boolean;
|
|
172
|
-
|
|
231
|
+
private?: boolean;
|
|
232
|
+
depends?: string;
|
|
233
|
+
additionalAttributes: string[];
|
|
234
|
+
description?: string;
|
|
235
|
+
default?: any;
|
|
236
|
+
set?: Function;
|
|
237
|
+
get?: Function;
|
|
238
|
+
env?: string[] | string;
|
|
173
239
|
};
|
|
174
240
|
packaging: {
|
|
241
|
+
writeable: boolean;
|
|
175
242
|
type: string;
|
|
243
|
+
isKey: boolean;
|
|
244
|
+
writable: boolean;
|
|
245
|
+
mandatory: boolean;
|
|
176
246
|
collection: boolean;
|
|
177
|
-
|
|
247
|
+
private?: boolean;
|
|
248
|
+
depends?: string;
|
|
249
|
+
additionalAttributes: string[];
|
|
250
|
+
description?: string;
|
|
251
|
+
default?: any;
|
|
252
|
+
set?: Function;
|
|
253
|
+
get?: Function;
|
|
254
|
+
env?: string[] | string;
|
|
178
255
|
};
|
|
179
256
|
disabled: {
|
|
180
257
|
type: string;
|
|
@@ -183,9 +260,20 @@ export class OpenLDAPService extends Service {
|
|
|
183
260
|
default: boolean;
|
|
184
261
|
};
|
|
185
262
|
tags: {
|
|
186
|
-
type: string;
|
|
187
263
|
collection: boolean;
|
|
188
264
|
writeable: boolean;
|
|
265
|
+
type: string;
|
|
266
|
+
isKey: boolean;
|
|
267
|
+
writable: boolean;
|
|
268
|
+
mandatory: boolean;
|
|
269
|
+
private?: boolean;
|
|
270
|
+
depends?: string;
|
|
271
|
+
additionalAttributes: string[];
|
|
272
|
+
description?: string;
|
|
273
|
+
default?: any;
|
|
274
|
+
set?: Function;
|
|
275
|
+
get?: Function;
|
|
276
|
+
env?: string[] | string;
|
|
189
277
|
};
|
|
190
278
|
};
|
|
191
279
|
};
|
|
@@ -26,9 +26,20 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
26
26
|
writeable: boolean;
|
|
27
27
|
};
|
|
28
28
|
description: {
|
|
29
|
+
writeable: boolean;
|
|
29
30
|
type: string;
|
|
31
|
+
isKey: boolean;
|
|
32
|
+
writable: boolean;
|
|
33
|
+
mandatory: boolean;
|
|
30
34
|
collection: boolean;
|
|
31
|
-
|
|
35
|
+
private?: boolean;
|
|
36
|
+
depends?: string;
|
|
37
|
+
additionalAttributes: string[];
|
|
38
|
+
description?: string;
|
|
39
|
+
default?: any;
|
|
40
|
+
set?: Function;
|
|
41
|
+
get?: Function;
|
|
42
|
+
env?: string[] | string;
|
|
32
43
|
};
|
|
33
44
|
priority: {
|
|
34
45
|
type: string;
|
|
@@ -36,14 +47,36 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
36
47
|
writeable: boolean;
|
|
37
48
|
};
|
|
38
49
|
directory: {
|
|
50
|
+
writeable: boolean;
|
|
39
51
|
type: string;
|
|
52
|
+
isKey: boolean;
|
|
53
|
+
writable: boolean;
|
|
54
|
+
mandatory: boolean;
|
|
40
55
|
collection: boolean;
|
|
41
|
-
|
|
56
|
+
private?: boolean;
|
|
57
|
+
depends?: string;
|
|
58
|
+
additionalAttributes: string[];
|
|
59
|
+
description?: string;
|
|
60
|
+
default?: any;
|
|
61
|
+
set?: Function;
|
|
62
|
+
get?: Function;
|
|
63
|
+
env?: string[] | string;
|
|
42
64
|
};
|
|
43
65
|
packaging: {
|
|
66
|
+
writeable: boolean;
|
|
44
67
|
type: string;
|
|
68
|
+
isKey: boolean;
|
|
69
|
+
writable: boolean;
|
|
70
|
+
mandatory: boolean;
|
|
45
71
|
collection: boolean;
|
|
46
|
-
|
|
72
|
+
private?: boolean;
|
|
73
|
+
depends?: string;
|
|
74
|
+
additionalAttributes: string[];
|
|
75
|
+
description?: string;
|
|
76
|
+
default?: any;
|
|
77
|
+
set?: Function;
|
|
78
|
+
get?: Function;
|
|
79
|
+
env?: string[] | string;
|
|
47
80
|
};
|
|
48
81
|
disabled: {
|
|
49
82
|
type: string;
|
|
@@ -52,9 +85,20 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
52
85
|
default: boolean;
|
|
53
86
|
};
|
|
54
87
|
tags: {
|
|
55
|
-
type: string;
|
|
56
88
|
collection: boolean;
|
|
57
89
|
writeable: boolean;
|
|
90
|
+
type: string;
|
|
91
|
+
isKey: boolean;
|
|
92
|
+
writable: boolean;
|
|
93
|
+
mandatory: boolean;
|
|
94
|
+
private?: boolean;
|
|
95
|
+
depends?: string;
|
|
96
|
+
additionalAttributes: string[];
|
|
97
|
+
description?: string;
|
|
98
|
+
default?: any;
|
|
99
|
+
set?: Function;
|
|
100
|
+
get?: Function;
|
|
101
|
+
env?: string[] | string;
|
|
58
102
|
};
|
|
59
103
|
};
|
|
60
104
|
};
|
|
@@ -157,9 +201,20 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
157
201
|
writeable: boolean;
|
|
158
202
|
};
|
|
159
203
|
description: {
|
|
204
|
+
writeable: boolean;
|
|
160
205
|
type: string;
|
|
206
|
+
isKey: boolean;
|
|
207
|
+
writable: boolean;
|
|
208
|
+
mandatory: boolean;
|
|
161
209
|
collection: boolean;
|
|
162
|
-
|
|
210
|
+
private?: boolean;
|
|
211
|
+
depends?: string;
|
|
212
|
+
additionalAttributes: string[];
|
|
213
|
+
description?: string;
|
|
214
|
+
default?: any;
|
|
215
|
+
set?: Function;
|
|
216
|
+
get?: Function;
|
|
217
|
+
env?: string[] | string;
|
|
163
218
|
};
|
|
164
219
|
priority: {
|
|
165
220
|
type: string;
|
|
@@ -167,14 +222,36 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
167
222
|
writeable: boolean;
|
|
168
223
|
};
|
|
169
224
|
directory: {
|
|
225
|
+
writeable: boolean;
|
|
170
226
|
type: string;
|
|
227
|
+
isKey: boolean;
|
|
228
|
+
writable: boolean;
|
|
229
|
+
mandatory: boolean;
|
|
171
230
|
collection: boolean;
|
|
172
|
-
|
|
231
|
+
private?: boolean;
|
|
232
|
+
depends?: string;
|
|
233
|
+
additionalAttributes: string[];
|
|
234
|
+
description?: string;
|
|
235
|
+
default?: any;
|
|
236
|
+
set?: Function;
|
|
237
|
+
get?: Function;
|
|
238
|
+
env?: string[] | string;
|
|
173
239
|
};
|
|
174
240
|
packaging: {
|
|
241
|
+
writeable: boolean;
|
|
175
242
|
type: string;
|
|
243
|
+
isKey: boolean;
|
|
244
|
+
writable: boolean;
|
|
245
|
+
mandatory: boolean;
|
|
176
246
|
collection: boolean;
|
|
177
|
-
|
|
247
|
+
private?: boolean;
|
|
248
|
+
depends?: string;
|
|
249
|
+
additionalAttributes: string[];
|
|
250
|
+
description?: string;
|
|
251
|
+
default?: any;
|
|
252
|
+
set?: Function;
|
|
253
|
+
get?: Function;
|
|
254
|
+
env?: string[] | string;
|
|
178
255
|
};
|
|
179
256
|
disabled: {
|
|
180
257
|
type: string;
|
|
@@ -183,9 +260,20 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
183
260
|
default: boolean;
|
|
184
261
|
};
|
|
185
262
|
tags: {
|
|
186
|
-
type: string;
|
|
187
263
|
collection: boolean;
|
|
188
264
|
writeable: boolean;
|
|
265
|
+
type: string;
|
|
266
|
+
isKey: boolean;
|
|
267
|
+
writable: boolean;
|
|
268
|
+
mandatory: boolean;
|
|
269
|
+
private?: boolean;
|
|
270
|
+
depends?: string;
|
|
271
|
+
additionalAttributes: string[];
|
|
272
|
+
description?: string;
|
|
273
|
+
default?: any;
|
|
274
|
+
set?: Function;
|
|
275
|
+
get?: Function;
|
|
276
|
+
env?: string[] | string;
|
|
189
277
|
};
|
|
190
278
|
};
|
|
191
279
|
};
|
|
@@ -26,9 +26,20 @@ export class SystemdJournalUploadService extends Service {
|
|
|
26
26
|
writeable: boolean;
|
|
27
27
|
};
|
|
28
28
|
description: {
|
|
29
|
+
writeable: boolean;
|
|
29
30
|
type: string;
|
|
31
|
+
isKey: boolean;
|
|
32
|
+
writable: boolean;
|
|
33
|
+
mandatory: boolean;
|
|
30
34
|
collection: boolean;
|
|
31
|
-
|
|
35
|
+
private?: boolean;
|
|
36
|
+
depends?: string;
|
|
37
|
+
additionalAttributes: string[];
|
|
38
|
+
description?: string;
|
|
39
|
+
default?: any;
|
|
40
|
+
set?: Function;
|
|
41
|
+
get?: Function;
|
|
42
|
+
env?: string[] | string;
|
|
32
43
|
};
|
|
33
44
|
priority: {
|
|
34
45
|
type: string;
|
|
@@ -36,14 +47,36 @@ export class SystemdJournalUploadService extends Service {
|
|
|
36
47
|
writeable: boolean;
|
|
37
48
|
};
|
|
38
49
|
directory: {
|
|
50
|
+
writeable: boolean;
|
|
39
51
|
type: string;
|
|
52
|
+
isKey: boolean;
|
|
53
|
+
writable: boolean;
|
|
54
|
+
mandatory: boolean;
|
|
40
55
|
collection: boolean;
|
|
41
|
-
|
|
56
|
+
private?: boolean;
|
|
57
|
+
depends?: string;
|
|
58
|
+
additionalAttributes: string[];
|
|
59
|
+
description?: string;
|
|
60
|
+
default?: any;
|
|
61
|
+
set?: Function;
|
|
62
|
+
get?: Function;
|
|
63
|
+
env?: string[] | string;
|
|
42
64
|
};
|
|
43
65
|
packaging: {
|
|
66
|
+
writeable: boolean;
|
|
44
67
|
type: string;
|
|
68
|
+
isKey: boolean;
|
|
69
|
+
writable: boolean;
|
|
70
|
+
mandatory: boolean;
|
|
45
71
|
collection: boolean;
|
|
46
|
-
|
|
72
|
+
private?: boolean;
|
|
73
|
+
depends?: string;
|
|
74
|
+
additionalAttributes: string[];
|
|
75
|
+
description?: string;
|
|
76
|
+
default?: any;
|
|
77
|
+
set?: Function;
|
|
78
|
+
get?: Function;
|
|
79
|
+
env?: string[] | string;
|
|
47
80
|
};
|
|
48
81
|
disabled: {
|
|
49
82
|
type: string;
|
|
@@ -52,9 +85,20 @@ export class SystemdJournalUploadService extends Service {
|
|
|
52
85
|
default: boolean;
|
|
53
86
|
};
|
|
54
87
|
tags: {
|
|
55
|
-
type: string;
|
|
56
88
|
collection: boolean;
|
|
57
89
|
writeable: boolean;
|
|
90
|
+
type: string;
|
|
91
|
+
isKey: boolean;
|
|
92
|
+
writable: boolean;
|
|
93
|
+
mandatory: boolean;
|
|
94
|
+
private?: boolean;
|
|
95
|
+
depends?: string;
|
|
96
|
+
additionalAttributes: string[];
|
|
97
|
+
description?: string;
|
|
98
|
+
default?: any;
|
|
99
|
+
set?: Function;
|
|
100
|
+
get?: Function;
|
|
101
|
+
env?: string[] | string;
|
|
58
102
|
};
|
|
59
103
|
};
|
|
60
104
|
};
|
|
@@ -157,9 +201,20 @@ export class SystemdJournalUploadService extends Service {
|
|
|
157
201
|
writeable: boolean;
|
|
158
202
|
};
|
|
159
203
|
description: {
|
|
204
|
+
writeable: boolean;
|
|
160
205
|
type: string;
|
|
206
|
+
isKey: boolean;
|
|
207
|
+
writable: boolean;
|
|
208
|
+
mandatory: boolean;
|
|
161
209
|
collection: boolean;
|
|
162
|
-
|
|
210
|
+
private?: boolean;
|
|
211
|
+
depends?: string;
|
|
212
|
+
additionalAttributes: string[];
|
|
213
|
+
description?: string;
|
|
214
|
+
default?: any;
|
|
215
|
+
set?: Function;
|
|
216
|
+
get?: Function;
|
|
217
|
+
env?: string[] | string;
|
|
163
218
|
};
|
|
164
219
|
priority: {
|
|
165
220
|
type: string;
|
|
@@ -167,14 +222,36 @@ export class SystemdJournalUploadService extends Service {
|
|
|
167
222
|
writeable: boolean;
|
|
168
223
|
};
|
|
169
224
|
directory: {
|
|
225
|
+
writeable: boolean;
|
|
170
226
|
type: string;
|
|
227
|
+
isKey: boolean;
|
|
228
|
+
writable: boolean;
|
|
229
|
+
mandatory: boolean;
|
|
171
230
|
collection: boolean;
|
|
172
|
-
|
|
231
|
+
private?: boolean;
|
|
232
|
+
depends?: string;
|
|
233
|
+
additionalAttributes: string[];
|
|
234
|
+
description?: string;
|
|
235
|
+
default?: any;
|
|
236
|
+
set?: Function;
|
|
237
|
+
get?: Function;
|
|
238
|
+
env?: string[] | string;
|
|
173
239
|
};
|
|
174
240
|
packaging: {
|
|
241
|
+
writeable: boolean;
|
|
175
242
|
type: string;
|
|
243
|
+
isKey: boolean;
|
|
244
|
+
writable: boolean;
|
|
245
|
+
mandatory: boolean;
|
|
176
246
|
collection: boolean;
|
|
177
|
-
|
|
247
|
+
private?: boolean;
|
|
248
|
+
depends?: string;
|
|
249
|
+
additionalAttributes: string[];
|
|
250
|
+
description?: string;
|
|
251
|
+
default?: any;
|
|
252
|
+
set?: Function;
|
|
253
|
+
get?: Function;
|
|
254
|
+
env?: string[] | string;
|
|
178
255
|
};
|
|
179
256
|
disabled: {
|
|
180
257
|
type: string;
|
|
@@ -183,9 +260,20 @@ export class SystemdJournalUploadService extends Service {
|
|
|
183
260
|
default: boolean;
|
|
184
261
|
};
|
|
185
262
|
tags: {
|
|
186
|
-
type: string;
|
|
187
263
|
collection: boolean;
|
|
188
264
|
writeable: boolean;
|
|
265
|
+
type: string;
|
|
266
|
+
isKey: boolean;
|
|
267
|
+
writable: boolean;
|
|
268
|
+
mandatory: boolean;
|
|
269
|
+
private?: boolean;
|
|
270
|
+
depends?: string;
|
|
271
|
+
additionalAttributes: string[];
|
|
272
|
+
description?: string;
|
|
273
|
+
default?: any;
|
|
274
|
+
set?: Function;
|
|
275
|
+
get?: Function;
|
|
276
|
+
env?: string[] | string;
|
|
189
277
|
};
|
|
190
278
|
};
|
|
191
279
|
};
|
|
@@ -26,9 +26,20 @@ export class SystemdJournalService extends Service {
|
|
|
26
26
|
writeable: boolean;
|
|
27
27
|
};
|
|
28
28
|
description: {
|
|
29
|
+
writeable: boolean;
|
|
29
30
|
type: string;
|
|
31
|
+
isKey: boolean;
|
|
32
|
+
writable: boolean;
|
|
33
|
+
mandatory: boolean;
|
|
30
34
|
collection: boolean;
|
|
31
|
-
|
|
35
|
+
private?: boolean;
|
|
36
|
+
depends?: string;
|
|
37
|
+
additionalAttributes: string[];
|
|
38
|
+
description?: string;
|
|
39
|
+
default?: any;
|
|
40
|
+
set?: Function;
|
|
41
|
+
get?: Function;
|
|
42
|
+
env?: string[] | string;
|
|
32
43
|
};
|
|
33
44
|
priority: {
|
|
34
45
|
type: string;
|
|
@@ -36,14 +47,36 @@ export class SystemdJournalService extends Service {
|
|
|
36
47
|
writeable: boolean;
|
|
37
48
|
};
|
|
38
49
|
directory: {
|
|
50
|
+
writeable: boolean;
|
|
39
51
|
type: string;
|
|
52
|
+
isKey: boolean;
|
|
53
|
+
writable: boolean;
|
|
54
|
+
mandatory: boolean;
|
|
40
55
|
collection: boolean;
|
|
41
|
-
|
|
56
|
+
private?: boolean;
|
|
57
|
+
depends?: string;
|
|
58
|
+
additionalAttributes: string[];
|
|
59
|
+
description?: string;
|
|
60
|
+
default?: any;
|
|
61
|
+
set?: Function;
|
|
62
|
+
get?: Function;
|
|
63
|
+
env?: string[] | string;
|
|
42
64
|
};
|
|
43
65
|
packaging: {
|
|
66
|
+
writeable: boolean;
|
|
44
67
|
type: string;
|
|
68
|
+
isKey: boolean;
|
|
69
|
+
writable: boolean;
|
|
70
|
+
mandatory: boolean;
|
|
45
71
|
collection: boolean;
|
|
46
|
-
|
|
72
|
+
private?: boolean;
|
|
73
|
+
depends?: string;
|
|
74
|
+
additionalAttributes: string[];
|
|
75
|
+
description?: string;
|
|
76
|
+
default?: any;
|
|
77
|
+
set?: Function;
|
|
78
|
+
get?: Function;
|
|
79
|
+
env?: string[] | string;
|
|
47
80
|
};
|
|
48
81
|
disabled: {
|
|
49
82
|
type: string;
|
|
@@ -52,9 +85,20 @@ export class SystemdJournalService extends Service {
|
|
|
52
85
|
default: boolean;
|
|
53
86
|
};
|
|
54
87
|
tags: {
|
|
55
|
-
type: string;
|
|
56
88
|
collection: boolean;
|
|
57
89
|
writeable: boolean;
|
|
90
|
+
type: string;
|
|
91
|
+
isKey: boolean;
|
|
92
|
+
writable: boolean;
|
|
93
|
+
mandatory: boolean;
|
|
94
|
+
private?: boolean;
|
|
95
|
+
depends?: string;
|
|
96
|
+
additionalAttributes: string[];
|
|
97
|
+
description?: string;
|
|
98
|
+
default?: any;
|
|
99
|
+
set?: Function;
|
|
100
|
+
get?: Function;
|
|
101
|
+
env?: string[] | string;
|
|
58
102
|
};
|
|
59
103
|
};
|
|
60
104
|
};
|
|
@@ -157,9 +201,20 @@ export class SystemdJournalService extends Service {
|
|
|
157
201
|
writeable: boolean;
|
|
158
202
|
};
|
|
159
203
|
description: {
|
|
204
|
+
writeable: boolean;
|
|
160
205
|
type: string;
|
|
206
|
+
isKey: boolean;
|
|
207
|
+
writable: boolean;
|
|
208
|
+
mandatory: boolean;
|
|
161
209
|
collection: boolean;
|
|
162
|
-
|
|
210
|
+
private?: boolean;
|
|
211
|
+
depends?: string;
|
|
212
|
+
additionalAttributes: string[];
|
|
213
|
+
description?: string;
|
|
214
|
+
default?: any;
|
|
215
|
+
set?: Function;
|
|
216
|
+
get?: Function;
|
|
217
|
+
env?: string[] | string;
|
|
163
218
|
};
|
|
164
219
|
priority: {
|
|
165
220
|
type: string;
|
|
@@ -167,14 +222,36 @@ export class SystemdJournalService extends Service {
|
|
|
167
222
|
writeable: boolean;
|
|
168
223
|
};
|
|
169
224
|
directory: {
|
|
225
|
+
writeable: boolean;
|
|
170
226
|
type: string;
|
|
227
|
+
isKey: boolean;
|
|
228
|
+
writable: boolean;
|
|
229
|
+
mandatory: boolean;
|
|
171
230
|
collection: boolean;
|
|
172
|
-
|
|
231
|
+
private?: boolean;
|
|
232
|
+
depends?: string;
|
|
233
|
+
additionalAttributes: string[];
|
|
234
|
+
description?: string;
|
|
235
|
+
default?: any;
|
|
236
|
+
set?: Function;
|
|
237
|
+
get?: Function;
|
|
238
|
+
env?: string[] | string;
|
|
173
239
|
};
|
|
174
240
|
packaging: {
|
|
241
|
+
writeable: boolean;
|
|
175
242
|
type: string;
|
|
243
|
+
isKey: boolean;
|
|
244
|
+
writable: boolean;
|
|
245
|
+
mandatory: boolean;
|
|
176
246
|
collection: boolean;
|
|
177
|
-
|
|
247
|
+
private?: boolean;
|
|
248
|
+
depends?: string;
|
|
249
|
+
additionalAttributes: string[];
|
|
250
|
+
description?: string;
|
|
251
|
+
default?: any;
|
|
252
|
+
set?: Function;
|
|
253
|
+
get?: Function;
|
|
254
|
+
env?: string[] | string;
|
|
178
255
|
};
|
|
179
256
|
disabled: {
|
|
180
257
|
type: string;
|
|
@@ -183,9 +260,20 @@ export class SystemdJournalService extends Service {
|
|
|
183
260
|
default: boolean;
|
|
184
261
|
};
|
|
185
262
|
tags: {
|
|
186
|
-
type: string;
|
|
187
263
|
collection: boolean;
|
|
188
264
|
writeable: boolean;
|
|
265
|
+
type: string;
|
|
266
|
+
isKey: boolean;
|
|
267
|
+
writable: boolean;
|
|
268
|
+
mandatory: boolean;
|
|
269
|
+
private?: boolean;
|
|
270
|
+
depends?: string;
|
|
271
|
+
additionalAttributes: string[];
|
|
272
|
+
description?: string;
|
|
273
|
+
default?: any;
|
|
274
|
+
set?: Function;
|
|
275
|
+
get?: Function;
|
|
276
|
+
env?: string[] | string;
|
|
189
277
|
};
|
|
190
278
|
};
|
|
191
279
|
};
|