pmcf 3.13.6 → 3.13.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/base.mjs +1 -1
- package/src/cluster.mjs +0 -1
- package/src/extra-source-service.mjs +0 -1
- package/src/host.mjs +0 -1
- package/src/location.mjs +0 -1
- package/src/module.mjs +1 -0
- package/src/network-interfaces/ethernet.mjs +0 -1
- package/src/network-interfaces/loopback.mjs +0 -1
- package/src/network-interfaces/network-interface.mjs +0 -1
- package/src/network-interfaces/tun.mjs +0 -1
- package/src/network-interfaces/wireguard.mjs +0 -1
- package/src/network-interfaces/wlan.mjs +0 -1
- package/src/network.mjs +0 -1
- package/src/owner.mjs +0 -1
- package/src/root.mjs +2 -3
- package/src/service.mjs +0 -2
- package/src/services/bind.mjs +0 -1
- package/src/services/chrony.mjs +0 -1
- package/src/services/headscale.mjs +3 -8
- package/src/services/influxdb.mjs +1 -1
- package/src/services/kea.mjs +0 -1
- package/src/services/mosquitto.mjs +0 -1
- package/src/services/openldap.mjs +0 -1
- package/src/services/systemd-journal-remote.mjs +0 -1
- package/src/services/systemd-journal-upload.mjs +0 -1
- package/src/services/systemd-journal.mjs +0 -1
- package/src/services/systemd-resolved.mjs +0 -1
- package/src/services/systemd-timesyncd.mjs +0 -1
- package/src/services/tailscale.mjs +24 -0
- package/src/subnet.mjs +0 -1
- package/types/cluster.d.mts +0 -4
- package/types/extra-source-service.d.mts +0 -8
- package/types/host.d.mts +0 -1
- package/types/location.d.mts +0 -5
- package/types/module.d.mts +1 -0
- package/types/network-interfaces/ethernet.d.mts +0 -10
- package/types/network-interfaces/loopback.d.mts +0 -9
- package/types/network-interfaces/network-interface.d.mts +0 -8
- package/types/network-interfaces/tun.d.mts +0 -9
- package/types/network-interfaces/wireguard.d.mts +0 -9
- package/types/network-interfaces/wlan.d.mts +0 -14
- package/types/network.d.mts +0 -6
- package/types/owner.d.mts +0 -2
- package/types/root.d.mts +0 -6
- package/types/service.d.mts +0 -6
- package/types/services/bind.d.mts +0 -10
- package/types/services/chrony.d.mts +0 -10
- package/types/services/headscale.d.mts +85 -620
- package/types/services/influxdb.d.mts +0 -6
- package/types/services/kea.d.mts +0 -6
- package/types/services/mosquitto.d.mts +0 -6
- package/types/services/openldap.d.mts +0 -6
- package/types/services/systemd-journal-remote.d.mts +0 -6
- package/types/services/systemd-journal-upload.d.mts +0 -6
- package/types/services/systemd-journal.d.mts +0 -6
- package/types/services/systemd-resolved.d.mts +0 -10
- package/types/services/systemd-timesyncd.d.mts +0 -10
- package/types/services/tailscale.d.mts +818 -0
- package/types/subnet.d.mts +0 -1
|
@@ -1,621 +1,10 @@
|
|
|
1
|
-
export class HeadscaleService extends
|
|
1
|
+
export class HeadscaleService extends Service {
|
|
2
2
|
static get typeDefinition(): {
|
|
3
3
|
name: string;
|
|
4
4
|
extends: {
|
|
5
5
|
name: string;
|
|
6
|
-
extends: {
|
|
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
|
-
})[];
|
|
208
|
-
priority: number;
|
|
209
|
-
extends: {
|
|
210
|
-
name: string;
|
|
211
|
-
key: string;
|
|
212
|
-
attributes: {
|
|
213
|
-
owner: {
|
|
214
|
-
type: string;
|
|
215
|
-
isKey: boolean;
|
|
216
|
-
writable: boolean;
|
|
217
|
-
mandatory: boolean;
|
|
218
|
-
collection: boolean;
|
|
219
|
-
private?: boolean;
|
|
220
|
-
depends?: string;
|
|
221
|
-
description?: string;
|
|
222
|
-
default?: any;
|
|
223
|
-
set?: Function;
|
|
224
|
-
get?: Function;
|
|
225
|
-
prepareValue?: Function;
|
|
226
|
-
values?: Set<any>;
|
|
227
|
-
externalName?: string;
|
|
228
|
-
env?: string[] | string;
|
|
229
|
-
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;
|
|
239
|
-
};
|
|
240
|
-
};
|
|
241
|
-
specializations: {};
|
|
242
|
-
factoryFor(owner: any, value: any): any;
|
|
243
|
-
key: string;
|
|
244
|
-
attributes: {
|
|
245
|
-
alias: import("pacc").AttributeDefinition;
|
|
246
|
-
weight: {
|
|
247
|
-
type: object;
|
|
248
|
-
isKey: boolean;
|
|
249
|
-
writable: boolean;
|
|
250
|
-
mandatory: boolean;
|
|
251
|
-
collection: boolean;
|
|
252
|
-
private?: boolean;
|
|
253
|
-
depends?: string;
|
|
254
|
-
description?: string;
|
|
255
|
-
default?: any;
|
|
256
|
-
set?: Function;
|
|
257
|
-
get?: Function;
|
|
258
|
-
prepareValue?: Function;
|
|
259
|
-
values?: Set<any>;
|
|
260
|
-
externalName?: string;
|
|
261
|
-
env?: string[] | string;
|
|
262
|
-
additionalValues?: object;
|
|
263
|
-
};
|
|
264
|
-
systemd: import("pacc").AttributeDefinition;
|
|
265
|
-
port: import("pacc").AttributeDefinition;
|
|
266
|
-
protocol: {
|
|
267
|
-
values: string[];
|
|
268
|
-
type: object;
|
|
269
|
-
isKey: boolean;
|
|
270
|
-
writable: boolean;
|
|
271
|
-
mandatory: boolean;
|
|
272
|
-
collection: boolean;
|
|
273
|
-
private?: boolean;
|
|
274
|
-
depends?: string;
|
|
275
|
-
description?: string;
|
|
276
|
-
default?: any;
|
|
277
|
-
set?: Function;
|
|
278
|
-
get?: Function;
|
|
279
|
-
prepareValue?: Function;
|
|
280
|
-
externalName?: string;
|
|
281
|
-
env?: string[] | string;
|
|
282
|
-
additionalValues?: object;
|
|
283
|
-
};
|
|
284
|
-
type: import("pacc").AttributeDefinition;
|
|
285
|
-
types: typeof import("pacc").string_collection_attribute;
|
|
286
|
-
tls: import("pacc").AttributeDefinition;
|
|
287
|
-
hostName: {
|
|
288
|
-
writable: boolean;
|
|
289
|
-
type: object;
|
|
290
|
-
isKey: 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
|
-
values?: Set<any>;
|
|
301
|
-
externalName?: string;
|
|
302
|
-
env?: string[] | string;
|
|
303
|
-
additionalValues?: object;
|
|
304
|
-
};
|
|
305
|
-
cidrAddresses: import("pacc").AttributeDefinition;
|
|
306
|
-
cidrAddress: import("pacc").AttributeDefinition;
|
|
307
|
-
addresses: import("pacc").AttributeDefinition;
|
|
308
|
-
address: import("pacc").AttributeDefinition;
|
|
309
|
-
};
|
|
310
|
-
};
|
|
311
|
-
specializationOf: {
|
|
312
|
-
name: string;
|
|
313
|
-
owners: (string | {
|
|
314
|
-
name: string;
|
|
315
|
-
priority: number;
|
|
316
|
-
owners: string[];
|
|
317
|
-
extends: {
|
|
318
|
-
name: string;
|
|
319
|
-
key: string;
|
|
320
|
-
attributes: {
|
|
321
|
-
owner: {
|
|
322
|
-
type: string;
|
|
323
|
-
isKey: boolean;
|
|
324
|
-
writable: boolean;
|
|
325
|
-
mandatory: boolean;
|
|
326
|
-
collection: boolean;
|
|
327
|
-
private?: boolean;
|
|
328
|
-
depends?: string;
|
|
329
|
-
description?: string;
|
|
330
|
-
default?: any;
|
|
331
|
-
set?: Function;
|
|
332
|
-
get?: Function;
|
|
333
|
-
prepareValue?: Function;
|
|
334
|
-
values?: Set<any>;
|
|
335
|
-
externalName?: string;
|
|
336
|
-
env?: string[] | string;
|
|
337
|
-
additionalValues?: object;
|
|
338
|
-
};
|
|
339
|
-
type: import("pacc").AttributeDefinition;
|
|
340
|
-
name: import("pacc").AttributeDefinition;
|
|
341
|
-
description: import("pacc").AttributeDefinition;
|
|
342
|
-
priority: import("pacc").AttributeDefinition;
|
|
343
|
-
directory: import("pacc").AttributeDefinition;
|
|
344
|
-
packaging: import("pacc").AttributeDefinition;
|
|
345
|
-
disabled: import("pacc").AttributeDefinition;
|
|
346
|
-
tags: import("pacc").AttributeDefinition;
|
|
347
|
-
};
|
|
348
|
-
};
|
|
349
|
-
key: string;
|
|
350
|
-
attributes: {
|
|
351
|
-
networkInterfaces: {
|
|
352
|
-
type: string;
|
|
353
|
-
collection: boolean;
|
|
354
|
-
isKey: boolean;
|
|
355
|
-
writable: boolean;
|
|
356
|
-
mandatory: boolean;
|
|
357
|
-
private?: boolean;
|
|
358
|
-
depends?: string;
|
|
359
|
-
description?: string;
|
|
360
|
-
default?: any;
|
|
361
|
-
set?: Function;
|
|
362
|
-
get?: Function;
|
|
363
|
-
prepareValue?: Function;
|
|
364
|
-
values?: Set<any>;
|
|
365
|
-
externalName?: string;
|
|
366
|
-
env?: string[] | string;
|
|
367
|
-
additionalValues?: object;
|
|
368
|
-
};
|
|
369
|
-
services: {
|
|
370
|
-
type: string;
|
|
371
|
-
collection: boolean;
|
|
372
|
-
isKey: boolean;
|
|
373
|
-
writable: boolean;
|
|
374
|
-
mandatory: boolean;
|
|
375
|
-
private?: boolean;
|
|
376
|
-
depends?: string;
|
|
377
|
-
description?: string;
|
|
378
|
-
default?: any;
|
|
379
|
-
set?: Function;
|
|
380
|
-
get?: Function;
|
|
381
|
-
prepareValue?: Function;
|
|
382
|
-
values?: Set<any>;
|
|
383
|
-
externalName?: string;
|
|
384
|
-
env?: string[] | string;
|
|
385
|
-
additionalValues?: object;
|
|
386
|
-
};
|
|
387
|
-
aliases: import("pacc").AttributeDefinition;
|
|
388
|
-
os: {
|
|
389
|
-
values: string[];
|
|
390
|
-
type: object;
|
|
391
|
-
isKey: boolean;
|
|
392
|
-
writable: boolean;
|
|
393
|
-
mandatory: boolean;
|
|
394
|
-
collection: boolean;
|
|
395
|
-
private?: boolean;
|
|
396
|
-
depends?: string;
|
|
397
|
-
description?: string;
|
|
398
|
-
default?: any;
|
|
399
|
-
set?: Function;
|
|
400
|
-
get?: Function;
|
|
401
|
-
prepareValue?: Function;
|
|
402
|
-
externalName?: string;
|
|
403
|
-
env?: string[] | string;
|
|
404
|
-
additionalValues?: object;
|
|
405
|
-
};
|
|
406
|
-
"machine-id": import("pacc").AttributeDefinition;
|
|
407
|
-
distribution: import("pacc").AttributeDefinition;
|
|
408
|
-
deployment: {
|
|
409
|
-
values: string[];
|
|
410
|
-
type: object;
|
|
411
|
-
isKey: boolean;
|
|
412
|
-
writable: boolean;
|
|
413
|
-
mandatory: boolean;
|
|
414
|
-
collection: boolean;
|
|
415
|
-
private?: boolean;
|
|
416
|
-
depends?: string;
|
|
417
|
-
description?: string;
|
|
418
|
-
default?: any;
|
|
419
|
-
set?: Function;
|
|
420
|
-
get?: Function;
|
|
421
|
-
prepareValue?: Function;
|
|
422
|
-
externalName?: string;
|
|
423
|
-
env?: string[] | string;
|
|
424
|
-
additionalValues?: object;
|
|
425
|
-
};
|
|
426
|
-
weight: import("pacc").AttributeDefinition;
|
|
427
|
-
serial: import("pacc").AttributeDefinition;
|
|
428
|
-
vendor: import("pacc").AttributeDefinition;
|
|
429
|
-
keymap: import("pacc").AttributeDefinition;
|
|
430
|
-
chassis: {
|
|
431
|
-
values: string[];
|
|
432
|
-
type: object;
|
|
433
|
-
isKey: boolean;
|
|
434
|
-
writable: boolean;
|
|
435
|
-
mandatory: boolean;
|
|
436
|
-
collection: boolean;
|
|
437
|
-
private?: boolean;
|
|
438
|
-
depends?: string;
|
|
439
|
-
description?: string;
|
|
440
|
-
default?: any;
|
|
441
|
-
set?: Function;
|
|
442
|
-
get?: Function;
|
|
443
|
-
prepareValue?: Function;
|
|
444
|
-
externalName?: string;
|
|
445
|
-
env?: string[] | string;
|
|
446
|
-
additionalValues?: object;
|
|
447
|
-
};
|
|
448
|
-
architecture: {
|
|
449
|
-
values: string[];
|
|
450
|
-
type: object;
|
|
451
|
-
isKey: boolean;
|
|
452
|
-
writable: boolean;
|
|
453
|
-
mandatory: boolean;
|
|
454
|
-
collection: boolean;
|
|
455
|
-
private?: boolean;
|
|
456
|
-
depends?: string;
|
|
457
|
-
description?: string;
|
|
458
|
-
default?: any;
|
|
459
|
-
set?: Function;
|
|
460
|
-
get?: Function;
|
|
461
|
-
prepareValue?: Function;
|
|
462
|
-
externalName?: string;
|
|
463
|
-
env?: string[] | string;
|
|
464
|
-
additionalValues?: object;
|
|
465
|
-
};
|
|
466
|
-
replaces: import("pacc").AttributeDefinition;
|
|
467
|
-
depends: import("pacc").AttributeDefinition;
|
|
468
|
-
provides: import("pacc").AttributeDefinition;
|
|
469
|
-
extends: {
|
|
470
|
-
type: string;
|
|
471
|
-
collection: boolean;
|
|
472
|
-
isKey: boolean;
|
|
473
|
-
writable: boolean;
|
|
474
|
-
mandatory: boolean;
|
|
475
|
-
private?: boolean;
|
|
476
|
-
depends?: string;
|
|
477
|
-
description?: string;
|
|
478
|
-
default?: any;
|
|
479
|
-
set?: Function;
|
|
480
|
-
get?: Function;
|
|
481
|
-
prepareValue?: Function;
|
|
482
|
-
values?: Set<any>;
|
|
483
|
-
externalName?: string;
|
|
484
|
-
env?: string[] | string;
|
|
485
|
-
additionalValues?: object;
|
|
486
|
-
};
|
|
487
|
-
model: import("pacc").AttributeDefinition;
|
|
488
|
-
isModel: import("pacc").AttributeDefinition;
|
|
489
|
-
hostName: {
|
|
490
|
-
writable: boolean;
|
|
491
|
-
type: object;
|
|
492
|
-
isKey: boolean;
|
|
493
|
-
mandatory: boolean;
|
|
494
|
-
collection: boolean;
|
|
495
|
-
private?: boolean;
|
|
496
|
-
depends?: string;
|
|
497
|
-
description?: string;
|
|
498
|
-
default?: any;
|
|
499
|
-
set?: Function;
|
|
500
|
-
get?: Function;
|
|
501
|
-
prepareValue?: Function;
|
|
502
|
-
values?: Set<any>;
|
|
503
|
-
externalName?: string;
|
|
504
|
-
env?: string[] | string;
|
|
505
|
-
additionalValues?: object;
|
|
506
|
-
};
|
|
507
|
-
cidrAddresses: import("pacc").AttributeDefinition;
|
|
508
|
-
cidrAddress: import("pacc").AttributeDefinition;
|
|
509
|
-
addresses: import("pacc").AttributeDefinition;
|
|
510
|
-
address: import("pacc").AttributeDefinition;
|
|
511
|
-
};
|
|
512
|
-
})[];
|
|
513
|
-
priority: number;
|
|
514
|
-
extends: {
|
|
515
|
-
name: string;
|
|
516
|
-
key: string;
|
|
517
|
-
attributes: {
|
|
518
|
-
owner: {
|
|
519
|
-
type: string;
|
|
520
|
-
isKey: boolean;
|
|
521
|
-
writable: boolean;
|
|
522
|
-
mandatory: boolean;
|
|
523
|
-
collection: boolean;
|
|
524
|
-
private?: boolean;
|
|
525
|
-
depends?: string;
|
|
526
|
-
description?: string;
|
|
527
|
-
default?: any;
|
|
528
|
-
set?: Function;
|
|
529
|
-
get?: Function;
|
|
530
|
-
prepareValue?: Function;
|
|
531
|
-
values?: Set<any>;
|
|
532
|
-
externalName?: string;
|
|
533
|
-
env?: string[] | string;
|
|
534
|
-
additionalValues?: object;
|
|
535
|
-
};
|
|
536
|
-
type: import("pacc").AttributeDefinition;
|
|
537
|
-
name: import("pacc").AttributeDefinition;
|
|
538
|
-
description: import("pacc").AttributeDefinition;
|
|
539
|
-
priority: import("pacc").AttributeDefinition;
|
|
540
|
-
directory: import("pacc").AttributeDefinition;
|
|
541
|
-
packaging: import("pacc").AttributeDefinition;
|
|
542
|
-
disabled: import("pacc").AttributeDefinition;
|
|
543
|
-
tags: import("pacc").AttributeDefinition;
|
|
544
|
-
};
|
|
545
|
-
};
|
|
546
|
-
specializations: {};
|
|
547
|
-
factoryFor(owner: any, value: any): any;
|
|
548
|
-
key: string;
|
|
549
|
-
attributes: {
|
|
550
|
-
alias: import("pacc").AttributeDefinition;
|
|
551
|
-
weight: {
|
|
552
|
-
type: object;
|
|
553
|
-
isKey: boolean;
|
|
554
|
-
writable: boolean;
|
|
555
|
-
mandatory: boolean;
|
|
556
|
-
collection: boolean;
|
|
557
|
-
private?: boolean;
|
|
558
|
-
depends?: string;
|
|
559
|
-
description?: string;
|
|
560
|
-
default?: any;
|
|
561
|
-
set?: Function;
|
|
562
|
-
get?: Function;
|
|
563
|
-
prepareValue?: Function;
|
|
564
|
-
values?: Set<any>;
|
|
565
|
-
externalName?: string;
|
|
566
|
-
env?: string[] | string;
|
|
567
|
-
additionalValues?: object;
|
|
568
|
-
};
|
|
569
|
-
systemd: import("pacc").AttributeDefinition;
|
|
570
|
-
port: import("pacc").AttributeDefinition;
|
|
571
|
-
protocol: {
|
|
572
|
-
values: string[];
|
|
573
|
-
type: object;
|
|
574
|
-
isKey: boolean;
|
|
575
|
-
writable: boolean;
|
|
576
|
-
mandatory: boolean;
|
|
577
|
-
collection: boolean;
|
|
578
|
-
private?: boolean;
|
|
579
|
-
depends?: string;
|
|
580
|
-
description?: string;
|
|
581
|
-
default?: any;
|
|
582
|
-
set?: Function;
|
|
583
|
-
get?: Function;
|
|
584
|
-
prepareValue?: Function;
|
|
585
|
-
externalName?: string;
|
|
586
|
-
env?: string[] | string;
|
|
587
|
-
additionalValues?: object;
|
|
588
|
-
};
|
|
589
|
-
type: import("pacc").AttributeDefinition;
|
|
590
|
-
types: typeof import("pacc").string_collection_attribute;
|
|
591
|
-
tls: import("pacc").AttributeDefinition;
|
|
592
|
-
hostName: {
|
|
593
|
-
writable: boolean;
|
|
594
|
-
type: object;
|
|
595
|
-
isKey: boolean;
|
|
596
|
-
mandatory: boolean;
|
|
597
|
-
collection: boolean;
|
|
598
|
-
private?: boolean;
|
|
599
|
-
depends?: string;
|
|
600
|
-
description?: string;
|
|
601
|
-
default?: any;
|
|
602
|
-
set?: Function;
|
|
603
|
-
get?: Function;
|
|
604
|
-
prepareValue?: Function;
|
|
605
|
-
values?: Set<any>;
|
|
606
|
-
externalName?: string;
|
|
607
|
-
env?: string[] | string;
|
|
608
|
-
additionalValues?: object;
|
|
609
|
-
};
|
|
610
|
-
cidrAddresses: import("pacc").AttributeDefinition;
|
|
611
|
-
cidrAddress: import("pacc").AttributeDefinition;
|
|
612
|
-
addresses: import("pacc").AttributeDefinition;
|
|
613
|
-
address: import("pacc").AttributeDefinition;
|
|
614
|
-
};
|
|
615
|
-
};
|
|
616
6
|
owners: (string | {
|
|
617
7
|
name: string;
|
|
618
|
-
priority: number;
|
|
619
8
|
owners: string[];
|
|
620
9
|
extends: {
|
|
621
10
|
name: string;
|
|
@@ -813,14 +202,90 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
813
202
|
address: import("pacc").AttributeDefinition;
|
|
814
203
|
};
|
|
815
204
|
})[];
|
|
816
|
-
|
|
205
|
+
extends: {
|
|
206
|
+
name: string;
|
|
207
|
+
key: string;
|
|
208
|
+
attributes: {
|
|
209
|
+
owner: {
|
|
210
|
+
type: string;
|
|
211
|
+
isKey: boolean;
|
|
212
|
+
writable: boolean;
|
|
213
|
+
mandatory: boolean;
|
|
214
|
+
collection: boolean;
|
|
215
|
+
private?: boolean;
|
|
216
|
+
depends?: string;
|
|
217
|
+
description?: string;
|
|
218
|
+
default?: any;
|
|
219
|
+
set?: Function;
|
|
220
|
+
get?: Function;
|
|
221
|
+
prepareValue?: Function;
|
|
222
|
+
values?: Set<any>;
|
|
223
|
+
externalName?: string;
|
|
224
|
+
env?: string[] | string;
|
|
225
|
+
additionalValues?: object;
|
|
226
|
+
};
|
|
227
|
+
type: import("pacc").AttributeDefinition;
|
|
228
|
+
name: import("pacc").AttributeDefinition;
|
|
229
|
+
description: import("pacc").AttributeDefinition;
|
|
230
|
+
priority: import("pacc").AttributeDefinition;
|
|
231
|
+
directory: import("pacc").AttributeDefinition;
|
|
232
|
+
packaging: import("pacc").AttributeDefinition;
|
|
233
|
+
disabled: import("pacc").AttributeDefinition;
|
|
234
|
+
tags: import("pacc").AttributeDefinition;
|
|
235
|
+
};
|
|
236
|
+
};
|
|
237
|
+
specializations: {};
|
|
238
|
+
factoryFor(owner: any, value: any): any;
|
|
239
|
+
key: string;
|
|
817
240
|
attributes: {
|
|
818
|
-
|
|
819
|
-
|
|
241
|
+
alias: import("pacc").AttributeDefinition;
|
|
242
|
+
weight: {
|
|
243
|
+
type: object;
|
|
244
|
+
isKey: boolean;
|
|
245
|
+
writable: boolean;
|
|
246
|
+
mandatory: boolean;
|
|
820
247
|
collection: boolean;
|
|
248
|
+
private?: boolean;
|
|
249
|
+
depends?: string;
|
|
250
|
+
description?: string;
|
|
251
|
+
default?: any;
|
|
252
|
+
set?: Function;
|
|
253
|
+
get?: Function;
|
|
254
|
+
prepareValue?: Function;
|
|
255
|
+
values?: Set<any>;
|
|
256
|
+
externalName?: string;
|
|
257
|
+
env?: string[] | string;
|
|
258
|
+
additionalValues?: object;
|
|
259
|
+
};
|
|
260
|
+
systemd: import("pacc").AttributeDefinition;
|
|
261
|
+
port: import("pacc").AttributeDefinition;
|
|
262
|
+
protocol: {
|
|
263
|
+
values: string[];
|
|
264
|
+
type: object;
|
|
821
265
|
isKey: boolean;
|
|
822
266
|
writable: boolean;
|
|
823
267
|
mandatory: boolean;
|
|
268
|
+
collection: boolean;
|
|
269
|
+
private?: boolean;
|
|
270
|
+
depends?: string;
|
|
271
|
+
description?: string;
|
|
272
|
+
default?: any;
|
|
273
|
+
set?: Function;
|
|
274
|
+
get?: Function;
|
|
275
|
+
prepareValue?: Function;
|
|
276
|
+
externalName?: string;
|
|
277
|
+
env?: string[] | string;
|
|
278
|
+
additionalValues?: object;
|
|
279
|
+
};
|
|
280
|
+
type: import("pacc").AttributeDefinition;
|
|
281
|
+
types: typeof import("pacc").string_collection_attribute;
|
|
282
|
+
tls: import("pacc").AttributeDefinition;
|
|
283
|
+
hostName: {
|
|
284
|
+
writable: boolean;
|
|
285
|
+
type: object;
|
|
286
|
+
isKey: boolean;
|
|
287
|
+
mandatory: boolean;
|
|
288
|
+
collection: boolean;
|
|
824
289
|
private?: boolean;
|
|
825
290
|
depends?: string;
|
|
826
291
|
description?: string;
|
|
@@ -833,13 +298,16 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
833
298
|
env?: string[] | string;
|
|
834
299
|
additionalValues?: object;
|
|
835
300
|
};
|
|
301
|
+
cidrAddresses: import("pacc").AttributeDefinition;
|
|
302
|
+
cidrAddress: import("pacc").AttributeDefinition;
|
|
303
|
+
addresses: import("pacc").AttributeDefinition;
|
|
304
|
+
address: import("pacc").AttributeDefinition;
|
|
836
305
|
};
|
|
837
306
|
};
|
|
838
307
|
specializationOf: {
|
|
839
308
|
name: string;
|
|
840
309
|
owners: (string | {
|
|
841
310
|
name: string;
|
|
842
|
-
priority: number;
|
|
843
311
|
owners: string[];
|
|
844
312
|
extends: {
|
|
845
313
|
name: string;
|
|
@@ -1037,7 +505,6 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
1037
505
|
address: import("pacc").AttributeDefinition;
|
|
1038
506
|
};
|
|
1039
507
|
})[];
|
|
1040
|
-
priority: number;
|
|
1041
508
|
extends: {
|
|
1042
509
|
name: string;
|
|
1043
510
|
key: string;
|
|
@@ -1142,7 +609,6 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
1142
609
|
};
|
|
1143
610
|
owners: (string | {
|
|
1144
611
|
name: string;
|
|
1145
|
-
priority: number;
|
|
1146
612
|
owners: string[];
|
|
1147
613
|
extends: {
|
|
1148
614
|
name: string;
|
|
@@ -1340,7 +806,6 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
1340
806
|
address: import("pacc").AttributeDefinition;
|
|
1341
807
|
};
|
|
1342
808
|
})[];
|
|
1343
|
-
priority: number;
|
|
1344
809
|
key: string;
|
|
1345
810
|
service: {
|
|
1346
811
|
endpoints: {
|
|
@@ -1352,4 +817,4 @@ export class HeadscaleService extends ExtraSourceService {
|
|
|
1352
817
|
};
|
|
1353
818
|
};
|
|
1354
819
|
}
|
|
1355
|
-
import {
|
|
820
|
+
import { Service } from "../service.mjs";
|