pmcf 2.74.0 → 2.74.2
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/host.mjs +17 -22
- package/src/location.mjs +2 -1
- package/src/network-interfaces/network-interface.mjs +5 -4
- package/src/network-support.mjs +14 -17
- package/src/owner.mjs +8 -8
- package/src/service.mjs +7 -9
- package/src/services/kea.mjs +1 -1
- package/src/subnet.mjs +2 -3
- package/types/cluster.d.mts +316 -31
- package/types/extra-source-service.d.mts +121 -13
- package/types/host.d.mts +220 -22
- package/types/location.d.mts +204 -19
- package/types/network-interfaces/ethernet.d.mts +340 -36
- package/types/network-interfaces/loopback.d.mts +340 -36
- package/types/network-interfaces/network-interface.d.mts +340 -36
- package/types/network-interfaces/wireguard.d.mts +340 -36
- package/types/network-interfaces/wlan.d.mts +510 -54
- package/types/network-support.d.mts +186 -104
- package/types/network.d.mts +170 -19
- package/types/owner.d.mts +96 -9
- package/types/root.d.mts +204 -19
- package/types/service.d.mts +307 -62
- package/types/services/bind.d.mts +242 -26
- package/types/services/chrony.d.mts +242 -26
- package/types/services/influxdb.d.mts +242 -26
- package/types/services/kea.d.mts +242 -26
- package/types/services/mosquitto.d.mts +242 -26
- package/types/services/openldap.d.mts +242 -26
- package/types/services/systemd-journal-remote.d.mts +242 -26
- package/types/services/systemd-journal-upload.d.mts +242 -26
- package/types/services/systemd-journal.d.mts +242 -26
- package/types/services/systemd-resolved.d.mts +242 -26
- package/types/services/systemd-timesyncd.d.mts +242 -26
- package/types/subnet.d.mts +12 -2
|
@@ -106,9 +106,20 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
106
106
|
factoryFor(owner: any, value: any): any;
|
|
107
107
|
properties: {
|
|
108
108
|
alias: {
|
|
109
|
+
writeable: boolean;
|
|
109
110
|
type: string;
|
|
111
|
+
isKey: boolean;
|
|
112
|
+
writable: boolean;
|
|
113
|
+
mandatory: boolean;
|
|
110
114
|
collection: boolean;
|
|
111
|
-
|
|
115
|
+
private?: boolean;
|
|
116
|
+
depends?: string;
|
|
117
|
+
additionalAttributes: string[];
|
|
118
|
+
description?: string;
|
|
119
|
+
default?: any;
|
|
120
|
+
set?: Function;
|
|
121
|
+
get?: Function;
|
|
122
|
+
env?: string[] | string;
|
|
112
123
|
};
|
|
113
124
|
weight: {
|
|
114
125
|
type: string;
|
|
@@ -127,51 +138,148 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
127
138
|
writeable: boolean;
|
|
128
139
|
};
|
|
129
140
|
protocol: {
|
|
130
|
-
type: string;
|
|
131
|
-
collection: boolean;
|
|
132
141
|
writeable: boolean;
|
|
133
142
|
values: string[];
|
|
143
|
+
type: string;
|
|
144
|
+
isKey: boolean;
|
|
145
|
+
writable: boolean;
|
|
146
|
+
mandatory: boolean;
|
|
147
|
+
collection: boolean;
|
|
148
|
+
private?: boolean;
|
|
149
|
+
depends?: string;
|
|
150
|
+
additionalAttributes: string[];
|
|
151
|
+
description?: string;
|
|
152
|
+
default?: any;
|
|
153
|
+
set?: Function;
|
|
154
|
+
get?: Function;
|
|
155
|
+
env?: string[] | string;
|
|
134
156
|
};
|
|
135
157
|
type: {
|
|
158
|
+
writeable: boolean;
|
|
136
159
|
type: string;
|
|
160
|
+
isKey: boolean;
|
|
161
|
+
writable: boolean;
|
|
162
|
+
mandatory: boolean;
|
|
137
163
|
collection: boolean;
|
|
138
|
-
|
|
164
|
+
private?: boolean;
|
|
165
|
+
depends?: string;
|
|
166
|
+
additionalAttributes: string[];
|
|
167
|
+
description?: string;
|
|
168
|
+
default?: any;
|
|
169
|
+
set?: Function;
|
|
170
|
+
get?: Function;
|
|
171
|
+
env?: string[] | string;
|
|
139
172
|
};
|
|
140
173
|
types: {
|
|
141
|
-
type: string;
|
|
142
174
|
collection: boolean;
|
|
143
|
-
|
|
175
|
+
type: string;
|
|
176
|
+
isKey: boolean;
|
|
177
|
+
writable: boolean;
|
|
178
|
+
mandatory: boolean;
|
|
179
|
+
private?: boolean;
|
|
180
|
+
depends?: string;
|
|
181
|
+
additionalAttributes: string[];
|
|
182
|
+
description?: string;
|
|
183
|
+
default?: any;
|
|
184
|
+
set?: Function;
|
|
185
|
+
get?: Function;
|
|
186
|
+
env?: string[] | string;
|
|
144
187
|
};
|
|
145
188
|
tls: {
|
|
189
|
+
writeable: boolean;
|
|
146
190
|
type: string;
|
|
191
|
+
isKey: boolean;
|
|
192
|
+
writable: boolean;
|
|
193
|
+
mandatory: boolean;
|
|
147
194
|
collection: boolean;
|
|
148
|
-
|
|
149
|
-
|
|
195
|
+
private?: boolean;
|
|
196
|
+
depends?: string;
|
|
197
|
+
additionalAttributes: string[];
|
|
198
|
+
description?: string;
|
|
199
|
+
default?: any;
|
|
200
|
+
set?: Function;
|
|
201
|
+
get?: Function;
|
|
202
|
+
env?: string[] | string;
|
|
150
203
|
};
|
|
151
204
|
hostName: {
|
|
205
|
+
writeable: boolean;
|
|
152
206
|
type: string;
|
|
207
|
+
isKey: boolean;
|
|
208
|
+
writable: boolean;
|
|
209
|
+
mandatory: boolean;
|
|
153
210
|
collection: boolean;
|
|
154
|
-
|
|
211
|
+
private?: boolean;
|
|
212
|
+
depends?: string;
|
|
213
|
+
additionalAttributes: string[];
|
|
214
|
+
description?: string;
|
|
215
|
+
default?: any;
|
|
216
|
+
set?: Function;
|
|
217
|
+
get?: Function;
|
|
218
|
+
env?: string[] | string;
|
|
155
219
|
};
|
|
156
220
|
cidrAddresses: {
|
|
157
|
-
type: string;
|
|
158
221
|
collection: boolean;
|
|
159
222
|
writeable: boolean;
|
|
223
|
+
type: string;
|
|
224
|
+
isKey: boolean;
|
|
225
|
+
writable: boolean;
|
|
226
|
+
mandatory: boolean;
|
|
227
|
+
private?: boolean;
|
|
228
|
+
depends?: string;
|
|
229
|
+
additionalAttributes: string[];
|
|
230
|
+
description?: string;
|
|
231
|
+
default?: any;
|
|
232
|
+
set?: Function;
|
|
233
|
+
get?: Function;
|
|
234
|
+
env?: string[] | string;
|
|
160
235
|
};
|
|
161
236
|
cidrAddress: {
|
|
237
|
+
writeable: boolean;
|
|
162
238
|
type: string;
|
|
239
|
+
isKey: boolean;
|
|
240
|
+
writable: boolean;
|
|
241
|
+
mandatory: boolean;
|
|
163
242
|
collection: boolean;
|
|
164
|
-
|
|
243
|
+
private?: boolean;
|
|
244
|
+
depends?: string;
|
|
245
|
+
additionalAttributes: string[];
|
|
246
|
+
description?: string;
|
|
247
|
+
default?: any;
|
|
248
|
+
set?: Function;
|
|
249
|
+
get?: Function;
|
|
250
|
+
env?: string[] | string;
|
|
165
251
|
};
|
|
166
252
|
addresses: {
|
|
167
|
-
type: string;
|
|
168
253
|
collection: boolean;
|
|
169
254
|
writeable: boolean;
|
|
255
|
+
type: string;
|
|
256
|
+
isKey: boolean;
|
|
257
|
+
writable: boolean;
|
|
258
|
+
mandatory: boolean;
|
|
259
|
+
private?: boolean;
|
|
260
|
+
depends?: string;
|
|
261
|
+
additionalAttributes: string[];
|
|
262
|
+
description?: string;
|
|
263
|
+
default?: any;
|
|
264
|
+
set?: Function;
|
|
265
|
+
get?: Function;
|
|
266
|
+
env?: string[] | string;
|
|
170
267
|
};
|
|
171
268
|
address: {
|
|
269
|
+
writeable: boolean;
|
|
172
270
|
type: string;
|
|
271
|
+
isKey: boolean;
|
|
272
|
+
writable: boolean;
|
|
273
|
+
mandatory: boolean;
|
|
173
274
|
collection: boolean;
|
|
174
|
-
|
|
275
|
+
private?: boolean;
|
|
276
|
+
depends?: string;
|
|
277
|
+
additionalAttributes: string[];
|
|
278
|
+
description?: string;
|
|
279
|
+
default?: any;
|
|
280
|
+
set?: Function;
|
|
281
|
+
get?: Function;
|
|
282
|
+
env?: string[] | string;
|
|
175
283
|
};
|
|
176
284
|
};
|
|
177
285
|
};
|
|
@@ -281,9 +389,20 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
281
389
|
factoryFor(owner: any, value: any): any;
|
|
282
390
|
properties: {
|
|
283
391
|
alias: {
|
|
392
|
+
writeable: boolean;
|
|
284
393
|
type: string;
|
|
394
|
+
isKey: boolean;
|
|
395
|
+
writable: boolean;
|
|
396
|
+
mandatory: boolean;
|
|
285
397
|
collection: boolean;
|
|
286
|
-
|
|
398
|
+
private?: boolean;
|
|
399
|
+
depends?: string;
|
|
400
|
+
additionalAttributes: string[];
|
|
401
|
+
description?: string;
|
|
402
|
+
default?: any;
|
|
403
|
+
set?: Function;
|
|
404
|
+
get?: Function;
|
|
405
|
+
env?: string[] | string;
|
|
287
406
|
};
|
|
288
407
|
weight: {
|
|
289
408
|
type: string;
|
|
@@ -302,51 +421,148 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
302
421
|
writeable: boolean;
|
|
303
422
|
};
|
|
304
423
|
protocol: {
|
|
305
|
-
type: string;
|
|
306
|
-
collection: boolean;
|
|
307
424
|
writeable: boolean;
|
|
308
425
|
values: string[];
|
|
426
|
+
type: string;
|
|
427
|
+
isKey: boolean;
|
|
428
|
+
writable: boolean;
|
|
429
|
+
mandatory: boolean;
|
|
430
|
+
collection: boolean;
|
|
431
|
+
private?: boolean;
|
|
432
|
+
depends?: string;
|
|
433
|
+
additionalAttributes: string[];
|
|
434
|
+
description?: string;
|
|
435
|
+
default?: any;
|
|
436
|
+
set?: Function;
|
|
437
|
+
get?: Function;
|
|
438
|
+
env?: string[] | string;
|
|
309
439
|
};
|
|
310
440
|
type: {
|
|
441
|
+
writeable: boolean;
|
|
311
442
|
type: string;
|
|
443
|
+
isKey: boolean;
|
|
444
|
+
writable: boolean;
|
|
445
|
+
mandatory: boolean;
|
|
312
446
|
collection: boolean;
|
|
313
|
-
|
|
447
|
+
private?: boolean;
|
|
448
|
+
depends?: string;
|
|
449
|
+
additionalAttributes: string[];
|
|
450
|
+
description?: string;
|
|
451
|
+
default?: any;
|
|
452
|
+
set?: Function;
|
|
453
|
+
get?: Function;
|
|
454
|
+
env?: string[] | string;
|
|
314
455
|
};
|
|
315
456
|
types: {
|
|
316
|
-
type: string;
|
|
317
457
|
collection: boolean;
|
|
318
|
-
|
|
458
|
+
type: string;
|
|
459
|
+
isKey: boolean;
|
|
460
|
+
writable: boolean;
|
|
461
|
+
mandatory: boolean;
|
|
462
|
+
private?: boolean;
|
|
463
|
+
depends?: string;
|
|
464
|
+
additionalAttributes: string[];
|
|
465
|
+
description?: string;
|
|
466
|
+
default?: any;
|
|
467
|
+
set?: Function;
|
|
468
|
+
get?: Function;
|
|
469
|
+
env?: string[] | string;
|
|
319
470
|
};
|
|
320
471
|
tls: {
|
|
472
|
+
writeable: boolean;
|
|
321
473
|
type: string;
|
|
474
|
+
isKey: boolean;
|
|
475
|
+
writable: boolean;
|
|
476
|
+
mandatory: boolean;
|
|
322
477
|
collection: boolean;
|
|
323
|
-
|
|
324
|
-
|
|
478
|
+
private?: boolean;
|
|
479
|
+
depends?: string;
|
|
480
|
+
additionalAttributes: string[];
|
|
481
|
+
description?: string;
|
|
482
|
+
default?: any;
|
|
483
|
+
set?: Function;
|
|
484
|
+
get?: Function;
|
|
485
|
+
env?: string[] | string;
|
|
325
486
|
};
|
|
326
487
|
hostName: {
|
|
488
|
+
writeable: boolean;
|
|
327
489
|
type: string;
|
|
490
|
+
isKey: boolean;
|
|
491
|
+
writable: boolean;
|
|
492
|
+
mandatory: boolean;
|
|
328
493
|
collection: boolean;
|
|
329
|
-
|
|
494
|
+
private?: boolean;
|
|
495
|
+
depends?: string;
|
|
496
|
+
additionalAttributes: string[];
|
|
497
|
+
description?: string;
|
|
498
|
+
default?: any;
|
|
499
|
+
set?: Function;
|
|
500
|
+
get?: Function;
|
|
501
|
+
env?: string[] | string;
|
|
330
502
|
};
|
|
331
503
|
cidrAddresses: {
|
|
332
|
-
type: string;
|
|
333
504
|
collection: boolean;
|
|
334
505
|
writeable: boolean;
|
|
506
|
+
type: string;
|
|
507
|
+
isKey: boolean;
|
|
508
|
+
writable: boolean;
|
|
509
|
+
mandatory: boolean;
|
|
510
|
+
private?: boolean;
|
|
511
|
+
depends?: string;
|
|
512
|
+
additionalAttributes: string[];
|
|
513
|
+
description?: string;
|
|
514
|
+
default?: any;
|
|
515
|
+
set?: Function;
|
|
516
|
+
get?: Function;
|
|
517
|
+
env?: string[] | string;
|
|
335
518
|
};
|
|
336
519
|
cidrAddress: {
|
|
520
|
+
writeable: boolean;
|
|
337
521
|
type: string;
|
|
522
|
+
isKey: boolean;
|
|
523
|
+
writable: boolean;
|
|
524
|
+
mandatory: boolean;
|
|
338
525
|
collection: boolean;
|
|
339
|
-
|
|
526
|
+
private?: boolean;
|
|
527
|
+
depends?: string;
|
|
528
|
+
additionalAttributes: string[];
|
|
529
|
+
description?: string;
|
|
530
|
+
default?: any;
|
|
531
|
+
set?: Function;
|
|
532
|
+
get?: Function;
|
|
533
|
+
env?: string[] | string;
|
|
340
534
|
};
|
|
341
535
|
addresses: {
|
|
342
|
-
type: string;
|
|
343
536
|
collection: boolean;
|
|
344
537
|
writeable: boolean;
|
|
538
|
+
type: string;
|
|
539
|
+
isKey: boolean;
|
|
540
|
+
writable: boolean;
|
|
541
|
+
mandatory: boolean;
|
|
542
|
+
private?: boolean;
|
|
543
|
+
depends?: string;
|
|
544
|
+
additionalAttributes: string[];
|
|
545
|
+
description?: string;
|
|
546
|
+
default?: any;
|
|
547
|
+
set?: Function;
|
|
548
|
+
get?: Function;
|
|
549
|
+
env?: string[] | string;
|
|
345
550
|
};
|
|
346
551
|
address: {
|
|
552
|
+
writeable: boolean;
|
|
347
553
|
type: string;
|
|
554
|
+
isKey: boolean;
|
|
555
|
+
writable: boolean;
|
|
556
|
+
mandatory: boolean;
|
|
348
557
|
collection: boolean;
|
|
349
|
-
|
|
558
|
+
private?: boolean;
|
|
559
|
+
depends?: string;
|
|
560
|
+
additionalAttributes: string[];
|
|
561
|
+
description?: string;
|
|
562
|
+
default?: any;
|
|
563
|
+
set?: Function;
|
|
564
|
+
get?: Function;
|
|
565
|
+
env?: string[] | string;
|
|
350
566
|
};
|
|
351
567
|
};
|
|
352
568
|
};
|