pmcf 3.8.9 → 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
|
@@ -15,20 +15,7 @@ export class BindService extends ExtraSourceService {
|
|
|
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 BindService extends ExtraSourceService {
|
|
|
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
|
};
|
|
@@ -80,9 +54,9 @@ export class BindService extends ExtraSourceService {
|
|
|
80
54
|
factoryFor(owner: any, value: any): any;
|
|
81
55
|
properties: {
|
|
82
56
|
alias: {
|
|
83
|
-
writable: boolean;
|
|
84
57
|
type: string;
|
|
85
58
|
isKey: boolean;
|
|
59
|
+
writable: boolean;
|
|
86
60
|
mandatory: boolean;
|
|
87
61
|
collection: boolean;
|
|
88
62
|
private?: boolean;
|
|
@@ -123,10 +97,10 @@ export class BindService extends ExtraSourceService {
|
|
|
123
97
|
env?: string[] | string;
|
|
124
98
|
};
|
|
125
99
|
protocol: {
|
|
126
|
-
writable: boolean;
|
|
127
100
|
values: string[];
|
|
128
101
|
type: string;
|
|
129
102
|
isKey: boolean;
|
|
103
|
+
writable: boolean;
|
|
130
104
|
mandatory: boolean;
|
|
131
105
|
collection: boolean;
|
|
132
106
|
private?: boolean;
|
|
@@ -138,9 +112,9 @@ export class BindService extends ExtraSourceService {
|
|
|
138
112
|
env?: string[] | string;
|
|
139
113
|
};
|
|
140
114
|
type: {
|
|
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;
|
|
@@ -168,23 +142,23 @@ export class BindService extends ExtraSourceService {
|
|
|
168
142
|
env?: string[] | string;
|
|
169
143
|
};
|
|
170
144
|
cidrAddresses: {
|
|
171
|
-
writable: boolean;
|
|
172
|
-
collection: boolean;
|
|
173
145
|
type: string;
|
|
174
146
|
isKey: boolean;
|
|
147
|
+
writable: boolean;
|
|
175
148
|
mandatory: boolean;
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
149
|
+
collection: boolean;
|
|
150
|
+
private?: boolean;
|
|
151
|
+
depends?: string;
|
|
152
|
+
description?: string;
|
|
153
|
+
default?: any;
|
|
154
|
+
set?: Function;
|
|
155
|
+
get?: Function;
|
|
156
|
+
env?: string[] | string;
|
|
183
157
|
};
|
|
184
158
|
cidrAddress: {
|
|
185
|
-
writable: boolean;
|
|
186
159
|
type: string;
|
|
187
160
|
isKey: boolean;
|
|
161
|
+
writable: boolean;
|
|
188
162
|
mandatory: boolean;
|
|
189
163
|
collection: boolean;
|
|
190
164
|
private?: boolean;
|
|
@@ -196,23 +170,23 @@ export class BindService extends ExtraSourceService {
|
|
|
196
170
|
env?: string[] | string;
|
|
197
171
|
};
|
|
198
172
|
addresses: {
|
|
199
|
-
writable: boolean;
|
|
200
|
-
collection: boolean;
|
|
201
173
|
type: string;
|
|
202
174
|
isKey: boolean;
|
|
175
|
+
writable: boolean;
|
|
203
176
|
mandatory: boolean;
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
177
|
+
collection: boolean;
|
|
178
|
+
private?: boolean;
|
|
179
|
+
depends?: string;
|
|
180
|
+
description?: string;
|
|
181
|
+
default?: any;
|
|
182
|
+
set?: Function;
|
|
183
|
+
get?: Function;
|
|
184
|
+
env?: string[] | string;
|
|
211
185
|
};
|
|
212
186
|
address: {
|
|
213
|
-
writable: boolean;
|
|
214
187
|
type: string;
|
|
215
188
|
isKey: boolean;
|
|
189
|
+
writable: boolean;
|
|
216
190
|
mandatory: boolean;
|
|
217
191
|
collection: boolean;
|
|
218
192
|
private?: boolean;
|
|
@@ -243,20 +217,7 @@ export class BindService extends ExtraSourceService {
|
|
|
243
217
|
writable: boolean;
|
|
244
218
|
};
|
|
245
219
|
type: import("pacc").AttributeDefinition;
|
|
246
|
-
name:
|
|
247
|
-
writable: boolean;
|
|
248
|
-
type: string;
|
|
249
|
-
isKey: 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
|
-
env?: string[] | string;
|
|
259
|
-
};
|
|
220
|
+
name: import("pacc").AttributeDefinition;
|
|
260
221
|
description: {
|
|
261
222
|
writable: boolean;
|
|
262
223
|
type: string;
|
|
@@ -286,20 +247,7 @@ export class BindService extends ExtraSourceService {
|
|
|
286
247
|
get?: Function;
|
|
287
248
|
env?: string[] | string;
|
|
288
249
|
};
|
|
289
|
-
packaging:
|
|
290
|
-
writable: boolean;
|
|
291
|
-
type: string;
|
|
292
|
-
isKey: boolean;
|
|
293
|
-
mandatory: boolean;
|
|
294
|
-
collection: boolean;
|
|
295
|
-
private?: boolean;
|
|
296
|
-
depends?: string;
|
|
297
|
-
description?: string;
|
|
298
|
-
default?: any;
|
|
299
|
-
set?: Function;
|
|
300
|
-
get?: Function;
|
|
301
|
-
env?: string[] | string;
|
|
302
|
-
};
|
|
250
|
+
packaging: import("pacc").AttributeDefinition;
|
|
303
251
|
disabled: import("pacc").AttributeDefinition;
|
|
304
252
|
tags: import("pacc").AttributeDefinition;
|
|
305
253
|
};
|
|
@@ -308,9 +256,9 @@ export class BindService extends ExtraSourceService {
|
|
|
308
256
|
factoryFor(owner: any, value: any): any;
|
|
309
257
|
properties: {
|
|
310
258
|
alias: {
|
|
311
|
-
writable: boolean;
|
|
312
259
|
type: string;
|
|
313
260
|
isKey: boolean;
|
|
261
|
+
writable: boolean;
|
|
314
262
|
mandatory: boolean;
|
|
315
263
|
collection: boolean;
|
|
316
264
|
private?: boolean;
|
|
@@ -351,10 +299,10 @@ export class BindService extends ExtraSourceService {
|
|
|
351
299
|
env?: string[] | string;
|
|
352
300
|
};
|
|
353
301
|
protocol: {
|
|
354
|
-
writable: boolean;
|
|
355
302
|
values: string[];
|
|
356
303
|
type: string;
|
|
357
304
|
isKey: boolean;
|
|
305
|
+
writable: boolean;
|
|
358
306
|
mandatory: boolean;
|
|
359
307
|
collection: boolean;
|
|
360
308
|
private?: boolean;
|
|
@@ -366,9 +314,9 @@ export class BindService extends ExtraSourceService {
|
|
|
366
314
|
env?: string[] | string;
|
|
367
315
|
};
|
|
368
316
|
type: {
|
|
369
|
-
writable: boolean;
|
|
370
317
|
type: string;
|
|
371
318
|
isKey: boolean;
|
|
319
|
+
writable: boolean;
|
|
372
320
|
mandatory: boolean;
|
|
373
321
|
collection: boolean;
|
|
374
322
|
private?: boolean;
|
|
@@ -396,23 +344,23 @@ export class BindService extends ExtraSourceService {
|
|
|
396
344
|
env?: string[] | string;
|
|
397
345
|
};
|
|
398
346
|
cidrAddresses: {
|
|
399
|
-
writable: boolean;
|
|
400
|
-
collection: boolean;
|
|
401
347
|
type: string;
|
|
402
348
|
isKey: boolean;
|
|
349
|
+
writable: boolean;
|
|
403
350
|
mandatory: boolean;
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
351
|
+
collection: boolean;
|
|
352
|
+
private?: boolean;
|
|
353
|
+
depends?: string;
|
|
354
|
+
description?: string;
|
|
355
|
+
default?: any;
|
|
356
|
+
set?: Function;
|
|
357
|
+
get?: Function;
|
|
358
|
+
env?: string[] | string;
|
|
411
359
|
};
|
|
412
360
|
cidrAddress: {
|
|
413
|
-
writable: boolean;
|
|
414
361
|
type: string;
|
|
415
362
|
isKey: boolean;
|
|
363
|
+
writable: boolean;
|
|
416
364
|
mandatory: boolean;
|
|
417
365
|
collection: boolean;
|
|
418
366
|
private?: boolean;
|
|
@@ -424,23 +372,23 @@ export class BindService extends ExtraSourceService {
|
|
|
424
372
|
env?: string[] | string;
|
|
425
373
|
};
|
|
426
374
|
addresses: {
|
|
427
|
-
writable: boolean;
|
|
428
|
-
collection: boolean;
|
|
429
375
|
type: string;
|
|
430
376
|
isKey: boolean;
|
|
377
|
+
writable: boolean;
|
|
431
378
|
mandatory: boolean;
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
379
|
+
collection: boolean;
|
|
380
|
+
private?: boolean;
|
|
381
|
+
depends?: string;
|
|
382
|
+
description?: string;
|
|
383
|
+
default?: any;
|
|
384
|
+
set?: Function;
|
|
385
|
+
get?: Function;
|
|
386
|
+
env?: string[] | string;
|
|
439
387
|
};
|
|
440
388
|
address: {
|
|
441
|
-
writable: boolean;
|
|
442
389
|
type: string;
|
|
443
390
|
isKey: boolean;
|
|
391
|
+
writable: boolean;
|
|
444
392
|
mandatory: boolean;
|
|
445
393
|
collection: boolean;
|
|
446
394
|
private?: boolean;
|
|
@@ -509,9 +457,9 @@ export class BindService extends ExtraSourceService {
|
|
|
509
457
|
};
|
|
510
458
|
notify: import("pacc").AttributeDefinition;
|
|
511
459
|
recordTTL: {
|
|
512
|
-
writable: boolean;
|
|
513
460
|
type: string;
|
|
514
461
|
isKey: boolean;
|
|
462
|
+
writable: boolean;
|
|
515
463
|
mandatory: boolean;
|
|
516
464
|
collection: boolean;
|
|
517
465
|
private?: boolean;
|
|
@@ -537,10 +485,10 @@ export class BindService extends ExtraSourceService {
|
|
|
537
485
|
env?: string[] | string;
|
|
538
486
|
};
|
|
539
487
|
refresh: {
|
|
540
|
-
writable: boolean;
|
|
541
488
|
default: number;
|
|
542
489
|
type: string;
|
|
543
490
|
isKey: boolean;
|
|
491
|
+
writable: boolean;
|
|
544
492
|
mandatory: boolean;
|
|
545
493
|
collection: boolean;
|
|
546
494
|
private?: boolean;
|
|
@@ -551,10 +499,10 @@ export class BindService extends ExtraSourceService {
|
|
|
551
499
|
env?: string[] | string;
|
|
552
500
|
};
|
|
553
501
|
retry: {
|
|
554
|
-
writable: boolean;
|
|
555
502
|
default: number;
|
|
556
503
|
type: string;
|
|
557
504
|
isKey: boolean;
|
|
505
|
+
writable: boolean;
|
|
558
506
|
mandatory: boolean;
|
|
559
507
|
collection: boolean;
|
|
560
508
|
private?: boolean;
|
|
@@ -565,10 +513,10 @@ export class BindService extends ExtraSourceService {
|
|
|
565
513
|
env?: string[] | string;
|
|
566
514
|
};
|
|
567
515
|
expire: {
|
|
568
|
-
writable: boolean;
|
|
569
516
|
default: number;
|
|
570
517
|
type: string;
|
|
571
518
|
isKey: boolean;
|
|
519
|
+
writable: boolean;
|
|
572
520
|
mandatory: boolean;
|
|
573
521
|
collection: boolean;
|
|
574
522
|
private?: boolean;
|
|
@@ -579,10 +527,10 @@ export class BindService extends ExtraSourceService {
|
|
|
579
527
|
env?: string[] | string;
|
|
580
528
|
};
|
|
581
529
|
minimum: {
|
|
582
|
-
writable: boolean;
|
|
583
530
|
default: number;
|
|
584
531
|
type: string;
|
|
585
532
|
isKey: boolean;
|
|
533
|
+
writable: boolean;
|
|
586
534
|
mandatory: boolean;
|
|
587
535
|
collection: boolean;
|
|
588
536
|
private?: boolean;
|
|
@@ -15,20 +15,7 @@ export class ChronyService extends ExtraSourceService {
|
|
|
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 ChronyService extends ExtraSourceService {
|
|
|
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
|
};
|
|
@@ -80,9 +54,9 @@ export class ChronyService extends ExtraSourceService {
|
|
|
80
54
|
factoryFor(owner: any, value: any): any;
|
|
81
55
|
properties: {
|
|
82
56
|
alias: {
|
|
83
|
-
writable: boolean;
|
|
84
57
|
type: string;
|
|
85
58
|
isKey: boolean;
|
|
59
|
+
writable: boolean;
|
|
86
60
|
mandatory: boolean;
|
|
87
61
|
collection: boolean;
|
|
88
62
|
private?: boolean;
|
|
@@ -123,10 +97,10 @@ export class ChronyService extends ExtraSourceService {
|
|
|
123
97
|
env?: string[] | string;
|
|
124
98
|
};
|
|
125
99
|
protocol: {
|
|
126
|
-
writable: boolean;
|
|
127
100
|
values: string[];
|
|
128
101
|
type: string;
|
|
129
102
|
isKey: boolean;
|
|
103
|
+
writable: boolean;
|
|
130
104
|
mandatory: boolean;
|
|
131
105
|
collection: boolean;
|
|
132
106
|
private?: boolean;
|
|
@@ -138,9 +112,9 @@ export class ChronyService extends ExtraSourceService {
|
|
|
138
112
|
env?: string[] | string;
|
|
139
113
|
};
|
|
140
114
|
type: {
|
|
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;
|
|
@@ -168,23 +142,23 @@ export class ChronyService extends ExtraSourceService {
|
|
|
168
142
|
env?: string[] | string;
|
|
169
143
|
};
|
|
170
144
|
cidrAddresses: {
|
|
171
|
-
writable: boolean;
|
|
172
|
-
collection: boolean;
|
|
173
145
|
type: string;
|
|
174
146
|
isKey: boolean;
|
|
147
|
+
writable: boolean;
|
|
175
148
|
mandatory: boolean;
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
149
|
+
collection: boolean;
|
|
150
|
+
private?: boolean;
|
|
151
|
+
depends?: string;
|
|
152
|
+
description?: string;
|
|
153
|
+
default?: any;
|
|
154
|
+
set?: Function;
|
|
155
|
+
get?: Function;
|
|
156
|
+
env?: string[] | string;
|
|
183
157
|
};
|
|
184
158
|
cidrAddress: {
|
|
185
|
-
writable: boolean;
|
|
186
159
|
type: string;
|
|
187
160
|
isKey: boolean;
|
|
161
|
+
writable: boolean;
|
|
188
162
|
mandatory: boolean;
|
|
189
163
|
collection: boolean;
|
|
190
164
|
private?: boolean;
|
|
@@ -196,23 +170,23 @@ export class ChronyService extends ExtraSourceService {
|
|
|
196
170
|
env?: string[] | string;
|
|
197
171
|
};
|
|
198
172
|
addresses: {
|
|
199
|
-
writable: boolean;
|
|
200
|
-
collection: boolean;
|
|
201
173
|
type: string;
|
|
202
174
|
isKey: boolean;
|
|
175
|
+
writable: boolean;
|
|
203
176
|
mandatory: boolean;
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
177
|
+
collection: boolean;
|
|
178
|
+
private?: boolean;
|
|
179
|
+
depends?: string;
|
|
180
|
+
description?: string;
|
|
181
|
+
default?: any;
|
|
182
|
+
set?: Function;
|
|
183
|
+
get?: Function;
|
|
184
|
+
env?: string[] | string;
|
|
211
185
|
};
|
|
212
186
|
address: {
|
|
213
|
-
writable: boolean;
|
|
214
187
|
type: string;
|
|
215
188
|
isKey: boolean;
|
|
189
|
+
writable: boolean;
|
|
216
190
|
mandatory: boolean;
|
|
217
191
|
collection: boolean;
|
|
218
192
|
private?: boolean;
|
|
@@ -243,20 +217,7 @@ export class ChronyService extends ExtraSourceService {
|
|
|
243
217
|
writable: boolean;
|
|
244
218
|
};
|
|
245
219
|
type: import("pacc").AttributeDefinition;
|
|
246
|
-
name:
|
|
247
|
-
writable: boolean;
|
|
248
|
-
type: string;
|
|
249
|
-
isKey: 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
|
-
env?: string[] | string;
|
|
259
|
-
};
|
|
220
|
+
name: import("pacc").AttributeDefinition;
|
|
260
221
|
description: {
|
|
261
222
|
writable: boolean;
|
|
262
223
|
type: string;
|
|
@@ -286,20 +247,7 @@ export class ChronyService extends ExtraSourceService {
|
|
|
286
247
|
get?: Function;
|
|
287
248
|
env?: string[] | string;
|
|
288
249
|
};
|
|
289
|
-
packaging:
|
|
290
|
-
writable: boolean;
|
|
291
|
-
type: string;
|
|
292
|
-
isKey: boolean;
|
|
293
|
-
mandatory: boolean;
|
|
294
|
-
collection: boolean;
|
|
295
|
-
private?: boolean;
|
|
296
|
-
depends?: string;
|
|
297
|
-
description?: string;
|
|
298
|
-
default?: any;
|
|
299
|
-
set?: Function;
|
|
300
|
-
get?: Function;
|
|
301
|
-
env?: string[] | string;
|
|
302
|
-
};
|
|
250
|
+
packaging: import("pacc").AttributeDefinition;
|
|
303
251
|
disabled: import("pacc").AttributeDefinition;
|
|
304
252
|
tags: import("pacc").AttributeDefinition;
|
|
305
253
|
};
|
|
@@ -308,9 +256,9 @@ export class ChronyService extends ExtraSourceService {
|
|
|
308
256
|
factoryFor(owner: any, value: any): any;
|
|
309
257
|
properties: {
|
|
310
258
|
alias: {
|
|
311
|
-
writable: boolean;
|
|
312
259
|
type: string;
|
|
313
260
|
isKey: boolean;
|
|
261
|
+
writable: boolean;
|
|
314
262
|
mandatory: boolean;
|
|
315
263
|
collection: boolean;
|
|
316
264
|
private?: boolean;
|
|
@@ -351,10 +299,10 @@ export class ChronyService extends ExtraSourceService {
|
|
|
351
299
|
env?: string[] | string;
|
|
352
300
|
};
|
|
353
301
|
protocol: {
|
|
354
|
-
writable: boolean;
|
|
355
302
|
values: string[];
|
|
356
303
|
type: string;
|
|
357
304
|
isKey: boolean;
|
|
305
|
+
writable: boolean;
|
|
358
306
|
mandatory: boolean;
|
|
359
307
|
collection: boolean;
|
|
360
308
|
private?: boolean;
|
|
@@ -366,9 +314,9 @@ export class ChronyService extends ExtraSourceService {
|
|
|
366
314
|
env?: string[] | string;
|
|
367
315
|
};
|
|
368
316
|
type: {
|
|
369
|
-
writable: boolean;
|
|
370
317
|
type: string;
|
|
371
318
|
isKey: boolean;
|
|
319
|
+
writable: boolean;
|
|
372
320
|
mandatory: boolean;
|
|
373
321
|
collection: boolean;
|
|
374
322
|
private?: boolean;
|
|
@@ -396,23 +344,23 @@ export class ChronyService extends ExtraSourceService {
|
|
|
396
344
|
env?: string[] | string;
|
|
397
345
|
};
|
|
398
346
|
cidrAddresses: {
|
|
399
|
-
writable: boolean;
|
|
400
|
-
collection: boolean;
|
|
401
347
|
type: string;
|
|
402
348
|
isKey: boolean;
|
|
349
|
+
writable: boolean;
|
|
403
350
|
mandatory: boolean;
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
351
|
+
collection: boolean;
|
|
352
|
+
private?: boolean;
|
|
353
|
+
depends?: string;
|
|
354
|
+
description?: string;
|
|
355
|
+
default?: any;
|
|
356
|
+
set?: Function;
|
|
357
|
+
get?: Function;
|
|
358
|
+
env?: string[] | string;
|
|
411
359
|
};
|
|
412
360
|
cidrAddress: {
|
|
413
|
-
writable: boolean;
|
|
414
361
|
type: string;
|
|
415
362
|
isKey: boolean;
|
|
363
|
+
writable: boolean;
|
|
416
364
|
mandatory: boolean;
|
|
417
365
|
collection: boolean;
|
|
418
366
|
private?: boolean;
|
|
@@ -424,23 +372,23 @@ export class ChronyService extends ExtraSourceService {
|
|
|
424
372
|
env?: string[] | string;
|
|
425
373
|
};
|
|
426
374
|
addresses: {
|
|
427
|
-
writable: boolean;
|
|
428
|
-
collection: boolean;
|
|
429
375
|
type: string;
|
|
430
376
|
isKey: boolean;
|
|
377
|
+
writable: boolean;
|
|
431
378
|
mandatory: boolean;
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
379
|
+
collection: boolean;
|
|
380
|
+
private?: boolean;
|
|
381
|
+
depends?: string;
|
|
382
|
+
description?: string;
|
|
383
|
+
default?: any;
|
|
384
|
+
set?: Function;
|
|
385
|
+
get?: Function;
|
|
386
|
+
env?: string[] | string;
|
|
439
387
|
};
|
|
440
388
|
address: {
|
|
441
|
-
writable: boolean;
|
|
442
389
|
type: string;
|
|
443
390
|
isKey: boolean;
|
|
391
|
+
writable: boolean;
|
|
444
392
|
mandatory: boolean;
|
|
445
393
|
collection: boolean;
|
|
446
394
|
private?: boolean;
|