pmcf 2.74.4 → 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/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 +50 -18
- 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 +50 -18
- package/types/services/systemd-journal-remote.d.mts +50 -18
- package/types/services/systemd-journal-upload.d.mts +50 -18
- 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 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;
|
|
@@ -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;
|
|
@@ -14,16 +14,22 @@ export class SystemdJournalUploadService 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 SystemdJournalUploadService 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 SystemdJournalUploadService 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 SystemdJournalUploadService 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 SystemdJournalService 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 SystemdJournalService 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 SystemdJournalService 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 SystemdJournalService 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 SystemdResolvedService 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 SystemdResolvedService 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;
|
|
@@ -297,16 +313,22 @@ export class SystemdResolvedService extends ExtraSourceService {
|
|
|
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 SystemdResolvedService extends ExtraSourceService {
|
|
|
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 SystemdTimesyncdService 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 SystemdTimesyncdService 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;
|
|
@@ -297,16 +313,22 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
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 SystemdTimesyncdService extends ExtraSourceService {
|
|
|
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/subnet.d.mts
CHANGED