pmcf 3.8.8 → 3.8.10
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 +3 -3
- package/src/base.mjs +4 -6
- package/src/cluster.mjs +3 -3
- package/src/host.mjs +17 -20
- package/src/network-interfaces/network-interface.mjs +5 -6
- package/src/network-support.mjs +15 -18
- package/src/owner.mjs +8 -7
- package/src/service.mjs +4 -5
- package/src/services/bind.mjs +6 -6
- package/src/services/systemd-journal-upload.mjs +2 -2
- package/types/base.d.mts +2 -28
- package/types/cluster.d.mts +102 -154
- package/types/extra-source-service.d.mts +25 -51
- package/types/host.d.mts +68 -94
- package/types/location.d.mts +64 -116
- package/types/network-interfaces/ethernet.d.mts +60 -112
- package/types/network-interfaces/loopback.d.mts +60 -112
- package/types/network-interfaces/network-interface.d.mts +60 -112
- package/types/network-interfaces/tun.d.mts +60 -112
- package/types/network-interfaces/wireguard.d.mts +60 -112
- package/types/network-interfaces/wlan.d.mts +90 -168
- package/types/network-support.d.mts +25 -25
- package/types/network.d.mts +37 -63
- package/types/owner.d.mts +32 -58
- package/types/root.d.mts +64 -116
- package/types/service.d.mts +52 -104
- package/types/services/bind.d.mts +55 -107
- package/types/services/chrony.d.mts +50 -102
- package/types/services/headscale.d.mts +50 -102
- package/types/services/influxdb.d.mts +50 -102
- package/types/services/kea.d.mts +50 -102
- package/types/services/mosquitto.d.mts +50 -102
- package/types/services/openldap.d.mts +50 -102
- package/types/services/systemd-journal-remote.d.mts +50 -102
- package/types/services/systemd-journal-upload.d.mts +51 -103
- package/types/services/systemd-journal.d.mts +50 -102
- package/types/services/systemd-resolved.d.mts +50 -102
- package/types/services/systemd-timesyncd.d.mts +50 -102
package/types/cluster.d.mts
CHANGED
|
@@ -15,20 +15,7 @@ export class Cluster extends Host {
|
|
|
15
15
|
writable: boolean;
|
|
16
16
|
};
|
|
17
17
|
type: import("pacc").AttributeDefinition;
|
|
18
|
-
name:
|
|
19
|
-
writable: boolean;
|
|
20
|
-
type: string;
|
|
21
|
-
isKey: boolean;
|
|
22
|
-
mandatory: boolean;
|
|
23
|
-
collection: boolean;
|
|
24
|
-
private?: boolean;
|
|
25
|
-
depends?: string;
|
|
26
|
-
description?: string;
|
|
27
|
-
default?: any;
|
|
28
|
-
set?: Function;
|
|
29
|
-
get?: Function;
|
|
30
|
-
env?: string[] | string;
|
|
31
|
-
};
|
|
18
|
+
name: import("pacc").AttributeDefinition;
|
|
32
19
|
description: {
|
|
33
20
|
writable: boolean;
|
|
34
21
|
type: string;
|
|
@@ -58,20 +45,7 @@ export class Cluster extends Host {
|
|
|
58
45
|
get?: Function;
|
|
59
46
|
env?: string[] | string;
|
|
60
47
|
};
|
|
61
|
-
packaging:
|
|
62
|
-
writable: boolean;
|
|
63
|
-
type: string;
|
|
64
|
-
isKey: boolean;
|
|
65
|
-
mandatory: boolean;
|
|
66
|
-
collection: boolean;
|
|
67
|
-
private?: boolean;
|
|
68
|
-
depends?: string;
|
|
69
|
-
description?: string;
|
|
70
|
-
default?: any;
|
|
71
|
-
set?: Function;
|
|
72
|
-
get?: Function;
|
|
73
|
-
env?: string[] | string;
|
|
74
|
-
};
|
|
48
|
+
packaging: import("pacc").AttributeDefinition;
|
|
75
49
|
disabled: import("pacc").AttributeDefinition;
|
|
76
50
|
tags: import("pacc").AttributeDefinition;
|
|
77
51
|
};
|
|
@@ -138,9 +112,9 @@ export class Cluster extends Host {
|
|
|
138
112
|
writable: boolean;
|
|
139
113
|
};
|
|
140
114
|
country: {
|
|
141
|
-
writable: boolean;
|
|
142
115
|
type: string;
|
|
143
116
|
isKey: boolean;
|
|
117
|
+
writable: boolean;
|
|
144
118
|
mandatory: boolean;
|
|
145
119
|
collection: boolean;
|
|
146
120
|
private?: boolean;
|
|
@@ -152,9 +126,9 @@ export class Cluster extends Host {
|
|
|
152
126
|
env?: string[] | string;
|
|
153
127
|
};
|
|
154
128
|
domain: {
|
|
155
|
-
writable: boolean;
|
|
156
129
|
type: string;
|
|
157
130
|
isKey: boolean;
|
|
131
|
+
writable: boolean;
|
|
158
132
|
mandatory: boolean;
|
|
159
133
|
collection: boolean;
|
|
160
134
|
private?: boolean;
|
|
@@ -166,23 +140,23 @@ export class Cluster extends Host {
|
|
|
166
140
|
env?: string[] | string;
|
|
167
141
|
};
|
|
168
142
|
domains: {
|
|
169
|
-
writable: boolean;
|
|
170
|
-
collection: boolean;
|
|
171
143
|
type: string;
|
|
172
144
|
isKey: boolean;
|
|
145
|
+
writable: boolean;
|
|
173
146
|
mandatory: boolean;
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
147
|
+
collection: boolean;
|
|
148
|
+
private?: boolean;
|
|
149
|
+
depends?: string;
|
|
150
|
+
description?: string;
|
|
151
|
+
default?: any;
|
|
152
|
+
set?: Function;
|
|
153
|
+
get?: Function;
|
|
154
|
+
env?: string[] | string;
|
|
181
155
|
};
|
|
182
156
|
timezone: {
|
|
183
|
-
writable: boolean;
|
|
184
157
|
type: string;
|
|
185
158
|
isKey: boolean;
|
|
159
|
+
writable: boolean;
|
|
186
160
|
mandatory: boolean;
|
|
187
161
|
collection: boolean;
|
|
188
162
|
private?: boolean;
|
|
@@ -194,32 +168,32 @@ export class Cluster extends Host {
|
|
|
194
168
|
env?: string[] | string;
|
|
195
169
|
};
|
|
196
170
|
architectures: {
|
|
197
|
-
writable: boolean;
|
|
198
|
-
collection: boolean;
|
|
199
171
|
type: string;
|
|
200
172
|
isKey: boolean;
|
|
173
|
+
writable: boolean;
|
|
201
174
|
mandatory: boolean;
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
175
|
+
collection: boolean;
|
|
176
|
+
private?: boolean;
|
|
177
|
+
depends?: string;
|
|
178
|
+
description?: string;
|
|
179
|
+
default?: any;
|
|
180
|
+
set?: Function;
|
|
181
|
+
get?: Function;
|
|
182
|
+
env?: string[] | string;
|
|
209
183
|
};
|
|
210
184
|
locales: {
|
|
211
|
-
writable: boolean;
|
|
212
|
-
collection: boolean;
|
|
213
185
|
type: string;
|
|
214
186
|
isKey: boolean;
|
|
187
|
+
writable: boolean;
|
|
215
188
|
mandatory: boolean;
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
189
|
+
collection: boolean;
|
|
190
|
+
private?: boolean;
|
|
191
|
+
depends?: string;
|
|
192
|
+
description?: string;
|
|
193
|
+
default?: any;
|
|
194
|
+
set?: Function;
|
|
195
|
+
get?: Function;
|
|
196
|
+
env?: string[] | string;
|
|
223
197
|
};
|
|
224
198
|
administratorEmail: {
|
|
225
199
|
writable: boolean;
|
|
@@ -252,20 +226,7 @@ export class Cluster extends Host {
|
|
|
252
226
|
writable: boolean;
|
|
253
227
|
};
|
|
254
228
|
type: import("pacc").AttributeDefinition;
|
|
255
|
-
name:
|
|
256
|
-
writable: boolean;
|
|
257
|
-
type: string;
|
|
258
|
-
isKey: boolean;
|
|
259
|
-
mandatory: boolean;
|
|
260
|
-
collection: boolean;
|
|
261
|
-
private?: boolean;
|
|
262
|
-
depends?: string;
|
|
263
|
-
description?: string;
|
|
264
|
-
default?: any;
|
|
265
|
-
set?: Function;
|
|
266
|
-
get?: Function;
|
|
267
|
-
env?: string[] | string;
|
|
268
|
-
};
|
|
229
|
+
name: import("pacc").AttributeDefinition;
|
|
269
230
|
description: {
|
|
270
231
|
writable: boolean;
|
|
271
232
|
type: string;
|
|
@@ -295,20 +256,7 @@ export class Cluster extends Host {
|
|
|
295
256
|
get?: Function;
|
|
296
257
|
env?: string[] | string;
|
|
297
258
|
};
|
|
298
|
-
packaging:
|
|
299
|
-
writable: boolean;
|
|
300
|
-
type: string;
|
|
301
|
-
isKey: boolean;
|
|
302
|
-
mandatory: boolean;
|
|
303
|
-
collection: boolean;
|
|
304
|
-
private?: boolean;
|
|
305
|
-
depends?: string;
|
|
306
|
-
description?: string;
|
|
307
|
-
default?: any;
|
|
308
|
-
set?: Function;
|
|
309
|
-
get?: Function;
|
|
310
|
-
env?: string[] | string;
|
|
311
|
-
};
|
|
259
|
+
packaging: import("pacc").AttributeDefinition;
|
|
312
260
|
disabled: import("pacc").AttributeDefinition;
|
|
313
261
|
tags: import("pacc").AttributeDefinition;
|
|
314
262
|
};
|
|
@@ -325,24 +273,24 @@ export class Cluster extends Host {
|
|
|
325
273
|
writable: boolean;
|
|
326
274
|
};
|
|
327
275
|
aliases: {
|
|
328
|
-
writable: boolean;
|
|
329
|
-
collection: boolean;
|
|
330
276
|
type: string;
|
|
331
277
|
isKey: boolean;
|
|
278
|
+
writable: boolean;
|
|
332
279
|
mandatory: boolean;
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
280
|
+
collection: boolean;
|
|
281
|
+
private?: boolean;
|
|
282
|
+
depends?: string;
|
|
283
|
+
description?: string;
|
|
284
|
+
default?: any;
|
|
285
|
+
set?: Function;
|
|
286
|
+
get?: Function;
|
|
287
|
+
env?: string[] | string;
|
|
340
288
|
};
|
|
341
289
|
os: {
|
|
342
|
-
writable: boolean;
|
|
343
290
|
values: string[];
|
|
344
291
|
type: string;
|
|
345
292
|
isKey: boolean;
|
|
293
|
+
writable: boolean;
|
|
346
294
|
mandatory: boolean;
|
|
347
295
|
collection: boolean;
|
|
348
296
|
private?: boolean;
|
|
@@ -354,9 +302,9 @@ export class Cluster extends Host {
|
|
|
354
302
|
env?: string[] | string;
|
|
355
303
|
};
|
|
356
304
|
"machine-id": {
|
|
357
|
-
writable: boolean;
|
|
358
305
|
type: string;
|
|
359
306
|
isKey: boolean;
|
|
307
|
+
writable: boolean;
|
|
360
308
|
mandatory: boolean;
|
|
361
309
|
collection: boolean;
|
|
362
310
|
private?: boolean;
|
|
@@ -368,9 +316,9 @@ export class Cluster extends Host {
|
|
|
368
316
|
env?: string[] | string;
|
|
369
317
|
};
|
|
370
318
|
distribution: {
|
|
371
|
-
writable: boolean;
|
|
372
319
|
type: string;
|
|
373
320
|
isKey: boolean;
|
|
321
|
+
writable: boolean;
|
|
374
322
|
mandatory: boolean;
|
|
375
323
|
collection: boolean;
|
|
376
324
|
private?: boolean;
|
|
@@ -382,10 +330,10 @@ export class Cluster extends Host {
|
|
|
382
330
|
env?: string[] | string;
|
|
383
331
|
};
|
|
384
332
|
deployment: {
|
|
385
|
-
writable: boolean;
|
|
386
333
|
values: string[];
|
|
387
334
|
type: string;
|
|
388
335
|
isKey: boolean;
|
|
336
|
+
writable: boolean;
|
|
389
337
|
mandatory: boolean;
|
|
390
338
|
collection: boolean;
|
|
391
339
|
private?: boolean;
|
|
@@ -397,9 +345,9 @@ export class Cluster extends Host {
|
|
|
397
345
|
env?: string[] | string;
|
|
398
346
|
};
|
|
399
347
|
weight: {
|
|
400
|
-
writable: boolean;
|
|
401
348
|
type: string;
|
|
402
349
|
isKey: boolean;
|
|
350
|
+
writable: boolean;
|
|
403
351
|
mandatory: boolean;
|
|
404
352
|
collection: boolean;
|
|
405
353
|
private?: boolean;
|
|
@@ -411,9 +359,9 @@ export class Cluster extends Host {
|
|
|
411
359
|
env?: string[] | string;
|
|
412
360
|
};
|
|
413
361
|
serial: {
|
|
414
|
-
writable: boolean;
|
|
415
362
|
type: string;
|
|
416
363
|
isKey: boolean;
|
|
364
|
+
writable: boolean;
|
|
417
365
|
mandatory: boolean;
|
|
418
366
|
collection: boolean;
|
|
419
367
|
private?: boolean;
|
|
@@ -425,9 +373,9 @@ export class Cluster extends Host {
|
|
|
425
373
|
env?: string[] | string;
|
|
426
374
|
};
|
|
427
375
|
vendor: {
|
|
428
|
-
writable: boolean;
|
|
429
376
|
type: string;
|
|
430
377
|
isKey: boolean;
|
|
378
|
+
writable: boolean;
|
|
431
379
|
mandatory: boolean;
|
|
432
380
|
collection: boolean;
|
|
433
381
|
private?: boolean;
|
|
@@ -439,9 +387,9 @@ export class Cluster extends Host {
|
|
|
439
387
|
env?: string[] | string;
|
|
440
388
|
};
|
|
441
389
|
keymap: {
|
|
442
|
-
writable: boolean;
|
|
443
390
|
type: string;
|
|
444
391
|
isKey: boolean;
|
|
392
|
+
writable: boolean;
|
|
445
393
|
mandatory: boolean;
|
|
446
394
|
collection: boolean;
|
|
447
395
|
private?: boolean;
|
|
@@ -453,10 +401,10 @@ export class Cluster extends Host {
|
|
|
453
401
|
env?: string[] | string;
|
|
454
402
|
};
|
|
455
403
|
chassis: {
|
|
456
|
-
writable: boolean;
|
|
457
404
|
values: string[];
|
|
458
405
|
type: string;
|
|
459
406
|
isKey: boolean;
|
|
407
|
+
writable: boolean;
|
|
460
408
|
mandatory: boolean;
|
|
461
409
|
collection: boolean;
|
|
462
410
|
private?: boolean;
|
|
@@ -468,10 +416,10 @@ export class Cluster extends Host {
|
|
|
468
416
|
env?: string[] | string;
|
|
469
417
|
};
|
|
470
418
|
architecture: {
|
|
471
|
-
writable: boolean;
|
|
472
419
|
values: string[];
|
|
473
420
|
type: string;
|
|
474
421
|
isKey: boolean;
|
|
422
|
+
writable: boolean;
|
|
475
423
|
mandatory: boolean;
|
|
476
424
|
collection: boolean;
|
|
477
425
|
private?: boolean;
|
|
@@ -483,46 +431,46 @@ export class Cluster extends Host {
|
|
|
483
431
|
env?: string[] | string;
|
|
484
432
|
};
|
|
485
433
|
replaces: {
|
|
486
|
-
writable: boolean;
|
|
487
|
-
collection: boolean;
|
|
488
434
|
type: string;
|
|
489
435
|
isKey: boolean;
|
|
436
|
+
writable: boolean;
|
|
490
437
|
mandatory: boolean;
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
438
|
+
collection: boolean;
|
|
439
|
+
private?: boolean;
|
|
440
|
+
depends?: string;
|
|
441
|
+
description?: string;
|
|
442
|
+
default?: any;
|
|
443
|
+
set?: Function;
|
|
444
|
+
get?: Function;
|
|
445
|
+
env?: string[] | string;
|
|
498
446
|
};
|
|
499
447
|
depends: {
|
|
500
|
-
writable: boolean;
|
|
501
|
-
collection: boolean;
|
|
502
448
|
type: string;
|
|
503
449
|
isKey: boolean;
|
|
450
|
+
writable: boolean;
|
|
504
451
|
mandatory: boolean;
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
452
|
+
collection: boolean;
|
|
453
|
+
private?: boolean;
|
|
454
|
+
depends?: string;
|
|
455
|
+
description?: string;
|
|
456
|
+
default?: any;
|
|
457
|
+
set?: Function;
|
|
458
|
+
get?: Function;
|
|
459
|
+
env?: string[] | string;
|
|
512
460
|
};
|
|
513
461
|
provides: {
|
|
514
|
-
writable: boolean;
|
|
515
|
-
collection: boolean;
|
|
516
462
|
type: string;
|
|
517
463
|
isKey: boolean;
|
|
464
|
+
writable: boolean;
|
|
518
465
|
mandatory: boolean;
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
466
|
+
collection: boolean;
|
|
467
|
+
private?: boolean;
|
|
468
|
+
depends?: string;
|
|
469
|
+
description?: string;
|
|
470
|
+
default?: any;
|
|
471
|
+
set?: Function;
|
|
472
|
+
get?: Function;
|
|
473
|
+
env?: string[] | string;
|
|
526
474
|
};
|
|
527
475
|
extends: {
|
|
528
476
|
type: string;
|
|
@@ -546,23 +494,23 @@ export class Cluster extends Host {
|
|
|
546
494
|
env?: string[] | string;
|
|
547
495
|
};
|
|
548
496
|
cidrAddresses: {
|
|
549
|
-
writable: boolean;
|
|
550
|
-
collection: boolean;
|
|
551
497
|
type: string;
|
|
552
498
|
isKey: boolean;
|
|
499
|
+
writable: boolean;
|
|
553
500
|
mandatory: boolean;
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
501
|
+
collection: boolean;
|
|
502
|
+
private?: boolean;
|
|
503
|
+
depends?: string;
|
|
504
|
+
description?: string;
|
|
505
|
+
default?: any;
|
|
506
|
+
set?: Function;
|
|
507
|
+
get?: Function;
|
|
508
|
+
env?: string[] | string;
|
|
561
509
|
};
|
|
562
510
|
cidrAddress: {
|
|
563
|
-
writable: boolean;
|
|
564
511
|
type: string;
|
|
565
512
|
isKey: boolean;
|
|
513
|
+
writable: boolean;
|
|
566
514
|
mandatory: boolean;
|
|
567
515
|
collection: boolean;
|
|
568
516
|
private?: boolean;
|
|
@@ -574,23 +522,23 @@ export class Cluster extends Host {
|
|
|
574
522
|
env?: string[] | string;
|
|
575
523
|
};
|
|
576
524
|
addresses: {
|
|
577
|
-
writable: boolean;
|
|
578
|
-
collection: boolean;
|
|
579
525
|
type: string;
|
|
580
526
|
isKey: boolean;
|
|
527
|
+
writable: boolean;
|
|
581
528
|
mandatory: boolean;
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
529
|
+
collection: boolean;
|
|
530
|
+
private?: boolean;
|
|
531
|
+
depends?: string;
|
|
532
|
+
description?: string;
|
|
533
|
+
default?: any;
|
|
534
|
+
set?: Function;
|
|
535
|
+
get?: Function;
|
|
536
|
+
env?: string[] | string;
|
|
589
537
|
};
|
|
590
538
|
address: {
|
|
591
|
-
writable: boolean;
|
|
592
539
|
type: string;
|
|
593
540
|
isKey: boolean;
|
|
541
|
+
writable: boolean;
|
|
594
542
|
mandatory: boolean;
|
|
595
543
|
collection: boolean;
|
|
596
544
|
private?: boolean;
|
|
@@ -605,9 +553,9 @@ export class Cluster extends Host {
|
|
|
605
553
|
};
|
|
606
554
|
properties: {
|
|
607
555
|
routerId: {
|
|
608
|
-
writable: boolean;
|
|
609
556
|
type: string;
|
|
610
557
|
isKey: boolean;
|
|
558
|
+
writable: boolean;
|
|
611
559
|
mandatory: boolean;
|
|
612
560
|
collection: boolean;
|
|
613
561
|
private?: boolean;
|
|
@@ -634,9 +582,9 @@ export class Cluster extends Host {
|
|
|
634
582
|
writable: boolean;
|
|
635
583
|
};
|
|
636
584
|
checkInterval: {
|
|
637
|
-
writable: boolean;
|
|
638
585
|
type: string;
|
|
639
586
|
isKey: boolean;
|
|
587
|
+
writable: boolean;
|
|
640
588
|
mandatory: boolean;
|
|
641
589
|
collection: boolean;
|
|
642
590
|
private?: boolean;
|
|
@@ -29,20 +29,7 @@ export class ExtraSourceService extends Service {
|
|
|
29
29
|
writable: boolean;
|
|
30
30
|
};
|
|
31
31
|
type: import("pacc").AttributeDefinition;
|
|
32
|
-
name:
|
|
33
|
-
writable: boolean;
|
|
34
|
-
type: string;
|
|
35
|
-
isKey: boolean;
|
|
36
|
-
mandatory: boolean;
|
|
37
|
-
collection: boolean;
|
|
38
|
-
private?: boolean;
|
|
39
|
-
depends?: string;
|
|
40
|
-
description?: string;
|
|
41
|
-
default?: any;
|
|
42
|
-
set?: Function;
|
|
43
|
-
get?: Function;
|
|
44
|
-
env?: string[] | string;
|
|
45
|
-
};
|
|
32
|
+
name: import("pacc").AttributeDefinition;
|
|
46
33
|
description: {
|
|
47
34
|
writable: boolean;
|
|
48
35
|
type: string;
|
|
@@ -72,20 +59,7 @@ export class ExtraSourceService extends Service {
|
|
|
72
59
|
get?: Function;
|
|
73
60
|
env?: string[] | string;
|
|
74
61
|
};
|
|
75
|
-
packaging:
|
|
76
|
-
writable: boolean;
|
|
77
|
-
type: string;
|
|
78
|
-
isKey: boolean;
|
|
79
|
-
mandatory: boolean;
|
|
80
|
-
collection: boolean;
|
|
81
|
-
private?: boolean;
|
|
82
|
-
depends?: string;
|
|
83
|
-
description?: string;
|
|
84
|
-
default?: any;
|
|
85
|
-
set?: Function;
|
|
86
|
-
get?: Function;
|
|
87
|
-
env?: string[] | string;
|
|
88
|
-
};
|
|
62
|
+
packaging: import("pacc").AttributeDefinition;
|
|
89
63
|
disabled: import("pacc").AttributeDefinition;
|
|
90
64
|
tags: import("pacc").AttributeDefinition;
|
|
91
65
|
};
|
|
@@ -94,9 +68,9 @@ export class ExtraSourceService extends Service {
|
|
|
94
68
|
factoryFor(owner: any, value: any): any;
|
|
95
69
|
properties: {
|
|
96
70
|
alias: {
|
|
97
|
-
writable: boolean;
|
|
98
71
|
type: string;
|
|
99
72
|
isKey: boolean;
|
|
73
|
+
writable: boolean;
|
|
100
74
|
mandatory: boolean;
|
|
101
75
|
collection: boolean;
|
|
102
76
|
private?: boolean;
|
|
@@ -137,10 +111,10 @@ export class ExtraSourceService extends Service {
|
|
|
137
111
|
env?: string[] | string;
|
|
138
112
|
};
|
|
139
113
|
protocol: {
|
|
140
|
-
writable: boolean;
|
|
141
114
|
values: string[];
|
|
142
115
|
type: string;
|
|
143
116
|
isKey: boolean;
|
|
117
|
+
writable: boolean;
|
|
144
118
|
mandatory: boolean;
|
|
145
119
|
collection: boolean;
|
|
146
120
|
private?: boolean;
|
|
@@ -152,9 +126,9 @@ export class ExtraSourceService extends Service {
|
|
|
152
126
|
env?: string[] | string;
|
|
153
127
|
};
|
|
154
128
|
type: {
|
|
155
|
-
writable: boolean;
|
|
156
129
|
type: string;
|
|
157
130
|
isKey: boolean;
|
|
131
|
+
writable: boolean;
|
|
158
132
|
mandatory: boolean;
|
|
159
133
|
collection: boolean;
|
|
160
134
|
private?: boolean;
|
|
@@ -182,23 +156,23 @@ export class ExtraSourceService extends Service {
|
|
|
182
156
|
env?: string[] | string;
|
|
183
157
|
};
|
|
184
158
|
cidrAddresses: {
|
|
185
|
-
writable: boolean;
|
|
186
|
-
collection: boolean;
|
|
187
159
|
type: string;
|
|
188
160
|
isKey: boolean;
|
|
161
|
+
writable: boolean;
|
|
189
162
|
mandatory: boolean;
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
163
|
+
collection: boolean;
|
|
164
|
+
private?: boolean;
|
|
165
|
+
depends?: string;
|
|
166
|
+
description?: string;
|
|
167
|
+
default?: any;
|
|
168
|
+
set?: Function;
|
|
169
|
+
get?: Function;
|
|
170
|
+
env?: string[] | string;
|
|
197
171
|
};
|
|
198
172
|
cidrAddress: {
|
|
199
|
-
writable: boolean;
|
|
200
173
|
type: string;
|
|
201
174
|
isKey: boolean;
|
|
175
|
+
writable: boolean;
|
|
202
176
|
mandatory: boolean;
|
|
203
177
|
collection: boolean;
|
|
204
178
|
private?: boolean;
|
|
@@ -210,23 +184,23 @@ export class ExtraSourceService extends Service {
|
|
|
210
184
|
env?: string[] | string;
|
|
211
185
|
};
|
|
212
186
|
addresses: {
|
|
213
|
-
writable: boolean;
|
|
214
|
-
collection: boolean;
|
|
215
187
|
type: string;
|
|
216
188
|
isKey: boolean;
|
|
189
|
+
writable: boolean;
|
|
217
190
|
mandatory: boolean;
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
191
|
+
collection: boolean;
|
|
192
|
+
private?: boolean;
|
|
193
|
+
depends?: string;
|
|
194
|
+
description?: string;
|
|
195
|
+
default?: any;
|
|
196
|
+
set?: Function;
|
|
197
|
+
get?: Function;
|
|
198
|
+
env?: string[] | string;
|
|
225
199
|
};
|
|
226
200
|
address: {
|
|
227
|
-
writable: boolean;
|
|
228
201
|
type: string;
|
|
229
202
|
isKey: boolean;
|
|
203
|
+
writable: boolean;
|
|
230
204
|
mandatory: boolean;
|
|
231
205
|
collection: boolean;
|
|
232
206
|
private?: boolean;
|