pmcf 3.10.26 → 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
|
@@ -3,11 +3,175 @@ export class BindService extends ExtraSourceService {
|
|
|
3
3
|
name: string;
|
|
4
4
|
specializationOf: {
|
|
5
5
|
name: string;
|
|
6
|
-
owners: 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
|
+
})[];
|
|
7
171
|
priority: number;
|
|
8
172
|
extends: {
|
|
9
173
|
name: string;
|
|
10
|
-
|
|
174
|
+
key: string;
|
|
11
175
|
attributes: {
|
|
12
176
|
owner: {
|
|
13
177
|
type: string;
|
|
@@ -18,7 +182,7 @@ export class BindService extends ExtraSourceService {
|
|
|
18
182
|
name: import("pacc").AttributeDefinition;
|
|
19
183
|
description: {
|
|
20
184
|
writable: boolean;
|
|
21
|
-
type:
|
|
185
|
+
type: object;
|
|
22
186
|
isKey: boolean;
|
|
23
187
|
mandatory: boolean;
|
|
24
188
|
collection: boolean;
|
|
@@ -28,9 +192,11 @@ export class BindService extends ExtraSourceService {
|
|
|
28
192
|
default?: any;
|
|
29
193
|
set?: Function;
|
|
30
194
|
get?: Function;
|
|
195
|
+
prepareValue?: Function;
|
|
31
196
|
values?: Set<any>;
|
|
32
197
|
externalName?: string;
|
|
33
198
|
env?: string[] | string;
|
|
199
|
+
additionalValues?: object;
|
|
34
200
|
};
|
|
35
201
|
priority: import("pacc").AttributeDefinition;
|
|
36
202
|
directory: import("pacc").AttributeDefinition;
|
|
@@ -41,10 +207,11 @@ export class BindService extends ExtraSourceService {
|
|
|
41
207
|
};
|
|
42
208
|
specializations: {};
|
|
43
209
|
factoryFor(owner: any, value: any): any;
|
|
210
|
+
key: string;
|
|
44
211
|
attributes: {
|
|
45
212
|
alias: import("pacc").AttributeDefinition;
|
|
46
213
|
weight: {
|
|
47
|
-
type:
|
|
214
|
+
type: object;
|
|
48
215
|
isKey: boolean;
|
|
49
216
|
writable: boolean;
|
|
50
217
|
mandatory: boolean;
|
|
@@ -55,15 +222,17 @@ export class BindService extends ExtraSourceService {
|
|
|
55
222
|
default?: any;
|
|
56
223
|
set?: Function;
|
|
57
224
|
get?: Function;
|
|
225
|
+
prepareValue?: Function;
|
|
58
226
|
values?: Set<any>;
|
|
59
227
|
externalName?: string;
|
|
60
228
|
env?: string[] | string;
|
|
229
|
+
additionalValues?: object;
|
|
61
230
|
};
|
|
62
231
|
systemd: import("pacc").AttributeDefinition;
|
|
63
232
|
port: import("pacc").AttributeDefinition;
|
|
64
233
|
protocol: {
|
|
65
234
|
values: string[];
|
|
66
|
-
type:
|
|
235
|
+
type: object;
|
|
67
236
|
isKey: boolean;
|
|
68
237
|
writable: boolean;
|
|
69
238
|
mandatory: boolean;
|
|
@@ -74,15 +243,17 @@ export class BindService extends ExtraSourceService {
|
|
|
74
243
|
default?: any;
|
|
75
244
|
set?: Function;
|
|
76
245
|
get?: Function;
|
|
246
|
+
prepareValue?: Function;
|
|
77
247
|
externalName?: string;
|
|
78
248
|
env?: string[] | string;
|
|
249
|
+
additionalValues?: object;
|
|
79
250
|
};
|
|
80
251
|
type: import("pacc").AttributeDefinition;
|
|
81
252
|
types: typeof import("pacc").string_collection_attribute;
|
|
82
253
|
tls: import("pacc").AttributeDefinition;
|
|
83
254
|
hostName: {
|
|
84
255
|
writable: boolean;
|
|
85
|
-
type:
|
|
256
|
+
type: object;
|
|
86
257
|
isKey: boolean;
|
|
87
258
|
mandatory: boolean;
|
|
88
259
|
collection: boolean;
|
|
@@ -92,9 +263,11 @@ export class BindService extends ExtraSourceService {
|
|
|
92
263
|
default?: any;
|
|
93
264
|
set?: Function;
|
|
94
265
|
get?: Function;
|
|
266
|
+
prepareValue?: Function;
|
|
95
267
|
values?: Set<any>;
|
|
96
268
|
externalName?: string;
|
|
97
269
|
env?: string[] | string;
|
|
270
|
+
additionalValues?: object;
|
|
98
271
|
};
|
|
99
272
|
cidrAddresses: import("pacc").AttributeDefinition;
|
|
100
273
|
cidrAddress: import("pacc").AttributeDefinition;
|
|
@@ -102,17 +275,180 @@ export class BindService extends ExtraSourceService {
|
|
|
102
275
|
address: import("pacc").AttributeDefinition;
|
|
103
276
|
};
|
|
104
277
|
};
|
|
105
|
-
owners: string
|
|
106
|
-
extends: {
|
|
278
|
+
owners: (string | {
|
|
107
279
|
name: string;
|
|
280
|
+
priority: number;
|
|
108
281
|
owners: string[];
|
|
109
282
|
extends: {
|
|
110
283
|
name: string;
|
|
111
|
-
|
|
284
|
+
key: string;
|
|
285
|
+
attributes: {
|
|
286
|
+
owner: {
|
|
287
|
+
type: string;
|
|
288
|
+
collection: boolean;
|
|
289
|
+
writable: boolean;
|
|
290
|
+
};
|
|
291
|
+
type: import("pacc").AttributeDefinition;
|
|
292
|
+
name: import("pacc").AttributeDefinition;
|
|
293
|
+
description: {
|
|
294
|
+
writable: boolean;
|
|
295
|
+
type: object;
|
|
296
|
+
isKey: boolean;
|
|
297
|
+
mandatory: boolean;
|
|
298
|
+
collection: boolean;
|
|
299
|
+
private?: boolean;
|
|
300
|
+
depends?: string;
|
|
301
|
+
description?: string;
|
|
302
|
+
default?: any;
|
|
303
|
+
set?: Function;
|
|
304
|
+
get?: Function;
|
|
305
|
+
prepareValue?: Function;
|
|
306
|
+
values?: Set<any>;
|
|
307
|
+
externalName?: string;
|
|
308
|
+
env?: string[] | string;
|
|
309
|
+
additionalValues?: object;
|
|
310
|
+
};
|
|
311
|
+
priority: import("pacc").AttributeDefinition;
|
|
312
|
+
directory: import("pacc").AttributeDefinition;
|
|
313
|
+
packaging: import("pacc").AttributeDefinition;
|
|
314
|
+
disabled: import("pacc").AttributeDefinition;
|
|
315
|
+
tags: import("pacc").AttributeDefinition;
|
|
316
|
+
};
|
|
317
|
+
};
|
|
318
|
+
key: string;
|
|
319
|
+
attributes: {
|
|
320
|
+
networkInterfaces: {
|
|
321
|
+
type: string;
|
|
322
|
+
collection: boolean;
|
|
323
|
+
writable: boolean;
|
|
324
|
+
};
|
|
325
|
+
services: {
|
|
326
|
+
type: string;
|
|
327
|
+
collection: boolean;
|
|
328
|
+
writable: boolean;
|
|
329
|
+
};
|
|
330
|
+
aliases: import("pacc").AttributeDefinition;
|
|
331
|
+
os: {
|
|
332
|
+
values: string[];
|
|
333
|
+
type: object;
|
|
334
|
+
isKey: boolean;
|
|
335
|
+
writable: boolean;
|
|
336
|
+
mandatory: boolean;
|
|
337
|
+
collection: boolean;
|
|
338
|
+
private?: boolean;
|
|
339
|
+
depends?: string;
|
|
340
|
+
description?: string;
|
|
341
|
+
default?: any;
|
|
342
|
+
set?: Function;
|
|
343
|
+
get?: Function;
|
|
344
|
+
prepareValue?: Function;
|
|
345
|
+
externalName?: string;
|
|
346
|
+
env?: string[] | string;
|
|
347
|
+
additionalValues?: object;
|
|
348
|
+
};
|
|
349
|
+
"machine-id": import("pacc").AttributeDefinition;
|
|
350
|
+
distribution: import("pacc").AttributeDefinition;
|
|
351
|
+
deployment: {
|
|
352
|
+
values: string[];
|
|
353
|
+
type: object;
|
|
354
|
+
isKey: boolean;
|
|
355
|
+
writable: boolean;
|
|
356
|
+
mandatory: boolean;
|
|
357
|
+
collection: boolean;
|
|
358
|
+
private?: boolean;
|
|
359
|
+
depends?: string;
|
|
360
|
+
description?: string;
|
|
361
|
+
default?: any;
|
|
362
|
+
set?: Function;
|
|
363
|
+
get?: Function;
|
|
364
|
+
prepareValue?: Function;
|
|
365
|
+
externalName?: string;
|
|
366
|
+
env?: string[] | string;
|
|
367
|
+
additionalValues?: object;
|
|
368
|
+
};
|
|
369
|
+
weight: import("pacc").AttributeDefinition;
|
|
370
|
+
serial: import("pacc").AttributeDefinition;
|
|
371
|
+
vendor: import("pacc").AttributeDefinition;
|
|
372
|
+
keymap: import("pacc").AttributeDefinition;
|
|
373
|
+
chassis: {
|
|
374
|
+
values: string[];
|
|
375
|
+
type: object;
|
|
376
|
+
isKey: boolean;
|
|
377
|
+
writable: boolean;
|
|
378
|
+
mandatory: boolean;
|
|
379
|
+
collection: boolean;
|
|
380
|
+
private?: boolean;
|
|
381
|
+
depends?: string;
|
|
382
|
+
description?: string;
|
|
383
|
+
default?: any;
|
|
384
|
+
set?: Function;
|
|
385
|
+
get?: Function;
|
|
386
|
+
prepareValue?: Function;
|
|
387
|
+
externalName?: string;
|
|
388
|
+
env?: string[] | string;
|
|
389
|
+
additionalValues?: object;
|
|
390
|
+
};
|
|
391
|
+
architecture: {
|
|
392
|
+
values: string[];
|
|
393
|
+
type: object;
|
|
394
|
+
isKey: boolean;
|
|
395
|
+
writable: boolean;
|
|
396
|
+
mandatory: boolean;
|
|
397
|
+
collection: boolean;
|
|
398
|
+
private?: boolean;
|
|
399
|
+
depends?: string;
|
|
400
|
+
description?: string;
|
|
401
|
+
default?: any;
|
|
402
|
+
set?: Function;
|
|
403
|
+
get?: Function;
|
|
404
|
+
prepareValue?: Function;
|
|
405
|
+
externalName?: string;
|
|
406
|
+
env?: string[] | string;
|
|
407
|
+
additionalValues?: object;
|
|
408
|
+
};
|
|
409
|
+
replaces: import("pacc").AttributeDefinition;
|
|
410
|
+
depends: import("pacc").AttributeDefinition;
|
|
411
|
+
provides: import("pacc").AttributeDefinition;
|
|
412
|
+
extends: {
|
|
413
|
+
type: string;
|
|
414
|
+
collection: boolean;
|
|
415
|
+
writable: boolean;
|
|
416
|
+
};
|
|
417
|
+
model: import("pacc").AttributeDefinition;
|
|
418
|
+
isModel: import("pacc").AttributeDefinition;
|
|
419
|
+
hostName: {
|
|
420
|
+
writable: boolean;
|
|
421
|
+
type: object;
|
|
422
|
+
isKey: boolean;
|
|
423
|
+
mandatory: boolean;
|
|
424
|
+
collection: boolean;
|
|
425
|
+
private?: boolean;
|
|
426
|
+
depends?: string;
|
|
427
|
+
description?: string;
|
|
428
|
+
default?: any;
|
|
429
|
+
set?: Function;
|
|
430
|
+
get?: Function;
|
|
431
|
+
prepareValue?: Function;
|
|
432
|
+
values?: Set<any>;
|
|
433
|
+
externalName?: string;
|
|
434
|
+
env?: string[] | string;
|
|
435
|
+
additionalValues?: object;
|
|
436
|
+
};
|
|
437
|
+
cidrAddresses: import("pacc").AttributeDefinition;
|
|
438
|
+
cidrAddress: import("pacc").AttributeDefinition;
|
|
439
|
+
addresses: import("pacc").AttributeDefinition;
|
|
440
|
+
address: import("pacc").AttributeDefinition;
|
|
441
|
+
};
|
|
442
|
+
})[];
|
|
443
|
+
extends: {
|
|
444
|
+
name: string;
|
|
445
|
+
owners: (string | {
|
|
446
|
+
name: string;
|
|
112
447
|
priority: number;
|
|
448
|
+
owners: string[];
|
|
113
449
|
extends: {
|
|
114
450
|
name: string;
|
|
115
|
-
|
|
451
|
+
key: string;
|
|
116
452
|
attributes: {
|
|
117
453
|
owner: {
|
|
118
454
|
type: string;
|
|
@@ -123,7 +459,336 @@ export class BindService extends ExtraSourceService {
|
|
|
123
459
|
name: import("pacc").AttributeDefinition;
|
|
124
460
|
description: {
|
|
125
461
|
writable: boolean;
|
|
462
|
+
type: object;
|
|
463
|
+
isKey: boolean;
|
|
464
|
+
mandatory: boolean;
|
|
465
|
+
collection: boolean;
|
|
466
|
+
private?: boolean;
|
|
467
|
+
depends?: string;
|
|
468
|
+
description?: string;
|
|
469
|
+
default?: any;
|
|
470
|
+
set?: Function;
|
|
471
|
+
get?: Function;
|
|
472
|
+
prepareValue?: Function;
|
|
473
|
+
values?: Set<any>;
|
|
474
|
+
externalName?: string;
|
|
475
|
+
env?: string[] | string;
|
|
476
|
+
additionalValues?: object;
|
|
477
|
+
};
|
|
478
|
+
priority: import("pacc").AttributeDefinition;
|
|
479
|
+
directory: import("pacc").AttributeDefinition;
|
|
480
|
+
packaging: import("pacc").AttributeDefinition;
|
|
481
|
+
disabled: import("pacc").AttributeDefinition;
|
|
482
|
+
tags: import("pacc").AttributeDefinition;
|
|
483
|
+
};
|
|
484
|
+
};
|
|
485
|
+
key: string;
|
|
486
|
+
attributes: {
|
|
487
|
+
networkInterfaces: {
|
|
488
|
+
type: string;
|
|
489
|
+
collection: boolean;
|
|
490
|
+
writable: boolean;
|
|
491
|
+
};
|
|
492
|
+
services: {
|
|
493
|
+
type: string;
|
|
494
|
+
collection: boolean;
|
|
495
|
+
writable: boolean;
|
|
496
|
+
};
|
|
497
|
+
aliases: import("pacc").AttributeDefinition;
|
|
498
|
+
os: {
|
|
499
|
+
values: string[];
|
|
500
|
+
type: object;
|
|
501
|
+
isKey: boolean;
|
|
502
|
+
writable: boolean;
|
|
503
|
+
mandatory: boolean;
|
|
504
|
+
collection: boolean;
|
|
505
|
+
private?: boolean;
|
|
506
|
+
depends?: string;
|
|
507
|
+
description?: string;
|
|
508
|
+
default?: any;
|
|
509
|
+
set?: Function;
|
|
510
|
+
get?: Function;
|
|
511
|
+
prepareValue?: Function;
|
|
512
|
+
externalName?: string;
|
|
513
|
+
env?: string[] | string;
|
|
514
|
+
additionalValues?: object;
|
|
515
|
+
};
|
|
516
|
+
"machine-id": import("pacc").AttributeDefinition;
|
|
517
|
+
distribution: import("pacc").AttributeDefinition;
|
|
518
|
+
deployment: {
|
|
519
|
+
values: string[];
|
|
520
|
+
type: object;
|
|
521
|
+
isKey: boolean;
|
|
522
|
+
writable: boolean;
|
|
523
|
+
mandatory: boolean;
|
|
524
|
+
collection: boolean;
|
|
525
|
+
private?: boolean;
|
|
526
|
+
depends?: string;
|
|
527
|
+
description?: string;
|
|
528
|
+
default?: any;
|
|
529
|
+
set?: Function;
|
|
530
|
+
get?: Function;
|
|
531
|
+
prepareValue?: Function;
|
|
532
|
+
externalName?: string;
|
|
533
|
+
env?: string[] | string;
|
|
534
|
+
additionalValues?: object;
|
|
535
|
+
};
|
|
536
|
+
weight: import("pacc").AttributeDefinition;
|
|
537
|
+
serial: import("pacc").AttributeDefinition;
|
|
538
|
+
vendor: import("pacc").AttributeDefinition;
|
|
539
|
+
keymap: import("pacc").AttributeDefinition;
|
|
540
|
+
chassis: {
|
|
541
|
+
values: string[];
|
|
542
|
+
type: object;
|
|
543
|
+
isKey: boolean;
|
|
544
|
+
writable: boolean;
|
|
545
|
+
mandatory: boolean;
|
|
546
|
+
collection: boolean;
|
|
547
|
+
private?: boolean;
|
|
548
|
+
depends?: string;
|
|
549
|
+
description?: string;
|
|
550
|
+
default?: any;
|
|
551
|
+
set?: Function;
|
|
552
|
+
get?: Function;
|
|
553
|
+
prepareValue?: Function;
|
|
554
|
+
externalName?: string;
|
|
555
|
+
env?: string[] | string;
|
|
556
|
+
additionalValues?: object;
|
|
557
|
+
};
|
|
558
|
+
architecture: {
|
|
559
|
+
values: string[];
|
|
560
|
+
type: object;
|
|
561
|
+
isKey: boolean;
|
|
562
|
+
writable: boolean;
|
|
563
|
+
mandatory: boolean;
|
|
564
|
+
collection: boolean;
|
|
565
|
+
private?: boolean;
|
|
566
|
+
depends?: string;
|
|
567
|
+
description?: string;
|
|
568
|
+
default?: any;
|
|
569
|
+
set?: Function;
|
|
570
|
+
get?: Function;
|
|
571
|
+
prepareValue?: Function;
|
|
572
|
+
externalName?: string;
|
|
573
|
+
env?: string[] | string;
|
|
574
|
+
additionalValues?: object;
|
|
575
|
+
};
|
|
576
|
+
replaces: import("pacc").AttributeDefinition;
|
|
577
|
+
depends: import("pacc").AttributeDefinition;
|
|
578
|
+
provides: import("pacc").AttributeDefinition;
|
|
579
|
+
extends: {
|
|
580
|
+
type: string;
|
|
581
|
+
collection: boolean;
|
|
582
|
+
writable: boolean;
|
|
583
|
+
};
|
|
584
|
+
model: import("pacc").AttributeDefinition;
|
|
585
|
+
isModel: import("pacc").AttributeDefinition;
|
|
586
|
+
hostName: {
|
|
587
|
+
writable: boolean;
|
|
588
|
+
type: object;
|
|
589
|
+
isKey: boolean;
|
|
590
|
+
mandatory: boolean;
|
|
591
|
+
collection: boolean;
|
|
592
|
+
private?: boolean;
|
|
593
|
+
depends?: string;
|
|
594
|
+
description?: string;
|
|
595
|
+
default?: any;
|
|
596
|
+
set?: Function;
|
|
597
|
+
get?: Function;
|
|
598
|
+
prepareValue?: Function;
|
|
599
|
+
values?: Set<any>;
|
|
600
|
+
externalName?: string;
|
|
601
|
+
env?: string[] | string;
|
|
602
|
+
additionalValues?: object;
|
|
603
|
+
};
|
|
604
|
+
cidrAddresses: import("pacc").AttributeDefinition;
|
|
605
|
+
cidrAddress: import("pacc").AttributeDefinition;
|
|
606
|
+
addresses: import("pacc").AttributeDefinition;
|
|
607
|
+
address: import("pacc").AttributeDefinition;
|
|
608
|
+
};
|
|
609
|
+
})[];
|
|
610
|
+
extends: {
|
|
611
|
+
name: string;
|
|
612
|
+
owners: (string | {
|
|
613
|
+
name: string;
|
|
614
|
+
priority: number;
|
|
615
|
+
owners: string[];
|
|
616
|
+
extends: {
|
|
617
|
+
name: string;
|
|
618
|
+
key: string;
|
|
619
|
+
attributes: {
|
|
620
|
+
owner: {
|
|
621
|
+
type: string;
|
|
622
|
+
collection: boolean;
|
|
623
|
+
writable: boolean;
|
|
624
|
+
};
|
|
625
|
+
type: import("pacc").AttributeDefinition;
|
|
626
|
+
name: import("pacc").AttributeDefinition;
|
|
627
|
+
description: {
|
|
628
|
+
writable: boolean;
|
|
629
|
+
type: object;
|
|
630
|
+
isKey: boolean;
|
|
631
|
+
mandatory: boolean;
|
|
632
|
+
collection: boolean;
|
|
633
|
+
private?: boolean;
|
|
634
|
+
depends?: string;
|
|
635
|
+
description?: string;
|
|
636
|
+
default?: any;
|
|
637
|
+
set?: Function;
|
|
638
|
+
get?: Function;
|
|
639
|
+
prepareValue?: Function;
|
|
640
|
+
values?: Set<any>;
|
|
641
|
+
externalName?: string;
|
|
642
|
+
env?: string[] | string;
|
|
643
|
+
additionalValues?: object;
|
|
644
|
+
};
|
|
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
|
+
writable: boolean;
|
|
658
|
+
};
|
|
659
|
+
services: {
|
|
660
|
+
type: string;
|
|
661
|
+
collection: boolean;
|
|
662
|
+
writable: boolean;
|
|
663
|
+
};
|
|
664
|
+
aliases: import("pacc").AttributeDefinition;
|
|
665
|
+
os: {
|
|
666
|
+
values: string[];
|
|
667
|
+
type: object;
|
|
668
|
+
isKey: boolean;
|
|
669
|
+
writable: boolean;
|
|
670
|
+
mandatory: boolean;
|
|
671
|
+
collection: boolean;
|
|
672
|
+
private?: boolean;
|
|
673
|
+
depends?: string;
|
|
674
|
+
description?: string;
|
|
675
|
+
default?: any;
|
|
676
|
+
set?: Function;
|
|
677
|
+
get?: Function;
|
|
678
|
+
prepareValue?: Function;
|
|
679
|
+
externalName?: string;
|
|
680
|
+
env?: string[] | string;
|
|
681
|
+
additionalValues?: object;
|
|
682
|
+
};
|
|
683
|
+
"machine-id": import("pacc").AttributeDefinition;
|
|
684
|
+
distribution: import("pacc").AttributeDefinition;
|
|
685
|
+
deployment: {
|
|
686
|
+
values: string[];
|
|
687
|
+
type: object;
|
|
688
|
+
isKey: boolean;
|
|
689
|
+
writable: boolean;
|
|
690
|
+
mandatory: boolean;
|
|
691
|
+
collection: boolean;
|
|
692
|
+
private?: boolean;
|
|
693
|
+
depends?: string;
|
|
694
|
+
description?: string;
|
|
695
|
+
default?: any;
|
|
696
|
+
set?: Function;
|
|
697
|
+
get?: Function;
|
|
698
|
+
prepareValue?: Function;
|
|
699
|
+
externalName?: string;
|
|
700
|
+
env?: string[] | string;
|
|
701
|
+
additionalValues?: object;
|
|
702
|
+
};
|
|
703
|
+
weight: import("pacc").AttributeDefinition;
|
|
704
|
+
serial: import("pacc").AttributeDefinition;
|
|
705
|
+
vendor: import("pacc").AttributeDefinition;
|
|
706
|
+
keymap: import("pacc").AttributeDefinition;
|
|
707
|
+
chassis: {
|
|
708
|
+
values: string[];
|
|
709
|
+
type: object;
|
|
710
|
+
isKey: boolean;
|
|
711
|
+
writable: boolean;
|
|
712
|
+
mandatory: boolean;
|
|
713
|
+
collection: boolean;
|
|
714
|
+
private?: boolean;
|
|
715
|
+
depends?: string;
|
|
716
|
+
description?: string;
|
|
717
|
+
default?: any;
|
|
718
|
+
set?: Function;
|
|
719
|
+
get?: Function;
|
|
720
|
+
prepareValue?: Function;
|
|
721
|
+
externalName?: string;
|
|
722
|
+
env?: string[] | string;
|
|
723
|
+
additionalValues?: object;
|
|
724
|
+
};
|
|
725
|
+
architecture: {
|
|
726
|
+
values: string[];
|
|
727
|
+
type: object;
|
|
728
|
+
isKey: boolean;
|
|
729
|
+
writable: boolean;
|
|
730
|
+
mandatory: boolean;
|
|
731
|
+
collection: boolean;
|
|
732
|
+
private?: boolean;
|
|
733
|
+
depends?: string;
|
|
734
|
+
description?: string;
|
|
735
|
+
default?: any;
|
|
736
|
+
set?: Function;
|
|
737
|
+
get?: Function;
|
|
738
|
+
prepareValue?: Function;
|
|
739
|
+
externalName?: string;
|
|
740
|
+
env?: string[] | string;
|
|
741
|
+
additionalValues?: object;
|
|
742
|
+
};
|
|
743
|
+
replaces: import("pacc").AttributeDefinition;
|
|
744
|
+
depends: import("pacc").AttributeDefinition;
|
|
745
|
+
provides: import("pacc").AttributeDefinition;
|
|
746
|
+
extends: {
|
|
747
|
+
type: string;
|
|
748
|
+
collection: boolean;
|
|
749
|
+
writable: boolean;
|
|
750
|
+
};
|
|
751
|
+
model: import("pacc").AttributeDefinition;
|
|
752
|
+
isModel: import("pacc").AttributeDefinition;
|
|
753
|
+
hostName: {
|
|
754
|
+
writable: boolean;
|
|
755
|
+
type: object;
|
|
756
|
+
isKey: boolean;
|
|
757
|
+
mandatory: boolean;
|
|
758
|
+
collection: boolean;
|
|
759
|
+
private?: boolean;
|
|
760
|
+
depends?: string;
|
|
761
|
+
description?: string;
|
|
762
|
+
default?: any;
|
|
763
|
+
set?: Function;
|
|
764
|
+
get?: Function;
|
|
765
|
+
prepareValue?: Function;
|
|
766
|
+
values?: Set<any>;
|
|
767
|
+
externalName?: string;
|
|
768
|
+
env?: string[] | string;
|
|
769
|
+
additionalValues?: object;
|
|
770
|
+
};
|
|
771
|
+
cidrAddresses: import("pacc").AttributeDefinition;
|
|
772
|
+
cidrAddress: import("pacc").AttributeDefinition;
|
|
773
|
+
addresses: import("pacc").AttributeDefinition;
|
|
774
|
+
address: import("pacc").AttributeDefinition;
|
|
775
|
+
};
|
|
776
|
+
})[];
|
|
777
|
+
priority: number;
|
|
778
|
+
extends: {
|
|
779
|
+
name: string;
|
|
780
|
+
key: string;
|
|
781
|
+
attributes: {
|
|
782
|
+
owner: {
|
|
126
783
|
type: string;
|
|
784
|
+
collection: boolean;
|
|
785
|
+
writable: boolean;
|
|
786
|
+
};
|
|
787
|
+
type: import("pacc").AttributeDefinition;
|
|
788
|
+
name: import("pacc").AttributeDefinition;
|
|
789
|
+
description: {
|
|
790
|
+
writable: boolean;
|
|
791
|
+
type: object;
|
|
127
792
|
isKey: boolean;
|
|
128
793
|
mandatory: boolean;
|
|
129
794
|
collection: boolean;
|
|
@@ -133,9 +798,11 @@ export class BindService extends ExtraSourceService {
|
|
|
133
798
|
default?: any;
|
|
134
799
|
set?: Function;
|
|
135
800
|
get?: Function;
|
|
801
|
+
prepareValue?: Function;
|
|
136
802
|
values?: Set<any>;
|
|
137
803
|
externalName?: string;
|
|
138
804
|
env?: string[] | string;
|
|
805
|
+
additionalValues?: object;
|
|
139
806
|
};
|
|
140
807
|
priority: import("pacc").AttributeDefinition;
|
|
141
808
|
directory: import("pacc").AttributeDefinition;
|
|
@@ -146,10 +813,11 @@ export class BindService extends ExtraSourceService {
|
|
|
146
813
|
};
|
|
147
814
|
specializations: {};
|
|
148
815
|
factoryFor(owner: any, value: any): any;
|
|
816
|
+
key: string;
|
|
149
817
|
attributes: {
|
|
150
818
|
alias: import("pacc").AttributeDefinition;
|
|
151
819
|
weight: {
|
|
152
|
-
type:
|
|
820
|
+
type: object;
|
|
153
821
|
isKey: boolean;
|
|
154
822
|
writable: boolean;
|
|
155
823
|
mandatory: boolean;
|
|
@@ -160,15 +828,17 @@ export class BindService extends ExtraSourceService {
|
|
|
160
828
|
default?: any;
|
|
161
829
|
set?: Function;
|
|
162
830
|
get?: Function;
|
|
831
|
+
prepareValue?: Function;
|
|
163
832
|
values?: Set<any>;
|
|
164
833
|
externalName?: string;
|
|
165
834
|
env?: string[] | string;
|
|
835
|
+
additionalValues?: object;
|
|
166
836
|
};
|
|
167
837
|
systemd: import("pacc").AttributeDefinition;
|
|
168
838
|
port: import("pacc").AttributeDefinition;
|
|
169
839
|
protocol: {
|
|
170
840
|
values: string[];
|
|
171
|
-
type:
|
|
841
|
+
type: object;
|
|
172
842
|
isKey: boolean;
|
|
173
843
|
writable: boolean;
|
|
174
844
|
mandatory: boolean;
|
|
@@ -179,15 +849,17 @@ export class BindService extends ExtraSourceService {
|
|
|
179
849
|
default?: any;
|
|
180
850
|
set?: Function;
|
|
181
851
|
get?: Function;
|
|
852
|
+
prepareValue?: Function;
|
|
182
853
|
externalName?: string;
|
|
183
854
|
env?: string[] | string;
|
|
855
|
+
additionalValues?: object;
|
|
184
856
|
};
|
|
185
857
|
type: import("pacc").AttributeDefinition;
|
|
186
858
|
types: typeof import("pacc").string_collection_attribute;
|
|
187
859
|
tls: import("pacc").AttributeDefinition;
|
|
188
860
|
hostName: {
|
|
189
861
|
writable: boolean;
|
|
190
|
-
type:
|
|
862
|
+
type: object;
|
|
191
863
|
isKey: boolean;
|
|
192
864
|
mandatory: boolean;
|
|
193
865
|
collection: boolean;
|
|
@@ -197,9 +869,11 @@ export class BindService extends ExtraSourceService {
|
|
|
197
869
|
default?: any;
|
|
198
870
|
set?: Function;
|
|
199
871
|
get?: Function;
|
|
872
|
+
prepareValue?: Function;
|
|
200
873
|
values?: Set<any>;
|
|
201
874
|
externalName?: string;
|
|
202
875
|
env?: string[] | string;
|
|
876
|
+
additionalValues?: object;
|
|
203
877
|
};
|
|
204
878
|
cidrAddresses: import("pacc").AttributeDefinition;
|
|
205
879
|
cidrAddress: import("pacc").AttributeDefinition;
|
|
@@ -210,31 +884,32 @@ export class BindService extends ExtraSourceService {
|
|
|
210
884
|
priority: number;
|
|
211
885
|
attributes: {
|
|
212
886
|
source: {
|
|
213
|
-
type:
|
|
887
|
+
type: any;
|
|
214
888
|
collection: boolean;
|
|
215
889
|
writable: boolean;
|
|
216
890
|
};
|
|
217
891
|
};
|
|
218
892
|
};
|
|
219
893
|
priority: number;
|
|
894
|
+
key: string;
|
|
220
895
|
attributes: {
|
|
221
896
|
zones: {
|
|
222
|
-
type:
|
|
897
|
+
type: any;
|
|
223
898
|
collection: boolean;
|
|
224
899
|
writable: boolean;
|
|
225
900
|
};
|
|
226
901
|
trusted: {
|
|
227
|
-
type:
|
|
902
|
+
type: any;
|
|
228
903
|
collection: boolean;
|
|
229
904
|
writable: boolean;
|
|
230
905
|
};
|
|
231
906
|
protected: {
|
|
232
|
-
type:
|
|
907
|
+
type: any;
|
|
233
908
|
collection: boolean;
|
|
234
909
|
writable: boolean;
|
|
235
910
|
};
|
|
236
911
|
internal: {
|
|
237
|
-
type:
|
|
912
|
+
type: any;
|
|
238
913
|
collection: boolean;
|
|
239
914
|
writable: boolean;
|
|
240
915
|
};
|
|
@@ -244,7 +919,7 @@ export class BindService extends ExtraSourceService {
|
|
|
244
919
|
hasLocationRecord: import("pacc").AttributeDefinition;
|
|
245
920
|
excludeInterfaceKinds: import("pacc").AttributeDefinition;
|
|
246
921
|
exclude: {
|
|
247
|
-
type:
|
|
922
|
+
type: any;
|
|
248
923
|
collection: boolean;
|
|
249
924
|
writable: boolean;
|
|
250
925
|
};
|
|
@@ -253,7 +928,7 @@ export class BindService extends ExtraSourceService {
|
|
|
253
928
|
serial: import("pacc").AttributeDefinition;
|
|
254
929
|
refresh: {
|
|
255
930
|
default: number;
|
|
256
|
-
type:
|
|
931
|
+
type: object;
|
|
257
932
|
isKey: boolean;
|
|
258
933
|
writable: boolean;
|
|
259
934
|
mandatory: boolean;
|
|
@@ -263,13 +938,15 @@ export class BindService extends ExtraSourceService {
|
|
|
263
938
|
description?: string;
|
|
264
939
|
set?: Function;
|
|
265
940
|
get?: Function;
|
|
941
|
+
prepareValue?: Function;
|
|
266
942
|
values?: Set<any>;
|
|
267
943
|
externalName?: string;
|
|
268
944
|
env?: string[] | string;
|
|
945
|
+
additionalValues?: object;
|
|
269
946
|
};
|
|
270
947
|
retry: {
|
|
271
948
|
default: number;
|
|
272
|
-
type:
|
|
949
|
+
type: object;
|
|
273
950
|
isKey: boolean;
|
|
274
951
|
writable: boolean;
|
|
275
952
|
mandatory: boolean;
|
|
@@ -279,13 +956,15 @@ export class BindService extends ExtraSourceService {
|
|
|
279
956
|
description?: string;
|
|
280
957
|
set?: Function;
|
|
281
958
|
get?: Function;
|
|
959
|
+
prepareValue?: Function;
|
|
282
960
|
values?: Set<any>;
|
|
283
961
|
externalName?: string;
|
|
284
962
|
env?: string[] | string;
|
|
963
|
+
additionalValues?: object;
|
|
285
964
|
};
|
|
286
965
|
expire: {
|
|
287
966
|
default: number;
|
|
288
|
-
type:
|
|
967
|
+
type: object;
|
|
289
968
|
isKey: boolean;
|
|
290
969
|
writable: boolean;
|
|
291
970
|
mandatory: boolean;
|
|
@@ -295,13 +974,15 @@ export class BindService extends ExtraSourceService {
|
|
|
295
974
|
description?: string;
|
|
296
975
|
set?: Function;
|
|
297
976
|
get?: Function;
|
|
977
|
+
prepareValue?: Function;
|
|
298
978
|
values?: Set<any>;
|
|
299
979
|
externalName?: string;
|
|
300
980
|
env?: string[] | string;
|
|
981
|
+
additionalValues?: object;
|
|
301
982
|
};
|
|
302
983
|
minimum: {
|
|
303
984
|
default: number;
|
|
304
|
-
type:
|
|
985
|
+
type: object;
|
|
305
986
|
isKey: boolean;
|
|
306
987
|
writable: boolean;
|
|
307
988
|
mandatory: boolean;
|
|
@@ -311,9 +992,11 @@ export class BindService extends ExtraSourceService {
|
|
|
311
992
|
description?: string;
|
|
312
993
|
set?: Function;
|
|
313
994
|
get?: Function;
|
|
995
|
+
prepareValue?: Function;
|
|
314
996
|
values?: Set<any>;
|
|
315
997
|
externalName?: string;
|
|
316
998
|
env?: string[] | string;
|
|
999
|
+
additionalValues?: object;
|
|
317
1000
|
};
|
|
318
1001
|
allowedUpdates: import("pacc").AttributeDefinition;
|
|
319
1002
|
};
|