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
|
@@ -28,16 +28,22 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
28
28
|
collection: boolean;
|
|
29
29
|
writeable: boolean;
|
|
30
30
|
};
|
|
31
|
-
type:
|
|
32
|
-
type: string;
|
|
33
|
-
collection: boolean;
|
|
34
|
-
writeable: boolean;
|
|
35
|
-
};
|
|
31
|
+
type: import("pacc").AttributeDefinition;
|
|
36
32
|
name: {
|
|
33
|
+
isKey: boolean;
|
|
34
|
+
writeable: boolean;
|
|
37
35
|
type: string;
|
|
36
|
+
writable: boolean;
|
|
37
|
+
mandatory: boolean;
|
|
38
38
|
collection: boolean;
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
private?: boolean;
|
|
40
|
+
depends?: string;
|
|
41
|
+
additionalAttributes: string[];
|
|
42
|
+
description?: string;
|
|
43
|
+
default?: any;
|
|
44
|
+
set?: Function;
|
|
45
|
+
get?: Function;
|
|
46
|
+
env?: string[] | string;
|
|
41
47
|
};
|
|
42
48
|
description: {
|
|
43
49
|
writeable: boolean;
|
|
@@ -93,10 +99,20 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
93
99
|
env?: string[] | string;
|
|
94
100
|
};
|
|
95
101
|
disabled: {
|
|
96
|
-
type: string;
|
|
97
|
-
collection: boolean;
|
|
98
102
|
writeable: boolean;
|
|
99
103
|
default: boolean;
|
|
104
|
+
type: string;
|
|
105
|
+
isKey: boolean;
|
|
106
|
+
writable: boolean;
|
|
107
|
+
mandatory: boolean;
|
|
108
|
+
collection: boolean;
|
|
109
|
+
private?: boolean;
|
|
110
|
+
depends?: string;
|
|
111
|
+
additionalAttributes: string[];
|
|
112
|
+
description?: string;
|
|
113
|
+
set?: Function;
|
|
114
|
+
get?: Function;
|
|
115
|
+
env?: string[] | string;
|
|
100
116
|
};
|
|
101
117
|
tags: {
|
|
102
118
|
collection: boolean;
|
|
@@ -389,16 +405,22 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
389
405
|
collection: boolean;
|
|
390
406
|
writeable: boolean;
|
|
391
407
|
};
|
|
392
|
-
type:
|
|
393
|
-
type: string;
|
|
394
|
-
collection: boolean;
|
|
395
|
-
writeable: boolean;
|
|
396
|
-
};
|
|
408
|
+
type: import("pacc").AttributeDefinition;
|
|
397
409
|
name: {
|
|
410
|
+
isKey: boolean;
|
|
411
|
+
writeable: boolean;
|
|
398
412
|
type: string;
|
|
413
|
+
writable: boolean;
|
|
414
|
+
mandatory: boolean;
|
|
399
415
|
collection: boolean;
|
|
400
|
-
|
|
401
|
-
|
|
416
|
+
private?: boolean;
|
|
417
|
+
depends?: string;
|
|
418
|
+
additionalAttributes: string[];
|
|
419
|
+
description?: string;
|
|
420
|
+
default?: any;
|
|
421
|
+
set?: Function;
|
|
422
|
+
get?: Function;
|
|
423
|
+
env?: string[] | string;
|
|
402
424
|
};
|
|
403
425
|
description: {
|
|
404
426
|
writeable: boolean;
|
|
@@ -454,10 +476,20 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
454
476
|
env?: string[] | string;
|
|
455
477
|
};
|
|
456
478
|
disabled: {
|
|
457
|
-
type: string;
|
|
458
|
-
collection: boolean;
|
|
459
479
|
writeable: boolean;
|
|
460
480
|
default: boolean;
|
|
481
|
+
type: string;
|
|
482
|
+
isKey: boolean;
|
|
483
|
+
writable: boolean;
|
|
484
|
+
mandatory: boolean;
|
|
485
|
+
collection: boolean;
|
|
486
|
+
private?: boolean;
|
|
487
|
+
depends?: string;
|
|
488
|
+
additionalAttributes: string[];
|
|
489
|
+
description?: string;
|
|
490
|
+
set?: Function;
|
|
491
|
+
get?: Function;
|
|
492
|
+
env?: string[] | string;
|
|
461
493
|
};
|
|
462
494
|
tags: {
|
|
463
495
|
collection: boolean;
|
|
@@ -14,16 +14,22 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
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 LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
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;
|
|
@@ -375,16 +391,22 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
375
391
|
collection: boolean;
|
|
376
392
|
writeable: boolean;
|
|
377
393
|
};
|
|
378
|
-
type:
|
|
379
|
-
type: string;
|
|
380
|
-
collection: boolean;
|
|
381
|
-
writeable: boolean;
|
|
382
|
-
};
|
|
394
|
+
type: import("pacc").AttributeDefinition;
|
|
383
395
|
name: {
|
|
396
|
+
isKey: boolean;
|
|
397
|
+
writeable: boolean;
|
|
384
398
|
type: string;
|
|
399
|
+
writable: boolean;
|
|
400
|
+
mandatory: boolean;
|
|
385
401
|
collection: boolean;
|
|
386
|
-
|
|
387
|
-
|
|
402
|
+
private?: boolean;
|
|
403
|
+
depends?: string;
|
|
404
|
+
additionalAttributes: string[];
|
|
405
|
+
description?: string;
|
|
406
|
+
default?: any;
|
|
407
|
+
set?: Function;
|
|
408
|
+
get?: Function;
|
|
409
|
+
env?: string[] | string;
|
|
388
410
|
};
|
|
389
411
|
description: {
|
|
390
412
|
writeable: boolean;
|
|
@@ -440,10 +462,20 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
440
462
|
env?: string[] | string;
|
|
441
463
|
};
|
|
442
464
|
disabled: {
|
|
443
|
-
type: string;
|
|
444
|
-
collection: boolean;
|
|
445
465
|
writeable: boolean;
|
|
446
466
|
default: boolean;
|
|
467
|
+
type: string;
|
|
468
|
+
isKey: boolean;
|
|
469
|
+
writable: boolean;
|
|
470
|
+
mandatory: boolean;
|
|
471
|
+
collection: boolean;
|
|
472
|
+
private?: boolean;
|
|
473
|
+
depends?: string;
|
|
474
|
+
additionalAttributes: string[];
|
|
475
|
+
description?: string;
|
|
476
|
+
set?: Function;
|
|
477
|
+
get?: Function;
|
|
478
|
+
env?: string[] | string;
|
|
447
479
|
};
|
|
448
480
|
tags: {
|
|
449
481
|
collection: boolean;
|
|
@@ -11,16 +11,22 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
11
11
|
collection: boolean;
|
|
12
12
|
writeable: boolean;
|
|
13
13
|
};
|
|
14
|
-
type:
|
|
15
|
-
type: string;
|
|
16
|
-
collection: boolean;
|
|
17
|
-
writeable: boolean;
|
|
18
|
-
};
|
|
14
|
+
type: import("pacc").AttributeDefinition;
|
|
19
15
|
name: {
|
|
16
|
+
isKey: boolean;
|
|
17
|
+
writeable: boolean;
|
|
20
18
|
type: string;
|
|
19
|
+
writable: boolean;
|
|
20
|
+
mandatory: boolean;
|
|
21
21
|
collection: boolean;
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
private?: boolean;
|
|
23
|
+
depends?: string;
|
|
24
|
+
additionalAttributes: string[];
|
|
25
|
+
description?: string;
|
|
26
|
+
default?: any;
|
|
27
|
+
set?: Function;
|
|
28
|
+
get?: Function;
|
|
29
|
+
env?: string[] | string;
|
|
24
30
|
};
|
|
25
31
|
description: {
|
|
26
32
|
writeable: boolean;
|
|
@@ -76,10 +82,20 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
76
82
|
env?: string[] | string;
|
|
77
83
|
};
|
|
78
84
|
disabled: {
|
|
79
|
-
type: string;
|
|
80
|
-
collection: boolean;
|
|
81
85
|
writeable: boolean;
|
|
82
86
|
default: boolean;
|
|
87
|
+
type: string;
|
|
88
|
+
isKey: boolean;
|
|
89
|
+
writable: boolean;
|
|
90
|
+
mandatory: boolean;
|
|
91
|
+
collection: boolean;
|
|
92
|
+
private?: boolean;
|
|
93
|
+
depends?: string;
|
|
94
|
+
additionalAttributes: string[];
|
|
95
|
+
description?: string;
|
|
96
|
+
set?: Function;
|
|
97
|
+
get?: Function;
|
|
98
|
+
env?: string[] | string;
|
|
83
99
|
};
|
|
84
100
|
tags: {
|
|
85
101
|
collection: boolean;
|
|
@@ -373,16 +389,22 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
373
389
|
collection: boolean;
|
|
374
390
|
writeable: boolean;
|
|
375
391
|
};
|
|
376
|
-
type:
|
|
377
|
-
type: string;
|
|
378
|
-
collection: boolean;
|
|
379
|
-
writeable: boolean;
|
|
380
|
-
};
|
|
392
|
+
type: import("pacc").AttributeDefinition;
|
|
381
393
|
name: {
|
|
394
|
+
isKey: boolean;
|
|
395
|
+
writeable: boolean;
|
|
382
396
|
type: string;
|
|
397
|
+
writable: boolean;
|
|
398
|
+
mandatory: boolean;
|
|
383
399
|
collection: boolean;
|
|
384
|
-
|
|
385
|
-
|
|
400
|
+
private?: boolean;
|
|
401
|
+
depends?: string;
|
|
402
|
+
additionalAttributes: string[];
|
|
403
|
+
description?: string;
|
|
404
|
+
default?: any;
|
|
405
|
+
set?: Function;
|
|
406
|
+
get?: Function;
|
|
407
|
+
env?: string[] | string;
|
|
386
408
|
};
|
|
387
409
|
description: {
|
|
388
410
|
writeable: boolean;
|
|
@@ -438,10 +460,20 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
438
460
|
env?: string[] | string;
|
|
439
461
|
};
|
|
440
462
|
disabled: {
|
|
441
|
-
type: string;
|
|
442
|
-
collection: boolean;
|
|
443
463
|
writeable: boolean;
|
|
444
464
|
default: boolean;
|
|
465
|
+
type: string;
|
|
466
|
+
isKey: boolean;
|
|
467
|
+
writable: boolean;
|
|
468
|
+
mandatory: boolean;
|
|
469
|
+
collection: boolean;
|
|
470
|
+
private?: boolean;
|
|
471
|
+
depends?: string;
|
|
472
|
+
additionalAttributes: string[];
|
|
473
|
+
description?: string;
|
|
474
|
+
set?: Function;
|
|
475
|
+
get?: Function;
|
|
476
|
+
env?: string[] | string;
|
|
445
477
|
};
|
|
446
478
|
tags: {
|
|
447
479
|
collection: boolean;
|
|
@@ -14,16 +14,22 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
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 WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
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;
|
|
@@ -375,16 +391,22 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
375
391
|
collection: boolean;
|
|
376
392
|
writeable: boolean;
|
|
377
393
|
};
|
|
378
|
-
type:
|
|
379
|
-
type: string;
|
|
380
|
-
collection: boolean;
|
|
381
|
-
writeable: boolean;
|
|
382
|
-
};
|
|
394
|
+
type: import("pacc").AttributeDefinition;
|
|
383
395
|
name: {
|
|
396
|
+
isKey: boolean;
|
|
397
|
+
writeable: boolean;
|
|
384
398
|
type: string;
|
|
399
|
+
writable: boolean;
|
|
400
|
+
mandatory: boolean;
|
|
385
401
|
collection: boolean;
|
|
386
|
-
|
|
387
|
-
|
|
402
|
+
private?: boolean;
|
|
403
|
+
depends?: string;
|
|
404
|
+
additionalAttributes: string[];
|
|
405
|
+
description?: string;
|
|
406
|
+
default?: any;
|
|
407
|
+
set?: Function;
|
|
408
|
+
get?: Function;
|
|
409
|
+
env?: string[] | string;
|
|
388
410
|
};
|
|
389
411
|
description: {
|
|
390
412
|
writeable: boolean;
|
|
@@ -440,10 +462,20 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
440
462
|
env?: string[] | string;
|
|
441
463
|
};
|
|
442
464
|
disabled: {
|
|
443
|
-
type: string;
|
|
444
|
-
collection: boolean;
|
|
445
465
|
writeable: boolean;
|
|
446
466
|
default: boolean;
|
|
467
|
+
type: string;
|
|
468
|
+
isKey: boolean;
|
|
469
|
+
writable: boolean;
|
|
470
|
+
mandatory: boolean;
|
|
471
|
+
collection: boolean;
|
|
472
|
+
private?: boolean;
|
|
473
|
+
depends?: string;
|
|
474
|
+
additionalAttributes: string[];
|
|
475
|
+
description?: string;
|
|
476
|
+
set?: Function;
|
|
477
|
+
get?: Function;
|
|
478
|
+
env?: string[] | string;
|
|
447
479
|
};
|
|
448
480
|
tags: {
|
|
449
481
|
collection: boolean;
|
|
@@ -14,16 +14,22 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
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 WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
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;
|
|
@@ -377,16 +393,22 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
377
393
|
collection: boolean;
|
|
378
394
|
writeable: boolean;
|
|
379
395
|
};
|
|
380
|
-
type:
|
|
381
|
-
type: string;
|
|
382
|
-
collection: boolean;
|
|
383
|
-
writeable: boolean;
|
|
384
|
-
};
|
|
396
|
+
type: import("pacc").AttributeDefinition;
|
|
385
397
|
name: {
|
|
398
|
+
isKey: boolean;
|
|
399
|
+
writeable: boolean;
|
|
386
400
|
type: string;
|
|
401
|
+
writable: boolean;
|
|
402
|
+
mandatory: boolean;
|
|
387
403
|
collection: boolean;
|
|
388
|
-
|
|
389
|
-
|
|
404
|
+
private?: boolean;
|
|
405
|
+
depends?: string;
|
|
406
|
+
additionalAttributes: string[];
|
|
407
|
+
description?: string;
|
|
408
|
+
default?: any;
|
|
409
|
+
set?: Function;
|
|
410
|
+
get?: Function;
|
|
411
|
+
env?: string[] | string;
|
|
390
412
|
};
|
|
391
413
|
description: {
|
|
392
414
|
writeable: boolean;
|
|
@@ -442,10 +464,20 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
442
464
|
env?: string[] | string;
|
|
443
465
|
};
|
|
444
466
|
disabled: {
|
|
445
|
-
type: string;
|
|
446
|
-
collection: boolean;
|
|
447
467
|
writeable: boolean;
|
|
448
468
|
default: boolean;
|
|
469
|
+
type: string;
|
|
470
|
+
isKey: boolean;
|
|
471
|
+
writable: boolean;
|
|
472
|
+
mandatory: boolean;
|
|
473
|
+
collection: boolean;
|
|
474
|
+
private?: boolean;
|
|
475
|
+
depends?: string;
|
|
476
|
+
additionalAttributes: string[];
|
|
477
|
+
description?: string;
|
|
478
|
+
set?: Function;
|
|
479
|
+
get?: Function;
|
|
480
|
+
env?: string[] | string;
|
|
449
481
|
};
|
|
450
482
|
tags: {
|
|
451
483
|
collection: boolean;
|
|
@@ -738,16 +770,22 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
738
770
|
collection: boolean;
|
|
739
771
|
writeable: boolean;
|
|
740
772
|
};
|
|
741
|
-
type:
|
|
742
|
-
type: string;
|
|
743
|
-
collection: boolean;
|
|
744
|
-
writeable: boolean;
|
|
745
|
-
};
|
|
773
|
+
type: import("pacc").AttributeDefinition;
|
|
746
774
|
name: {
|
|
775
|
+
isKey: boolean;
|
|
776
|
+
writeable: boolean;
|
|
747
777
|
type: string;
|
|
778
|
+
writable: boolean;
|
|
779
|
+
mandatory: boolean;
|
|
748
780
|
collection: boolean;
|
|
749
|
-
|
|
750
|
-
|
|
781
|
+
private?: boolean;
|
|
782
|
+
depends?: string;
|
|
783
|
+
additionalAttributes: string[];
|
|
784
|
+
description?: string;
|
|
785
|
+
default?: any;
|
|
786
|
+
set?: Function;
|
|
787
|
+
get?: Function;
|
|
788
|
+
env?: string[] | string;
|
|
751
789
|
};
|
|
752
790
|
description: {
|
|
753
791
|
writeable: boolean;
|
|
@@ -803,10 +841,20 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
803
841
|
env?: string[] | string;
|
|
804
842
|
};
|
|
805
843
|
disabled: {
|
|
806
|
-
type: string;
|
|
807
|
-
collection: boolean;
|
|
808
844
|
writeable: boolean;
|
|
809
845
|
default: boolean;
|
|
846
|
+
type: string;
|
|
847
|
+
isKey: boolean;
|
|
848
|
+
writable: boolean;
|
|
849
|
+
mandatory: boolean;
|
|
850
|
+
collection: boolean;
|
|
851
|
+
private?: boolean;
|
|
852
|
+
depends?: string;
|
|
853
|
+
additionalAttributes: string[];
|
|
854
|
+
description?: string;
|
|
855
|
+
set?: Function;
|
|
856
|
+
get?: Function;
|
|
857
|
+
env?: string[] | string;
|
|
810
858
|
};
|
|
811
859
|
tags: {
|
|
812
860
|
collection: boolean;
|
package/types/network.d.mts
CHANGED
|
@@ -16,16 +16,22 @@ export class Network extends Owner {
|
|
|
16
16
|
collection: boolean;
|
|
17
17
|
writeable: boolean;
|
|
18
18
|
};
|
|
19
|
-
type:
|
|
20
|
-
type: string;
|
|
21
|
-
collection: boolean;
|
|
22
|
-
writeable: boolean;
|
|
23
|
-
};
|
|
19
|
+
type: import("pacc").AttributeDefinition;
|
|
24
20
|
name: {
|
|
21
|
+
isKey: boolean;
|
|
22
|
+
writeable: boolean;
|
|
25
23
|
type: string;
|
|
24
|
+
writable: boolean;
|
|
25
|
+
mandatory: boolean;
|
|
26
26
|
collection: boolean;
|
|
27
|
-
|
|
28
|
-
|
|
27
|
+
private?: boolean;
|
|
28
|
+
depends?: string;
|
|
29
|
+
additionalAttributes: string[];
|
|
30
|
+
description?: string;
|
|
31
|
+
default?: any;
|
|
32
|
+
set?: Function;
|
|
33
|
+
get?: Function;
|
|
34
|
+
env?: string[] | string;
|
|
29
35
|
};
|
|
30
36
|
description: {
|
|
31
37
|
writeable: boolean;
|
|
@@ -81,10 +87,20 @@ export class Network extends Owner {
|
|
|
81
87
|
env?: string[] | string;
|
|
82
88
|
};
|
|
83
89
|
disabled: {
|
|
84
|
-
type: string;
|
|
85
|
-
collection: boolean;
|
|
86
90
|
writeable: boolean;
|
|
87
91
|
default: boolean;
|
|
92
|
+
type: string;
|
|
93
|
+
isKey: boolean;
|
|
94
|
+
writable: boolean;
|
|
95
|
+
mandatory: boolean;
|
|
96
|
+
collection: boolean;
|
|
97
|
+
private?: boolean;
|
|
98
|
+
depends?: string;
|
|
99
|
+
additionalAttributes: string[];
|
|
100
|
+
description?: string;
|
|
101
|
+
set?: Function;
|
|
102
|
+
get?: Function;
|
|
103
|
+
env?: string[] | string;
|
|
88
104
|
};
|
|
89
105
|
tags: {
|
|
90
106
|
collection: boolean;
|
|
@@ -128,9 +144,8 @@ export class Network extends Owner {
|
|
|
128
144
|
constructWithIdentifierOnly: boolean;
|
|
129
145
|
properties: {
|
|
130
146
|
address: {
|
|
131
|
-
identifier: boolean;
|
|
132
|
-
type: string;
|
|
133
147
|
isKey: boolean;
|
|
148
|
+
type: string;
|
|
134
149
|
writable: boolean;
|
|
135
150
|
mandatory: boolean;
|
|
136
151
|
collection: boolean;
|