pmcf 2.74.3 → 3.0.0
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 +1 -1
- package/src/base.mjs +5 -7
- package/src/services/bind.mjs +16 -23
- package/src/services/openldap.mjs +4 -6
- package/src/services/systemd-journal-upload.mjs +2 -1
- package/src/subnet.mjs +1 -1
- package/src/types.mjs +1 -1
- package/types/base.d.mts +25 -9
- package/types/cluster.d.mts +51 -20
- package/types/extra-source-service.d.mts +25 -9
- package/types/host.d.mts +25 -9
- package/types/location.d.mts +52 -22
- package/types/network-interfaces/ethernet.d.mts +50 -18
- package/types/network-interfaces/loopback.d.mts +50 -18
- package/types/network-interfaces/network-interface.d.mts +50 -18
- package/types/network-interfaces/wireguard.d.mts +50 -18
- package/types/network-interfaces/wlan.d.mts +75 -27
- package/types/network.d.mts +26 -11
- package/types/owner.d.mts +26 -11
- package/types/root.d.mts +52 -22
- package/types/service.d.mts +50 -18
- package/types/services/bind.d.mts +194 -35
- package/types/services/chrony.d.mts +50 -18
- package/types/services/influxdb.d.mts +50 -18
- package/types/services/kea.d.mts +50 -18
- package/types/services/mosquitto.d.mts +50 -18
- package/types/services/openldap.d.mts +86 -21
- package/types/services/systemd-journal-remote.d.mts +50 -18
- package/types/services/systemd-journal-upload.d.mts +62 -19
- package/types/services/systemd-journal.d.mts +50 -18
- package/types/services/systemd-resolved.d.mts +50 -18
- package/types/services/systemd-timesyncd.d.mts +50 -18
- package/types/subnet.d.mts +1 -2
|
@@ -14,16 +14,22 @@ export class ChronyService extends ExtraSourceService {
|
|
|
14
14
|
collection: boolean;
|
|
15
15
|
writeable: boolean;
|
|
16
16
|
};
|
|
17
|
-
type:
|
|
18
|
-
type: string;
|
|
19
|
-
collection: boolean;
|
|
20
|
-
writeable: boolean;
|
|
21
|
-
};
|
|
17
|
+
type: import("pacc").AttributeDefinition;
|
|
22
18
|
name: {
|
|
19
|
+
isKey: boolean;
|
|
20
|
+
writeable: boolean;
|
|
23
21
|
type: string;
|
|
22
|
+
writable: boolean;
|
|
23
|
+
mandatory: boolean;
|
|
24
24
|
collection: boolean;
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
private?: boolean;
|
|
26
|
+
depends?: string;
|
|
27
|
+
additionalAttributes: string[];
|
|
28
|
+
description?: string;
|
|
29
|
+
default?: any;
|
|
30
|
+
set?: Function;
|
|
31
|
+
get?: Function;
|
|
32
|
+
env?: string[] | string;
|
|
27
33
|
};
|
|
28
34
|
description: {
|
|
29
35
|
writeable: boolean;
|
|
@@ -79,10 +85,20 @@ export class ChronyService extends ExtraSourceService {
|
|
|
79
85
|
env?: string[] | string;
|
|
80
86
|
};
|
|
81
87
|
disabled: {
|
|
82
|
-
type: string;
|
|
83
|
-
collection: boolean;
|
|
84
88
|
writeable: boolean;
|
|
85
89
|
default: boolean;
|
|
90
|
+
type: string;
|
|
91
|
+
isKey: boolean;
|
|
92
|
+
writable: boolean;
|
|
93
|
+
mandatory: boolean;
|
|
94
|
+
collection: boolean;
|
|
95
|
+
private?: boolean;
|
|
96
|
+
depends?: string;
|
|
97
|
+
additionalAttributes: string[];
|
|
98
|
+
description?: string;
|
|
99
|
+
set?: Function;
|
|
100
|
+
get?: Function;
|
|
101
|
+
env?: string[] | string;
|
|
86
102
|
};
|
|
87
103
|
tags: {
|
|
88
104
|
collection: boolean;
|
|
@@ -300,16 +316,22 @@ export class ChronyService extends ExtraSourceService {
|
|
|
300
316
|
collection: boolean;
|
|
301
317
|
writeable: boolean;
|
|
302
318
|
};
|
|
303
|
-
type:
|
|
304
|
-
type: string;
|
|
305
|
-
collection: boolean;
|
|
306
|
-
writeable: boolean;
|
|
307
|
-
};
|
|
319
|
+
type: import("pacc").AttributeDefinition;
|
|
308
320
|
name: {
|
|
321
|
+
isKey: boolean;
|
|
322
|
+
writeable: boolean;
|
|
309
323
|
type: string;
|
|
324
|
+
writable: boolean;
|
|
325
|
+
mandatory: boolean;
|
|
310
326
|
collection: boolean;
|
|
311
|
-
|
|
312
|
-
|
|
327
|
+
private?: boolean;
|
|
328
|
+
depends?: string;
|
|
329
|
+
additionalAttributes: string[];
|
|
330
|
+
description?: string;
|
|
331
|
+
default?: any;
|
|
332
|
+
set?: Function;
|
|
333
|
+
get?: Function;
|
|
334
|
+
env?: string[] | string;
|
|
313
335
|
};
|
|
314
336
|
description: {
|
|
315
337
|
writeable: boolean;
|
|
@@ -365,10 +387,20 @@ export class ChronyService extends ExtraSourceService {
|
|
|
365
387
|
env?: string[] | string;
|
|
366
388
|
};
|
|
367
389
|
disabled: {
|
|
368
|
-
type: string;
|
|
369
|
-
collection: boolean;
|
|
370
390
|
writeable: boolean;
|
|
371
391
|
default: boolean;
|
|
392
|
+
type: string;
|
|
393
|
+
isKey: boolean;
|
|
394
|
+
writable: boolean;
|
|
395
|
+
mandatory: boolean;
|
|
396
|
+
collection: boolean;
|
|
397
|
+
private?: boolean;
|
|
398
|
+
depends?: string;
|
|
399
|
+
additionalAttributes: string[];
|
|
400
|
+
description?: string;
|
|
401
|
+
set?: Function;
|
|
402
|
+
get?: Function;
|
|
403
|
+
env?: string[] | string;
|
|
372
404
|
};
|
|
373
405
|
tags: {
|
|
374
406
|
collection: boolean;
|
|
@@ -14,16 +14,22 @@ export class InfluxdbService extends Service {
|
|
|
14
14
|
collection: boolean;
|
|
15
15
|
writeable: boolean;
|
|
16
16
|
};
|
|
17
|
-
type:
|
|
18
|
-
type: string;
|
|
19
|
-
collection: boolean;
|
|
20
|
-
writeable: boolean;
|
|
21
|
-
};
|
|
17
|
+
type: import("pacc").AttributeDefinition;
|
|
22
18
|
name: {
|
|
19
|
+
isKey: boolean;
|
|
20
|
+
writeable: boolean;
|
|
23
21
|
type: string;
|
|
22
|
+
writable: boolean;
|
|
23
|
+
mandatory: boolean;
|
|
24
24
|
collection: boolean;
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
private?: boolean;
|
|
26
|
+
depends?: string;
|
|
27
|
+
additionalAttributes: string[];
|
|
28
|
+
description?: string;
|
|
29
|
+
default?: any;
|
|
30
|
+
set?: Function;
|
|
31
|
+
get?: Function;
|
|
32
|
+
env?: string[] | string;
|
|
27
33
|
};
|
|
28
34
|
description: {
|
|
29
35
|
writeable: boolean;
|
|
@@ -79,10 +85,20 @@ export class InfluxdbService extends Service {
|
|
|
79
85
|
env?: string[] | string;
|
|
80
86
|
};
|
|
81
87
|
disabled: {
|
|
82
|
-
type: string;
|
|
83
|
-
collection: boolean;
|
|
84
88
|
writeable: boolean;
|
|
85
89
|
default: boolean;
|
|
90
|
+
type: string;
|
|
91
|
+
isKey: boolean;
|
|
92
|
+
writable: boolean;
|
|
93
|
+
mandatory: boolean;
|
|
94
|
+
collection: boolean;
|
|
95
|
+
private?: boolean;
|
|
96
|
+
depends?: string;
|
|
97
|
+
additionalAttributes: string[];
|
|
98
|
+
description?: string;
|
|
99
|
+
set?: Function;
|
|
100
|
+
get?: Function;
|
|
101
|
+
env?: string[] | string;
|
|
86
102
|
};
|
|
87
103
|
tags: {
|
|
88
104
|
collection: boolean;
|
|
@@ -297,16 +313,22 @@ export class InfluxdbService extends Service {
|
|
|
297
313
|
collection: boolean;
|
|
298
314
|
writeable: boolean;
|
|
299
315
|
};
|
|
300
|
-
type:
|
|
301
|
-
type: string;
|
|
302
|
-
collection: boolean;
|
|
303
|
-
writeable: boolean;
|
|
304
|
-
};
|
|
316
|
+
type: import("pacc").AttributeDefinition;
|
|
305
317
|
name: {
|
|
318
|
+
isKey: boolean;
|
|
319
|
+
writeable: boolean;
|
|
306
320
|
type: string;
|
|
321
|
+
writable: boolean;
|
|
322
|
+
mandatory: boolean;
|
|
307
323
|
collection: boolean;
|
|
308
|
-
|
|
309
|
-
|
|
324
|
+
private?: boolean;
|
|
325
|
+
depends?: string;
|
|
326
|
+
additionalAttributes: string[];
|
|
327
|
+
description?: string;
|
|
328
|
+
default?: any;
|
|
329
|
+
set?: Function;
|
|
330
|
+
get?: Function;
|
|
331
|
+
env?: string[] | string;
|
|
310
332
|
};
|
|
311
333
|
description: {
|
|
312
334
|
writeable: boolean;
|
|
@@ -362,10 +384,20 @@ export class InfluxdbService extends Service {
|
|
|
362
384
|
env?: string[] | string;
|
|
363
385
|
};
|
|
364
386
|
disabled: {
|
|
365
|
-
type: string;
|
|
366
|
-
collection: boolean;
|
|
367
387
|
writeable: boolean;
|
|
368
388
|
default: boolean;
|
|
389
|
+
type: string;
|
|
390
|
+
isKey: boolean;
|
|
391
|
+
writable: boolean;
|
|
392
|
+
mandatory: boolean;
|
|
393
|
+
collection: boolean;
|
|
394
|
+
private?: boolean;
|
|
395
|
+
depends?: string;
|
|
396
|
+
additionalAttributes: string[];
|
|
397
|
+
description?: string;
|
|
398
|
+
set?: Function;
|
|
399
|
+
get?: Function;
|
|
400
|
+
env?: string[] | string;
|
|
369
401
|
};
|
|
370
402
|
tags: {
|
|
371
403
|
collection: boolean;
|
package/types/services/kea.d.mts
CHANGED
|
@@ -15,16 +15,22 @@ export class KeaService extends Service {
|
|
|
15
15
|
collection: boolean;
|
|
16
16
|
writeable: boolean;
|
|
17
17
|
};
|
|
18
|
-
type:
|
|
19
|
-
type: string;
|
|
20
|
-
collection: boolean;
|
|
21
|
-
writeable: boolean;
|
|
22
|
-
};
|
|
18
|
+
type: import("pacc").AttributeDefinition;
|
|
23
19
|
name: {
|
|
20
|
+
isKey: boolean;
|
|
21
|
+
writeable: boolean;
|
|
24
22
|
type: string;
|
|
23
|
+
writable: boolean;
|
|
24
|
+
mandatory: boolean;
|
|
25
25
|
collection: boolean;
|
|
26
|
-
|
|
27
|
-
|
|
26
|
+
private?: boolean;
|
|
27
|
+
depends?: string;
|
|
28
|
+
additionalAttributes: string[];
|
|
29
|
+
description?: string;
|
|
30
|
+
default?: any;
|
|
31
|
+
set?: Function;
|
|
32
|
+
get?: Function;
|
|
33
|
+
env?: string[] | string;
|
|
28
34
|
};
|
|
29
35
|
description: {
|
|
30
36
|
writeable: boolean;
|
|
@@ -80,10 +86,20 @@ export class KeaService extends Service {
|
|
|
80
86
|
env?: string[] | string;
|
|
81
87
|
};
|
|
82
88
|
disabled: {
|
|
83
|
-
type: string;
|
|
84
|
-
collection: boolean;
|
|
85
89
|
writeable: boolean;
|
|
86
90
|
default: boolean;
|
|
91
|
+
type: string;
|
|
92
|
+
isKey: boolean;
|
|
93
|
+
writable: boolean;
|
|
94
|
+
mandatory: boolean;
|
|
95
|
+
collection: boolean;
|
|
96
|
+
private?: boolean;
|
|
97
|
+
depends?: string;
|
|
98
|
+
additionalAttributes: string[];
|
|
99
|
+
description?: string;
|
|
100
|
+
set?: Function;
|
|
101
|
+
get?: Function;
|
|
102
|
+
env?: string[] | string;
|
|
87
103
|
};
|
|
88
104
|
tags: {
|
|
89
105
|
collection: boolean;
|
|
@@ -298,16 +314,22 @@ export class KeaService extends Service {
|
|
|
298
314
|
collection: boolean;
|
|
299
315
|
writeable: boolean;
|
|
300
316
|
};
|
|
301
|
-
type:
|
|
302
|
-
type: string;
|
|
303
|
-
collection: boolean;
|
|
304
|
-
writeable: boolean;
|
|
305
|
-
};
|
|
317
|
+
type: import("pacc").AttributeDefinition;
|
|
306
318
|
name: {
|
|
319
|
+
isKey: boolean;
|
|
320
|
+
writeable: boolean;
|
|
307
321
|
type: string;
|
|
322
|
+
writable: boolean;
|
|
323
|
+
mandatory: boolean;
|
|
308
324
|
collection: boolean;
|
|
309
|
-
|
|
310
|
-
|
|
325
|
+
private?: boolean;
|
|
326
|
+
depends?: string;
|
|
327
|
+
additionalAttributes: string[];
|
|
328
|
+
description?: string;
|
|
329
|
+
default?: any;
|
|
330
|
+
set?: Function;
|
|
331
|
+
get?: Function;
|
|
332
|
+
env?: string[] | string;
|
|
311
333
|
};
|
|
312
334
|
description: {
|
|
313
335
|
writeable: boolean;
|
|
@@ -363,10 +385,20 @@ export class KeaService extends Service {
|
|
|
363
385
|
env?: string[] | string;
|
|
364
386
|
};
|
|
365
387
|
disabled: {
|
|
366
|
-
type: string;
|
|
367
|
-
collection: boolean;
|
|
368
388
|
writeable: boolean;
|
|
369
389
|
default: boolean;
|
|
390
|
+
type: string;
|
|
391
|
+
isKey: boolean;
|
|
392
|
+
writable: boolean;
|
|
393
|
+
mandatory: boolean;
|
|
394
|
+
collection: boolean;
|
|
395
|
+
private?: boolean;
|
|
396
|
+
depends?: string;
|
|
397
|
+
additionalAttributes: string[];
|
|
398
|
+
description?: string;
|
|
399
|
+
set?: Function;
|
|
400
|
+
get?: Function;
|
|
401
|
+
env?: string[] | string;
|
|
370
402
|
};
|
|
371
403
|
tags: {
|
|
372
404
|
collection: boolean;
|
|
@@ -14,16 +14,22 @@ export class MosquittoService extends Service {
|
|
|
14
14
|
collection: boolean;
|
|
15
15
|
writeable: boolean;
|
|
16
16
|
};
|
|
17
|
-
type:
|
|
18
|
-
type: string;
|
|
19
|
-
collection: boolean;
|
|
20
|
-
writeable: boolean;
|
|
21
|
-
};
|
|
17
|
+
type: import("pacc").AttributeDefinition;
|
|
22
18
|
name: {
|
|
19
|
+
isKey: boolean;
|
|
20
|
+
writeable: boolean;
|
|
23
21
|
type: string;
|
|
22
|
+
writable: boolean;
|
|
23
|
+
mandatory: boolean;
|
|
24
24
|
collection: boolean;
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
private?: boolean;
|
|
26
|
+
depends?: string;
|
|
27
|
+
additionalAttributes: string[];
|
|
28
|
+
description?: string;
|
|
29
|
+
default?: any;
|
|
30
|
+
set?: Function;
|
|
31
|
+
get?: Function;
|
|
32
|
+
env?: string[] | string;
|
|
27
33
|
};
|
|
28
34
|
description: {
|
|
29
35
|
writeable: boolean;
|
|
@@ -79,10 +85,20 @@ export class MosquittoService extends Service {
|
|
|
79
85
|
env?: string[] | string;
|
|
80
86
|
};
|
|
81
87
|
disabled: {
|
|
82
|
-
type: string;
|
|
83
|
-
collection: boolean;
|
|
84
88
|
writeable: boolean;
|
|
85
89
|
default: boolean;
|
|
90
|
+
type: string;
|
|
91
|
+
isKey: boolean;
|
|
92
|
+
writable: boolean;
|
|
93
|
+
mandatory: boolean;
|
|
94
|
+
collection: boolean;
|
|
95
|
+
private?: boolean;
|
|
96
|
+
depends?: string;
|
|
97
|
+
additionalAttributes: string[];
|
|
98
|
+
description?: string;
|
|
99
|
+
set?: Function;
|
|
100
|
+
get?: Function;
|
|
101
|
+
env?: string[] | string;
|
|
86
102
|
};
|
|
87
103
|
tags: {
|
|
88
104
|
collection: boolean;
|
|
@@ -297,16 +313,22 @@ export class MosquittoService extends Service {
|
|
|
297
313
|
collection: boolean;
|
|
298
314
|
writeable: boolean;
|
|
299
315
|
};
|
|
300
|
-
type:
|
|
301
|
-
type: string;
|
|
302
|
-
collection: boolean;
|
|
303
|
-
writeable: boolean;
|
|
304
|
-
};
|
|
316
|
+
type: import("pacc").AttributeDefinition;
|
|
305
317
|
name: {
|
|
318
|
+
isKey: boolean;
|
|
319
|
+
writeable: boolean;
|
|
306
320
|
type: string;
|
|
321
|
+
writable: boolean;
|
|
322
|
+
mandatory: boolean;
|
|
307
323
|
collection: boolean;
|
|
308
|
-
|
|
309
|
-
|
|
324
|
+
private?: boolean;
|
|
325
|
+
depends?: string;
|
|
326
|
+
additionalAttributes: string[];
|
|
327
|
+
description?: string;
|
|
328
|
+
default?: any;
|
|
329
|
+
set?: Function;
|
|
330
|
+
get?: Function;
|
|
331
|
+
env?: string[] | string;
|
|
310
332
|
};
|
|
311
333
|
description: {
|
|
312
334
|
writeable: boolean;
|
|
@@ -362,10 +384,20 @@ export class MosquittoService extends Service {
|
|
|
362
384
|
env?: string[] | string;
|
|
363
385
|
};
|
|
364
386
|
disabled: {
|
|
365
|
-
type: string;
|
|
366
|
-
collection: boolean;
|
|
367
387
|
writeable: boolean;
|
|
368
388
|
default: boolean;
|
|
389
|
+
type: string;
|
|
390
|
+
isKey: boolean;
|
|
391
|
+
writable: boolean;
|
|
392
|
+
mandatory: boolean;
|
|
393
|
+
collection: boolean;
|
|
394
|
+
private?: boolean;
|
|
395
|
+
depends?: string;
|
|
396
|
+
additionalAttributes: string[];
|
|
397
|
+
description?: string;
|
|
398
|
+
set?: Function;
|
|
399
|
+
get?: Function;
|
|
400
|
+
env?: string[] | string;
|
|
369
401
|
};
|
|
370
402
|
tags: {
|
|
371
403
|
collection: boolean;
|
|
@@ -14,16 +14,22 @@ export class OpenLDAPService extends Service {
|
|
|
14
14
|
collection: boolean;
|
|
15
15
|
writeable: boolean;
|
|
16
16
|
};
|
|
17
|
-
type:
|
|
18
|
-
type: string;
|
|
19
|
-
collection: boolean;
|
|
20
|
-
writeable: boolean;
|
|
21
|
-
};
|
|
17
|
+
type: import("pacc").AttributeDefinition;
|
|
22
18
|
name: {
|
|
19
|
+
isKey: boolean;
|
|
20
|
+
writeable: boolean;
|
|
23
21
|
type: string;
|
|
22
|
+
writable: boolean;
|
|
23
|
+
mandatory: boolean;
|
|
24
24
|
collection: boolean;
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
private?: boolean;
|
|
26
|
+
depends?: string;
|
|
27
|
+
additionalAttributes: string[];
|
|
28
|
+
description?: string;
|
|
29
|
+
default?: any;
|
|
30
|
+
set?: Function;
|
|
31
|
+
get?: Function;
|
|
32
|
+
env?: string[] | string;
|
|
27
33
|
};
|
|
28
34
|
description: {
|
|
29
35
|
writeable: boolean;
|
|
@@ -79,10 +85,20 @@ export class OpenLDAPService extends Service {
|
|
|
79
85
|
env?: string[] | string;
|
|
80
86
|
};
|
|
81
87
|
disabled: {
|
|
82
|
-
type: string;
|
|
83
|
-
collection: boolean;
|
|
84
88
|
writeable: boolean;
|
|
85
89
|
default: boolean;
|
|
90
|
+
type: string;
|
|
91
|
+
isKey: boolean;
|
|
92
|
+
writable: boolean;
|
|
93
|
+
mandatory: boolean;
|
|
94
|
+
collection: boolean;
|
|
95
|
+
private?: boolean;
|
|
96
|
+
depends?: string;
|
|
97
|
+
additionalAttributes: string[];
|
|
98
|
+
description?: string;
|
|
99
|
+
set?: Function;
|
|
100
|
+
get?: Function;
|
|
101
|
+
env?: string[] | string;
|
|
86
102
|
};
|
|
87
103
|
tags: {
|
|
88
104
|
collection: boolean;
|
|
@@ -297,16 +313,22 @@ export class OpenLDAPService extends Service {
|
|
|
297
313
|
collection: boolean;
|
|
298
314
|
writeable: boolean;
|
|
299
315
|
};
|
|
300
|
-
type:
|
|
301
|
-
type: string;
|
|
302
|
-
collection: boolean;
|
|
303
|
-
writeable: boolean;
|
|
304
|
-
};
|
|
316
|
+
type: import("pacc").AttributeDefinition;
|
|
305
317
|
name: {
|
|
318
|
+
isKey: boolean;
|
|
319
|
+
writeable: boolean;
|
|
306
320
|
type: string;
|
|
321
|
+
writable: boolean;
|
|
322
|
+
mandatory: boolean;
|
|
307
323
|
collection: boolean;
|
|
308
|
-
|
|
309
|
-
|
|
324
|
+
private?: boolean;
|
|
325
|
+
depends?: string;
|
|
326
|
+
additionalAttributes: string[];
|
|
327
|
+
description?: string;
|
|
328
|
+
default?: any;
|
|
329
|
+
set?: Function;
|
|
330
|
+
get?: Function;
|
|
331
|
+
env?: string[] | string;
|
|
310
332
|
};
|
|
311
333
|
description: {
|
|
312
334
|
writeable: boolean;
|
|
@@ -362,10 +384,20 @@ export class OpenLDAPService extends Service {
|
|
|
362
384
|
env?: string[] | string;
|
|
363
385
|
};
|
|
364
386
|
disabled: {
|
|
365
|
-
type: string;
|
|
366
|
-
collection: boolean;
|
|
367
387
|
writeable: boolean;
|
|
368
388
|
default: boolean;
|
|
389
|
+
type: string;
|
|
390
|
+
isKey: boolean;
|
|
391
|
+
writable: boolean;
|
|
392
|
+
mandatory: boolean;
|
|
393
|
+
collection: boolean;
|
|
394
|
+
private?: boolean;
|
|
395
|
+
depends?: string;
|
|
396
|
+
additionalAttributes: string[];
|
|
397
|
+
description?: string;
|
|
398
|
+
set?: Function;
|
|
399
|
+
get?: Function;
|
|
400
|
+
env?: string[] | string;
|
|
369
401
|
};
|
|
370
402
|
tags: {
|
|
371
403
|
collection: boolean;
|
|
@@ -569,19 +601,52 @@ export class OpenLDAPService extends Service {
|
|
|
569
601
|
priority: number;
|
|
570
602
|
properties: {
|
|
571
603
|
baseDN: {
|
|
604
|
+
writeable: boolean;
|
|
572
605
|
type: string;
|
|
606
|
+
isKey: boolean;
|
|
607
|
+
writable: boolean;
|
|
608
|
+
mandatory: boolean;
|
|
573
609
|
collection: boolean;
|
|
574
|
-
|
|
610
|
+
private?: boolean;
|
|
611
|
+
depends?: string;
|
|
612
|
+
additionalAttributes: string[];
|
|
613
|
+
description?: string;
|
|
614
|
+
default?: any;
|
|
615
|
+
set?: Function;
|
|
616
|
+
get?: Function;
|
|
617
|
+
env?: string[] | string;
|
|
575
618
|
};
|
|
576
619
|
rootDN: {
|
|
620
|
+
writeable: boolean;
|
|
577
621
|
type: string;
|
|
622
|
+
isKey: boolean;
|
|
623
|
+
writable: boolean;
|
|
624
|
+
mandatory: boolean;
|
|
578
625
|
collection: boolean;
|
|
579
|
-
|
|
626
|
+
private?: boolean;
|
|
627
|
+
depends?: string;
|
|
628
|
+
additionalAttributes: string[];
|
|
629
|
+
description?: string;
|
|
630
|
+
default?: any;
|
|
631
|
+
set?: Function;
|
|
632
|
+
get?: Function;
|
|
633
|
+
env?: string[] | string;
|
|
580
634
|
};
|
|
581
635
|
uri: {
|
|
636
|
+
writeable: boolean;
|
|
582
637
|
type: string;
|
|
638
|
+
isKey: boolean;
|
|
639
|
+
writable: boolean;
|
|
640
|
+
mandatory: boolean;
|
|
583
641
|
collection: boolean;
|
|
584
|
-
|
|
642
|
+
private?: boolean;
|
|
643
|
+
depends?: string;
|
|
644
|
+
additionalAttributes: string[];
|
|
645
|
+
description?: string;
|
|
646
|
+
default?: any;
|
|
647
|
+
set?: Function;
|
|
648
|
+
get?: Function;
|
|
649
|
+
env?: string[] | string;
|
|
585
650
|
};
|
|
586
651
|
};
|
|
587
652
|
service: {
|
|
@@ -14,16 +14,22 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
14
14
|
collection: boolean;
|
|
15
15
|
writeable: boolean;
|
|
16
16
|
};
|
|
17
|
-
type:
|
|
18
|
-
type: string;
|
|
19
|
-
collection: boolean;
|
|
20
|
-
writeable: boolean;
|
|
21
|
-
};
|
|
17
|
+
type: import("pacc").AttributeDefinition;
|
|
22
18
|
name: {
|
|
19
|
+
isKey: boolean;
|
|
20
|
+
writeable: boolean;
|
|
23
21
|
type: string;
|
|
22
|
+
writable: boolean;
|
|
23
|
+
mandatory: boolean;
|
|
24
24
|
collection: boolean;
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
private?: boolean;
|
|
26
|
+
depends?: string;
|
|
27
|
+
additionalAttributes: string[];
|
|
28
|
+
description?: string;
|
|
29
|
+
default?: any;
|
|
30
|
+
set?: Function;
|
|
31
|
+
get?: Function;
|
|
32
|
+
env?: string[] | string;
|
|
27
33
|
};
|
|
28
34
|
description: {
|
|
29
35
|
writeable: boolean;
|
|
@@ -79,10 +85,20 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
79
85
|
env?: string[] | string;
|
|
80
86
|
};
|
|
81
87
|
disabled: {
|
|
82
|
-
type: string;
|
|
83
|
-
collection: boolean;
|
|
84
88
|
writeable: boolean;
|
|
85
89
|
default: boolean;
|
|
90
|
+
type: string;
|
|
91
|
+
isKey: boolean;
|
|
92
|
+
writable: boolean;
|
|
93
|
+
mandatory: boolean;
|
|
94
|
+
collection: boolean;
|
|
95
|
+
private?: boolean;
|
|
96
|
+
depends?: string;
|
|
97
|
+
additionalAttributes: string[];
|
|
98
|
+
description?: string;
|
|
99
|
+
set?: Function;
|
|
100
|
+
get?: Function;
|
|
101
|
+
env?: string[] | string;
|
|
86
102
|
};
|
|
87
103
|
tags: {
|
|
88
104
|
collection: boolean;
|
|
@@ -297,16 +313,22 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
297
313
|
collection: boolean;
|
|
298
314
|
writeable: boolean;
|
|
299
315
|
};
|
|
300
|
-
type:
|
|
301
|
-
type: string;
|
|
302
|
-
collection: boolean;
|
|
303
|
-
writeable: boolean;
|
|
304
|
-
};
|
|
316
|
+
type: import("pacc").AttributeDefinition;
|
|
305
317
|
name: {
|
|
318
|
+
isKey: boolean;
|
|
319
|
+
writeable: boolean;
|
|
306
320
|
type: string;
|
|
321
|
+
writable: boolean;
|
|
322
|
+
mandatory: boolean;
|
|
307
323
|
collection: boolean;
|
|
308
|
-
|
|
309
|
-
|
|
324
|
+
private?: boolean;
|
|
325
|
+
depends?: string;
|
|
326
|
+
additionalAttributes: string[];
|
|
327
|
+
description?: string;
|
|
328
|
+
default?: any;
|
|
329
|
+
set?: Function;
|
|
330
|
+
get?: Function;
|
|
331
|
+
env?: string[] | string;
|
|
310
332
|
};
|
|
311
333
|
description: {
|
|
312
334
|
writeable: boolean;
|
|
@@ -362,10 +384,20 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
362
384
|
env?: string[] | string;
|
|
363
385
|
};
|
|
364
386
|
disabled: {
|
|
365
|
-
type: string;
|
|
366
|
-
collection: boolean;
|
|
367
387
|
writeable: boolean;
|
|
368
388
|
default: boolean;
|
|
389
|
+
type: string;
|
|
390
|
+
isKey: boolean;
|
|
391
|
+
writable: boolean;
|
|
392
|
+
mandatory: boolean;
|
|
393
|
+
collection: boolean;
|
|
394
|
+
private?: boolean;
|
|
395
|
+
depends?: string;
|
|
396
|
+
additionalAttributes: string[];
|
|
397
|
+
description?: string;
|
|
398
|
+
set?: Function;
|
|
399
|
+
get?: Function;
|
|
400
|
+
env?: string[] | string;
|
|
369
401
|
};
|
|
370
402
|
tags: {
|
|
371
403
|
collection: boolean;
|