pmcf 3.10.25 → 3.11.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/bin/pmcf-info +2 -1
- package/package.json +5 -5
- package/src/base.mjs +32 -29
- package/src/cluster.mjs +3 -2
- package/src/host.mjs +3 -5
- package/src/location.mjs +1 -0
- package/src/network-interfaces/ethernet.mjs +1 -0
- package/src/network-interfaces/loopback.mjs +4 -6
- package/src/network-interfaces/network-interface.mjs +11 -2
- package/src/network-interfaces/tun.mjs +1 -1
- package/src/network-interfaces/wireguard.mjs +1 -1
- package/src/network-interfaces/wlan.mjs +1 -0
- package/src/network-support.mjs +8 -3
- package/src/network.mjs +2 -1
- package/src/owner.mjs +3 -1
- package/src/root.mjs +1 -3
- package/src/service-owner.mjs +11 -3
- package/src/service.mjs +4 -2
- package/src/services/bind.mjs +6 -3
- package/src/services/chrony.mjs +4 -6
- package/src/services/headscale.mjs +1 -1
- package/src/services/influxdb.mjs +1 -0
- package/src/services/kea.mjs +14 -12
- package/src/services/mosquitto.mjs +1 -0
- package/src/services/openldap.mjs +1 -0
- package/src/services/systemd-journal-remote.mjs +1 -1
- package/src/services/systemd-journal-upload.mjs +1 -0
- package/src/services/systemd-journal.mjs +2 -2
- package/src/services/systemd-resolved.mjs +8 -6
- package/src/services/systemd-timesyncd.mjs +7 -7
- package/src/subnet.mjs +3 -1
- package/src/types.mjs +16 -38
- package/types/base.d.mts +5 -3
- package/types/cluster.d.mts +56 -10
- package/types/extra-source-service.d.mts +510 -9
- package/types/host.d.mts +20 -7
- package/types/location.d.mts +71 -6
- package/types/network-interfaces/ethernet.d.mts +630 -26
- package/types/network-interfaces/loopback.d.mts +629 -27
- package/types/network-interfaces/network-interface.d.mts +628 -26
- package/types/network-interfaces/tun.d.mts +629 -27
- package/types/network-interfaces/wireguard.d.mts +629 -27
- package/types/network-interfaces/wlan.d.mts +947 -40
- package/types/network-support.d.mts +54 -11
- package/types/network.d.mts +324 -8
- package/types/owner.d.mts +35 -3
- package/types/root.d.mts +71 -8
- package/types/service-owner.d.mts +1 -0
- package/types/service.d.mts +363 -13
- package/types/services/bind.d.mts +706 -23
- package/types/services/chrony.d.mts +689 -15
- package/types/services/headscale.d.mts +689 -15
- package/types/services/influxdb.d.mts +527 -14
- package/types/services/kea.d.mts +539 -18
- package/types/services/mosquitto.d.mts +530 -15
- package/types/services/openldap.d.mts +524 -13
- package/types/services/systemd-journal-remote.d.mts +524 -14
- package/types/services/systemd-journal-upload.d.mts +524 -13
- package/types/services/systemd-journal.d.mts +524 -14
- package/types/services/systemd-resolved.d.mts +689 -15
- package/types/services/systemd-timesyncd.d.mts +763 -90
- package/types/subnet.d.mts +14 -0
- package/src/filter.mjs +0 -91
- package/types/filter.d.mts +0 -1
|
@@ -1,13 +1,627 @@
|
|
|
1
1
|
export class SystemdTimesyncdService extends ExtraSourceService {
|
|
2
2
|
static get typeDefinition(): {
|
|
3
3
|
name: string;
|
|
4
|
+
extends: {
|
|
5
|
+
name: string;
|
|
6
|
+
owners: (string | {
|
|
7
|
+
name: string;
|
|
8
|
+
priority: number;
|
|
9
|
+
owners: string[];
|
|
10
|
+
extends: {
|
|
11
|
+
name: string;
|
|
12
|
+
key: string;
|
|
13
|
+
attributes: {
|
|
14
|
+
owner: {
|
|
15
|
+
type: string;
|
|
16
|
+
collection: boolean;
|
|
17
|
+
writable: boolean;
|
|
18
|
+
};
|
|
19
|
+
type: import("pacc").AttributeDefinition;
|
|
20
|
+
name: import("pacc").AttributeDefinition;
|
|
21
|
+
description: {
|
|
22
|
+
writable: boolean;
|
|
23
|
+
type: object;
|
|
24
|
+
isKey: boolean;
|
|
25
|
+
mandatory: boolean;
|
|
26
|
+
collection: boolean;
|
|
27
|
+
private?: boolean;
|
|
28
|
+
depends?: string;
|
|
29
|
+
description?: string;
|
|
30
|
+
default?: any;
|
|
31
|
+
set?: Function;
|
|
32
|
+
get?: Function;
|
|
33
|
+
prepareValue?: Function;
|
|
34
|
+
values?: Set<any>;
|
|
35
|
+
externalName?: string;
|
|
36
|
+
env?: string[] | string;
|
|
37
|
+
additionalValues?: object;
|
|
38
|
+
};
|
|
39
|
+
priority: import("pacc").AttributeDefinition;
|
|
40
|
+
directory: import("pacc").AttributeDefinition;
|
|
41
|
+
packaging: import("pacc").AttributeDefinition;
|
|
42
|
+
disabled: import("pacc").AttributeDefinition;
|
|
43
|
+
tags: import("pacc").AttributeDefinition;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
key: string;
|
|
47
|
+
attributes: {
|
|
48
|
+
networkInterfaces: {
|
|
49
|
+
type: string;
|
|
50
|
+
collection: boolean;
|
|
51
|
+
writable: boolean;
|
|
52
|
+
};
|
|
53
|
+
services: {
|
|
54
|
+
type: string;
|
|
55
|
+
collection: boolean;
|
|
56
|
+
writable: boolean;
|
|
57
|
+
};
|
|
58
|
+
aliases: import("pacc").AttributeDefinition;
|
|
59
|
+
os: {
|
|
60
|
+
values: string[];
|
|
61
|
+
type: object;
|
|
62
|
+
isKey: boolean;
|
|
63
|
+
writable: boolean;
|
|
64
|
+
mandatory: boolean;
|
|
65
|
+
collection: boolean;
|
|
66
|
+
private?: boolean;
|
|
67
|
+
depends?: string;
|
|
68
|
+
description?: string;
|
|
69
|
+
default?: any;
|
|
70
|
+
set?: Function;
|
|
71
|
+
get?: Function;
|
|
72
|
+
prepareValue?: Function;
|
|
73
|
+
externalName?: string;
|
|
74
|
+
env?: string[] | string;
|
|
75
|
+
additionalValues?: object;
|
|
76
|
+
};
|
|
77
|
+
"machine-id": import("pacc").AttributeDefinition;
|
|
78
|
+
distribution: import("pacc").AttributeDefinition;
|
|
79
|
+
deployment: {
|
|
80
|
+
values: string[];
|
|
81
|
+
type: object;
|
|
82
|
+
isKey: boolean;
|
|
83
|
+
writable: boolean;
|
|
84
|
+
mandatory: boolean;
|
|
85
|
+
collection: boolean;
|
|
86
|
+
private?: boolean;
|
|
87
|
+
depends?: string;
|
|
88
|
+
description?: string;
|
|
89
|
+
default?: any;
|
|
90
|
+
set?: Function;
|
|
91
|
+
get?: Function;
|
|
92
|
+
prepareValue?: Function;
|
|
93
|
+
externalName?: string;
|
|
94
|
+
env?: string[] | string;
|
|
95
|
+
additionalValues?: object;
|
|
96
|
+
};
|
|
97
|
+
weight: import("pacc").AttributeDefinition;
|
|
98
|
+
serial: import("pacc").AttributeDefinition;
|
|
99
|
+
vendor: import("pacc").AttributeDefinition;
|
|
100
|
+
keymap: import("pacc").AttributeDefinition;
|
|
101
|
+
chassis: {
|
|
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;
|
|
118
|
+
};
|
|
119
|
+
architecture: {
|
|
120
|
+
values: string[];
|
|
121
|
+
type: object;
|
|
122
|
+
isKey: boolean;
|
|
123
|
+
writable: boolean;
|
|
124
|
+
mandatory: boolean;
|
|
125
|
+
collection: boolean;
|
|
126
|
+
private?: boolean;
|
|
127
|
+
depends?: string;
|
|
128
|
+
description?: string;
|
|
129
|
+
default?: any;
|
|
130
|
+
set?: Function;
|
|
131
|
+
get?: Function;
|
|
132
|
+
prepareValue?: Function;
|
|
133
|
+
externalName?: string;
|
|
134
|
+
env?: string[] | string;
|
|
135
|
+
additionalValues?: object;
|
|
136
|
+
};
|
|
137
|
+
replaces: import("pacc").AttributeDefinition;
|
|
138
|
+
depends: import("pacc").AttributeDefinition;
|
|
139
|
+
provides: import("pacc").AttributeDefinition;
|
|
140
|
+
extends: {
|
|
141
|
+
type: string;
|
|
142
|
+
collection: boolean;
|
|
143
|
+
writable: boolean;
|
|
144
|
+
};
|
|
145
|
+
model: import("pacc").AttributeDefinition;
|
|
146
|
+
isModel: import("pacc").AttributeDefinition;
|
|
147
|
+
hostName: {
|
|
148
|
+
writable: boolean;
|
|
149
|
+
type: object;
|
|
150
|
+
isKey: boolean;
|
|
151
|
+
mandatory: boolean;
|
|
152
|
+
collection: boolean;
|
|
153
|
+
private?: boolean;
|
|
154
|
+
depends?: string;
|
|
155
|
+
description?: string;
|
|
156
|
+
default?: any;
|
|
157
|
+
set?: Function;
|
|
158
|
+
get?: Function;
|
|
159
|
+
prepareValue?: Function;
|
|
160
|
+
values?: Set<any>;
|
|
161
|
+
externalName?: string;
|
|
162
|
+
env?: string[] | string;
|
|
163
|
+
additionalValues?: object;
|
|
164
|
+
};
|
|
165
|
+
cidrAddresses: import("pacc").AttributeDefinition;
|
|
166
|
+
cidrAddress: import("pacc").AttributeDefinition;
|
|
167
|
+
addresses: import("pacc").AttributeDefinition;
|
|
168
|
+
address: import("pacc").AttributeDefinition;
|
|
169
|
+
};
|
|
170
|
+
})[];
|
|
171
|
+
extends: {
|
|
172
|
+
name: string;
|
|
173
|
+
owners: (string | {
|
|
174
|
+
name: string;
|
|
175
|
+
priority: number;
|
|
176
|
+
owners: string[];
|
|
177
|
+
extends: {
|
|
178
|
+
name: string;
|
|
179
|
+
key: string;
|
|
180
|
+
attributes: {
|
|
181
|
+
owner: {
|
|
182
|
+
type: string;
|
|
183
|
+
collection: boolean;
|
|
184
|
+
writable: boolean;
|
|
185
|
+
};
|
|
186
|
+
type: import("pacc").AttributeDefinition;
|
|
187
|
+
name: import("pacc").AttributeDefinition;
|
|
188
|
+
description: {
|
|
189
|
+
writable: boolean;
|
|
190
|
+
type: object;
|
|
191
|
+
isKey: boolean;
|
|
192
|
+
mandatory: boolean;
|
|
193
|
+
collection: boolean;
|
|
194
|
+
private?: boolean;
|
|
195
|
+
depends?: string;
|
|
196
|
+
description?: string;
|
|
197
|
+
default?: any;
|
|
198
|
+
set?: Function;
|
|
199
|
+
get?: Function;
|
|
200
|
+
prepareValue?: Function;
|
|
201
|
+
values?: Set<any>;
|
|
202
|
+
externalName?: string;
|
|
203
|
+
env?: string[] | string;
|
|
204
|
+
additionalValues?: object;
|
|
205
|
+
};
|
|
206
|
+
priority: import("pacc").AttributeDefinition;
|
|
207
|
+
directory: import("pacc").AttributeDefinition;
|
|
208
|
+
packaging: import("pacc").AttributeDefinition;
|
|
209
|
+
disabled: import("pacc").AttributeDefinition;
|
|
210
|
+
tags: import("pacc").AttributeDefinition;
|
|
211
|
+
};
|
|
212
|
+
};
|
|
213
|
+
key: string;
|
|
214
|
+
attributes: {
|
|
215
|
+
networkInterfaces: {
|
|
216
|
+
type: string;
|
|
217
|
+
collection: boolean;
|
|
218
|
+
writable: boolean;
|
|
219
|
+
};
|
|
220
|
+
services: {
|
|
221
|
+
type: string;
|
|
222
|
+
collection: boolean;
|
|
223
|
+
writable: boolean;
|
|
224
|
+
};
|
|
225
|
+
aliases: import("pacc").AttributeDefinition;
|
|
226
|
+
os: {
|
|
227
|
+
values: string[];
|
|
228
|
+
type: object;
|
|
229
|
+
isKey: boolean;
|
|
230
|
+
writable: boolean;
|
|
231
|
+
mandatory: boolean;
|
|
232
|
+
collection: boolean;
|
|
233
|
+
private?: boolean;
|
|
234
|
+
depends?: string;
|
|
235
|
+
description?: string;
|
|
236
|
+
default?: any;
|
|
237
|
+
set?: Function;
|
|
238
|
+
get?: Function;
|
|
239
|
+
prepareValue?: Function;
|
|
240
|
+
externalName?: string;
|
|
241
|
+
env?: string[] | string;
|
|
242
|
+
additionalValues?: object;
|
|
243
|
+
};
|
|
244
|
+
"machine-id": import("pacc").AttributeDefinition;
|
|
245
|
+
distribution: import("pacc").AttributeDefinition;
|
|
246
|
+
deployment: {
|
|
247
|
+
values: string[];
|
|
248
|
+
type: object;
|
|
249
|
+
isKey: boolean;
|
|
250
|
+
writable: boolean;
|
|
251
|
+
mandatory: boolean;
|
|
252
|
+
collection: boolean;
|
|
253
|
+
private?: boolean;
|
|
254
|
+
depends?: string;
|
|
255
|
+
description?: string;
|
|
256
|
+
default?: any;
|
|
257
|
+
set?: Function;
|
|
258
|
+
get?: Function;
|
|
259
|
+
prepareValue?: Function;
|
|
260
|
+
externalName?: string;
|
|
261
|
+
env?: string[] | string;
|
|
262
|
+
additionalValues?: object;
|
|
263
|
+
};
|
|
264
|
+
weight: import("pacc").AttributeDefinition;
|
|
265
|
+
serial: import("pacc").AttributeDefinition;
|
|
266
|
+
vendor: import("pacc").AttributeDefinition;
|
|
267
|
+
keymap: import("pacc").AttributeDefinition;
|
|
268
|
+
chassis: {
|
|
269
|
+
values: string[];
|
|
270
|
+
type: object;
|
|
271
|
+
isKey: boolean;
|
|
272
|
+
writable: boolean;
|
|
273
|
+
mandatory: boolean;
|
|
274
|
+
collection: boolean;
|
|
275
|
+
private?: boolean;
|
|
276
|
+
depends?: string;
|
|
277
|
+
description?: string;
|
|
278
|
+
default?: any;
|
|
279
|
+
set?: Function;
|
|
280
|
+
get?: Function;
|
|
281
|
+
prepareValue?: Function;
|
|
282
|
+
externalName?: string;
|
|
283
|
+
env?: string[] | string;
|
|
284
|
+
additionalValues?: object;
|
|
285
|
+
};
|
|
286
|
+
architecture: {
|
|
287
|
+
values: string[];
|
|
288
|
+
type: object;
|
|
289
|
+
isKey: boolean;
|
|
290
|
+
writable: boolean;
|
|
291
|
+
mandatory: boolean;
|
|
292
|
+
collection: boolean;
|
|
293
|
+
private?: boolean;
|
|
294
|
+
depends?: string;
|
|
295
|
+
description?: string;
|
|
296
|
+
default?: any;
|
|
297
|
+
set?: Function;
|
|
298
|
+
get?: Function;
|
|
299
|
+
prepareValue?: Function;
|
|
300
|
+
externalName?: string;
|
|
301
|
+
env?: string[] | string;
|
|
302
|
+
additionalValues?: object;
|
|
303
|
+
};
|
|
304
|
+
replaces: import("pacc").AttributeDefinition;
|
|
305
|
+
depends: import("pacc").AttributeDefinition;
|
|
306
|
+
provides: import("pacc").AttributeDefinition;
|
|
307
|
+
extends: {
|
|
308
|
+
type: string;
|
|
309
|
+
collection: boolean;
|
|
310
|
+
writable: boolean;
|
|
311
|
+
};
|
|
312
|
+
model: import("pacc").AttributeDefinition;
|
|
313
|
+
isModel: import("pacc").AttributeDefinition;
|
|
314
|
+
hostName: {
|
|
315
|
+
writable: boolean;
|
|
316
|
+
type: object;
|
|
317
|
+
isKey: boolean;
|
|
318
|
+
mandatory: boolean;
|
|
319
|
+
collection: boolean;
|
|
320
|
+
private?: boolean;
|
|
321
|
+
depends?: string;
|
|
322
|
+
description?: string;
|
|
323
|
+
default?: any;
|
|
324
|
+
set?: Function;
|
|
325
|
+
get?: Function;
|
|
326
|
+
prepareValue?: Function;
|
|
327
|
+
values?: Set<any>;
|
|
328
|
+
externalName?: string;
|
|
329
|
+
env?: string[] | string;
|
|
330
|
+
additionalValues?: object;
|
|
331
|
+
};
|
|
332
|
+
cidrAddresses: import("pacc").AttributeDefinition;
|
|
333
|
+
cidrAddress: import("pacc").AttributeDefinition;
|
|
334
|
+
addresses: import("pacc").AttributeDefinition;
|
|
335
|
+
address: import("pacc").AttributeDefinition;
|
|
336
|
+
};
|
|
337
|
+
})[];
|
|
338
|
+
priority: number;
|
|
339
|
+
extends: {
|
|
340
|
+
name: string;
|
|
341
|
+
key: string;
|
|
342
|
+
attributes: {
|
|
343
|
+
owner: {
|
|
344
|
+
type: string;
|
|
345
|
+
collection: boolean;
|
|
346
|
+
writable: boolean;
|
|
347
|
+
};
|
|
348
|
+
type: import("pacc").AttributeDefinition;
|
|
349
|
+
name: import("pacc").AttributeDefinition;
|
|
350
|
+
description: {
|
|
351
|
+
writable: boolean;
|
|
352
|
+
type: object;
|
|
353
|
+
isKey: boolean;
|
|
354
|
+
mandatory: boolean;
|
|
355
|
+
collection: boolean;
|
|
356
|
+
private?: boolean;
|
|
357
|
+
depends?: string;
|
|
358
|
+
description?: string;
|
|
359
|
+
default?: any;
|
|
360
|
+
set?: Function;
|
|
361
|
+
get?: Function;
|
|
362
|
+
prepareValue?: Function;
|
|
363
|
+
values?: Set<any>;
|
|
364
|
+
externalName?: string;
|
|
365
|
+
env?: string[] | string;
|
|
366
|
+
additionalValues?: object;
|
|
367
|
+
};
|
|
368
|
+
priority: import("pacc").AttributeDefinition;
|
|
369
|
+
directory: import("pacc").AttributeDefinition;
|
|
370
|
+
packaging: import("pacc").AttributeDefinition;
|
|
371
|
+
disabled: import("pacc").AttributeDefinition;
|
|
372
|
+
tags: import("pacc").AttributeDefinition;
|
|
373
|
+
};
|
|
374
|
+
};
|
|
375
|
+
specializations: {};
|
|
376
|
+
factoryFor(owner: any, value: any): any;
|
|
377
|
+
key: string;
|
|
378
|
+
attributes: {
|
|
379
|
+
alias: import("pacc").AttributeDefinition;
|
|
380
|
+
weight: {
|
|
381
|
+
type: object;
|
|
382
|
+
isKey: boolean;
|
|
383
|
+
writable: boolean;
|
|
384
|
+
mandatory: boolean;
|
|
385
|
+
collection: boolean;
|
|
386
|
+
private?: boolean;
|
|
387
|
+
depends?: string;
|
|
388
|
+
description?: string;
|
|
389
|
+
default?: any;
|
|
390
|
+
set?: Function;
|
|
391
|
+
get?: Function;
|
|
392
|
+
prepareValue?: Function;
|
|
393
|
+
values?: Set<any>;
|
|
394
|
+
externalName?: string;
|
|
395
|
+
env?: string[] | string;
|
|
396
|
+
additionalValues?: object;
|
|
397
|
+
};
|
|
398
|
+
systemd: import("pacc").AttributeDefinition;
|
|
399
|
+
port: import("pacc").AttributeDefinition;
|
|
400
|
+
protocol: {
|
|
401
|
+
values: string[];
|
|
402
|
+
type: object;
|
|
403
|
+
isKey: boolean;
|
|
404
|
+
writable: boolean;
|
|
405
|
+
mandatory: boolean;
|
|
406
|
+
collection: boolean;
|
|
407
|
+
private?: boolean;
|
|
408
|
+
depends?: string;
|
|
409
|
+
description?: string;
|
|
410
|
+
default?: any;
|
|
411
|
+
set?: Function;
|
|
412
|
+
get?: Function;
|
|
413
|
+
prepareValue?: Function;
|
|
414
|
+
externalName?: string;
|
|
415
|
+
env?: string[] | string;
|
|
416
|
+
additionalValues?: object;
|
|
417
|
+
};
|
|
418
|
+
type: import("pacc").AttributeDefinition;
|
|
419
|
+
types: typeof import("pacc").string_collection_attribute;
|
|
420
|
+
tls: import("pacc").AttributeDefinition;
|
|
421
|
+
hostName: {
|
|
422
|
+
writable: boolean;
|
|
423
|
+
type: object;
|
|
424
|
+
isKey: boolean;
|
|
425
|
+
mandatory: boolean;
|
|
426
|
+
collection: boolean;
|
|
427
|
+
private?: boolean;
|
|
428
|
+
depends?: string;
|
|
429
|
+
description?: string;
|
|
430
|
+
default?: any;
|
|
431
|
+
set?: Function;
|
|
432
|
+
get?: Function;
|
|
433
|
+
prepareValue?: Function;
|
|
434
|
+
values?: Set<any>;
|
|
435
|
+
externalName?: string;
|
|
436
|
+
env?: string[] | string;
|
|
437
|
+
additionalValues?: object;
|
|
438
|
+
};
|
|
439
|
+
cidrAddresses: import("pacc").AttributeDefinition;
|
|
440
|
+
cidrAddress: import("pacc").AttributeDefinition;
|
|
441
|
+
addresses: import("pacc").AttributeDefinition;
|
|
442
|
+
address: import("pacc").AttributeDefinition;
|
|
443
|
+
};
|
|
444
|
+
};
|
|
445
|
+
priority: number;
|
|
446
|
+
attributes: {
|
|
447
|
+
source: {
|
|
448
|
+
type: any;
|
|
449
|
+
collection: boolean;
|
|
450
|
+
writable: boolean;
|
|
451
|
+
};
|
|
452
|
+
};
|
|
453
|
+
};
|
|
4
454
|
specializationOf: {
|
|
5
455
|
name: string;
|
|
6
|
-
owners: string
|
|
456
|
+
owners: (string | {
|
|
457
|
+
name: string;
|
|
458
|
+
priority: number;
|
|
459
|
+
owners: string[];
|
|
460
|
+
extends: {
|
|
461
|
+
name: string;
|
|
462
|
+
key: string;
|
|
463
|
+
attributes: {
|
|
464
|
+
owner: {
|
|
465
|
+
type: string;
|
|
466
|
+
collection: boolean;
|
|
467
|
+
writable: boolean;
|
|
468
|
+
};
|
|
469
|
+
type: import("pacc").AttributeDefinition;
|
|
470
|
+
name: import("pacc").AttributeDefinition;
|
|
471
|
+
description: {
|
|
472
|
+
writable: boolean;
|
|
473
|
+
type: object;
|
|
474
|
+
isKey: boolean;
|
|
475
|
+
mandatory: boolean;
|
|
476
|
+
collection: boolean;
|
|
477
|
+
private?: boolean;
|
|
478
|
+
depends?: string;
|
|
479
|
+
description?: string;
|
|
480
|
+
default?: any;
|
|
481
|
+
set?: Function;
|
|
482
|
+
get?: Function;
|
|
483
|
+
prepareValue?: Function;
|
|
484
|
+
values?: Set<any>;
|
|
485
|
+
externalName?: string;
|
|
486
|
+
env?: string[] | string;
|
|
487
|
+
additionalValues?: object;
|
|
488
|
+
};
|
|
489
|
+
priority: import("pacc").AttributeDefinition;
|
|
490
|
+
directory: import("pacc").AttributeDefinition;
|
|
491
|
+
packaging: import("pacc").AttributeDefinition;
|
|
492
|
+
disabled: import("pacc").AttributeDefinition;
|
|
493
|
+
tags: import("pacc").AttributeDefinition;
|
|
494
|
+
};
|
|
495
|
+
};
|
|
496
|
+
key: string;
|
|
497
|
+
attributes: {
|
|
498
|
+
networkInterfaces: {
|
|
499
|
+
type: string;
|
|
500
|
+
collection: boolean;
|
|
501
|
+
writable: boolean;
|
|
502
|
+
};
|
|
503
|
+
services: {
|
|
504
|
+
type: string;
|
|
505
|
+
collection: boolean;
|
|
506
|
+
writable: boolean;
|
|
507
|
+
};
|
|
508
|
+
aliases: import("pacc").AttributeDefinition;
|
|
509
|
+
os: {
|
|
510
|
+
values: string[];
|
|
511
|
+
type: object;
|
|
512
|
+
isKey: boolean;
|
|
513
|
+
writable: boolean;
|
|
514
|
+
mandatory: boolean;
|
|
515
|
+
collection: boolean;
|
|
516
|
+
private?: boolean;
|
|
517
|
+
depends?: string;
|
|
518
|
+
description?: string;
|
|
519
|
+
default?: any;
|
|
520
|
+
set?: Function;
|
|
521
|
+
get?: Function;
|
|
522
|
+
prepareValue?: Function;
|
|
523
|
+
externalName?: string;
|
|
524
|
+
env?: string[] | string;
|
|
525
|
+
additionalValues?: object;
|
|
526
|
+
};
|
|
527
|
+
"machine-id": import("pacc").AttributeDefinition;
|
|
528
|
+
distribution: import("pacc").AttributeDefinition;
|
|
529
|
+
deployment: {
|
|
530
|
+
values: string[];
|
|
531
|
+
type: object;
|
|
532
|
+
isKey: boolean;
|
|
533
|
+
writable: boolean;
|
|
534
|
+
mandatory: boolean;
|
|
535
|
+
collection: boolean;
|
|
536
|
+
private?: boolean;
|
|
537
|
+
depends?: string;
|
|
538
|
+
description?: string;
|
|
539
|
+
default?: any;
|
|
540
|
+
set?: Function;
|
|
541
|
+
get?: Function;
|
|
542
|
+
prepareValue?: Function;
|
|
543
|
+
externalName?: string;
|
|
544
|
+
env?: string[] | string;
|
|
545
|
+
additionalValues?: object;
|
|
546
|
+
};
|
|
547
|
+
weight: import("pacc").AttributeDefinition;
|
|
548
|
+
serial: import("pacc").AttributeDefinition;
|
|
549
|
+
vendor: import("pacc").AttributeDefinition;
|
|
550
|
+
keymap: import("pacc").AttributeDefinition;
|
|
551
|
+
chassis: {
|
|
552
|
+
values: string[];
|
|
553
|
+
type: object;
|
|
554
|
+
isKey: boolean;
|
|
555
|
+
writable: boolean;
|
|
556
|
+
mandatory: boolean;
|
|
557
|
+
collection: boolean;
|
|
558
|
+
private?: boolean;
|
|
559
|
+
depends?: string;
|
|
560
|
+
description?: string;
|
|
561
|
+
default?: any;
|
|
562
|
+
set?: Function;
|
|
563
|
+
get?: Function;
|
|
564
|
+
prepareValue?: Function;
|
|
565
|
+
externalName?: string;
|
|
566
|
+
env?: string[] | string;
|
|
567
|
+
additionalValues?: object;
|
|
568
|
+
};
|
|
569
|
+
architecture: {
|
|
570
|
+
values: string[];
|
|
571
|
+
type: object;
|
|
572
|
+
isKey: boolean;
|
|
573
|
+
writable: boolean;
|
|
574
|
+
mandatory: boolean;
|
|
575
|
+
collection: boolean;
|
|
576
|
+
private?: boolean;
|
|
577
|
+
depends?: string;
|
|
578
|
+
description?: string;
|
|
579
|
+
default?: any;
|
|
580
|
+
set?: Function;
|
|
581
|
+
get?: Function;
|
|
582
|
+
prepareValue?: Function;
|
|
583
|
+
externalName?: string;
|
|
584
|
+
env?: string[] | string;
|
|
585
|
+
additionalValues?: object;
|
|
586
|
+
};
|
|
587
|
+
replaces: import("pacc").AttributeDefinition;
|
|
588
|
+
depends: import("pacc").AttributeDefinition;
|
|
589
|
+
provides: import("pacc").AttributeDefinition;
|
|
590
|
+
extends: {
|
|
591
|
+
type: string;
|
|
592
|
+
collection: boolean;
|
|
593
|
+
writable: boolean;
|
|
594
|
+
};
|
|
595
|
+
model: import("pacc").AttributeDefinition;
|
|
596
|
+
isModel: import("pacc").AttributeDefinition;
|
|
597
|
+
hostName: {
|
|
598
|
+
writable: boolean;
|
|
599
|
+
type: object;
|
|
600
|
+
isKey: boolean;
|
|
601
|
+
mandatory: boolean;
|
|
602
|
+
collection: boolean;
|
|
603
|
+
private?: boolean;
|
|
604
|
+
depends?: string;
|
|
605
|
+
description?: string;
|
|
606
|
+
default?: any;
|
|
607
|
+
set?: Function;
|
|
608
|
+
get?: Function;
|
|
609
|
+
prepareValue?: Function;
|
|
610
|
+
values?: Set<any>;
|
|
611
|
+
externalName?: string;
|
|
612
|
+
env?: string[] | string;
|
|
613
|
+
additionalValues?: object;
|
|
614
|
+
};
|
|
615
|
+
cidrAddresses: import("pacc").AttributeDefinition;
|
|
616
|
+
cidrAddress: import("pacc").AttributeDefinition;
|
|
617
|
+
addresses: import("pacc").AttributeDefinition;
|
|
618
|
+
address: import("pacc").AttributeDefinition;
|
|
619
|
+
};
|
|
620
|
+
})[];
|
|
7
621
|
priority: number;
|
|
8
622
|
extends: {
|
|
9
623
|
name: string;
|
|
10
|
-
|
|
624
|
+
key: string;
|
|
11
625
|
attributes: {
|
|
12
626
|
owner: {
|
|
13
627
|
type: string;
|
|
@@ -18,7 +632,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
18
632
|
name: import("pacc").AttributeDefinition;
|
|
19
633
|
description: {
|
|
20
634
|
writable: boolean;
|
|
21
|
-
type:
|
|
635
|
+
type: object;
|
|
22
636
|
isKey: boolean;
|
|
23
637
|
mandatory: boolean;
|
|
24
638
|
collection: boolean;
|
|
@@ -28,9 +642,11 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
28
642
|
default?: any;
|
|
29
643
|
set?: Function;
|
|
30
644
|
get?: Function;
|
|
645
|
+
prepareValue?: Function;
|
|
31
646
|
values?: Set<any>;
|
|
32
647
|
externalName?: string;
|
|
33
648
|
env?: string[] | string;
|
|
649
|
+
additionalValues?: object;
|
|
34
650
|
};
|
|
35
651
|
priority: import("pacc").AttributeDefinition;
|
|
36
652
|
directory: import("pacc").AttributeDefinition;
|
|
@@ -41,10 +657,11 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
41
657
|
};
|
|
42
658
|
specializations: {};
|
|
43
659
|
factoryFor(owner: any, value: any): any;
|
|
660
|
+
key: string;
|
|
44
661
|
attributes: {
|
|
45
662
|
alias: import("pacc").AttributeDefinition;
|
|
46
663
|
weight: {
|
|
47
|
-
type:
|
|
664
|
+
type: object;
|
|
48
665
|
isKey: boolean;
|
|
49
666
|
writable: boolean;
|
|
50
667
|
mandatory: boolean;
|
|
@@ -55,15 +672,17 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
55
672
|
default?: any;
|
|
56
673
|
set?: Function;
|
|
57
674
|
get?: Function;
|
|
675
|
+
prepareValue?: Function;
|
|
58
676
|
values?: Set<any>;
|
|
59
677
|
externalName?: string;
|
|
60
678
|
env?: string[] | string;
|
|
679
|
+
additionalValues?: object;
|
|
61
680
|
};
|
|
62
681
|
systemd: import("pacc").AttributeDefinition;
|
|
63
682
|
port: import("pacc").AttributeDefinition;
|
|
64
683
|
protocol: {
|
|
65
684
|
values: string[];
|
|
66
|
-
type:
|
|
685
|
+
type: object;
|
|
67
686
|
isKey: boolean;
|
|
68
687
|
writable: boolean;
|
|
69
688
|
mandatory: boolean;
|
|
@@ -74,15 +693,17 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
74
693
|
default?: any;
|
|
75
694
|
set?: Function;
|
|
76
695
|
get?: Function;
|
|
696
|
+
prepareValue?: Function;
|
|
77
697
|
externalName?: string;
|
|
78
698
|
env?: string[] | string;
|
|
699
|
+
additionalValues?: object;
|
|
79
700
|
};
|
|
80
701
|
type: import("pacc").AttributeDefinition;
|
|
81
702
|
types: typeof import("pacc").string_collection_attribute;
|
|
82
703
|
tls: import("pacc").AttributeDefinition;
|
|
83
704
|
hostName: {
|
|
84
705
|
writable: boolean;
|
|
85
|
-
type:
|
|
706
|
+
type: object;
|
|
86
707
|
isKey: boolean;
|
|
87
708
|
mandatory: boolean;
|
|
88
709
|
collection: boolean;
|
|
@@ -92,9 +713,11 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
92
713
|
default?: any;
|
|
93
714
|
set?: Function;
|
|
94
715
|
get?: Function;
|
|
716
|
+
prepareValue?: Function;
|
|
95
717
|
values?: Set<any>;
|
|
96
718
|
externalName?: string;
|
|
97
719
|
env?: string[] | string;
|
|
720
|
+
additionalValues?: object;
|
|
98
721
|
};
|
|
99
722
|
cidrAddresses: import("pacc").AttributeDefinition;
|
|
100
723
|
cidrAddress: import("pacc").AttributeDefinition;
|
|
@@ -102,92 +725,24 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
102
725
|
address: import("pacc").AttributeDefinition;
|
|
103
726
|
};
|
|
104
727
|
};
|
|
105
|
-
owners: string
|
|
106
|
-
extends: {
|
|
728
|
+
owners: (string | {
|
|
107
729
|
name: string;
|
|
730
|
+
priority: number;
|
|
108
731
|
owners: string[];
|
|
109
732
|
extends: {
|
|
110
733
|
name: string;
|
|
111
|
-
|
|
112
|
-
priority: number;
|
|
113
|
-
extends: {
|
|
114
|
-
name: string;
|
|
115
|
-
owners: any[];
|
|
116
|
-
attributes: {
|
|
117
|
-
owner: {
|
|
118
|
-
type: string;
|
|
119
|
-
collection: boolean;
|
|
120
|
-
writable: boolean;
|
|
121
|
-
};
|
|
122
|
-
type: import("pacc").AttributeDefinition;
|
|
123
|
-
name: import("pacc").AttributeDefinition;
|
|
124
|
-
description: {
|
|
125
|
-
writable: boolean;
|
|
126
|
-
type: string;
|
|
127
|
-
isKey: boolean;
|
|
128
|
-
mandatory: boolean;
|
|
129
|
-
collection: boolean;
|
|
130
|
-
private?: boolean;
|
|
131
|
-
depends?: string;
|
|
132
|
-
description?: string;
|
|
133
|
-
default?: any;
|
|
134
|
-
set?: Function;
|
|
135
|
-
get?: Function;
|
|
136
|
-
values?: Set<any>;
|
|
137
|
-
externalName?: string;
|
|
138
|
-
env?: string[] | string;
|
|
139
|
-
};
|
|
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
|
-
};
|
|
147
|
-
specializations: {};
|
|
148
|
-
factoryFor(owner: any, value: any): any;
|
|
734
|
+
key: string;
|
|
149
735
|
attributes: {
|
|
150
|
-
|
|
151
|
-
weight: {
|
|
736
|
+
owner: {
|
|
152
737
|
type: string;
|
|
153
|
-
isKey: boolean;
|
|
154
|
-
writable: boolean;
|
|
155
|
-
mandatory: boolean;
|
|
156
738
|
collection: boolean;
|
|
157
|
-
private?: boolean;
|
|
158
|
-
depends?: string;
|
|
159
|
-
description?: string;
|
|
160
|
-
default?: any;
|
|
161
|
-
set?: Function;
|
|
162
|
-
get?: Function;
|
|
163
|
-
values?: Set<any>;
|
|
164
|
-
externalName?: string;
|
|
165
|
-
env?: string[] | string;
|
|
166
|
-
};
|
|
167
|
-
systemd: import("pacc").AttributeDefinition;
|
|
168
|
-
port: import("pacc").AttributeDefinition;
|
|
169
|
-
protocol: {
|
|
170
|
-
values: string[];
|
|
171
|
-
type: string;
|
|
172
|
-
isKey: boolean;
|
|
173
739
|
writable: boolean;
|
|
174
|
-
mandatory: boolean;
|
|
175
|
-
collection: boolean;
|
|
176
|
-
private?: boolean;
|
|
177
|
-
depends?: string;
|
|
178
|
-
description?: string;
|
|
179
|
-
default?: any;
|
|
180
|
-
set?: Function;
|
|
181
|
-
get?: Function;
|
|
182
|
-
externalName?: string;
|
|
183
|
-
env?: string[] | string;
|
|
184
740
|
};
|
|
185
741
|
type: import("pacc").AttributeDefinition;
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
hostName: {
|
|
742
|
+
name: import("pacc").AttributeDefinition;
|
|
743
|
+
description: {
|
|
189
744
|
writable: boolean;
|
|
190
|
-
type:
|
|
745
|
+
type: object;
|
|
191
746
|
isKey: boolean;
|
|
192
747
|
mandatory: boolean;
|
|
193
748
|
collection: boolean;
|
|
@@ -197,27 +752,145 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
197
752
|
default?: any;
|
|
198
753
|
set?: Function;
|
|
199
754
|
get?: Function;
|
|
755
|
+
prepareValue?: Function;
|
|
200
756
|
values?: Set<any>;
|
|
201
757
|
externalName?: string;
|
|
202
758
|
env?: string[] | string;
|
|
759
|
+
additionalValues?: object;
|
|
203
760
|
};
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
761
|
+
priority: import("pacc").AttributeDefinition;
|
|
762
|
+
directory: import("pacc").AttributeDefinition;
|
|
763
|
+
packaging: import("pacc").AttributeDefinition;
|
|
764
|
+
disabled: import("pacc").AttributeDefinition;
|
|
765
|
+
tags: import("pacc").AttributeDefinition;
|
|
208
766
|
};
|
|
209
767
|
};
|
|
210
|
-
|
|
768
|
+
key: string;
|
|
211
769
|
attributes: {
|
|
212
|
-
|
|
213
|
-
type: string
|
|
770
|
+
networkInterfaces: {
|
|
771
|
+
type: string;
|
|
772
|
+
collection: boolean;
|
|
773
|
+
writable: boolean;
|
|
774
|
+
};
|
|
775
|
+
services: {
|
|
776
|
+
type: string;
|
|
777
|
+
collection: boolean;
|
|
778
|
+
writable: boolean;
|
|
779
|
+
};
|
|
780
|
+
aliases: import("pacc").AttributeDefinition;
|
|
781
|
+
os: {
|
|
782
|
+
values: string[];
|
|
783
|
+
type: object;
|
|
784
|
+
isKey: boolean;
|
|
785
|
+
writable: boolean;
|
|
786
|
+
mandatory: boolean;
|
|
787
|
+
collection: boolean;
|
|
788
|
+
private?: boolean;
|
|
789
|
+
depends?: string;
|
|
790
|
+
description?: string;
|
|
791
|
+
default?: any;
|
|
792
|
+
set?: Function;
|
|
793
|
+
get?: Function;
|
|
794
|
+
prepareValue?: Function;
|
|
795
|
+
externalName?: string;
|
|
796
|
+
env?: string[] | string;
|
|
797
|
+
additionalValues?: object;
|
|
798
|
+
};
|
|
799
|
+
"machine-id": import("pacc").AttributeDefinition;
|
|
800
|
+
distribution: import("pacc").AttributeDefinition;
|
|
801
|
+
deployment: {
|
|
802
|
+
values: string[];
|
|
803
|
+
type: object;
|
|
804
|
+
isKey: boolean;
|
|
805
|
+
writable: boolean;
|
|
806
|
+
mandatory: boolean;
|
|
807
|
+
collection: boolean;
|
|
808
|
+
private?: boolean;
|
|
809
|
+
depends?: string;
|
|
810
|
+
description?: string;
|
|
811
|
+
default?: any;
|
|
812
|
+
set?: Function;
|
|
813
|
+
get?: Function;
|
|
814
|
+
prepareValue?: Function;
|
|
815
|
+
externalName?: string;
|
|
816
|
+
env?: string[] | string;
|
|
817
|
+
additionalValues?: object;
|
|
818
|
+
};
|
|
819
|
+
weight: import("pacc").AttributeDefinition;
|
|
820
|
+
serial: import("pacc").AttributeDefinition;
|
|
821
|
+
vendor: import("pacc").AttributeDefinition;
|
|
822
|
+
keymap: import("pacc").AttributeDefinition;
|
|
823
|
+
chassis: {
|
|
824
|
+
values: string[];
|
|
825
|
+
type: object;
|
|
826
|
+
isKey: boolean;
|
|
827
|
+
writable: boolean;
|
|
828
|
+
mandatory: boolean;
|
|
829
|
+
collection: boolean;
|
|
830
|
+
private?: boolean;
|
|
831
|
+
depends?: string;
|
|
832
|
+
description?: string;
|
|
833
|
+
default?: any;
|
|
834
|
+
set?: Function;
|
|
835
|
+
get?: Function;
|
|
836
|
+
prepareValue?: Function;
|
|
837
|
+
externalName?: string;
|
|
838
|
+
env?: string[] | string;
|
|
839
|
+
additionalValues?: object;
|
|
840
|
+
};
|
|
841
|
+
architecture: {
|
|
842
|
+
values: string[];
|
|
843
|
+
type: object;
|
|
844
|
+
isKey: boolean;
|
|
845
|
+
writable: boolean;
|
|
846
|
+
mandatory: boolean;
|
|
847
|
+
collection: boolean;
|
|
848
|
+
private?: boolean;
|
|
849
|
+
depends?: string;
|
|
850
|
+
description?: string;
|
|
851
|
+
default?: any;
|
|
852
|
+
set?: Function;
|
|
853
|
+
get?: Function;
|
|
854
|
+
prepareValue?: Function;
|
|
855
|
+
externalName?: string;
|
|
856
|
+
env?: string[] | string;
|
|
857
|
+
additionalValues?: object;
|
|
858
|
+
};
|
|
859
|
+
replaces: import("pacc").AttributeDefinition;
|
|
860
|
+
depends: import("pacc").AttributeDefinition;
|
|
861
|
+
provides: import("pacc").AttributeDefinition;
|
|
862
|
+
extends: {
|
|
863
|
+
type: string;
|
|
214
864
|
collection: boolean;
|
|
215
865
|
writable: boolean;
|
|
216
866
|
};
|
|
867
|
+
model: import("pacc").AttributeDefinition;
|
|
868
|
+
isModel: import("pacc").AttributeDefinition;
|
|
869
|
+
hostName: {
|
|
870
|
+
writable: boolean;
|
|
871
|
+
type: object;
|
|
872
|
+
isKey: boolean;
|
|
873
|
+
mandatory: boolean;
|
|
874
|
+
collection: boolean;
|
|
875
|
+
private?: boolean;
|
|
876
|
+
depends?: string;
|
|
877
|
+
description?: string;
|
|
878
|
+
default?: any;
|
|
879
|
+
set?: Function;
|
|
880
|
+
get?: Function;
|
|
881
|
+
prepareValue?: Function;
|
|
882
|
+
values?: Set<any>;
|
|
883
|
+
externalName?: string;
|
|
884
|
+
env?: string[] | string;
|
|
885
|
+
additionalValues?: object;
|
|
886
|
+
};
|
|
887
|
+
cidrAddresses: import("pacc").AttributeDefinition;
|
|
888
|
+
cidrAddress: import("pacc").AttributeDefinition;
|
|
889
|
+
addresses: import("pacc").AttributeDefinition;
|
|
890
|
+
address: import("pacc").AttributeDefinition;
|
|
217
891
|
};
|
|
218
|
-
};
|
|
892
|
+
})[];
|
|
219
893
|
priority: number;
|
|
220
|
-
attributes: {};
|
|
221
894
|
service: {};
|
|
222
895
|
};
|
|
223
896
|
get systemdServices(): string;
|