pmcf 2.74.0 → 2.74.2
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 +2 -2
- package/src/host.mjs +17 -22
- package/src/location.mjs +2 -1
- package/src/network-interfaces/network-interface.mjs +5 -4
- package/src/network-support.mjs +14 -17
- package/src/owner.mjs +8 -8
- package/src/service.mjs +7 -9
- package/src/services/kea.mjs +1 -1
- package/src/subnet.mjs +2 -3
- package/types/cluster.d.mts +316 -31
- package/types/extra-source-service.d.mts +121 -13
- package/types/host.d.mts +220 -22
- package/types/location.d.mts +204 -19
- package/types/network-interfaces/ethernet.d.mts +340 -36
- package/types/network-interfaces/loopback.d.mts +340 -36
- package/types/network-interfaces/network-interface.d.mts +340 -36
- package/types/network-interfaces/wireguard.d.mts +340 -36
- package/types/network-interfaces/wlan.d.mts +510 -54
- package/types/network-support.d.mts +186 -104
- package/types/network.d.mts +170 -19
- package/types/owner.d.mts +96 -9
- package/types/root.d.mts +204 -19
- package/types/service.d.mts +307 -62
- package/types/services/bind.d.mts +242 -26
- package/types/services/chrony.d.mts +242 -26
- package/types/services/influxdb.d.mts +242 -26
- package/types/services/kea.d.mts +242 -26
- package/types/services/mosquitto.d.mts +242 -26
- package/types/services/openldap.d.mts +242 -26
- package/types/services/systemd-journal-remote.d.mts +242 -26
- package/types/services/systemd-journal-upload.d.mts +242 -26
- package/types/services/systemd-journal.d.mts +242 -26
- package/types/services/systemd-resolved.d.mts +242 -26
- package/types/services/systemd-timesyncd.d.mts +242 -26
- package/types/subnet.d.mts +12 -2
package/types/cluster.d.mts
CHANGED
|
@@ -126,10 +126,20 @@ export class Cluster extends Host {
|
|
|
126
126
|
constructWithIdentifierOnly: boolean;
|
|
127
127
|
properties: {
|
|
128
128
|
address: {
|
|
129
|
+
identifier: boolean;
|
|
129
130
|
type: string;
|
|
131
|
+
isKey: boolean;
|
|
132
|
+
writable: boolean;
|
|
133
|
+
mandatory: boolean;
|
|
130
134
|
collection: boolean;
|
|
131
|
-
|
|
132
|
-
|
|
135
|
+
private?: boolean;
|
|
136
|
+
depends?: string;
|
|
137
|
+
additionalAttributes: string[];
|
|
138
|
+
description?: string;
|
|
139
|
+
default?: any;
|
|
140
|
+
set?: Function;
|
|
141
|
+
get?: Function;
|
|
142
|
+
env?: string[] | string;
|
|
133
143
|
};
|
|
134
144
|
networks: {
|
|
135
145
|
type: string;
|
|
@@ -147,39 +157,116 @@ export class Cluster extends Host {
|
|
|
147
157
|
writeable: boolean;
|
|
148
158
|
};
|
|
149
159
|
country: {
|
|
160
|
+
writeable: boolean;
|
|
150
161
|
type: string;
|
|
162
|
+
isKey: boolean;
|
|
163
|
+
writable: boolean;
|
|
164
|
+
mandatory: boolean;
|
|
151
165
|
collection: boolean;
|
|
152
|
-
|
|
166
|
+
private?: boolean;
|
|
167
|
+
depends?: string;
|
|
168
|
+
additionalAttributes: string[];
|
|
169
|
+
description?: string;
|
|
170
|
+
default?: any;
|
|
171
|
+
set?: Function;
|
|
172
|
+
get?: Function;
|
|
173
|
+
env?: string[] | string;
|
|
153
174
|
};
|
|
154
175
|
domain: {
|
|
176
|
+
writeable: boolean;
|
|
155
177
|
type: string;
|
|
178
|
+
isKey: boolean;
|
|
179
|
+
writable: boolean;
|
|
180
|
+
mandatory: boolean;
|
|
156
181
|
collection: boolean;
|
|
157
|
-
|
|
182
|
+
private?: boolean;
|
|
183
|
+
depends?: string;
|
|
184
|
+
additionalAttributes: string[];
|
|
185
|
+
description?: string;
|
|
186
|
+
default?: any;
|
|
187
|
+
set?: Function;
|
|
188
|
+
get?: Function;
|
|
189
|
+
env?: string[] | string;
|
|
158
190
|
};
|
|
159
191
|
domains: {
|
|
160
|
-
type: string;
|
|
161
192
|
collection: boolean;
|
|
162
193
|
writeable: boolean;
|
|
194
|
+
type: string;
|
|
195
|
+
isKey: boolean;
|
|
196
|
+
writable: boolean;
|
|
197
|
+
mandatory: boolean;
|
|
198
|
+
private?: boolean;
|
|
199
|
+
depends?: string;
|
|
200
|
+
additionalAttributes: string[];
|
|
201
|
+
description?: string;
|
|
202
|
+
default?: any;
|
|
203
|
+
set?: Function;
|
|
204
|
+
get?: Function;
|
|
205
|
+
env?: string[] | string;
|
|
163
206
|
};
|
|
164
207
|
timezone: {
|
|
208
|
+
writeable: boolean;
|
|
165
209
|
type: string;
|
|
210
|
+
isKey: boolean;
|
|
211
|
+
writable: boolean;
|
|
212
|
+
mandatory: boolean;
|
|
166
213
|
collection: boolean;
|
|
167
|
-
|
|
214
|
+
private?: boolean;
|
|
215
|
+
depends?: string;
|
|
216
|
+
additionalAttributes: string[];
|
|
217
|
+
description?: string;
|
|
218
|
+
default?: any;
|
|
219
|
+
set?: Function;
|
|
220
|
+
get?: Function;
|
|
221
|
+
env?: string[] | string;
|
|
168
222
|
};
|
|
169
223
|
architectures: {
|
|
170
|
-
type: string;
|
|
171
224
|
collection: boolean;
|
|
172
225
|
writeable: boolean;
|
|
226
|
+
type: string;
|
|
227
|
+
isKey: boolean;
|
|
228
|
+
writable: boolean;
|
|
229
|
+
mandatory: boolean;
|
|
230
|
+
private?: boolean;
|
|
231
|
+
depends?: string;
|
|
232
|
+
additionalAttributes: string[];
|
|
233
|
+
description?: string;
|
|
234
|
+
default?: any;
|
|
235
|
+
set?: Function;
|
|
236
|
+
get?: Function;
|
|
237
|
+
env?: string[] | string;
|
|
173
238
|
};
|
|
174
239
|
locales: {
|
|
175
|
-
type: string;
|
|
176
240
|
collection: boolean;
|
|
177
241
|
writeable: boolean;
|
|
242
|
+
type: string;
|
|
243
|
+
isKey: boolean;
|
|
244
|
+
writable: boolean;
|
|
245
|
+
mandatory: boolean;
|
|
246
|
+
private?: boolean;
|
|
247
|
+
depends?: string;
|
|
248
|
+
additionalAttributes: string[];
|
|
249
|
+
description?: string;
|
|
250
|
+
default?: any;
|
|
251
|
+
set?: Function;
|
|
252
|
+
get?: Function;
|
|
253
|
+
env?: string[] | string;
|
|
178
254
|
};
|
|
179
255
|
administratorEmail: {
|
|
256
|
+
writeable: boolean;
|
|
180
257
|
type: string;
|
|
258
|
+
isKey: boolean;
|
|
259
|
+
writable: boolean;
|
|
260
|
+
mandatory: boolean;
|
|
181
261
|
collection: boolean;
|
|
182
|
-
|
|
262
|
+
private?: boolean;
|
|
263
|
+
depends?: string;
|
|
264
|
+
additionalAttributes: string[];
|
|
265
|
+
description?: string;
|
|
266
|
+
default?: any;
|
|
267
|
+
set?: Function;
|
|
268
|
+
get?: Function;
|
|
269
|
+
env?: string[] | string;
|
|
183
270
|
};
|
|
184
271
|
};
|
|
185
272
|
})[];
|
|
@@ -302,26 +389,70 @@ export class Cluster extends Host {
|
|
|
302
389
|
writeable: boolean;
|
|
303
390
|
};
|
|
304
391
|
os: {
|
|
305
|
-
type: string;
|
|
306
|
-
collection: boolean;
|
|
307
392
|
writeable: boolean;
|
|
308
393
|
values: string[];
|
|
394
|
+
type: string;
|
|
395
|
+
isKey: boolean;
|
|
396
|
+
writable: boolean;
|
|
397
|
+
mandatory: boolean;
|
|
398
|
+
collection: boolean;
|
|
399
|
+
private?: boolean;
|
|
400
|
+
depends?: string;
|
|
401
|
+
additionalAttributes: string[];
|
|
402
|
+
description?: string;
|
|
403
|
+
default?: any;
|
|
404
|
+
set?: Function;
|
|
405
|
+
get?: Function;
|
|
406
|
+
env?: string[] | string;
|
|
309
407
|
};
|
|
310
408
|
"machine-id": {
|
|
409
|
+
writeable: boolean;
|
|
311
410
|
type: string;
|
|
411
|
+
isKey: boolean;
|
|
412
|
+
writable: boolean;
|
|
413
|
+
mandatory: boolean;
|
|
312
414
|
collection: boolean;
|
|
313
|
-
|
|
415
|
+
private?: boolean;
|
|
416
|
+
depends?: string;
|
|
417
|
+
additionalAttributes: string[];
|
|
418
|
+
description?: string;
|
|
419
|
+
default?: any;
|
|
420
|
+
set?: Function;
|
|
421
|
+
get?: Function;
|
|
422
|
+
env?: string[] | string;
|
|
314
423
|
};
|
|
315
424
|
distribution: {
|
|
425
|
+
writeable: boolean;
|
|
316
426
|
type: string;
|
|
427
|
+
isKey: boolean;
|
|
428
|
+
writable: boolean;
|
|
429
|
+
mandatory: boolean;
|
|
317
430
|
collection: boolean;
|
|
318
|
-
|
|
431
|
+
private?: boolean;
|
|
432
|
+
depends?: string;
|
|
433
|
+
additionalAttributes: string[];
|
|
434
|
+
description?: string;
|
|
435
|
+
default?: any;
|
|
436
|
+
set?: Function;
|
|
437
|
+
get?: Function;
|
|
438
|
+
env?: string[] | string;
|
|
319
439
|
};
|
|
320
440
|
deployment: {
|
|
321
|
-
type: string;
|
|
322
|
-
collection: boolean;
|
|
323
441
|
writeable: boolean;
|
|
324
442
|
values: string[];
|
|
443
|
+
type: string;
|
|
444
|
+
isKey: boolean;
|
|
445
|
+
writable: boolean;
|
|
446
|
+
mandatory: boolean;
|
|
447
|
+
collection: boolean;
|
|
448
|
+
private?: boolean;
|
|
449
|
+
depends?: string;
|
|
450
|
+
additionalAttributes: string[];
|
|
451
|
+
description?: string;
|
|
452
|
+
default?: any;
|
|
453
|
+
set?: Function;
|
|
454
|
+
get?: Function;
|
|
455
|
+
env?: string[] | string;
|
|
325
456
|
};
|
|
326
457
|
weight: {
|
|
327
458
|
type: string;
|
|
@@ -329,46 +460,134 @@ export class Cluster extends Host {
|
|
|
329
460
|
writeable: boolean;
|
|
330
461
|
};
|
|
331
462
|
serial: {
|
|
463
|
+
writeable: boolean;
|
|
332
464
|
type: string;
|
|
465
|
+
isKey: boolean;
|
|
466
|
+
writable: boolean;
|
|
467
|
+
mandatory: boolean;
|
|
333
468
|
collection: boolean;
|
|
334
|
-
|
|
469
|
+
private?: boolean;
|
|
470
|
+
depends?: string;
|
|
471
|
+
additionalAttributes: string[];
|
|
472
|
+
description?: string;
|
|
473
|
+
default?: any;
|
|
474
|
+
set?: Function;
|
|
475
|
+
get?: Function;
|
|
476
|
+
env?: string[] | string;
|
|
335
477
|
};
|
|
336
478
|
vendor: {
|
|
479
|
+
writeable: boolean;
|
|
337
480
|
type: string;
|
|
481
|
+
isKey: boolean;
|
|
482
|
+
writable: boolean;
|
|
483
|
+
mandatory: boolean;
|
|
338
484
|
collection: boolean;
|
|
339
|
-
|
|
485
|
+
private?: boolean;
|
|
486
|
+
depends?: string;
|
|
487
|
+
additionalAttributes: string[];
|
|
488
|
+
description?: string;
|
|
489
|
+
default?: any;
|
|
490
|
+
set?: Function;
|
|
491
|
+
get?: Function;
|
|
492
|
+
env?: string[] | string;
|
|
340
493
|
};
|
|
341
494
|
keymap: {
|
|
495
|
+
writeable: boolean;
|
|
342
496
|
type: string;
|
|
497
|
+
isKey: boolean;
|
|
498
|
+
writable: boolean;
|
|
499
|
+
mandatory: boolean;
|
|
343
500
|
collection: boolean;
|
|
344
|
-
|
|
501
|
+
private?: boolean;
|
|
502
|
+
depends?: string;
|
|
503
|
+
additionalAttributes: string[];
|
|
504
|
+
description?: string;
|
|
505
|
+
default?: any;
|
|
506
|
+
set?: Function;
|
|
507
|
+
get?: Function;
|
|
508
|
+
env?: string[] | string;
|
|
345
509
|
};
|
|
346
510
|
chassis: {
|
|
347
|
-
type: string;
|
|
348
|
-
collection: boolean;
|
|
349
511
|
writeable: boolean;
|
|
350
512
|
values: string[];
|
|
351
|
-
};
|
|
352
|
-
architecture: {
|
|
353
513
|
type: string;
|
|
514
|
+
isKey: boolean;
|
|
515
|
+
writable: boolean;
|
|
516
|
+
mandatory: boolean;
|
|
354
517
|
collection: boolean;
|
|
518
|
+
private?: boolean;
|
|
519
|
+
depends?: string;
|
|
520
|
+
additionalAttributes: string[];
|
|
521
|
+
description?: string;
|
|
522
|
+
default?: any;
|
|
523
|
+
set?: Function;
|
|
524
|
+
get?: Function;
|
|
525
|
+
env?: string[] | string;
|
|
526
|
+
};
|
|
527
|
+
architecture: {
|
|
355
528
|
writeable: boolean;
|
|
356
529
|
values: string[];
|
|
530
|
+
type: string;
|
|
531
|
+
isKey: boolean;
|
|
532
|
+
writable: boolean;
|
|
533
|
+
mandatory: boolean;
|
|
534
|
+
collection: boolean;
|
|
535
|
+
private?: boolean;
|
|
536
|
+
depends?: string;
|
|
537
|
+
additionalAttributes: string[];
|
|
538
|
+
description?: string;
|
|
539
|
+
default?: any;
|
|
540
|
+
set?: Function;
|
|
541
|
+
get?: Function;
|
|
542
|
+
env?: string[] | string;
|
|
357
543
|
};
|
|
358
544
|
replaces: {
|
|
359
|
-
type: string;
|
|
360
545
|
collection: boolean;
|
|
361
546
|
writeable: boolean;
|
|
547
|
+
type: string;
|
|
548
|
+
isKey: boolean;
|
|
549
|
+
writable: boolean;
|
|
550
|
+
mandatory: boolean;
|
|
551
|
+
private?: boolean;
|
|
552
|
+
depends?: string;
|
|
553
|
+
additionalAttributes: string[];
|
|
554
|
+
description?: string;
|
|
555
|
+
default?: any;
|
|
556
|
+
set?: Function;
|
|
557
|
+
get?: Function;
|
|
558
|
+
env?: string[] | string;
|
|
362
559
|
};
|
|
363
560
|
depends: {
|
|
364
|
-
type: string;
|
|
365
561
|
collection: boolean;
|
|
366
562
|
writeable: boolean;
|
|
563
|
+
type: string;
|
|
564
|
+
isKey: boolean;
|
|
565
|
+
writable: boolean;
|
|
566
|
+
mandatory: boolean;
|
|
567
|
+
private?: boolean;
|
|
568
|
+
depends?: string;
|
|
569
|
+
additionalAttributes: string[];
|
|
570
|
+
description?: string;
|
|
571
|
+
default?: any;
|
|
572
|
+
set?: Function;
|
|
573
|
+
get?: Function;
|
|
574
|
+
env?: string[] | string;
|
|
367
575
|
};
|
|
368
576
|
provides: {
|
|
369
|
-
type: string;
|
|
370
577
|
collection: boolean;
|
|
371
578
|
writeable: boolean;
|
|
579
|
+
type: string;
|
|
580
|
+
isKey: boolean;
|
|
581
|
+
writable: boolean;
|
|
582
|
+
mandatory: boolean;
|
|
583
|
+
private?: boolean;
|
|
584
|
+
depends?: string;
|
|
585
|
+
additionalAttributes: string[];
|
|
586
|
+
description?: string;
|
|
587
|
+
default?: any;
|
|
588
|
+
set?: Function;
|
|
589
|
+
get?: Function;
|
|
590
|
+
env?: string[] | string;
|
|
372
591
|
};
|
|
373
592
|
extends: {
|
|
374
593
|
type: string;
|
|
@@ -376,9 +595,20 @@ export class Cluster extends Host {
|
|
|
376
595
|
writeable: boolean;
|
|
377
596
|
};
|
|
378
597
|
model: {
|
|
379
|
-
type: string;
|
|
380
598
|
collection: boolean;
|
|
381
599
|
writeable: boolean;
|
|
600
|
+
type: string;
|
|
601
|
+
isKey: boolean;
|
|
602
|
+
writable: boolean;
|
|
603
|
+
mandatory: boolean;
|
|
604
|
+
private?: boolean;
|
|
605
|
+
depends?: string;
|
|
606
|
+
additionalAttributes: string[];
|
|
607
|
+
description?: string;
|
|
608
|
+
default?: any;
|
|
609
|
+
set?: Function;
|
|
610
|
+
get?: Function;
|
|
611
|
+
env?: string[] | string;
|
|
382
612
|
};
|
|
383
613
|
isModel: {
|
|
384
614
|
type: string;
|
|
@@ -386,29 +616,84 @@ export class Cluster extends Host {
|
|
|
386
616
|
writeable: boolean;
|
|
387
617
|
};
|
|
388
618
|
hostName: {
|
|
619
|
+
writeable: boolean;
|
|
389
620
|
type: string;
|
|
621
|
+
isKey: boolean;
|
|
622
|
+
writable: boolean;
|
|
623
|
+
mandatory: boolean;
|
|
390
624
|
collection: boolean;
|
|
391
|
-
|
|
625
|
+
private?: boolean;
|
|
626
|
+
depends?: string;
|
|
627
|
+
additionalAttributes: string[];
|
|
628
|
+
description?: string;
|
|
629
|
+
default?: any;
|
|
630
|
+
set?: Function;
|
|
631
|
+
get?: Function;
|
|
632
|
+
env?: string[] | string;
|
|
392
633
|
};
|
|
393
634
|
cidrAddresses: {
|
|
394
|
-
type: string;
|
|
395
635
|
collection: boolean;
|
|
396
636
|
writeable: boolean;
|
|
637
|
+
type: string;
|
|
638
|
+
isKey: boolean;
|
|
639
|
+
writable: boolean;
|
|
640
|
+
mandatory: boolean;
|
|
641
|
+
private?: boolean;
|
|
642
|
+
depends?: string;
|
|
643
|
+
additionalAttributes: string[];
|
|
644
|
+
description?: string;
|
|
645
|
+
default?: any;
|
|
646
|
+
set?: Function;
|
|
647
|
+
get?: Function;
|
|
648
|
+
env?: string[] | string;
|
|
397
649
|
};
|
|
398
650
|
cidrAddress: {
|
|
651
|
+
writeable: boolean;
|
|
399
652
|
type: string;
|
|
653
|
+
isKey: boolean;
|
|
654
|
+
writable: boolean;
|
|
655
|
+
mandatory: boolean;
|
|
400
656
|
collection: boolean;
|
|
401
|
-
|
|
657
|
+
private?: boolean;
|
|
658
|
+
depends?: string;
|
|
659
|
+
additionalAttributes: string[];
|
|
660
|
+
description?: string;
|
|
661
|
+
default?: any;
|
|
662
|
+
set?: Function;
|
|
663
|
+
get?: Function;
|
|
664
|
+
env?: string[] | string;
|
|
402
665
|
};
|
|
403
666
|
addresses: {
|
|
404
|
-
type: string;
|
|
405
667
|
collection: boolean;
|
|
406
668
|
writeable: boolean;
|
|
669
|
+
type: string;
|
|
670
|
+
isKey: boolean;
|
|
671
|
+
writable: boolean;
|
|
672
|
+
mandatory: boolean;
|
|
673
|
+
private?: boolean;
|
|
674
|
+
depends?: string;
|
|
675
|
+
additionalAttributes: string[];
|
|
676
|
+
description?: string;
|
|
677
|
+
default?: any;
|
|
678
|
+
set?: Function;
|
|
679
|
+
get?: Function;
|
|
680
|
+
env?: string[] | string;
|
|
407
681
|
};
|
|
408
682
|
address: {
|
|
683
|
+
writeable: boolean;
|
|
409
684
|
type: string;
|
|
685
|
+
isKey: boolean;
|
|
686
|
+
writable: boolean;
|
|
687
|
+
mandatory: boolean;
|
|
410
688
|
collection: boolean;
|
|
411
|
-
|
|
689
|
+
private?: boolean;
|
|
690
|
+
depends?: string;
|
|
691
|
+
additionalAttributes: string[];
|
|
692
|
+
description?: string;
|
|
693
|
+
default?: any;
|
|
694
|
+
set?: Function;
|
|
695
|
+
get?: Function;
|
|
696
|
+
env?: string[] | string;
|
|
412
697
|
};
|
|
413
698
|
};
|
|
414
699
|
};
|
|
@@ -120,9 +120,20 @@ export class ExtraSourceService extends Service {
|
|
|
120
120
|
factoryFor(owner: any, value: any): any;
|
|
121
121
|
properties: {
|
|
122
122
|
alias: {
|
|
123
|
+
writeable: boolean;
|
|
123
124
|
type: string;
|
|
125
|
+
isKey: boolean;
|
|
126
|
+
writable: boolean;
|
|
127
|
+
mandatory: boolean;
|
|
124
128
|
collection: boolean;
|
|
125
|
-
|
|
129
|
+
private?: boolean;
|
|
130
|
+
depends?: string;
|
|
131
|
+
additionalAttributes: string[];
|
|
132
|
+
description?: string;
|
|
133
|
+
default?: any;
|
|
134
|
+
set?: Function;
|
|
135
|
+
get?: Function;
|
|
136
|
+
env?: string[] | string;
|
|
126
137
|
};
|
|
127
138
|
weight: {
|
|
128
139
|
type: string;
|
|
@@ -141,51 +152,148 @@ export class ExtraSourceService extends Service {
|
|
|
141
152
|
writeable: boolean;
|
|
142
153
|
};
|
|
143
154
|
protocol: {
|
|
144
|
-
type: string;
|
|
145
|
-
collection: boolean;
|
|
146
155
|
writeable: boolean;
|
|
147
156
|
values: string[];
|
|
157
|
+
type: string;
|
|
158
|
+
isKey: boolean;
|
|
159
|
+
writable: boolean;
|
|
160
|
+
mandatory: boolean;
|
|
161
|
+
collection: boolean;
|
|
162
|
+
private?: boolean;
|
|
163
|
+
depends?: string;
|
|
164
|
+
additionalAttributes: string[];
|
|
165
|
+
description?: string;
|
|
166
|
+
default?: any;
|
|
167
|
+
set?: Function;
|
|
168
|
+
get?: Function;
|
|
169
|
+
env?: string[] | string;
|
|
148
170
|
};
|
|
149
171
|
type: {
|
|
172
|
+
writeable: boolean;
|
|
150
173
|
type: string;
|
|
174
|
+
isKey: boolean;
|
|
175
|
+
writable: boolean;
|
|
176
|
+
mandatory: boolean;
|
|
151
177
|
collection: boolean;
|
|
152
|
-
|
|
178
|
+
private?: boolean;
|
|
179
|
+
depends?: string;
|
|
180
|
+
additionalAttributes: string[];
|
|
181
|
+
description?: string;
|
|
182
|
+
default?: any;
|
|
183
|
+
set?: Function;
|
|
184
|
+
get?: Function;
|
|
185
|
+
env?: string[] | string;
|
|
153
186
|
};
|
|
154
187
|
types: {
|
|
155
|
-
type: string;
|
|
156
188
|
collection: boolean;
|
|
157
|
-
|
|
189
|
+
type: string;
|
|
190
|
+
isKey: boolean;
|
|
191
|
+
writable: boolean;
|
|
192
|
+
mandatory: boolean;
|
|
193
|
+
private?: boolean;
|
|
194
|
+
depends?: string;
|
|
195
|
+
additionalAttributes: string[];
|
|
196
|
+
description?: string;
|
|
197
|
+
default?: any;
|
|
198
|
+
set?: Function;
|
|
199
|
+
get?: Function;
|
|
200
|
+
env?: string[] | string;
|
|
158
201
|
};
|
|
159
202
|
tls: {
|
|
203
|
+
writeable: boolean;
|
|
160
204
|
type: string;
|
|
205
|
+
isKey: boolean;
|
|
206
|
+
writable: boolean;
|
|
207
|
+
mandatory: boolean;
|
|
161
208
|
collection: boolean;
|
|
162
|
-
|
|
163
|
-
|
|
209
|
+
private?: boolean;
|
|
210
|
+
depends?: string;
|
|
211
|
+
additionalAttributes: string[];
|
|
212
|
+
description?: string;
|
|
213
|
+
default?: any;
|
|
214
|
+
set?: Function;
|
|
215
|
+
get?: Function;
|
|
216
|
+
env?: string[] | string;
|
|
164
217
|
};
|
|
165
218
|
hostName: {
|
|
219
|
+
writeable: boolean;
|
|
166
220
|
type: string;
|
|
221
|
+
isKey: boolean;
|
|
222
|
+
writable: boolean;
|
|
223
|
+
mandatory: boolean;
|
|
167
224
|
collection: boolean;
|
|
168
|
-
|
|
225
|
+
private?: boolean;
|
|
226
|
+
depends?: string;
|
|
227
|
+
additionalAttributes: string[];
|
|
228
|
+
description?: string;
|
|
229
|
+
default?: any;
|
|
230
|
+
set?: Function;
|
|
231
|
+
get?: Function;
|
|
232
|
+
env?: string[] | string;
|
|
169
233
|
};
|
|
170
234
|
cidrAddresses: {
|
|
171
|
-
type: string;
|
|
172
235
|
collection: boolean;
|
|
173
236
|
writeable: boolean;
|
|
237
|
+
type: string;
|
|
238
|
+
isKey: boolean;
|
|
239
|
+
writable: boolean;
|
|
240
|
+
mandatory: boolean;
|
|
241
|
+
private?: boolean;
|
|
242
|
+
depends?: string;
|
|
243
|
+
additionalAttributes: string[];
|
|
244
|
+
description?: string;
|
|
245
|
+
default?: any;
|
|
246
|
+
set?: Function;
|
|
247
|
+
get?: Function;
|
|
248
|
+
env?: string[] | string;
|
|
174
249
|
};
|
|
175
250
|
cidrAddress: {
|
|
251
|
+
writeable: boolean;
|
|
176
252
|
type: string;
|
|
253
|
+
isKey: boolean;
|
|
254
|
+
writable: boolean;
|
|
255
|
+
mandatory: boolean;
|
|
177
256
|
collection: boolean;
|
|
178
|
-
|
|
257
|
+
private?: boolean;
|
|
258
|
+
depends?: string;
|
|
259
|
+
additionalAttributes: string[];
|
|
260
|
+
description?: string;
|
|
261
|
+
default?: any;
|
|
262
|
+
set?: Function;
|
|
263
|
+
get?: Function;
|
|
264
|
+
env?: string[] | string;
|
|
179
265
|
};
|
|
180
266
|
addresses: {
|
|
181
|
-
type: string;
|
|
182
267
|
collection: boolean;
|
|
183
268
|
writeable: boolean;
|
|
269
|
+
type: string;
|
|
270
|
+
isKey: boolean;
|
|
271
|
+
writable: boolean;
|
|
272
|
+
mandatory: boolean;
|
|
273
|
+
private?: boolean;
|
|
274
|
+
depends?: string;
|
|
275
|
+
additionalAttributes: string[];
|
|
276
|
+
description?: string;
|
|
277
|
+
default?: any;
|
|
278
|
+
set?: Function;
|
|
279
|
+
get?: Function;
|
|
280
|
+
env?: string[] | string;
|
|
184
281
|
};
|
|
185
282
|
address: {
|
|
283
|
+
writeable: boolean;
|
|
186
284
|
type: string;
|
|
285
|
+
isKey: boolean;
|
|
286
|
+
writable: boolean;
|
|
287
|
+
mandatory: boolean;
|
|
187
288
|
collection: boolean;
|
|
188
|
-
|
|
289
|
+
private?: boolean;
|
|
290
|
+
depends?: string;
|
|
291
|
+
additionalAttributes: string[];
|
|
292
|
+
description?: string;
|
|
293
|
+
default?: any;
|
|
294
|
+
set?: Function;
|
|
295
|
+
get?: Function;
|
|
296
|
+
env?: string[] | string;
|
|
189
297
|
};
|
|
190
298
|
};
|
|
191
299
|
};
|