pmcf 3.13.4 → 3.13.6
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 +4 -4
- package/src/extra-source-service.mjs +2 -1
- package/src/network-interfaces/ethernet.mjs +1 -1
- package/src/network-interfaces/loopback.mjs +1 -1
- package/src/network-interfaces/tun.mjs +1 -1
- package/src/network-interfaces/wireguard.mjs +1 -1
- package/src/network-interfaces/wlan.mjs +1 -1
- package/src/services/bind.mjs +22 -3
- package/src/services/chrony.mjs +2 -6
- package/src/services/headscale.mjs +1 -1
- package/src/services/influxdb.mjs +1 -1
- package/src/services/kea.mjs +2 -2
- package/src/services/mosquitto.mjs +1 -1
- package/src/services/openldap.mjs +1 -1
- package/src/services/systemd-journal-remote.mjs +1 -1
- package/src/services/systemd-journal-upload.mjs +1 -1
- package/src/services/systemd-journal.mjs +1 -1
- package/src/services/systemd-resolved.mjs +1 -1
- package/src/types.mjs +2 -4
- package/types/extra-source-service.d.mts +507 -201
- package/types/network-interfaces/ethernet.d.mts +4 -4
- package/types/network-interfaces/loopback.d.mts +3 -3
- package/types/network-interfaces/tun.d.mts +3 -3
- package/types/network-interfaces/wireguard.d.mts +3 -3
- package/types/network-interfaces/wlan.d.mts +846 -846
- package/types/services/bind.d.mts +958 -653
- package/types/services/chrony.d.mts +958 -653
- package/types/services/headscale.d.mts +958 -653
- package/types/services/influxdb.d.mts +202 -202
- package/types/services/kea.d.mts +202 -202
- package/types/services/mosquitto.d.mts +202 -202
- package/types/services/openldap.d.mts +202 -202
- package/types/services/systemd-journal-remote.d.mts +202 -202
- package/types/services/systemd-journal-upload.d.mts +202 -202
- package/types/services/systemd-journal.d.mts +202 -202
- package/types/services/systemd-resolved.d.mts +958 -653
- package/types/services/systemd-timesyncd.d.mts +426 -121
- package/types/types.d.mts +1 -1
|
@@ -3,10 +3,209 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
3
3
|
name: string;
|
|
4
4
|
extends: {
|
|
5
5
|
name: string;
|
|
6
|
-
|
|
6
|
+
extends: {
|
|
7
7
|
name: string;
|
|
8
|
+
owners: (string | {
|
|
9
|
+
name: string;
|
|
10
|
+
priority: number;
|
|
11
|
+
owners: string[];
|
|
12
|
+
extends: {
|
|
13
|
+
name: string;
|
|
14
|
+
key: string;
|
|
15
|
+
attributes: {
|
|
16
|
+
owner: {
|
|
17
|
+
type: string;
|
|
18
|
+
isKey: boolean;
|
|
19
|
+
writable: boolean;
|
|
20
|
+
mandatory: boolean;
|
|
21
|
+
collection: boolean;
|
|
22
|
+
private?: boolean;
|
|
23
|
+
depends?: string;
|
|
24
|
+
description?: string;
|
|
25
|
+
default?: any;
|
|
26
|
+
set?: Function;
|
|
27
|
+
get?: Function;
|
|
28
|
+
prepareValue?: Function;
|
|
29
|
+
values?: Set<any>;
|
|
30
|
+
externalName?: string;
|
|
31
|
+
env?: string[] | string;
|
|
32
|
+
additionalValues?: object;
|
|
33
|
+
};
|
|
34
|
+
type: import("pacc").AttributeDefinition;
|
|
35
|
+
name: import("pacc").AttributeDefinition;
|
|
36
|
+
description: import("pacc").AttributeDefinition;
|
|
37
|
+
priority: import("pacc").AttributeDefinition;
|
|
38
|
+
directory: import("pacc").AttributeDefinition;
|
|
39
|
+
packaging: import("pacc").AttributeDefinition;
|
|
40
|
+
disabled: import("pacc").AttributeDefinition;
|
|
41
|
+
tags: import("pacc").AttributeDefinition;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
key: string;
|
|
45
|
+
attributes: {
|
|
46
|
+
networkInterfaces: {
|
|
47
|
+
type: string;
|
|
48
|
+
collection: boolean;
|
|
49
|
+
isKey: boolean;
|
|
50
|
+
writable: boolean;
|
|
51
|
+
mandatory: boolean;
|
|
52
|
+
private?: boolean;
|
|
53
|
+
depends?: string;
|
|
54
|
+
description?: string;
|
|
55
|
+
default?: any;
|
|
56
|
+
set?: Function;
|
|
57
|
+
get?: Function;
|
|
58
|
+
prepareValue?: Function;
|
|
59
|
+
values?: Set<any>;
|
|
60
|
+
externalName?: string;
|
|
61
|
+
env?: string[] | string;
|
|
62
|
+
additionalValues?: object;
|
|
63
|
+
};
|
|
64
|
+
services: {
|
|
65
|
+
type: string;
|
|
66
|
+
collection: boolean;
|
|
67
|
+
isKey: boolean;
|
|
68
|
+
writable: boolean;
|
|
69
|
+
mandatory: boolean;
|
|
70
|
+
private?: boolean;
|
|
71
|
+
depends?: string;
|
|
72
|
+
description?: string;
|
|
73
|
+
default?: any;
|
|
74
|
+
set?: Function;
|
|
75
|
+
get?: Function;
|
|
76
|
+
prepareValue?: Function;
|
|
77
|
+
values?: Set<any>;
|
|
78
|
+
externalName?: string;
|
|
79
|
+
env?: string[] | string;
|
|
80
|
+
additionalValues?: object;
|
|
81
|
+
};
|
|
82
|
+
aliases: import("pacc").AttributeDefinition;
|
|
83
|
+
os: {
|
|
84
|
+
values: string[];
|
|
85
|
+
type: object;
|
|
86
|
+
isKey: boolean;
|
|
87
|
+
writable: boolean;
|
|
88
|
+
mandatory: boolean;
|
|
89
|
+
collection: boolean;
|
|
90
|
+
private?: boolean;
|
|
91
|
+
depends?: string;
|
|
92
|
+
description?: string;
|
|
93
|
+
default?: any;
|
|
94
|
+
set?: Function;
|
|
95
|
+
get?: Function;
|
|
96
|
+
prepareValue?: Function;
|
|
97
|
+
externalName?: string;
|
|
98
|
+
env?: string[] | string;
|
|
99
|
+
additionalValues?: object;
|
|
100
|
+
};
|
|
101
|
+
"machine-id": import("pacc").AttributeDefinition;
|
|
102
|
+
distribution: import("pacc").AttributeDefinition;
|
|
103
|
+
deployment: {
|
|
104
|
+
values: string[];
|
|
105
|
+
type: object;
|
|
106
|
+
isKey: boolean;
|
|
107
|
+
writable: boolean;
|
|
108
|
+
mandatory: boolean;
|
|
109
|
+
collection: boolean;
|
|
110
|
+
private?: boolean;
|
|
111
|
+
depends?: string;
|
|
112
|
+
description?: string;
|
|
113
|
+
default?: any;
|
|
114
|
+
set?: Function;
|
|
115
|
+
get?: Function;
|
|
116
|
+
prepareValue?: Function;
|
|
117
|
+
externalName?: string;
|
|
118
|
+
env?: string[] | string;
|
|
119
|
+
additionalValues?: object;
|
|
120
|
+
};
|
|
121
|
+
weight: import("pacc").AttributeDefinition;
|
|
122
|
+
serial: import("pacc").AttributeDefinition;
|
|
123
|
+
vendor: import("pacc").AttributeDefinition;
|
|
124
|
+
keymap: import("pacc").AttributeDefinition;
|
|
125
|
+
chassis: {
|
|
126
|
+
values: string[];
|
|
127
|
+
type: object;
|
|
128
|
+
isKey: boolean;
|
|
129
|
+
writable: boolean;
|
|
130
|
+
mandatory: boolean;
|
|
131
|
+
collection: boolean;
|
|
132
|
+
private?: boolean;
|
|
133
|
+
depends?: string;
|
|
134
|
+
description?: string;
|
|
135
|
+
default?: any;
|
|
136
|
+
set?: Function;
|
|
137
|
+
get?: Function;
|
|
138
|
+
prepareValue?: Function;
|
|
139
|
+
externalName?: string;
|
|
140
|
+
env?: string[] | string;
|
|
141
|
+
additionalValues?: object;
|
|
142
|
+
};
|
|
143
|
+
architecture: {
|
|
144
|
+
values: string[];
|
|
145
|
+
type: object;
|
|
146
|
+
isKey: boolean;
|
|
147
|
+
writable: boolean;
|
|
148
|
+
mandatory: boolean;
|
|
149
|
+
collection: boolean;
|
|
150
|
+
private?: boolean;
|
|
151
|
+
depends?: string;
|
|
152
|
+
description?: string;
|
|
153
|
+
default?: any;
|
|
154
|
+
set?: Function;
|
|
155
|
+
get?: Function;
|
|
156
|
+
prepareValue?: Function;
|
|
157
|
+
externalName?: string;
|
|
158
|
+
env?: string[] | string;
|
|
159
|
+
additionalValues?: object;
|
|
160
|
+
};
|
|
161
|
+
replaces: import("pacc").AttributeDefinition;
|
|
162
|
+
depends: import("pacc").AttributeDefinition;
|
|
163
|
+
provides: import("pacc").AttributeDefinition;
|
|
164
|
+
extends: {
|
|
165
|
+
type: string;
|
|
166
|
+
collection: boolean;
|
|
167
|
+
isKey: boolean;
|
|
168
|
+
writable: boolean;
|
|
169
|
+
mandatory: boolean;
|
|
170
|
+
private?: boolean;
|
|
171
|
+
depends?: string;
|
|
172
|
+
description?: string;
|
|
173
|
+
default?: any;
|
|
174
|
+
set?: Function;
|
|
175
|
+
get?: Function;
|
|
176
|
+
prepareValue?: Function;
|
|
177
|
+
values?: Set<any>;
|
|
178
|
+
externalName?: string;
|
|
179
|
+
env?: string[] | string;
|
|
180
|
+
additionalValues?: object;
|
|
181
|
+
};
|
|
182
|
+
model: import("pacc").AttributeDefinition;
|
|
183
|
+
isModel: import("pacc").AttributeDefinition;
|
|
184
|
+
hostName: {
|
|
185
|
+
writable: boolean;
|
|
186
|
+
type: object;
|
|
187
|
+
isKey: boolean;
|
|
188
|
+
mandatory: boolean;
|
|
189
|
+
collection: boolean;
|
|
190
|
+
private?: boolean;
|
|
191
|
+
depends?: string;
|
|
192
|
+
description?: string;
|
|
193
|
+
default?: any;
|
|
194
|
+
set?: Function;
|
|
195
|
+
get?: Function;
|
|
196
|
+
prepareValue?: Function;
|
|
197
|
+
values?: Set<any>;
|
|
198
|
+
externalName?: string;
|
|
199
|
+
env?: string[] | string;
|
|
200
|
+
additionalValues?: object;
|
|
201
|
+
};
|
|
202
|
+
cidrAddresses: import("pacc").AttributeDefinition;
|
|
203
|
+
cidrAddress: import("pacc").AttributeDefinition;
|
|
204
|
+
addresses: import("pacc").AttributeDefinition;
|
|
205
|
+
address: import("pacc").AttributeDefinition;
|
|
206
|
+
};
|
|
207
|
+
})[];
|
|
8
208
|
priority: number;
|
|
9
|
-
owners: string[];
|
|
10
209
|
extends: {
|
|
11
210
|
name: string;
|
|
12
211
|
key: string;
|
|
@@ -28,100 +227,23 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
28
227
|
externalName?: string;
|
|
29
228
|
env?: string[] | string;
|
|
30
229
|
additionalValues?: object;
|
|
31
|
-
};
|
|
32
|
-
type: import("pacc").AttributeDefinition;
|
|
33
|
-
name: import("pacc").AttributeDefinition;
|
|
34
|
-
description: import("pacc").AttributeDefinition;
|
|
35
|
-
priority: import("pacc").AttributeDefinition;
|
|
36
|
-
directory: import("pacc").AttributeDefinition;
|
|
37
|
-
packaging: import("pacc").AttributeDefinition;
|
|
38
|
-
disabled: import("pacc").AttributeDefinition;
|
|
39
|
-
tags: import("pacc").AttributeDefinition;
|
|
40
|
-
};
|
|
41
|
-
};
|
|
42
|
-
key: string;
|
|
43
|
-
attributes: {
|
|
44
|
-
networkInterfaces: {
|
|
45
|
-
type: string;
|
|
46
|
-
collection: boolean;
|
|
47
|
-
isKey: boolean;
|
|
48
|
-
writable: boolean;
|
|
49
|
-
mandatory: boolean;
|
|
50
|
-
private?: boolean;
|
|
51
|
-
depends?: string;
|
|
52
|
-
description?: string;
|
|
53
|
-
default?: any;
|
|
54
|
-
set?: Function;
|
|
55
|
-
get?: Function;
|
|
56
|
-
prepareValue?: Function;
|
|
57
|
-
values?: Set<any>;
|
|
58
|
-
externalName?: string;
|
|
59
|
-
env?: string[] | string;
|
|
60
|
-
additionalValues?: object;
|
|
61
|
-
};
|
|
62
|
-
services: {
|
|
63
|
-
type: string;
|
|
64
|
-
collection: boolean;
|
|
65
|
-
isKey: boolean;
|
|
66
|
-
writable: boolean;
|
|
67
|
-
mandatory: boolean;
|
|
68
|
-
private?: boolean;
|
|
69
|
-
depends?: string;
|
|
70
|
-
description?: string;
|
|
71
|
-
default?: any;
|
|
72
|
-
set?: Function;
|
|
73
|
-
get?: Function;
|
|
74
|
-
prepareValue?: Function;
|
|
75
|
-
values?: Set<any>;
|
|
76
|
-
externalName?: string;
|
|
77
|
-
env?: string[] | string;
|
|
78
|
-
additionalValues?: object;
|
|
79
|
-
};
|
|
80
|
-
aliases: import("pacc").AttributeDefinition;
|
|
81
|
-
os: {
|
|
82
|
-
values: string[];
|
|
83
|
-
type: object;
|
|
84
|
-
isKey: boolean;
|
|
85
|
-
writable: boolean;
|
|
86
|
-
mandatory: boolean;
|
|
87
|
-
collection: boolean;
|
|
88
|
-
private?: boolean;
|
|
89
|
-
depends?: string;
|
|
90
|
-
description?: string;
|
|
91
|
-
default?: any;
|
|
92
|
-
set?: Function;
|
|
93
|
-
get?: Function;
|
|
94
|
-
prepareValue?: Function;
|
|
95
|
-
externalName?: string;
|
|
96
|
-
env?: string[] | string;
|
|
97
|
-
additionalValues?: object;
|
|
98
|
-
};
|
|
99
|
-
"machine-id": import("pacc").AttributeDefinition;
|
|
100
|
-
distribution: import("pacc").AttributeDefinition;
|
|
101
|
-
deployment: {
|
|
102
|
-
values: string[];
|
|
103
|
-
type: object;
|
|
104
|
-
isKey: boolean;
|
|
105
|
-
writable: boolean;
|
|
106
|
-
mandatory: boolean;
|
|
107
|
-
collection: boolean;
|
|
108
|
-
private?: boolean;
|
|
109
|
-
depends?: string;
|
|
110
|
-
description?: string;
|
|
111
|
-
default?: any;
|
|
112
|
-
set?: Function;
|
|
113
|
-
get?: Function;
|
|
114
|
-
prepareValue?: Function;
|
|
115
|
-
externalName?: string;
|
|
116
|
-
env?: string[] | string;
|
|
117
|
-
additionalValues?: object;
|
|
230
|
+
};
|
|
231
|
+
type: import("pacc").AttributeDefinition;
|
|
232
|
+
name: import("pacc").AttributeDefinition;
|
|
233
|
+
description: import("pacc").AttributeDefinition;
|
|
234
|
+
priority: import("pacc").AttributeDefinition;
|
|
235
|
+
directory: import("pacc").AttributeDefinition;
|
|
236
|
+
packaging: import("pacc").AttributeDefinition;
|
|
237
|
+
disabled: import("pacc").AttributeDefinition;
|
|
238
|
+
tags: import("pacc").AttributeDefinition;
|
|
118
239
|
};
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
240
|
+
};
|
|
241
|
+
specializations: {};
|
|
242
|
+
factoryFor(owner: any, value: any): any;
|
|
243
|
+
key: string;
|
|
244
|
+
attributes: {
|
|
245
|
+
alias: import("pacc").AttributeDefinition;
|
|
246
|
+
weight: {
|
|
125
247
|
type: object;
|
|
126
248
|
isKey: boolean;
|
|
127
249
|
writable: boolean;
|
|
@@ -134,11 +256,14 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
134
256
|
set?: Function;
|
|
135
257
|
get?: Function;
|
|
136
258
|
prepareValue?: Function;
|
|
259
|
+
values?: Set<any>;
|
|
137
260
|
externalName?: string;
|
|
138
261
|
env?: string[] | string;
|
|
139
262
|
additionalValues?: object;
|
|
140
263
|
};
|
|
141
|
-
|
|
264
|
+
systemd: import("pacc").AttributeDefinition;
|
|
265
|
+
port: import("pacc").AttributeDefinition;
|
|
266
|
+
protocol: {
|
|
142
267
|
values: string[];
|
|
143
268
|
type: object;
|
|
144
269
|
isKey: boolean;
|
|
@@ -156,29 +281,9 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
156
281
|
env?: string[] | string;
|
|
157
282
|
additionalValues?: object;
|
|
158
283
|
};
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
extends: {
|
|
163
|
-
type: string;
|
|
164
|
-
collection: boolean;
|
|
165
|
-
isKey: boolean;
|
|
166
|
-
writable: boolean;
|
|
167
|
-
mandatory: boolean;
|
|
168
|
-
private?: boolean;
|
|
169
|
-
depends?: string;
|
|
170
|
-
description?: string;
|
|
171
|
-
default?: any;
|
|
172
|
-
set?: Function;
|
|
173
|
-
get?: Function;
|
|
174
|
-
prepareValue?: Function;
|
|
175
|
-
values?: Set<any>;
|
|
176
|
-
externalName?: string;
|
|
177
|
-
env?: string[] | string;
|
|
178
|
-
additionalValues?: object;
|
|
179
|
-
};
|
|
180
|
-
model: import("pacc").AttributeDefinition;
|
|
181
|
-
isModel: import("pacc").AttributeDefinition;
|
|
284
|
+
type: import("pacc").AttributeDefinition;
|
|
285
|
+
types: typeof import("pacc").string_collection_attribute;
|
|
286
|
+
tls: import("pacc").AttributeDefinition;
|
|
182
287
|
hostName: {
|
|
183
288
|
writable: boolean;
|
|
184
289
|
type: object;
|
|
@@ -202,8 +307,8 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
202
307
|
addresses: import("pacc").AttributeDefinition;
|
|
203
308
|
address: import("pacc").AttributeDefinition;
|
|
204
309
|
};
|
|
205
|
-
}
|
|
206
|
-
|
|
310
|
+
};
|
|
311
|
+
specializationOf: {
|
|
207
312
|
name: string;
|
|
208
313
|
owners: (string | {
|
|
209
314
|
name: string;
|
|
@@ -508,6 +613,206 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
508
613
|
address: import("pacc").AttributeDefinition;
|
|
509
614
|
};
|
|
510
615
|
};
|
|
616
|
+
owners: (string | {
|
|
617
|
+
name: string;
|
|
618
|
+
priority: number;
|
|
619
|
+
owners: string[];
|
|
620
|
+
extends: {
|
|
621
|
+
name: string;
|
|
622
|
+
key: string;
|
|
623
|
+
attributes: {
|
|
624
|
+
owner: {
|
|
625
|
+
type: string;
|
|
626
|
+
isKey: boolean;
|
|
627
|
+
writable: boolean;
|
|
628
|
+
mandatory: boolean;
|
|
629
|
+
collection: boolean;
|
|
630
|
+
private?: boolean;
|
|
631
|
+
depends?: string;
|
|
632
|
+
description?: string;
|
|
633
|
+
default?: any;
|
|
634
|
+
set?: Function;
|
|
635
|
+
get?: Function;
|
|
636
|
+
prepareValue?: Function;
|
|
637
|
+
values?: Set<any>;
|
|
638
|
+
externalName?: string;
|
|
639
|
+
env?: string[] | string;
|
|
640
|
+
additionalValues?: object;
|
|
641
|
+
};
|
|
642
|
+
type: import("pacc").AttributeDefinition;
|
|
643
|
+
name: import("pacc").AttributeDefinition;
|
|
644
|
+
description: import("pacc").AttributeDefinition;
|
|
645
|
+
priority: import("pacc").AttributeDefinition;
|
|
646
|
+
directory: import("pacc").AttributeDefinition;
|
|
647
|
+
packaging: import("pacc").AttributeDefinition;
|
|
648
|
+
disabled: import("pacc").AttributeDefinition;
|
|
649
|
+
tags: import("pacc").AttributeDefinition;
|
|
650
|
+
};
|
|
651
|
+
};
|
|
652
|
+
key: string;
|
|
653
|
+
attributes: {
|
|
654
|
+
networkInterfaces: {
|
|
655
|
+
type: string;
|
|
656
|
+
collection: boolean;
|
|
657
|
+
isKey: boolean;
|
|
658
|
+
writable: boolean;
|
|
659
|
+
mandatory: boolean;
|
|
660
|
+
private?: boolean;
|
|
661
|
+
depends?: string;
|
|
662
|
+
description?: string;
|
|
663
|
+
default?: any;
|
|
664
|
+
set?: Function;
|
|
665
|
+
get?: Function;
|
|
666
|
+
prepareValue?: Function;
|
|
667
|
+
values?: Set<any>;
|
|
668
|
+
externalName?: string;
|
|
669
|
+
env?: string[] | string;
|
|
670
|
+
additionalValues?: object;
|
|
671
|
+
};
|
|
672
|
+
services: {
|
|
673
|
+
type: string;
|
|
674
|
+
collection: boolean;
|
|
675
|
+
isKey: boolean;
|
|
676
|
+
writable: boolean;
|
|
677
|
+
mandatory: boolean;
|
|
678
|
+
private?: boolean;
|
|
679
|
+
depends?: string;
|
|
680
|
+
description?: string;
|
|
681
|
+
default?: any;
|
|
682
|
+
set?: Function;
|
|
683
|
+
get?: Function;
|
|
684
|
+
prepareValue?: Function;
|
|
685
|
+
values?: Set<any>;
|
|
686
|
+
externalName?: string;
|
|
687
|
+
env?: string[] | string;
|
|
688
|
+
additionalValues?: object;
|
|
689
|
+
};
|
|
690
|
+
aliases: import("pacc").AttributeDefinition;
|
|
691
|
+
os: {
|
|
692
|
+
values: string[];
|
|
693
|
+
type: object;
|
|
694
|
+
isKey: boolean;
|
|
695
|
+
writable: boolean;
|
|
696
|
+
mandatory: boolean;
|
|
697
|
+
collection: boolean;
|
|
698
|
+
private?: boolean;
|
|
699
|
+
depends?: string;
|
|
700
|
+
description?: string;
|
|
701
|
+
default?: any;
|
|
702
|
+
set?: Function;
|
|
703
|
+
get?: Function;
|
|
704
|
+
prepareValue?: Function;
|
|
705
|
+
externalName?: string;
|
|
706
|
+
env?: string[] | string;
|
|
707
|
+
additionalValues?: object;
|
|
708
|
+
};
|
|
709
|
+
"machine-id": import("pacc").AttributeDefinition;
|
|
710
|
+
distribution: import("pacc").AttributeDefinition;
|
|
711
|
+
deployment: {
|
|
712
|
+
values: string[];
|
|
713
|
+
type: object;
|
|
714
|
+
isKey: boolean;
|
|
715
|
+
writable: boolean;
|
|
716
|
+
mandatory: boolean;
|
|
717
|
+
collection: boolean;
|
|
718
|
+
private?: boolean;
|
|
719
|
+
depends?: string;
|
|
720
|
+
description?: string;
|
|
721
|
+
default?: any;
|
|
722
|
+
set?: Function;
|
|
723
|
+
get?: Function;
|
|
724
|
+
prepareValue?: Function;
|
|
725
|
+
externalName?: string;
|
|
726
|
+
env?: string[] | string;
|
|
727
|
+
additionalValues?: object;
|
|
728
|
+
};
|
|
729
|
+
weight: import("pacc").AttributeDefinition;
|
|
730
|
+
serial: import("pacc").AttributeDefinition;
|
|
731
|
+
vendor: import("pacc").AttributeDefinition;
|
|
732
|
+
keymap: import("pacc").AttributeDefinition;
|
|
733
|
+
chassis: {
|
|
734
|
+
values: string[];
|
|
735
|
+
type: object;
|
|
736
|
+
isKey: boolean;
|
|
737
|
+
writable: boolean;
|
|
738
|
+
mandatory: boolean;
|
|
739
|
+
collection: boolean;
|
|
740
|
+
private?: boolean;
|
|
741
|
+
depends?: string;
|
|
742
|
+
description?: string;
|
|
743
|
+
default?: any;
|
|
744
|
+
set?: Function;
|
|
745
|
+
get?: Function;
|
|
746
|
+
prepareValue?: Function;
|
|
747
|
+
externalName?: string;
|
|
748
|
+
env?: string[] | string;
|
|
749
|
+
additionalValues?: object;
|
|
750
|
+
};
|
|
751
|
+
architecture: {
|
|
752
|
+
values: string[];
|
|
753
|
+
type: object;
|
|
754
|
+
isKey: boolean;
|
|
755
|
+
writable: boolean;
|
|
756
|
+
mandatory: boolean;
|
|
757
|
+
collection: boolean;
|
|
758
|
+
private?: boolean;
|
|
759
|
+
depends?: string;
|
|
760
|
+
description?: string;
|
|
761
|
+
default?: any;
|
|
762
|
+
set?: Function;
|
|
763
|
+
get?: Function;
|
|
764
|
+
prepareValue?: Function;
|
|
765
|
+
externalName?: string;
|
|
766
|
+
env?: string[] | string;
|
|
767
|
+
additionalValues?: object;
|
|
768
|
+
};
|
|
769
|
+
replaces: import("pacc").AttributeDefinition;
|
|
770
|
+
depends: import("pacc").AttributeDefinition;
|
|
771
|
+
provides: import("pacc").AttributeDefinition;
|
|
772
|
+
extends: {
|
|
773
|
+
type: string;
|
|
774
|
+
collection: boolean;
|
|
775
|
+
isKey: boolean;
|
|
776
|
+
writable: boolean;
|
|
777
|
+
mandatory: boolean;
|
|
778
|
+
private?: boolean;
|
|
779
|
+
depends?: string;
|
|
780
|
+
description?: string;
|
|
781
|
+
default?: any;
|
|
782
|
+
set?: Function;
|
|
783
|
+
get?: Function;
|
|
784
|
+
prepareValue?: Function;
|
|
785
|
+
values?: Set<any>;
|
|
786
|
+
externalName?: string;
|
|
787
|
+
env?: string[] | string;
|
|
788
|
+
additionalValues?: object;
|
|
789
|
+
};
|
|
790
|
+
model: import("pacc").AttributeDefinition;
|
|
791
|
+
isModel: import("pacc").AttributeDefinition;
|
|
792
|
+
hostName: {
|
|
793
|
+
writable: boolean;
|
|
794
|
+
type: object;
|
|
795
|
+
isKey: boolean;
|
|
796
|
+
mandatory: boolean;
|
|
797
|
+
collection: boolean;
|
|
798
|
+
private?: boolean;
|
|
799
|
+
depends?: string;
|
|
800
|
+
description?: string;
|
|
801
|
+
default?: any;
|
|
802
|
+
set?: Function;
|
|
803
|
+
get?: Function;
|
|
804
|
+
prepareValue?: Function;
|
|
805
|
+
values?: Set<any>;
|
|
806
|
+
externalName?: string;
|
|
807
|
+
env?: string[] | string;
|
|
808
|
+
additionalValues?: object;
|
|
809
|
+
};
|
|
810
|
+
cidrAddresses: import("pacc").AttributeDefinition;
|
|
811
|
+
cidrAddress: import("pacc").AttributeDefinition;
|
|
812
|
+
addresses: import("pacc").AttributeDefinition;
|
|
813
|
+
address: import("pacc").AttributeDefinition;
|
|
814
|
+
};
|
|
815
|
+
})[];
|
|
511
816
|
priority: number;
|
|
512
817
|
attributes: {
|
|
513
818
|
source: {
|
package/types/types.d.mts
CHANGED