pmcf 3.0.0 → 3.1.1
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 +9 -9
- package/src/cluster.mjs +5 -5
- package/src/extra-source-service.mjs +1 -1
- package/src/host.mjs +19 -19
- package/src/location.mjs +1 -1
- package/src/network-interfaces/ethernet.mjs +1 -1
- package/src/network-interfaces/network-interface.mjs +6 -6
- package/src/network-support.mjs +14 -14
- package/src/network.mjs +2 -2
- package/src/owner.mjs +11 -11
- package/src/service.mjs +7 -7
- package/src/services/bind.mjs +18 -18
- package/src/services/chrony.mjs +0 -1
- package/src/services/kea.mjs +47 -6
- package/src/services/openldap.mjs +3 -3
- package/src/services/systemd-journal-upload.mjs +1 -1
- package/src/subnet.mjs +2 -2
- package/types/base.d.mts +8 -14
- package/types/cluster.d.mts +58 -95
- package/types/extra-source-service.d.mts +22 -37
- package/types/host.d.mts +32 -56
- package/types/location.d.mts +43 -70
- package/types/network-interfaces/ethernet.d.mts +56 -96
- package/types/network-interfaces/loopback.d.mts +54 -94
- package/types/network-interfaces/network-interface.d.mts +54 -94
- package/types/network-interfaces/wireguard.d.mts +54 -94
- package/types/network-interfaces/wlan.d.mts +82 -142
- package/types/network-support.d.mts +16 -27
- package/types/network.d.mts +31 -50
- package/types/owner.d.mts +21 -34
- package/types/root.d.mts +43 -70
- package/types/service.d.mts +44 -77
- package/types/services/bind.d.mts +59 -101
- package/types/services/chrony.d.mts +41 -71
- package/types/services/influxdb.d.mts +40 -70
- package/types/services/kea.d.mts +122 -71
- package/types/services/mosquitto.d.mts +40 -70
- package/types/services/openldap.d.mts +43 -76
- package/types/services/systemd-journal-remote.d.mts +40 -70
- package/types/services/systemd-journal-upload.d.mts +41 -72
- package/types/services/systemd-journal.d.mts +40 -70
- package/types/services/systemd-resolved.d.mts +40 -70
- package/types/services/systemd-timesyncd.d.mts +40 -70
- package/types/subnet.d.mts +2 -2
|
@@ -12,14 +12,13 @@ export class BindService extends ExtraSourceService {
|
|
|
12
12
|
owner: {
|
|
13
13
|
type: string;
|
|
14
14
|
collection: boolean;
|
|
15
|
-
|
|
15
|
+
writable: boolean;
|
|
16
16
|
};
|
|
17
17
|
type: import("pacc").AttributeDefinition;
|
|
18
18
|
name: {
|
|
19
19
|
isKey: boolean;
|
|
20
|
-
writeable: boolean;
|
|
21
|
-
type: string;
|
|
22
20
|
writable: boolean;
|
|
21
|
+
type: string;
|
|
23
22
|
mandatory: boolean;
|
|
24
23
|
collection: boolean;
|
|
25
24
|
private?: boolean;
|
|
@@ -32,10 +31,9 @@ export class BindService extends ExtraSourceService {
|
|
|
32
31
|
env?: string[] | string;
|
|
33
32
|
};
|
|
34
33
|
description: {
|
|
35
|
-
|
|
34
|
+
writable: boolean;
|
|
36
35
|
type: string;
|
|
37
36
|
isKey: boolean;
|
|
38
|
-
writable: boolean;
|
|
39
37
|
mandatory: boolean;
|
|
40
38
|
collection: boolean;
|
|
41
39
|
private?: boolean;
|
|
@@ -50,13 +48,12 @@ export class BindService extends ExtraSourceService {
|
|
|
50
48
|
priority: {
|
|
51
49
|
type: string;
|
|
52
50
|
collection: boolean;
|
|
53
|
-
|
|
51
|
+
writable: boolean;
|
|
54
52
|
};
|
|
55
53
|
directory: {
|
|
56
|
-
|
|
54
|
+
writable: boolean;
|
|
57
55
|
type: string;
|
|
58
56
|
isKey: boolean;
|
|
59
|
-
writable: boolean;
|
|
60
57
|
mandatory: boolean;
|
|
61
58
|
collection: boolean;
|
|
62
59
|
private?: boolean;
|
|
@@ -69,10 +66,9 @@ export class BindService extends ExtraSourceService {
|
|
|
69
66
|
env?: string[] | string;
|
|
70
67
|
};
|
|
71
68
|
packaging: {
|
|
72
|
-
|
|
69
|
+
writable: boolean;
|
|
73
70
|
type: string;
|
|
74
71
|
isKey: boolean;
|
|
75
|
-
writable: boolean;
|
|
76
72
|
mandatory: boolean;
|
|
77
73
|
collection: boolean;
|
|
78
74
|
private?: boolean;
|
|
@@ -85,11 +81,10 @@ export class BindService extends ExtraSourceService {
|
|
|
85
81
|
env?: string[] | string;
|
|
86
82
|
};
|
|
87
83
|
disabled: {
|
|
88
|
-
|
|
84
|
+
writable: boolean;
|
|
89
85
|
default: boolean;
|
|
90
86
|
type: string;
|
|
91
87
|
isKey: boolean;
|
|
92
|
-
writable: boolean;
|
|
93
88
|
mandatory: boolean;
|
|
94
89
|
collection: boolean;
|
|
95
90
|
private?: boolean;
|
|
@@ -102,10 +97,9 @@ export class BindService extends ExtraSourceService {
|
|
|
102
97
|
};
|
|
103
98
|
tags: {
|
|
104
99
|
collection: boolean;
|
|
105
|
-
|
|
100
|
+
writable: boolean;
|
|
106
101
|
type: string;
|
|
107
102
|
isKey: boolean;
|
|
108
|
-
writable: boolean;
|
|
109
103
|
mandatory: boolean;
|
|
110
104
|
private?: boolean;
|
|
111
105
|
depends?: string;
|
|
@@ -122,10 +116,9 @@ export class BindService extends ExtraSourceService {
|
|
|
122
116
|
factoryFor(owner: any, value: any): any;
|
|
123
117
|
properties: {
|
|
124
118
|
alias: {
|
|
125
|
-
|
|
119
|
+
writable: boolean;
|
|
126
120
|
type: string;
|
|
127
121
|
isKey: boolean;
|
|
128
|
-
writable: boolean;
|
|
129
122
|
mandatory: boolean;
|
|
130
123
|
collection: boolean;
|
|
131
124
|
private?: boolean;
|
|
@@ -140,25 +133,24 @@ export class BindService extends ExtraSourceService {
|
|
|
140
133
|
weight: {
|
|
141
134
|
type: string;
|
|
142
135
|
collection: boolean;
|
|
143
|
-
|
|
136
|
+
writable: boolean;
|
|
144
137
|
default: number;
|
|
145
138
|
};
|
|
146
139
|
systemd: {
|
|
147
140
|
type: string;
|
|
148
141
|
collection: boolean;
|
|
149
|
-
|
|
142
|
+
writable: boolean;
|
|
150
143
|
};
|
|
151
144
|
port: {
|
|
152
145
|
type: string;
|
|
153
146
|
collection: boolean;
|
|
154
|
-
|
|
147
|
+
writable: boolean;
|
|
155
148
|
};
|
|
156
149
|
protocol: {
|
|
157
|
-
|
|
150
|
+
writable: boolean;
|
|
158
151
|
values: string[];
|
|
159
152
|
type: string;
|
|
160
153
|
isKey: boolean;
|
|
161
|
-
writable: boolean;
|
|
162
154
|
mandatory: boolean;
|
|
163
155
|
collection: boolean;
|
|
164
156
|
private?: boolean;
|
|
@@ -171,10 +163,9 @@ export class BindService extends ExtraSourceService {
|
|
|
171
163
|
env?: string[] | string;
|
|
172
164
|
};
|
|
173
165
|
type: {
|
|
174
|
-
|
|
166
|
+
writable: boolean;
|
|
175
167
|
type: string;
|
|
176
168
|
isKey: boolean;
|
|
177
|
-
writable: boolean;
|
|
178
169
|
mandatory: boolean;
|
|
179
170
|
collection: boolean;
|
|
180
171
|
private?: boolean;
|
|
@@ -202,10 +193,9 @@ export class BindService extends ExtraSourceService {
|
|
|
202
193
|
env?: string[] | string;
|
|
203
194
|
};
|
|
204
195
|
tls: {
|
|
205
|
-
|
|
196
|
+
writable: boolean;
|
|
206
197
|
type: string;
|
|
207
198
|
isKey: boolean;
|
|
208
|
-
writable: boolean;
|
|
209
199
|
mandatory: boolean;
|
|
210
200
|
collection: boolean;
|
|
211
201
|
private?: boolean;
|
|
@@ -218,10 +208,9 @@ export class BindService extends ExtraSourceService {
|
|
|
218
208
|
env?: string[] | string;
|
|
219
209
|
};
|
|
220
210
|
hostName: {
|
|
221
|
-
|
|
211
|
+
writable: boolean;
|
|
222
212
|
type: string;
|
|
223
213
|
isKey: boolean;
|
|
224
|
-
writable: boolean;
|
|
225
214
|
mandatory: boolean;
|
|
226
215
|
collection: boolean;
|
|
227
216
|
private?: boolean;
|
|
@@ -235,10 +224,9 @@ export class BindService extends ExtraSourceService {
|
|
|
235
224
|
};
|
|
236
225
|
cidrAddresses: {
|
|
237
226
|
collection: boolean;
|
|
238
|
-
|
|
227
|
+
writable: boolean;
|
|
239
228
|
type: string;
|
|
240
229
|
isKey: boolean;
|
|
241
|
-
writable: boolean;
|
|
242
230
|
mandatory: boolean;
|
|
243
231
|
private?: boolean;
|
|
244
232
|
depends?: string;
|
|
@@ -250,10 +238,9 @@ export class BindService extends ExtraSourceService {
|
|
|
250
238
|
env?: string[] | string;
|
|
251
239
|
};
|
|
252
240
|
cidrAddress: {
|
|
253
|
-
|
|
241
|
+
writable: boolean;
|
|
254
242
|
type: string;
|
|
255
243
|
isKey: boolean;
|
|
256
|
-
writable: boolean;
|
|
257
244
|
mandatory: boolean;
|
|
258
245
|
collection: boolean;
|
|
259
246
|
private?: boolean;
|
|
@@ -267,10 +254,9 @@ export class BindService extends ExtraSourceService {
|
|
|
267
254
|
};
|
|
268
255
|
addresses: {
|
|
269
256
|
collection: boolean;
|
|
270
|
-
|
|
257
|
+
writable: boolean;
|
|
271
258
|
type: string;
|
|
272
259
|
isKey: boolean;
|
|
273
|
-
writable: boolean;
|
|
274
260
|
mandatory: boolean;
|
|
275
261
|
private?: boolean;
|
|
276
262
|
depends?: string;
|
|
@@ -282,10 +268,9 @@ export class BindService extends ExtraSourceService {
|
|
|
282
268
|
env?: string[] | string;
|
|
283
269
|
};
|
|
284
270
|
address: {
|
|
285
|
-
|
|
271
|
+
writable: boolean;
|
|
286
272
|
type: string;
|
|
287
273
|
isKey: boolean;
|
|
288
|
-
writable: boolean;
|
|
289
274
|
mandatory: boolean;
|
|
290
275
|
collection: boolean;
|
|
291
276
|
private?: boolean;
|
|
@@ -314,14 +299,13 @@ export class BindService extends ExtraSourceService {
|
|
|
314
299
|
owner: {
|
|
315
300
|
type: string;
|
|
316
301
|
collection: boolean;
|
|
317
|
-
|
|
302
|
+
writable: boolean;
|
|
318
303
|
};
|
|
319
304
|
type: import("pacc").AttributeDefinition;
|
|
320
305
|
name: {
|
|
321
306
|
isKey: boolean;
|
|
322
|
-
writeable: boolean;
|
|
323
|
-
type: string;
|
|
324
307
|
writable: boolean;
|
|
308
|
+
type: string;
|
|
325
309
|
mandatory: boolean;
|
|
326
310
|
collection: boolean;
|
|
327
311
|
private?: boolean;
|
|
@@ -334,10 +318,9 @@ export class BindService extends ExtraSourceService {
|
|
|
334
318
|
env?: string[] | string;
|
|
335
319
|
};
|
|
336
320
|
description: {
|
|
337
|
-
|
|
321
|
+
writable: boolean;
|
|
338
322
|
type: string;
|
|
339
323
|
isKey: boolean;
|
|
340
|
-
writable: boolean;
|
|
341
324
|
mandatory: boolean;
|
|
342
325
|
collection: boolean;
|
|
343
326
|
private?: boolean;
|
|
@@ -352,13 +335,12 @@ export class BindService extends ExtraSourceService {
|
|
|
352
335
|
priority: {
|
|
353
336
|
type: string;
|
|
354
337
|
collection: boolean;
|
|
355
|
-
|
|
338
|
+
writable: boolean;
|
|
356
339
|
};
|
|
357
340
|
directory: {
|
|
358
|
-
|
|
341
|
+
writable: boolean;
|
|
359
342
|
type: string;
|
|
360
343
|
isKey: boolean;
|
|
361
|
-
writable: boolean;
|
|
362
344
|
mandatory: boolean;
|
|
363
345
|
collection: boolean;
|
|
364
346
|
private?: boolean;
|
|
@@ -371,10 +353,9 @@ export class BindService extends ExtraSourceService {
|
|
|
371
353
|
env?: string[] | string;
|
|
372
354
|
};
|
|
373
355
|
packaging: {
|
|
374
|
-
|
|
356
|
+
writable: boolean;
|
|
375
357
|
type: string;
|
|
376
358
|
isKey: boolean;
|
|
377
|
-
writable: boolean;
|
|
378
359
|
mandatory: boolean;
|
|
379
360
|
collection: boolean;
|
|
380
361
|
private?: boolean;
|
|
@@ -387,11 +368,10 @@ export class BindService extends ExtraSourceService {
|
|
|
387
368
|
env?: string[] | string;
|
|
388
369
|
};
|
|
389
370
|
disabled: {
|
|
390
|
-
|
|
371
|
+
writable: boolean;
|
|
391
372
|
default: boolean;
|
|
392
373
|
type: string;
|
|
393
374
|
isKey: boolean;
|
|
394
|
-
writable: boolean;
|
|
395
375
|
mandatory: boolean;
|
|
396
376
|
collection: boolean;
|
|
397
377
|
private?: boolean;
|
|
@@ -404,10 +384,9 @@ export class BindService extends ExtraSourceService {
|
|
|
404
384
|
};
|
|
405
385
|
tags: {
|
|
406
386
|
collection: boolean;
|
|
407
|
-
|
|
387
|
+
writable: boolean;
|
|
408
388
|
type: string;
|
|
409
389
|
isKey: boolean;
|
|
410
|
-
writable: boolean;
|
|
411
390
|
mandatory: boolean;
|
|
412
391
|
private?: boolean;
|
|
413
392
|
depends?: string;
|
|
@@ -424,10 +403,9 @@ export class BindService extends ExtraSourceService {
|
|
|
424
403
|
factoryFor(owner: any, value: any): any;
|
|
425
404
|
properties: {
|
|
426
405
|
alias: {
|
|
427
|
-
|
|
406
|
+
writable: boolean;
|
|
428
407
|
type: string;
|
|
429
408
|
isKey: boolean;
|
|
430
|
-
writable: boolean;
|
|
431
409
|
mandatory: boolean;
|
|
432
410
|
collection: boolean;
|
|
433
411
|
private?: boolean;
|
|
@@ -442,25 +420,24 @@ export class BindService extends ExtraSourceService {
|
|
|
442
420
|
weight: {
|
|
443
421
|
type: string;
|
|
444
422
|
collection: boolean;
|
|
445
|
-
|
|
423
|
+
writable: boolean;
|
|
446
424
|
default: number;
|
|
447
425
|
};
|
|
448
426
|
systemd: {
|
|
449
427
|
type: string;
|
|
450
428
|
collection: boolean;
|
|
451
|
-
|
|
429
|
+
writable: boolean;
|
|
452
430
|
};
|
|
453
431
|
port: {
|
|
454
432
|
type: string;
|
|
455
433
|
collection: boolean;
|
|
456
|
-
|
|
434
|
+
writable: boolean;
|
|
457
435
|
};
|
|
458
436
|
protocol: {
|
|
459
|
-
|
|
437
|
+
writable: boolean;
|
|
460
438
|
values: string[];
|
|
461
439
|
type: string;
|
|
462
440
|
isKey: boolean;
|
|
463
|
-
writable: boolean;
|
|
464
441
|
mandatory: boolean;
|
|
465
442
|
collection: boolean;
|
|
466
443
|
private?: boolean;
|
|
@@ -473,10 +450,9 @@ export class BindService extends ExtraSourceService {
|
|
|
473
450
|
env?: string[] | string;
|
|
474
451
|
};
|
|
475
452
|
type: {
|
|
476
|
-
|
|
453
|
+
writable: boolean;
|
|
477
454
|
type: string;
|
|
478
455
|
isKey: boolean;
|
|
479
|
-
writable: boolean;
|
|
480
456
|
mandatory: boolean;
|
|
481
457
|
collection: boolean;
|
|
482
458
|
private?: boolean;
|
|
@@ -504,10 +480,9 @@ export class BindService extends ExtraSourceService {
|
|
|
504
480
|
env?: string[] | string;
|
|
505
481
|
};
|
|
506
482
|
tls: {
|
|
507
|
-
|
|
483
|
+
writable: boolean;
|
|
508
484
|
type: string;
|
|
509
485
|
isKey: boolean;
|
|
510
|
-
writable: boolean;
|
|
511
486
|
mandatory: boolean;
|
|
512
487
|
collection: boolean;
|
|
513
488
|
private?: boolean;
|
|
@@ -520,10 +495,9 @@ export class BindService extends ExtraSourceService {
|
|
|
520
495
|
env?: string[] | string;
|
|
521
496
|
};
|
|
522
497
|
hostName: {
|
|
523
|
-
|
|
498
|
+
writable: boolean;
|
|
524
499
|
type: string;
|
|
525
500
|
isKey: boolean;
|
|
526
|
-
writable: boolean;
|
|
527
501
|
mandatory: boolean;
|
|
528
502
|
collection: boolean;
|
|
529
503
|
private?: boolean;
|
|
@@ -537,10 +511,9 @@ export class BindService extends ExtraSourceService {
|
|
|
537
511
|
};
|
|
538
512
|
cidrAddresses: {
|
|
539
513
|
collection: boolean;
|
|
540
|
-
|
|
514
|
+
writable: boolean;
|
|
541
515
|
type: string;
|
|
542
516
|
isKey: boolean;
|
|
543
|
-
writable: boolean;
|
|
544
517
|
mandatory: boolean;
|
|
545
518
|
private?: boolean;
|
|
546
519
|
depends?: string;
|
|
@@ -552,10 +525,9 @@ export class BindService extends ExtraSourceService {
|
|
|
552
525
|
env?: string[] | string;
|
|
553
526
|
};
|
|
554
527
|
cidrAddress: {
|
|
555
|
-
|
|
528
|
+
writable: boolean;
|
|
556
529
|
type: string;
|
|
557
530
|
isKey: boolean;
|
|
558
|
-
writable: boolean;
|
|
559
531
|
mandatory: boolean;
|
|
560
532
|
collection: boolean;
|
|
561
533
|
private?: boolean;
|
|
@@ -569,10 +541,9 @@ export class BindService extends ExtraSourceService {
|
|
|
569
541
|
};
|
|
570
542
|
addresses: {
|
|
571
543
|
collection: boolean;
|
|
572
|
-
|
|
544
|
+
writable: boolean;
|
|
573
545
|
type: string;
|
|
574
546
|
isKey: boolean;
|
|
575
|
-
writable: boolean;
|
|
576
547
|
mandatory: boolean;
|
|
577
548
|
private?: boolean;
|
|
578
549
|
depends?: string;
|
|
@@ -584,10 +555,9 @@ export class BindService extends ExtraSourceService {
|
|
|
584
555
|
env?: string[] | string;
|
|
585
556
|
};
|
|
586
557
|
address: {
|
|
587
|
-
|
|
558
|
+
writable: boolean;
|
|
588
559
|
type: string;
|
|
589
560
|
isKey: boolean;
|
|
590
|
-
writable: boolean;
|
|
591
561
|
mandatory: boolean;
|
|
592
562
|
collection: boolean;
|
|
593
563
|
private?: boolean;
|
|
@@ -606,7 +576,7 @@ export class BindService extends ExtraSourceService {
|
|
|
606
576
|
source: {
|
|
607
577
|
type: string;
|
|
608
578
|
collection: boolean;
|
|
609
|
-
|
|
579
|
+
writable: boolean;
|
|
610
580
|
};
|
|
611
581
|
};
|
|
612
582
|
};
|
|
@@ -615,28 +585,27 @@ export class BindService extends ExtraSourceService {
|
|
|
615
585
|
addresses: {
|
|
616
586
|
type: string[];
|
|
617
587
|
collection: boolean;
|
|
618
|
-
|
|
588
|
+
writable: boolean;
|
|
619
589
|
};
|
|
620
590
|
trusted: {
|
|
621
591
|
type: string[];
|
|
622
592
|
collection: boolean;
|
|
623
|
-
|
|
593
|
+
writable: boolean;
|
|
624
594
|
};
|
|
625
595
|
protected: {
|
|
626
596
|
type: string[];
|
|
627
597
|
collection: boolean;
|
|
628
|
-
|
|
598
|
+
writable: boolean;
|
|
629
599
|
};
|
|
630
600
|
internal: {
|
|
631
601
|
type: string[];
|
|
632
602
|
collection: boolean;
|
|
633
|
-
|
|
603
|
+
writable: boolean;
|
|
634
604
|
};
|
|
635
605
|
hasSVRRecords: {
|
|
636
|
-
|
|
606
|
+
writable: boolean;
|
|
637
607
|
type: string;
|
|
638
608
|
isKey: boolean;
|
|
639
|
-
writable: boolean;
|
|
640
609
|
mandatory: boolean;
|
|
641
610
|
collection: boolean;
|
|
642
611
|
private?: boolean;
|
|
@@ -649,10 +618,9 @@ export class BindService extends ExtraSourceService {
|
|
|
649
618
|
env?: string[] | string;
|
|
650
619
|
};
|
|
651
620
|
hasCatalog: {
|
|
652
|
-
|
|
621
|
+
writable: boolean;
|
|
653
622
|
type: string;
|
|
654
623
|
isKey: boolean;
|
|
655
|
-
writable: boolean;
|
|
656
624
|
mandatory: boolean;
|
|
657
625
|
collection: boolean;
|
|
658
626
|
private?: boolean;
|
|
@@ -665,10 +633,9 @@ export class BindService extends ExtraSourceService {
|
|
|
665
633
|
env?: string[] | string;
|
|
666
634
|
};
|
|
667
635
|
hasLinkLocalAdresses: {
|
|
668
|
-
|
|
636
|
+
writable: boolean;
|
|
669
637
|
type: string;
|
|
670
638
|
isKey: boolean;
|
|
671
|
-
writable: boolean;
|
|
672
639
|
mandatory: boolean;
|
|
673
640
|
collection: boolean;
|
|
674
641
|
private?: boolean;
|
|
@@ -681,11 +648,10 @@ export class BindService extends ExtraSourceService {
|
|
|
681
648
|
env?: string[] | string;
|
|
682
649
|
};
|
|
683
650
|
hasLocationRecord: {
|
|
684
|
-
|
|
651
|
+
writable: boolean;
|
|
685
652
|
default: boolean;
|
|
686
653
|
type: string;
|
|
687
654
|
isKey: boolean;
|
|
688
|
-
writable: boolean;
|
|
689
655
|
mandatory: boolean;
|
|
690
656
|
collection: boolean;
|
|
691
657
|
private?: boolean;
|
|
@@ -698,10 +664,9 @@ export class BindService extends ExtraSourceService {
|
|
|
698
664
|
};
|
|
699
665
|
excludeInterfaceKinds: {
|
|
700
666
|
collection: boolean;
|
|
701
|
-
|
|
667
|
+
writable: boolean;
|
|
702
668
|
type: string;
|
|
703
669
|
isKey: boolean;
|
|
704
|
-
writable: boolean;
|
|
705
670
|
mandatory: boolean;
|
|
706
671
|
private?: boolean;
|
|
707
672
|
depends?: string;
|
|
@@ -715,14 +680,13 @@ export class BindService extends ExtraSourceService {
|
|
|
715
680
|
exclude: {
|
|
716
681
|
type: string[];
|
|
717
682
|
collection: boolean;
|
|
718
|
-
|
|
683
|
+
writable: boolean;
|
|
719
684
|
};
|
|
720
685
|
notify: {
|
|
721
|
-
|
|
686
|
+
writable: boolean;
|
|
722
687
|
default: boolean;
|
|
723
688
|
type: string;
|
|
724
689
|
isKey: boolean;
|
|
725
|
-
writable: boolean;
|
|
726
690
|
mandatory: boolean;
|
|
727
691
|
collection: boolean;
|
|
728
692
|
private?: boolean;
|
|
@@ -734,10 +698,9 @@ export class BindService extends ExtraSourceService {
|
|
|
734
698
|
env?: string[] | string;
|
|
735
699
|
};
|
|
736
700
|
recordTTL: {
|
|
737
|
-
|
|
701
|
+
writable: boolean;
|
|
738
702
|
type: string;
|
|
739
703
|
isKey: boolean;
|
|
740
|
-
writable: boolean;
|
|
741
704
|
mandatory: boolean;
|
|
742
705
|
collection: boolean;
|
|
743
706
|
private?: boolean;
|
|
@@ -752,13 +715,12 @@ export class BindService extends ExtraSourceService {
|
|
|
752
715
|
serial: {
|
|
753
716
|
type: string;
|
|
754
717
|
collection: boolean;
|
|
755
|
-
|
|
718
|
+
writable: boolean;
|
|
756
719
|
};
|
|
757
720
|
refresh: {
|
|
758
|
-
|
|
721
|
+
writable: boolean;
|
|
759
722
|
type: string;
|
|
760
723
|
isKey: boolean;
|
|
761
|
-
writable: boolean;
|
|
762
724
|
mandatory: boolean;
|
|
763
725
|
collection: boolean;
|
|
764
726
|
private?: boolean;
|
|
@@ -771,10 +733,9 @@ export class BindService extends ExtraSourceService {
|
|
|
771
733
|
env?: string[] | string;
|
|
772
734
|
};
|
|
773
735
|
retry: {
|
|
774
|
-
|
|
736
|
+
writable: boolean;
|
|
775
737
|
type: string;
|
|
776
738
|
isKey: boolean;
|
|
777
|
-
writable: boolean;
|
|
778
739
|
mandatory: boolean;
|
|
779
740
|
collection: boolean;
|
|
780
741
|
private?: boolean;
|
|
@@ -787,10 +748,9 @@ export class BindService extends ExtraSourceService {
|
|
|
787
748
|
env?: string[] | string;
|
|
788
749
|
};
|
|
789
750
|
expire: {
|
|
790
|
-
|
|
751
|
+
writable: boolean;
|
|
791
752
|
type: string;
|
|
792
753
|
isKey: boolean;
|
|
793
|
-
writable: boolean;
|
|
794
754
|
mandatory: boolean;
|
|
795
755
|
collection: boolean;
|
|
796
756
|
private?: boolean;
|
|
@@ -803,10 +763,9 @@ export class BindService extends ExtraSourceService {
|
|
|
803
763
|
env?: string[] | string;
|
|
804
764
|
};
|
|
805
765
|
minimum: {
|
|
806
|
-
|
|
766
|
+
writable: boolean;
|
|
807
767
|
type: string;
|
|
808
768
|
isKey: boolean;
|
|
809
|
-
writable: boolean;
|
|
810
769
|
mandatory: boolean;
|
|
811
770
|
collection: boolean;
|
|
812
771
|
private?: boolean;
|
|
@@ -820,10 +779,9 @@ export class BindService extends ExtraSourceService {
|
|
|
820
779
|
};
|
|
821
780
|
allowedUpdates: {
|
|
822
781
|
collection: boolean;
|
|
823
|
-
|
|
782
|
+
writable: boolean;
|
|
824
783
|
type: string;
|
|
825
784
|
isKey: boolean;
|
|
826
|
-
writable: boolean;
|
|
827
785
|
mandatory: boolean;
|
|
828
786
|
private?: boolean;
|
|
829
787
|
depends?: string;
|