pmcf 3.14.0 → 3.14.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 +5 -5
- package/src/base.mjs +10 -12
- package/src/services/bind.mjs +3 -4
- package/types/base.d.mts +30 -31
- package/types/cluster.d.mts +2 -64
- package/types/extra-source-service.d.mts +6 -192
- package/types/host.d.mts +2 -32
- package/types/location.d.mts +2 -64
- package/types/network-interfaces/ethernet.d.mts +4 -128
- package/types/network-interfaces/loopback.d.mts +4 -128
- package/types/network-interfaces/network-interface.d.mts +5 -128
- package/types/network-interfaces/tun.d.mts +4 -128
- package/types/network-interfaces/wireguard.d.mts +4 -128
- package/types/network-interfaces/wlan.d.mts +6 -192
- package/types/network.d.mts +2 -64
- package/types/owner.d.mts +1 -32
- package/types/root.d.mts +2 -64
- package/types/service.d.mts +4 -128
- package/types/services/bind.d.mts +8 -256
- package/types/services/chrony.d.mts +8 -256
- package/types/services/headscale.d.mts +5 -160
- package/types/services/influxdb.d.mts +5 -160
- package/types/services/kea.d.mts +5 -160
- package/types/services/mosquitto.d.mts +5 -160
- package/types/services/openldap.d.mts +5 -160
- package/types/services/systemd-journal-remote.d.mts +5 -160
- package/types/services/systemd-journal-upload.d.mts +5 -160
- package/types/services/systemd-journal.d.mts +5 -160
- package/types/services/systemd-resolved.d.mts +8 -256
- package/types/services/systemd-timesyncd.d.mts +8 -256
- package/types/services/tailscale.d.mts +5 -162
|
@@ -31,38 +31,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
31
31
|
extends: {
|
|
32
32
|
name: string;
|
|
33
33
|
owners: string[];
|
|
34
|
-
extends:
|
|
35
|
-
name: string;
|
|
36
|
-
key: string;
|
|
37
|
-
attributes: {
|
|
38
|
-
owner: {
|
|
39
|
-
type: string;
|
|
40
|
-
isKey: boolean;
|
|
41
|
-
writable: boolean;
|
|
42
|
-
mandatory: boolean;
|
|
43
|
-
collection: boolean;
|
|
44
|
-
private?: boolean;
|
|
45
|
-
depends?: string;
|
|
46
|
-
description?: string;
|
|
47
|
-
default?: any;
|
|
48
|
-
set?: Function;
|
|
49
|
-
get?: Function;
|
|
50
|
-
prepareValue?: Function;
|
|
51
|
-
values?: Set<any>;
|
|
52
|
-
externalName?: string;
|
|
53
|
-
env?: string[] | string;
|
|
54
|
-
additionalValues?: object;
|
|
55
|
-
};
|
|
56
|
-
type: import("pacc").AttributeDefinition;
|
|
57
|
-
name: import("pacc").AttributeDefinition;
|
|
58
|
-
description: import("pacc").AttributeDefinition;
|
|
59
|
-
priority: import("pacc").AttributeDefinition;
|
|
60
|
-
directory: import("pacc").AttributeDefinition;
|
|
61
|
-
packaging: import("pacc").AttributeDefinition;
|
|
62
|
-
disabled: import("pacc").AttributeDefinition;
|
|
63
|
-
tags: import("pacc").AttributeDefinition;
|
|
64
|
-
};
|
|
65
|
-
};
|
|
34
|
+
extends: typeof import("../base.mjs").Base;
|
|
66
35
|
specializations: {};
|
|
67
36
|
factoryFor(owner: any, value: any): any;
|
|
68
37
|
key: string;
|
|
@@ -112,38 +81,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
112
81
|
extends: {
|
|
113
82
|
name: string;
|
|
114
83
|
owners: string[];
|
|
115
|
-
extends:
|
|
116
|
-
name: string;
|
|
117
|
-
key: string;
|
|
118
|
-
attributes: {
|
|
119
|
-
owner: {
|
|
120
|
-
type: string;
|
|
121
|
-
isKey: boolean;
|
|
122
|
-
writable: boolean;
|
|
123
|
-
mandatory: boolean;
|
|
124
|
-
collection: boolean;
|
|
125
|
-
private?: boolean;
|
|
126
|
-
depends?: string;
|
|
127
|
-
description?: string;
|
|
128
|
-
default?: any;
|
|
129
|
-
set?: Function;
|
|
130
|
-
get?: Function;
|
|
131
|
-
prepareValue?: Function;
|
|
132
|
-
values?: Set<any>;
|
|
133
|
-
externalName?: string;
|
|
134
|
-
env?: string[] | string;
|
|
135
|
-
additionalValues?: object;
|
|
136
|
-
};
|
|
137
|
-
type: import("pacc").AttributeDefinition;
|
|
138
|
-
name: import("pacc").AttributeDefinition;
|
|
139
|
-
description: import("pacc").AttributeDefinition;
|
|
140
|
-
priority: import("pacc").AttributeDefinition;
|
|
141
|
-
directory: import("pacc").AttributeDefinition;
|
|
142
|
-
packaging: import("pacc").AttributeDefinition;
|
|
143
|
-
disabled: import("pacc").AttributeDefinition;
|
|
144
|
-
tags: import("pacc").AttributeDefinition;
|
|
145
|
-
};
|
|
146
|
-
};
|
|
84
|
+
extends: typeof import("../base.mjs").Base;
|
|
147
85
|
key: string;
|
|
148
86
|
attributes: {
|
|
149
87
|
networks: {
|
|
@@ -544,38 +482,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
544
482
|
specializationOf: {
|
|
545
483
|
name: string;
|
|
546
484
|
owners: string[];
|
|
547
|
-
extends:
|
|
548
|
-
name: string;
|
|
549
|
-
key: string;
|
|
550
|
-
attributes: {
|
|
551
|
-
owner: {
|
|
552
|
-
type: string;
|
|
553
|
-
isKey: boolean;
|
|
554
|
-
writable: boolean;
|
|
555
|
-
mandatory: boolean;
|
|
556
|
-
collection: boolean;
|
|
557
|
-
private?: boolean;
|
|
558
|
-
depends?: string;
|
|
559
|
-
description?: string;
|
|
560
|
-
default?: any;
|
|
561
|
-
set?: Function;
|
|
562
|
-
get?: Function;
|
|
563
|
-
prepareValue?: Function;
|
|
564
|
-
values?: Set<any>;
|
|
565
|
-
externalName?: string;
|
|
566
|
-
env?: string[] | string;
|
|
567
|
-
additionalValues?: object;
|
|
568
|
-
};
|
|
569
|
-
type: import("pacc").AttributeDefinition;
|
|
570
|
-
name: import("pacc").AttributeDefinition;
|
|
571
|
-
description: import("pacc").AttributeDefinition;
|
|
572
|
-
priority: import("pacc").AttributeDefinition;
|
|
573
|
-
directory: import("pacc").AttributeDefinition;
|
|
574
|
-
packaging: import("pacc").AttributeDefinition;
|
|
575
|
-
disabled: import("pacc").AttributeDefinition;
|
|
576
|
-
tags: import("pacc").AttributeDefinition;
|
|
577
|
-
};
|
|
578
|
-
};
|
|
485
|
+
extends: typeof import("../base.mjs").Base;
|
|
579
486
|
specializations: {};
|
|
580
487
|
factoryFor(owner: any, value: any): any;
|
|
581
488
|
key: string;
|
|
@@ -625,38 +532,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
625
532
|
extends: {
|
|
626
533
|
name: string;
|
|
627
534
|
owners: string[];
|
|
628
|
-
extends:
|
|
629
|
-
name: string;
|
|
630
|
-
key: string;
|
|
631
|
-
attributes: {
|
|
632
|
-
owner: {
|
|
633
|
-
type: string;
|
|
634
|
-
isKey: boolean;
|
|
635
|
-
writable: boolean;
|
|
636
|
-
mandatory: boolean;
|
|
637
|
-
collection: boolean;
|
|
638
|
-
private?: boolean;
|
|
639
|
-
depends?: string;
|
|
640
|
-
description?: string;
|
|
641
|
-
default?: any;
|
|
642
|
-
set?: Function;
|
|
643
|
-
get?: Function;
|
|
644
|
-
prepareValue?: Function;
|
|
645
|
-
values?: Set<any>;
|
|
646
|
-
externalName?: string;
|
|
647
|
-
env?: string[] | string;
|
|
648
|
-
additionalValues?: object;
|
|
649
|
-
};
|
|
650
|
-
type: import("pacc").AttributeDefinition;
|
|
651
|
-
name: import("pacc").AttributeDefinition;
|
|
652
|
-
description: import("pacc").AttributeDefinition;
|
|
653
|
-
priority: import("pacc").AttributeDefinition;
|
|
654
|
-
directory: import("pacc").AttributeDefinition;
|
|
655
|
-
packaging: import("pacc").AttributeDefinition;
|
|
656
|
-
disabled: import("pacc").AttributeDefinition;
|
|
657
|
-
tags: import("pacc").AttributeDefinition;
|
|
658
|
-
};
|
|
659
|
-
};
|
|
535
|
+
extends: typeof import("../base.mjs").Base;
|
|
660
536
|
key: string;
|
|
661
537
|
attributes: {
|
|
662
538
|
networks: {
|
|
@@ -4,38 +4,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
4
4
|
extends: {
|
|
5
5
|
name: string;
|
|
6
6
|
owners: string[];
|
|
7
|
-
extends:
|
|
8
|
-
name: string;
|
|
9
|
-
key: string;
|
|
10
|
-
attributes: {
|
|
11
|
-
owner: {
|
|
12
|
-
type: string;
|
|
13
|
-
isKey: boolean;
|
|
14
|
-
writable: boolean;
|
|
15
|
-
mandatory: boolean;
|
|
16
|
-
collection: boolean;
|
|
17
|
-
private?: boolean;
|
|
18
|
-
depends?: string;
|
|
19
|
-
description?: string;
|
|
20
|
-
default?: any;
|
|
21
|
-
set?: Function;
|
|
22
|
-
get?: Function;
|
|
23
|
-
prepareValue?: Function;
|
|
24
|
-
values?: Set<any>;
|
|
25
|
-
externalName?: string;
|
|
26
|
-
env?: string[] | string;
|
|
27
|
-
additionalValues?: object;
|
|
28
|
-
};
|
|
29
|
-
type: import("pacc").AttributeDefinition;
|
|
30
|
-
name: import("pacc").AttributeDefinition;
|
|
31
|
-
description: import("pacc").AttributeDefinition;
|
|
32
|
-
priority: import("pacc").AttributeDefinition;
|
|
33
|
-
directory: import("pacc").AttributeDefinition;
|
|
34
|
-
packaging: import("pacc").AttributeDefinition;
|
|
35
|
-
disabled: import("pacc").AttributeDefinition;
|
|
36
|
-
tags: import("pacc").AttributeDefinition;
|
|
37
|
-
};
|
|
38
|
-
};
|
|
7
|
+
extends: typeof import("pmcf").Base;
|
|
39
8
|
specializations: {};
|
|
40
9
|
factoryFor(owner: any, value: any): any;
|
|
41
10
|
key: string;
|
|
@@ -85,38 +54,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
85
54
|
extends: {
|
|
86
55
|
name: string;
|
|
87
56
|
owners: string[];
|
|
88
|
-
extends:
|
|
89
|
-
name: string;
|
|
90
|
-
key: string;
|
|
91
|
-
attributes: {
|
|
92
|
-
owner: {
|
|
93
|
-
type: string;
|
|
94
|
-
isKey: boolean;
|
|
95
|
-
writable: boolean;
|
|
96
|
-
mandatory: boolean;
|
|
97
|
-
collection: boolean;
|
|
98
|
-
private?: boolean;
|
|
99
|
-
depends?: string;
|
|
100
|
-
description?: string;
|
|
101
|
-
default?: any;
|
|
102
|
-
set?: Function;
|
|
103
|
-
get?: Function;
|
|
104
|
-
prepareValue?: Function;
|
|
105
|
-
values?: Set<any>;
|
|
106
|
-
externalName?: string;
|
|
107
|
-
env?: string[] | string;
|
|
108
|
-
additionalValues?: object;
|
|
109
|
-
};
|
|
110
|
-
type: import("pacc").AttributeDefinition;
|
|
111
|
-
name: import("pacc").AttributeDefinition;
|
|
112
|
-
description: import("pacc").AttributeDefinition;
|
|
113
|
-
priority: import("pacc").AttributeDefinition;
|
|
114
|
-
directory: import("pacc").AttributeDefinition;
|
|
115
|
-
packaging: import("pacc").AttributeDefinition;
|
|
116
|
-
disabled: import("pacc").AttributeDefinition;
|
|
117
|
-
tags: import("pacc").AttributeDefinition;
|
|
118
|
-
};
|
|
119
|
-
};
|
|
57
|
+
extends: typeof import("pmcf").Base;
|
|
120
58
|
key: string;
|
|
121
59
|
attributes: {
|
|
122
60
|
networks: {
|
|
@@ -517,38 +455,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
517
455
|
specializationOf: {
|
|
518
456
|
name: string;
|
|
519
457
|
owners: string[];
|
|
520
|
-
extends:
|
|
521
|
-
name: string;
|
|
522
|
-
key: string;
|
|
523
|
-
attributes: {
|
|
524
|
-
owner: {
|
|
525
|
-
type: string;
|
|
526
|
-
isKey: boolean;
|
|
527
|
-
writable: boolean;
|
|
528
|
-
mandatory: boolean;
|
|
529
|
-
collection: boolean;
|
|
530
|
-
private?: boolean;
|
|
531
|
-
depends?: string;
|
|
532
|
-
description?: string;
|
|
533
|
-
default?: any;
|
|
534
|
-
set?: Function;
|
|
535
|
-
get?: Function;
|
|
536
|
-
prepareValue?: Function;
|
|
537
|
-
values?: Set<any>;
|
|
538
|
-
externalName?: string;
|
|
539
|
-
env?: string[] | string;
|
|
540
|
-
additionalValues?: object;
|
|
541
|
-
};
|
|
542
|
-
type: import("pacc").AttributeDefinition;
|
|
543
|
-
name: import("pacc").AttributeDefinition;
|
|
544
|
-
description: import("pacc").AttributeDefinition;
|
|
545
|
-
priority: import("pacc").AttributeDefinition;
|
|
546
|
-
directory: import("pacc").AttributeDefinition;
|
|
547
|
-
packaging: import("pacc").AttributeDefinition;
|
|
548
|
-
disabled: import("pacc").AttributeDefinition;
|
|
549
|
-
tags: import("pacc").AttributeDefinition;
|
|
550
|
-
};
|
|
551
|
-
};
|
|
458
|
+
extends: typeof import("pmcf").Base;
|
|
552
459
|
specializations: {};
|
|
553
460
|
factoryFor(owner: any, value: any): any;
|
|
554
461
|
key: string;
|
|
@@ -598,38 +505,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
598
505
|
extends: {
|
|
599
506
|
name: string;
|
|
600
507
|
owners: string[];
|
|
601
|
-
extends:
|
|
602
|
-
name: string;
|
|
603
|
-
key: string;
|
|
604
|
-
attributes: {
|
|
605
|
-
owner: {
|
|
606
|
-
type: string;
|
|
607
|
-
isKey: boolean;
|
|
608
|
-
writable: boolean;
|
|
609
|
-
mandatory: boolean;
|
|
610
|
-
collection: boolean;
|
|
611
|
-
private?: boolean;
|
|
612
|
-
depends?: string;
|
|
613
|
-
description?: string;
|
|
614
|
-
default?: any;
|
|
615
|
-
set?: Function;
|
|
616
|
-
get?: Function;
|
|
617
|
-
prepareValue?: Function;
|
|
618
|
-
values?: Set<any>;
|
|
619
|
-
externalName?: string;
|
|
620
|
-
env?: string[] | string;
|
|
621
|
-
additionalValues?: object;
|
|
622
|
-
};
|
|
623
|
-
type: import("pacc").AttributeDefinition;
|
|
624
|
-
name: import("pacc").AttributeDefinition;
|
|
625
|
-
description: import("pacc").AttributeDefinition;
|
|
626
|
-
priority: import("pacc").AttributeDefinition;
|
|
627
|
-
directory: import("pacc").AttributeDefinition;
|
|
628
|
-
packaging: import("pacc").AttributeDefinition;
|
|
629
|
-
disabled: import("pacc").AttributeDefinition;
|
|
630
|
-
tags: import("pacc").AttributeDefinition;
|
|
631
|
-
};
|
|
632
|
-
};
|
|
508
|
+
extends: typeof import("pmcf").Base;
|
|
633
509
|
key: string;
|
|
634
510
|
attributes: {
|
|
635
511
|
networks: {
|
|
@@ -1,38 +1,7 @@
|
|
|
1
1
|
export namespace NetworkInterfaceTypeDefinition {
|
|
2
2
|
export let name: string;
|
|
3
3
|
export let owners: string[];
|
|
4
|
-
let _extends:
|
|
5
|
-
name: string;
|
|
6
|
-
key: string;
|
|
7
|
-
attributes: {
|
|
8
|
-
owner: {
|
|
9
|
-
type: string;
|
|
10
|
-
isKey: boolean;
|
|
11
|
-
writable: boolean;
|
|
12
|
-
mandatory: boolean;
|
|
13
|
-
collection: boolean;
|
|
14
|
-
private?: boolean;
|
|
15
|
-
depends?: string;
|
|
16
|
-
description?: string;
|
|
17
|
-
default?: any;
|
|
18
|
-
set?: Function;
|
|
19
|
-
get?: Function;
|
|
20
|
-
prepareValue?: Function;
|
|
21
|
-
values?: Set<any>;
|
|
22
|
-
externalName?: string;
|
|
23
|
-
env?: string[] | string;
|
|
24
|
-
additionalValues?: object;
|
|
25
|
-
};
|
|
26
|
-
type: import("pacc").AttributeDefinition;
|
|
27
|
-
name: import("pacc").AttributeDefinition;
|
|
28
|
-
description: import("pacc").AttributeDefinition;
|
|
29
|
-
priority: import("pacc").AttributeDefinition;
|
|
30
|
-
directory: import("pacc").AttributeDefinition;
|
|
31
|
-
packaging: import("pacc").AttributeDefinition;
|
|
32
|
-
disabled: import("pacc").AttributeDefinition;
|
|
33
|
-
tags: import("pacc").AttributeDefinition;
|
|
34
|
-
};
|
|
35
|
-
};
|
|
4
|
+
let _extends: typeof Base;
|
|
36
5
|
export { _extends as extends };
|
|
37
6
|
export let specializations: {};
|
|
38
7
|
export function factoryFor(owner: any, value: any): any;
|
|
@@ -83,38 +52,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
83
52
|
extends: {
|
|
84
53
|
name: string;
|
|
85
54
|
owners: string[];
|
|
86
|
-
extends:
|
|
87
|
-
name: string;
|
|
88
|
-
key: string;
|
|
89
|
-
attributes: {
|
|
90
|
-
owner: {
|
|
91
|
-
type: string;
|
|
92
|
-
isKey: boolean;
|
|
93
|
-
writable: boolean;
|
|
94
|
-
mandatory: boolean;
|
|
95
|
-
collection: boolean;
|
|
96
|
-
private?: boolean;
|
|
97
|
-
depends?: string;
|
|
98
|
-
description?: string;
|
|
99
|
-
default?: any;
|
|
100
|
-
set?: Function;
|
|
101
|
-
get?: Function;
|
|
102
|
-
prepareValue?: Function;
|
|
103
|
-
values?: Set<any>;
|
|
104
|
-
externalName?: string;
|
|
105
|
-
env?: string[] | string;
|
|
106
|
-
additionalValues?: object;
|
|
107
|
-
};
|
|
108
|
-
type: import("pacc").AttributeDefinition;
|
|
109
|
-
name: import("pacc").AttributeDefinition;
|
|
110
|
-
description: import("pacc").AttributeDefinition;
|
|
111
|
-
priority: import("pacc").AttributeDefinition;
|
|
112
|
-
directory: import("pacc").AttributeDefinition;
|
|
113
|
-
packaging: import("pacc").AttributeDefinition;
|
|
114
|
-
disabled: import("pacc").AttributeDefinition;
|
|
115
|
-
tags: import("pacc").AttributeDefinition;
|
|
116
|
-
};
|
|
117
|
-
};
|
|
55
|
+
extends: typeof Base;
|
|
118
56
|
key: string;
|
|
119
57
|
attributes: {
|
|
120
58
|
networks: {
|
|
@@ -516,38 +454,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
516
454
|
static get typeDefinition(): {
|
|
517
455
|
name: string;
|
|
518
456
|
owners: string[];
|
|
519
|
-
extends:
|
|
520
|
-
name: string;
|
|
521
|
-
key: string;
|
|
522
|
-
attributes: {
|
|
523
|
-
owner: {
|
|
524
|
-
type: string;
|
|
525
|
-
isKey: boolean;
|
|
526
|
-
writable: boolean;
|
|
527
|
-
mandatory: boolean;
|
|
528
|
-
collection: boolean;
|
|
529
|
-
private?: boolean;
|
|
530
|
-
depends?: string;
|
|
531
|
-
description?: string;
|
|
532
|
-
default?: any;
|
|
533
|
-
set?: Function;
|
|
534
|
-
get?: Function;
|
|
535
|
-
prepareValue?: Function;
|
|
536
|
-
values?: Set<any>;
|
|
537
|
-
externalName?: string;
|
|
538
|
-
env?: string[] | string;
|
|
539
|
-
additionalValues?: object;
|
|
540
|
-
};
|
|
541
|
-
type: import("pacc").AttributeDefinition;
|
|
542
|
-
name: import("pacc").AttributeDefinition;
|
|
543
|
-
description: import("pacc").AttributeDefinition;
|
|
544
|
-
priority: import("pacc").AttributeDefinition;
|
|
545
|
-
directory: import("pacc").AttributeDefinition;
|
|
546
|
-
packaging: import("pacc").AttributeDefinition;
|
|
547
|
-
disabled: import("pacc").AttributeDefinition;
|
|
548
|
-
tags: import("pacc").AttributeDefinition;
|
|
549
|
-
};
|
|
550
|
-
};
|
|
457
|
+
extends: typeof Base;
|
|
551
458
|
specializations: {};
|
|
552
459
|
factoryFor(owner: any, value: any): any;
|
|
553
460
|
key: string;
|
|
@@ -597,38 +504,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
597
504
|
extends: {
|
|
598
505
|
name: string;
|
|
599
506
|
owners: string[];
|
|
600
|
-
extends:
|
|
601
|
-
name: string;
|
|
602
|
-
key: string;
|
|
603
|
-
attributes: {
|
|
604
|
-
owner: {
|
|
605
|
-
type: string;
|
|
606
|
-
isKey: boolean;
|
|
607
|
-
writable: boolean;
|
|
608
|
-
mandatory: boolean;
|
|
609
|
-
collection: boolean;
|
|
610
|
-
private?: boolean;
|
|
611
|
-
depends?: string;
|
|
612
|
-
description?: string;
|
|
613
|
-
default?: any;
|
|
614
|
-
set?: Function;
|
|
615
|
-
get?: Function;
|
|
616
|
-
prepareValue?: Function;
|
|
617
|
-
values?: Set<any>;
|
|
618
|
-
externalName?: string;
|
|
619
|
-
env?: string[] | string;
|
|
620
|
-
additionalValues?: object;
|
|
621
|
-
};
|
|
622
|
-
type: import("pacc").AttributeDefinition;
|
|
623
|
-
name: import("pacc").AttributeDefinition;
|
|
624
|
-
description: import("pacc").AttributeDefinition;
|
|
625
|
-
priority: import("pacc").AttributeDefinition;
|
|
626
|
-
directory: import("pacc").AttributeDefinition;
|
|
627
|
-
packaging: import("pacc").AttributeDefinition;
|
|
628
|
-
disabled: import("pacc").AttributeDefinition;
|
|
629
|
-
tags: import("pacc").AttributeDefinition;
|
|
630
|
-
};
|
|
631
|
-
};
|
|
507
|
+
extends: typeof Base;
|
|
632
508
|
key: string;
|
|
633
509
|
attributes: {
|
|
634
510
|
networks: {
|
|
@@ -1056,4 +932,5 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
1056
932
|
set kind(value: any);
|
|
1057
933
|
get kind(): any;
|
|
1058
934
|
}
|
|
935
|
+
import { Base } from "pmcf";
|
|
1059
936
|
import { SkeletonNetworkInterface } from "./skeleton.mjs";
|
|
@@ -4,38 +4,7 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
4
4
|
extends: {
|
|
5
5
|
name: string;
|
|
6
6
|
owners: string[];
|
|
7
|
-
extends:
|
|
8
|
-
name: string;
|
|
9
|
-
key: string;
|
|
10
|
-
attributes: {
|
|
11
|
-
owner: {
|
|
12
|
-
type: string;
|
|
13
|
-
isKey: boolean;
|
|
14
|
-
writable: boolean;
|
|
15
|
-
mandatory: boolean;
|
|
16
|
-
collection: boolean;
|
|
17
|
-
private?: boolean;
|
|
18
|
-
depends?: string;
|
|
19
|
-
description?: string;
|
|
20
|
-
default?: any;
|
|
21
|
-
set?: Function;
|
|
22
|
-
get?: Function;
|
|
23
|
-
prepareValue?: Function;
|
|
24
|
-
values?: Set<any>;
|
|
25
|
-
externalName?: string;
|
|
26
|
-
env?: string[] | string;
|
|
27
|
-
additionalValues?: object;
|
|
28
|
-
};
|
|
29
|
-
type: import("pacc").AttributeDefinition;
|
|
30
|
-
name: import("pacc").AttributeDefinition;
|
|
31
|
-
description: import("pacc").AttributeDefinition;
|
|
32
|
-
priority: import("pacc").AttributeDefinition;
|
|
33
|
-
directory: import("pacc").AttributeDefinition;
|
|
34
|
-
packaging: import("pacc").AttributeDefinition;
|
|
35
|
-
disabled: import("pacc").AttributeDefinition;
|
|
36
|
-
tags: import("pacc").AttributeDefinition;
|
|
37
|
-
};
|
|
38
|
-
};
|
|
7
|
+
extends: typeof import("../base.mjs").Base;
|
|
39
8
|
specializations: {};
|
|
40
9
|
factoryFor(owner: any, value: any): any;
|
|
41
10
|
key: string;
|
|
@@ -85,38 +54,7 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
85
54
|
extends: {
|
|
86
55
|
name: string;
|
|
87
56
|
owners: string[];
|
|
88
|
-
extends:
|
|
89
|
-
name: string;
|
|
90
|
-
key: string;
|
|
91
|
-
attributes: {
|
|
92
|
-
owner: {
|
|
93
|
-
type: string;
|
|
94
|
-
isKey: boolean;
|
|
95
|
-
writable: boolean;
|
|
96
|
-
mandatory: boolean;
|
|
97
|
-
collection: boolean;
|
|
98
|
-
private?: boolean;
|
|
99
|
-
depends?: string;
|
|
100
|
-
description?: string;
|
|
101
|
-
default?: any;
|
|
102
|
-
set?: Function;
|
|
103
|
-
get?: Function;
|
|
104
|
-
prepareValue?: Function;
|
|
105
|
-
values?: Set<any>;
|
|
106
|
-
externalName?: string;
|
|
107
|
-
env?: string[] | string;
|
|
108
|
-
additionalValues?: object;
|
|
109
|
-
};
|
|
110
|
-
type: import("pacc").AttributeDefinition;
|
|
111
|
-
name: import("pacc").AttributeDefinition;
|
|
112
|
-
description: import("pacc").AttributeDefinition;
|
|
113
|
-
priority: import("pacc").AttributeDefinition;
|
|
114
|
-
directory: import("pacc").AttributeDefinition;
|
|
115
|
-
packaging: import("pacc").AttributeDefinition;
|
|
116
|
-
disabled: import("pacc").AttributeDefinition;
|
|
117
|
-
tags: import("pacc").AttributeDefinition;
|
|
118
|
-
};
|
|
119
|
-
};
|
|
57
|
+
extends: typeof import("../base.mjs").Base;
|
|
120
58
|
key: string;
|
|
121
59
|
attributes: {
|
|
122
60
|
networks: {
|
|
@@ -517,38 +455,7 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
517
455
|
specializationOf: {
|
|
518
456
|
name: string;
|
|
519
457
|
owners: string[];
|
|
520
|
-
extends:
|
|
521
|
-
name: string;
|
|
522
|
-
key: string;
|
|
523
|
-
attributes: {
|
|
524
|
-
owner: {
|
|
525
|
-
type: string;
|
|
526
|
-
isKey: boolean;
|
|
527
|
-
writable: boolean;
|
|
528
|
-
mandatory: boolean;
|
|
529
|
-
collection: boolean;
|
|
530
|
-
private?: boolean;
|
|
531
|
-
depends?: string;
|
|
532
|
-
description?: string;
|
|
533
|
-
default?: any;
|
|
534
|
-
set?: Function;
|
|
535
|
-
get?: Function;
|
|
536
|
-
prepareValue?: Function;
|
|
537
|
-
values?: Set<any>;
|
|
538
|
-
externalName?: string;
|
|
539
|
-
env?: string[] | string;
|
|
540
|
-
additionalValues?: object;
|
|
541
|
-
};
|
|
542
|
-
type: import("pacc").AttributeDefinition;
|
|
543
|
-
name: import("pacc").AttributeDefinition;
|
|
544
|
-
description: import("pacc").AttributeDefinition;
|
|
545
|
-
priority: import("pacc").AttributeDefinition;
|
|
546
|
-
directory: import("pacc").AttributeDefinition;
|
|
547
|
-
packaging: import("pacc").AttributeDefinition;
|
|
548
|
-
disabled: import("pacc").AttributeDefinition;
|
|
549
|
-
tags: import("pacc").AttributeDefinition;
|
|
550
|
-
};
|
|
551
|
-
};
|
|
458
|
+
extends: typeof import("../base.mjs").Base;
|
|
552
459
|
specializations: {};
|
|
553
460
|
factoryFor(owner: any, value: any): any;
|
|
554
461
|
key: string;
|
|
@@ -598,38 +505,7 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
598
505
|
extends: {
|
|
599
506
|
name: string;
|
|
600
507
|
owners: string[];
|
|
601
|
-
extends:
|
|
602
|
-
name: string;
|
|
603
|
-
key: string;
|
|
604
|
-
attributes: {
|
|
605
|
-
owner: {
|
|
606
|
-
type: string;
|
|
607
|
-
isKey: boolean;
|
|
608
|
-
writable: boolean;
|
|
609
|
-
mandatory: boolean;
|
|
610
|
-
collection: boolean;
|
|
611
|
-
private?: boolean;
|
|
612
|
-
depends?: string;
|
|
613
|
-
description?: string;
|
|
614
|
-
default?: any;
|
|
615
|
-
set?: Function;
|
|
616
|
-
get?: Function;
|
|
617
|
-
prepareValue?: Function;
|
|
618
|
-
values?: Set<any>;
|
|
619
|
-
externalName?: string;
|
|
620
|
-
env?: string[] | string;
|
|
621
|
-
additionalValues?: object;
|
|
622
|
-
};
|
|
623
|
-
type: import("pacc").AttributeDefinition;
|
|
624
|
-
name: import("pacc").AttributeDefinition;
|
|
625
|
-
description: import("pacc").AttributeDefinition;
|
|
626
|
-
priority: import("pacc").AttributeDefinition;
|
|
627
|
-
directory: import("pacc").AttributeDefinition;
|
|
628
|
-
packaging: import("pacc").AttributeDefinition;
|
|
629
|
-
disabled: import("pacc").AttributeDefinition;
|
|
630
|
-
tags: import("pacc").AttributeDefinition;
|
|
631
|
-
};
|
|
632
|
-
};
|
|
508
|
+
extends: typeof import("../base.mjs").Base;
|
|
633
509
|
key: string;
|
|
634
510
|
attributes: {
|
|
635
511
|
networks: {
|