pmcf 2.74.3 → 3.0.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/package.json +1 -1
- package/src/base.mjs +5 -7
- package/src/services/bind.mjs +16 -23
- package/src/services/openldap.mjs +4 -6
- package/src/services/systemd-journal-upload.mjs +2 -1
- package/src/subnet.mjs +1 -1
- package/src/types.mjs +1 -1
- package/types/base.d.mts +25 -9
- package/types/cluster.d.mts +51 -20
- package/types/extra-source-service.d.mts +25 -9
- package/types/host.d.mts +25 -9
- package/types/location.d.mts +52 -22
- package/types/network-interfaces/ethernet.d.mts +50 -18
- package/types/network-interfaces/loopback.d.mts +50 -18
- package/types/network-interfaces/network-interface.d.mts +50 -18
- package/types/network-interfaces/wireguard.d.mts +50 -18
- package/types/network-interfaces/wlan.d.mts +75 -27
- package/types/network.d.mts +26 -11
- package/types/owner.d.mts +26 -11
- package/types/root.d.mts +52 -22
- package/types/service.d.mts +50 -18
- package/types/services/bind.d.mts +194 -35
- package/types/services/chrony.d.mts +50 -18
- package/types/services/influxdb.d.mts +50 -18
- package/types/services/kea.d.mts +50 -18
- package/types/services/mosquitto.d.mts +50 -18
- package/types/services/openldap.d.mts +86 -21
- package/types/services/systemd-journal-remote.d.mts +50 -18
- package/types/services/systemd-journal-upload.d.mts +62 -19
- package/types/services/systemd-journal.d.mts +50 -18
- package/types/services/systemd-resolved.d.mts +50 -18
- package/types/services/systemd-timesyncd.d.mts +50 -18
- package/types/subnet.d.mts +1 -2
package/types/owner.d.mts
CHANGED
|
@@ -12,16 +12,22 @@ export class Owner extends Base {
|
|
|
12
12
|
collection: boolean;
|
|
13
13
|
writeable: boolean;
|
|
14
14
|
};
|
|
15
|
-
type:
|
|
16
|
-
type: string;
|
|
17
|
-
collection: boolean;
|
|
18
|
-
writeable: boolean;
|
|
19
|
-
};
|
|
15
|
+
type: import("pacc").AttributeDefinition;
|
|
20
16
|
name: {
|
|
17
|
+
isKey: boolean;
|
|
18
|
+
writeable: boolean;
|
|
21
19
|
type: string;
|
|
20
|
+
writable: boolean;
|
|
21
|
+
mandatory: boolean;
|
|
22
22
|
collection: boolean;
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
private?: boolean;
|
|
24
|
+
depends?: string;
|
|
25
|
+
additionalAttributes: string[];
|
|
26
|
+
description?: string;
|
|
27
|
+
default?: any;
|
|
28
|
+
set?: Function;
|
|
29
|
+
get?: Function;
|
|
30
|
+
env?: string[] | string;
|
|
25
31
|
};
|
|
26
32
|
description: {
|
|
27
33
|
writeable: boolean;
|
|
@@ -77,10 +83,20 @@ export class Owner extends Base {
|
|
|
77
83
|
env?: string[] | string;
|
|
78
84
|
};
|
|
79
85
|
disabled: {
|
|
80
|
-
type: string;
|
|
81
|
-
collection: boolean;
|
|
82
86
|
writeable: boolean;
|
|
83
87
|
default: boolean;
|
|
88
|
+
type: string;
|
|
89
|
+
isKey: boolean;
|
|
90
|
+
writable: boolean;
|
|
91
|
+
mandatory: boolean;
|
|
92
|
+
collection: boolean;
|
|
93
|
+
private?: boolean;
|
|
94
|
+
depends?: string;
|
|
95
|
+
additionalAttributes: string[];
|
|
96
|
+
description?: string;
|
|
97
|
+
set?: Function;
|
|
98
|
+
get?: Function;
|
|
99
|
+
env?: string[] | string;
|
|
84
100
|
};
|
|
85
101
|
tags: {
|
|
86
102
|
collection: boolean;
|
|
@@ -124,9 +140,8 @@ export class Owner extends Base {
|
|
|
124
140
|
constructWithIdentifierOnly: boolean;
|
|
125
141
|
properties: {
|
|
126
142
|
address: {
|
|
127
|
-
identifier: boolean;
|
|
128
|
-
type: string;
|
|
129
143
|
isKey: boolean;
|
|
144
|
+
type: string;
|
|
130
145
|
writable: boolean;
|
|
131
146
|
mandatory: boolean;
|
|
132
147
|
collection: boolean;
|
package/types/root.d.mts
CHANGED
|
@@ -18,16 +18,22 @@ export class Root extends Location {
|
|
|
18
18
|
collection: boolean;
|
|
19
19
|
writeable: boolean;
|
|
20
20
|
};
|
|
21
|
-
type:
|
|
22
|
-
type: string;
|
|
23
|
-
collection: boolean;
|
|
24
|
-
writeable: boolean;
|
|
25
|
-
};
|
|
21
|
+
type: import("pacc").AttributeDefinition;
|
|
26
22
|
name: {
|
|
23
|
+
isKey: boolean;
|
|
24
|
+
writeable: boolean;
|
|
27
25
|
type: string;
|
|
26
|
+
writable: boolean;
|
|
27
|
+
mandatory: boolean;
|
|
28
28
|
collection: boolean;
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
private?: boolean;
|
|
30
|
+
depends?: string;
|
|
31
|
+
additionalAttributes: string[];
|
|
32
|
+
description?: string;
|
|
33
|
+
default?: any;
|
|
34
|
+
set?: Function;
|
|
35
|
+
get?: Function;
|
|
36
|
+
env?: string[] | string;
|
|
31
37
|
};
|
|
32
38
|
description: {
|
|
33
39
|
writeable: boolean;
|
|
@@ -83,10 +89,20 @@ export class Root extends Location {
|
|
|
83
89
|
env?: string[] | string;
|
|
84
90
|
};
|
|
85
91
|
disabled: {
|
|
86
|
-
type: string;
|
|
87
|
-
collection: boolean;
|
|
88
92
|
writeable: boolean;
|
|
89
93
|
default: boolean;
|
|
94
|
+
type: string;
|
|
95
|
+
isKey: boolean;
|
|
96
|
+
writable: boolean;
|
|
97
|
+
mandatory: boolean;
|
|
98
|
+
collection: boolean;
|
|
99
|
+
private?: boolean;
|
|
100
|
+
depends?: string;
|
|
101
|
+
additionalAttributes: string[];
|
|
102
|
+
description?: string;
|
|
103
|
+
set?: Function;
|
|
104
|
+
get?: Function;
|
|
105
|
+
env?: string[] | string;
|
|
90
106
|
};
|
|
91
107
|
tags: {
|
|
92
108
|
collection: boolean;
|
|
@@ -130,9 +146,8 @@ export class Root extends Location {
|
|
|
130
146
|
constructWithIdentifierOnly: boolean;
|
|
131
147
|
properties: {
|
|
132
148
|
address: {
|
|
133
|
-
identifier: boolean;
|
|
134
|
-
type: string;
|
|
135
149
|
isKey: boolean;
|
|
150
|
+
type: string;
|
|
136
151
|
writable: boolean;
|
|
137
152
|
mandatory: boolean;
|
|
138
153
|
collection: boolean;
|
|
@@ -288,16 +303,22 @@ export class Root extends Location {
|
|
|
288
303
|
collection: boolean;
|
|
289
304
|
writeable: boolean;
|
|
290
305
|
};
|
|
291
|
-
type:
|
|
292
|
-
type: string;
|
|
293
|
-
collection: boolean;
|
|
294
|
-
writeable: boolean;
|
|
295
|
-
};
|
|
306
|
+
type: import("pacc").AttributeDefinition;
|
|
296
307
|
name: {
|
|
308
|
+
isKey: boolean;
|
|
309
|
+
writeable: boolean;
|
|
297
310
|
type: string;
|
|
311
|
+
writable: boolean;
|
|
312
|
+
mandatory: boolean;
|
|
298
313
|
collection: boolean;
|
|
299
|
-
|
|
300
|
-
|
|
314
|
+
private?: boolean;
|
|
315
|
+
depends?: string;
|
|
316
|
+
additionalAttributes: string[];
|
|
317
|
+
description?: string;
|
|
318
|
+
default?: any;
|
|
319
|
+
set?: Function;
|
|
320
|
+
get?: Function;
|
|
321
|
+
env?: string[] | string;
|
|
301
322
|
};
|
|
302
323
|
description: {
|
|
303
324
|
writeable: boolean;
|
|
@@ -353,10 +374,20 @@ export class Root extends Location {
|
|
|
353
374
|
env?: string[] | string;
|
|
354
375
|
};
|
|
355
376
|
disabled: {
|
|
356
|
-
type: string;
|
|
357
|
-
collection: boolean;
|
|
358
377
|
writeable: boolean;
|
|
359
378
|
default: boolean;
|
|
379
|
+
type: string;
|
|
380
|
+
isKey: boolean;
|
|
381
|
+
writable: boolean;
|
|
382
|
+
mandatory: boolean;
|
|
383
|
+
collection: boolean;
|
|
384
|
+
private?: boolean;
|
|
385
|
+
depends?: string;
|
|
386
|
+
additionalAttributes: string[];
|
|
387
|
+
description?: string;
|
|
388
|
+
set?: Function;
|
|
389
|
+
get?: Function;
|
|
390
|
+
env?: string[] | string;
|
|
360
391
|
};
|
|
361
392
|
tags: {
|
|
362
393
|
collection: boolean;
|
|
@@ -400,9 +431,8 @@ export class Root extends Location {
|
|
|
400
431
|
constructWithIdentifierOnly: boolean;
|
|
401
432
|
properties: {
|
|
402
433
|
address: {
|
|
403
|
-
identifier: boolean;
|
|
404
|
-
type: string;
|
|
405
434
|
isKey: boolean;
|
|
435
|
+
type: string;
|
|
406
436
|
writable: boolean;
|
|
407
437
|
mandatory: boolean;
|
|
408
438
|
collection: boolean;
|
package/types/service.d.mts
CHANGED
|
@@ -111,16 +111,22 @@ export namespace ServiceTypeDefinition {
|
|
|
111
111
|
collection: boolean;
|
|
112
112
|
writeable: boolean;
|
|
113
113
|
};
|
|
114
|
-
type:
|
|
115
|
-
type: string;
|
|
116
|
-
collection: boolean;
|
|
117
|
-
writeable: boolean;
|
|
118
|
-
};
|
|
114
|
+
type: import("pacc").AttributeDefinition;
|
|
119
115
|
name: {
|
|
116
|
+
isKey: boolean;
|
|
117
|
+
writeable: boolean;
|
|
120
118
|
type: string;
|
|
119
|
+
writable: boolean;
|
|
120
|
+
mandatory: boolean;
|
|
121
121
|
collection: boolean;
|
|
122
|
-
|
|
123
|
-
|
|
122
|
+
private?: boolean;
|
|
123
|
+
depends?: string;
|
|
124
|
+
additionalAttributes: string[];
|
|
125
|
+
description?: string;
|
|
126
|
+
default?: any;
|
|
127
|
+
set?: Function;
|
|
128
|
+
get?: Function;
|
|
129
|
+
env?: string[] | string;
|
|
124
130
|
};
|
|
125
131
|
description: {
|
|
126
132
|
writeable: boolean;
|
|
@@ -176,10 +182,20 @@ export namespace ServiceTypeDefinition {
|
|
|
176
182
|
env?: string[] | string;
|
|
177
183
|
};
|
|
178
184
|
disabled: {
|
|
179
|
-
type: string;
|
|
180
|
-
collection: boolean;
|
|
181
185
|
writeable: boolean;
|
|
182
186
|
default: boolean;
|
|
187
|
+
type: string;
|
|
188
|
+
isKey: boolean;
|
|
189
|
+
writable: boolean;
|
|
190
|
+
mandatory: boolean;
|
|
191
|
+
collection: boolean;
|
|
192
|
+
private?: boolean;
|
|
193
|
+
depends?: string;
|
|
194
|
+
additionalAttributes: string[];
|
|
195
|
+
description?: string;
|
|
196
|
+
set?: Function;
|
|
197
|
+
get?: Function;
|
|
198
|
+
env?: string[] | string;
|
|
183
199
|
};
|
|
184
200
|
tags: {
|
|
185
201
|
collection: boolean;
|
|
@@ -396,16 +412,22 @@ export class Service extends Base {
|
|
|
396
412
|
collection: boolean;
|
|
397
413
|
writeable: boolean;
|
|
398
414
|
};
|
|
399
|
-
type:
|
|
400
|
-
type: string;
|
|
401
|
-
collection: boolean;
|
|
402
|
-
writeable: boolean;
|
|
403
|
-
};
|
|
415
|
+
type: import("pacc").AttributeDefinition;
|
|
404
416
|
name: {
|
|
417
|
+
isKey: boolean;
|
|
418
|
+
writeable: boolean;
|
|
405
419
|
type: string;
|
|
420
|
+
writable: boolean;
|
|
421
|
+
mandatory: boolean;
|
|
406
422
|
collection: boolean;
|
|
407
|
-
|
|
408
|
-
|
|
423
|
+
private?: boolean;
|
|
424
|
+
depends?: string;
|
|
425
|
+
additionalAttributes: string[];
|
|
426
|
+
description?: string;
|
|
427
|
+
default?: any;
|
|
428
|
+
set?: Function;
|
|
429
|
+
get?: Function;
|
|
430
|
+
env?: string[] | string;
|
|
409
431
|
};
|
|
410
432
|
description: {
|
|
411
433
|
writeable: boolean;
|
|
@@ -461,10 +483,20 @@ export class Service extends Base {
|
|
|
461
483
|
env?: string[] | string;
|
|
462
484
|
};
|
|
463
485
|
disabled: {
|
|
464
|
-
type: string;
|
|
465
|
-
collection: boolean;
|
|
466
486
|
writeable: boolean;
|
|
467
487
|
default: boolean;
|
|
488
|
+
type: string;
|
|
489
|
+
isKey: boolean;
|
|
490
|
+
writable: boolean;
|
|
491
|
+
mandatory: boolean;
|
|
492
|
+
collection: boolean;
|
|
493
|
+
private?: boolean;
|
|
494
|
+
depends?: string;
|
|
495
|
+
additionalAttributes: string[];
|
|
496
|
+
description?: string;
|
|
497
|
+
set?: Function;
|
|
498
|
+
get?: Function;
|
|
499
|
+
env?: string[] | string;
|
|
468
500
|
};
|
|
469
501
|
tags: {
|
|
470
502
|
collection: boolean;
|
|
@@ -14,16 +14,22 @@ export class BindService extends ExtraSourceService {
|
|
|
14
14
|
collection: boolean;
|
|
15
15
|
writeable: boolean;
|
|
16
16
|
};
|
|
17
|
-
type:
|
|
18
|
-
type: string;
|
|
19
|
-
collection: boolean;
|
|
20
|
-
writeable: boolean;
|
|
21
|
-
};
|
|
17
|
+
type: import("pacc").AttributeDefinition;
|
|
22
18
|
name: {
|
|
19
|
+
isKey: boolean;
|
|
20
|
+
writeable: boolean;
|
|
23
21
|
type: string;
|
|
22
|
+
writable: boolean;
|
|
23
|
+
mandatory: boolean;
|
|
24
24
|
collection: boolean;
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
private?: boolean;
|
|
26
|
+
depends?: string;
|
|
27
|
+
additionalAttributes: string[];
|
|
28
|
+
description?: string;
|
|
29
|
+
default?: any;
|
|
30
|
+
set?: Function;
|
|
31
|
+
get?: Function;
|
|
32
|
+
env?: string[] | string;
|
|
27
33
|
};
|
|
28
34
|
description: {
|
|
29
35
|
writeable: boolean;
|
|
@@ -79,10 +85,20 @@ export class BindService extends ExtraSourceService {
|
|
|
79
85
|
env?: string[] | string;
|
|
80
86
|
};
|
|
81
87
|
disabled: {
|
|
82
|
-
type: string;
|
|
83
|
-
collection: boolean;
|
|
84
88
|
writeable: boolean;
|
|
85
89
|
default: boolean;
|
|
90
|
+
type: string;
|
|
91
|
+
isKey: boolean;
|
|
92
|
+
writable: boolean;
|
|
93
|
+
mandatory: boolean;
|
|
94
|
+
collection: boolean;
|
|
95
|
+
private?: boolean;
|
|
96
|
+
depends?: string;
|
|
97
|
+
additionalAttributes: string[];
|
|
98
|
+
description?: string;
|
|
99
|
+
set?: Function;
|
|
100
|
+
get?: Function;
|
|
101
|
+
env?: string[] | string;
|
|
86
102
|
};
|
|
87
103
|
tags: {
|
|
88
104
|
collection: boolean;
|
|
@@ -300,16 +316,22 @@ export class BindService extends ExtraSourceService {
|
|
|
300
316
|
collection: boolean;
|
|
301
317
|
writeable: boolean;
|
|
302
318
|
};
|
|
303
|
-
type:
|
|
304
|
-
type: string;
|
|
305
|
-
collection: boolean;
|
|
306
|
-
writeable: boolean;
|
|
307
|
-
};
|
|
319
|
+
type: import("pacc").AttributeDefinition;
|
|
308
320
|
name: {
|
|
321
|
+
isKey: boolean;
|
|
322
|
+
writeable: boolean;
|
|
309
323
|
type: string;
|
|
324
|
+
writable: boolean;
|
|
325
|
+
mandatory: boolean;
|
|
310
326
|
collection: boolean;
|
|
311
|
-
|
|
312
|
-
|
|
327
|
+
private?: boolean;
|
|
328
|
+
depends?: string;
|
|
329
|
+
additionalAttributes: string[];
|
|
330
|
+
description?: string;
|
|
331
|
+
default?: any;
|
|
332
|
+
set?: Function;
|
|
333
|
+
get?: Function;
|
|
334
|
+
env?: string[] | string;
|
|
313
335
|
};
|
|
314
336
|
description: {
|
|
315
337
|
writeable: boolean;
|
|
@@ -365,10 +387,20 @@ export class BindService extends ExtraSourceService {
|
|
|
365
387
|
env?: string[] | string;
|
|
366
388
|
};
|
|
367
389
|
disabled: {
|
|
368
|
-
type: string;
|
|
369
|
-
collection: boolean;
|
|
370
390
|
writeable: boolean;
|
|
371
391
|
default: boolean;
|
|
392
|
+
type: string;
|
|
393
|
+
isKey: boolean;
|
|
394
|
+
writable: boolean;
|
|
395
|
+
mandatory: boolean;
|
|
396
|
+
collection: boolean;
|
|
397
|
+
private?: boolean;
|
|
398
|
+
depends?: string;
|
|
399
|
+
additionalAttributes: string[];
|
|
400
|
+
description?: string;
|
|
401
|
+
set?: Function;
|
|
402
|
+
get?: Function;
|
|
403
|
+
env?: string[] | string;
|
|
372
404
|
};
|
|
373
405
|
tags: {
|
|
374
406
|
collection: boolean;
|
|
@@ -601,33 +633,84 @@ export class BindService extends ExtraSourceService {
|
|
|
601
633
|
writeable: boolean;
|
|
602
634
|
};
|
|
603
635
|
hasSVRRecords: {
|
|
636
|
+
writeable: boolean;
|
|
604
637
|
type: string;
|
|
638
|
+
isKey: boolean;
|
|
639
|
+
writable: boolean;
|
|
640
|
+
mandatory: boolean;
|
|
605
641
|
collection: boolean;
|
|
606
|
-
|
|
607
|
-
|
|
642
|
+
private?: boolean;
|
|
643
|
+
depends?: string;
|
|
644
|
+
additionalAttributes: string[];
|
|
645
|
+
description?: string;
|
|
646
|
+
default?: any;
|
|
647
|
+
set?: Function;
|
|
648
|
+
get?: Function;
|
|
649
|
+
env?: string[] | string;
|
|
608
650
|
};
|
|
609
651
|
hasCatalog: {
|
|
652
|
+
writeable: boolean;
|
|
610
653
|
type: string;
|
|
654
|
+
isKey: boolean;
|
|
655
|
+
writable: boolean;
|
|
656
|
+
mandatory: boolean;
|
|
611
657
|
collection: boolean;
|
|
612
|
-
|
|
613
|
-
|
|
658
|
+
private?: boolean;
|
|
659
|
+
depends?: string;
|
|
660
|
+
additionalAttributes: string[];
|
|
661
|
+
description?: string;
|
|
662
|
+
default?: any;
|
|
663
|
+
set?: Function;
|
|
664
|
+
get?: Function;
|
|
665
|
+
env?: string[] | string;
|
|
614
666
|
};
|
|
615
667
|
hasLinkLocalAdresses: {
|
|
668
|
+
writeable: boolean;
|
|
616
669
|
type: string;
|
|
670
|
+
isKey: boolean;
|
|
671
|
+
writable: boolean;
|
|
672
|
+
mandatory: boolean;
|
|
617
673
|
collection: boolean;
|
|
618
|
-
|
|
619
|
-
|
|
674
|
+
private?: boolean;
|
|
675
|
+
depends?: string;
|
|
676
|
+
additionalAttributes: string[];
|
|
677
|
+
description?: string;
|
|
678
|
+
default?: any;
|
|
679
|
+
set?: Function;
|
|
680
|
+
get?: Function;
|
|
681
|
+
env?: string[] | string;
|
|
620
682
|
};
|
|
621
683
|
hasLocationRecord: {
|
|
622
|
-
type: string;
|
|
623
|
-
collection: boolean;
|
|
624
684
|
writeable: boolean;
|
|
625
685
|
default: boolean;
|
|
686
|
+
type: string;
|
|
687
|
+
isKey: boolean;
|
|
688
|
+
writable: boolean;
|
|
689
|
+
mandatory: boolean;
|
|
690
|
+
collection: boolean;
|
|
691
|
+
private?: boolean;
|
|
692
|
+
depends?: string;
|
|
693
|
+
additionalAttributes: string[];
|
|
694
|
+
description?: string;
|
|
695
|
+
set?: Function;
|
|
696
|
+
get?: Function;
|
|
697
|
+
env?: string[] | string;
|
|
626
698
|
};
|
|
627
699
|
excludeInterfaceKinds: {
|
|
628
|
-
type: string;
|
|
629
700
|
collection: boolean;
|
|
630
701
|
writeable: boolean;
|
|
702
|
+
type: string;
|
|
703
|
+
isKey: boolean;
|
|
704
|
+
writable: boolean;
|
|
705
|
+
mandatory: boolean;
|
|
706
|
+
private?: boolean;
|
|
707
|
+
depends?: string;
|
|
708
|
+
additionalAttributes: string[];
|
|
709
|
+
description?: string;
|
|
710
|
+
default?: any;
|
|
711
|
+
set?: Function;
|
|
712
|
+
get?: Function;
|
|
713
|
+
env?: string[] | string;
|
|
631
714
|
};
|
|
632
715
|
exclude: {
|
|
633
716
|
type: string[];
|
|
@@ -635,15 +718,36 @@ export class BindService extends ExtraSourceService {
|
|
|
635
718
|
writeable: boolean;
|
|
636
719
|
};
|
|
637
720
|
notify: {
|
|
638
|
-
type: string;
|
|
639
|
-
collection: boolean;
|
|
640
721
|
writeable: boolean;
|
|
641
722
|
default: boolean;
|
|
723
|
+
type: string;
|
|
724
|
+
isKey: boolean;
|
|
725
|
+
writable: boolean;
|
|
726
|
+
mandatory: boolean;
|
|
727
|
+
collection: boolean;
|
|
728
|
+
private?: boolean;
|
|
729
|
+
depends?: string;
|
|
730
|
+
additionalAttributes: string[];
|
|
731
|
+
description?: string;
|
|
732
|
+
set?: Function;
|
|
733
|
+
get?: Function;
|
|
734
|
+
env?: string[] | string;
|
|
642
735
|
};
|
|
643
736
|
recordTTL: {
|
|
737
|
+
writeable: boolean;
|
|
644
738
|
type: string;
|
|
739
|
+
isKey: boolean;
|
|
740
|
+
writable: boolean;
|
|
741
|
+
mandatory: boolean;
|
|
645
742
|
collection: boolean;
|
|
646
|
-
|
|
743
|
+
private?: boolean;
|
|
744
|
+
depends?: string;
|
|
745
|
+
additionalAttributes: string[];
|
|
746
|
+
description?: string;
|
|
747
|
+
default?: any;
|
|
748
|
+
set?: Function;
|
|
749
|
+
get?: Function;
|
|
750
|
+
env?: string[] | string;
|
|
647
751
|
};
|
|
648
752
|
serial: {
|
|
649
753
|
type: string;
|
|
@@ -651,29 +755,84 @@ export class BindService extends ExtraSourceService {
|
|
|
651
755
|
writeable: boolean;
|
|
652
756
|
};
|
|
653
757
|
refresh: {
|
|
758
|
+
writeable: boolean;
|
|
654
759
|
type: string;
|
|
760
|
+
isKey: boolean;
|
|
761
|
+
writable: boolean;
|
|
762
|
+
mandatory: boolean;
|
|
655
763
|
collection: boolean;
|
|
656
|
-
|
|
764
|
+
private?: boolean;
|
|
765
|
+
depends?: string;
|
|
766
|
+
additionalAttributes: string[];
|
|
767
|
+
description?: string;
|
|
768
|
+
default?: any;
|
|
769
|
+
set?: Function;
|
|
770
|
+
get?: Function;
|
|
771
|
+
env?: string[] | string;
|
|
657
772
|
};
|
|
658
773
|
retry: {
|
|
774
|
+
writeable: boolean;
|
|
659
775
|
type: string;
|
|
776
|
+
isKey: boolean;
|
|
777
|
+
writable: boolean;
|
|
778
|
+
mandatory: boolean;
|
|
660
779
|
collection: boolean;
|
|
661
|
-
|
|
780
|
+
private?: boolean;
|
|
781
|
+
depends?: string;
|
|
782
|
+
additionalAttributes: string[];
|
|
783
|
+
description?: string;
|
|
784
|
+
default?: any;
|
|
785
|
+
set?: Function;
|
|
786
|
+
get?: Function;
|
|
787
|
+
env?: string[] | string;
|
|
662
788
|
};
|
|
663
789
|
expire: {
|
|
790
|
+
writeable: boolean;
|
|
664
791
|
type: string;
|
|
792
|
+
isKey: boolean;
|
|
793
|
+
writable: boolean;
|
|
794
|
+
mandatory: boolean;
|
|
665
795
|
collection: boolean;
|
|
666
|
-
|
|
796
|
+
private?: boolean;
|
|
797
|
+
depends?: string;
|
|
798
|
+
additionalAttributes: string[];
|
|
799
|
+
description?: string;
|
|
800
|
+
default?: any;
|
|
801
|
+
set?: Function;
|
|
802
|
+
get?: Function;
|
|
803
|
+
env?: string[] | string;
|
|
667
804
|
};
|
|
668
805
|
minimum: {
|
|
806
|
+
writeable: boolean;
|
|
669
807
|
type: string;
|
|
808
|
+
isKey: boolean;
|
|
809
|
+
writable: boolean;
|
|
810
|
+
mandatory: boolean;
|
|
670
811
|
collection: boolean;
|
|
671
|
-
|
|
812
|
+
private?: boolean;
|
|
813
|
+
depends?: string;
|
|
814
|
+
additionalAttributes: string[];
|
|
815
|
+
description?: string;
|
|
816
|
+
default?: any;
|
|
817
|
+
set?: Function;
|
|
818
|
+
get?: Function;
|
|
819
|
+
env?: string[] | string;
|
|
672
820
|
};
|
|
673
821
|
allowedUpdates: {
|
|
674
|
-
type: string;
|
|
675
822
|
collection: boolean;
|
|
676
823
|
writeable: boolean;
|
|
824
|
+
type: string;
|
|
825
|
+
isKey: boolean;
|
|
826
|
+
writable: boolean;
|
|
827
|
+
mandatory: boolean;
|
|
828
|
+
private?: boolean;
|
|
829
|
+
depends?: string;
|
|
830
|
+
additionalAttributes: string[];
|
|
831
|
+
description?: string;
|
|
832
|
+
default?: any;
|
|
833
|
+
set?: Function;
|
|
834
|
+
get?: Function;
|
|
835
|
+
env?: string[] | string;
|
|
677
836
|
};
|
|
678
837
|
};
|
|
679
838
|
service: {
|