@itentialopensource/adapter-aruba_airwave 0.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.
Files changed (58) hide show
  1. package/.eslintignore +6 -0
  2. package/.eslintrc.js +18 -0
  3. package/.gitlab/.gitkeep +0 -0
  4. package/.gitlab/issue_templates/.gitkeep +0 -0
  5. package/.gitlab/issue_templates/Default.md +17 -0
  6. package/.gitlab/issue_templates/bugReportTemplate.md +76 -0
  7. package/.gitlab/issue_templates/featureRequestTemplate.md +14 -0
  8. package/.jshintrc +0 -0
  9. package/CHANGELOG.md +9 -0
  10. package/CODE_OF_CONDUCT.md +48 -0
  11. package/CONTRIBUTING.md +158 -0
  12. package/LICENSE +201 -0
  13. package/README.md +544 -0
  14. package/adapter.js +2860 -0
  15. package/adapterBase.js +906 -0
  16. package/entities/.system/action.json +50 -0
  17. package/entities/.system/mockdatafiles/getToken-default.json +3 -0
  18. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  19. package/entities/.system/schema.json +19 -0
  20. package/entities/.system/schemaTokenReq.json +77 -0
  21. package/entities/.system/schemaTokenResp.json +65 -0
  22. package/entities/BatchExecuteAPCommandsAPIS/action.json +45 -0
  23. package/entities/BatchExecuteAPCommandsAPIS/schema.json +20 -0
  24. package/entities/ConfigurationAPIS/action.json +126 -0
  25. package/entities/ConfigurationAPIS/schema.json +90 -0
  26. package/entities/DeviceAPIS/action.json +46 -0
  27. package/entities/DeviceAPIS/schema.json +20 -0
  28. package/entities/LOGIN/action.json +24 -0
  29. package/entities/LOGIN/schema.json +41 -0
  30. package/entities/QueryAPIS/action.json +298 -0
  31. package/entities/QueryAPIS/schema.json +32 -0
  32. package/entities/ReportAPIS/action.json +25 -0
  33. package/entities/ReportAPIS/schema.json +30 -0
  34. package/entities/SearchAPIS/action.json +67 -0
  35. package/entities/SearchAPIS/schema.json +21 -0
  36. package/error.json +184 -0
  37. package/package.json +86 -0
  38. package/pronghorn.json +1589 -0
  39. package/propertiesSchema.json +801 -0
  40. package/refs?service=git-upload-pack +0 -0
  41. package/report/ArubaAirwavePostman.json-OpenApi3Json.json +1583 -0
  42. package/report/creationReport.json +381 -0
  43. package/sampleProperties.json +97 -0
  44. package/test/integration/adapterTestBasicGet.js +85 -0
  45. package/test/integration/adapterTestConnectivity.js +93 -0
  46. package/test/integration/adapterTestIntegration.js +1125 -0
  47. package/test/unit/adapterBaseTestUnit.js +929 -0
  48. package/test/unit/adapterTestUnit.js +1413 -0
  49. package/utils/artifactize.js +146 -0
  50. package/utils/basicGet.js +63 -0
  51. package/utils/packModificationScript.js +35 -0
  52. package/utils/pre-commit.sh +27 -0
  53. package/utils/setup.js +33 -0
  54. package/utils/tbScript.js +163 -0
  55. package/utils/tbUtils.js +372 -0
  56. package/utils/testRunner.js +298 -0
  57. package/utils/troubleshootingAdapter.js +219 -0
  58. package/workflows/README.md +3 -0
@@ -0,0 +1,801 @@
1
+ {
2
+ "$id": "adapter-aruba_airwave",
3
+ "type": "object",
4
+ "$schema": "http://json-schema.org/draft-07/schema#",
5
+ "properties": {
6
+ "host": {
7
+ "type": "string",
8
+ "description": "hostname of the server",
9
+ "default": "",
10
+ "examples": [
11
+ "systemx.customer.com"
12
+ ]
13
+ },
14
+ "port": {
15
+ "type": "integer",
16
+ "description": "port on which to connect to the server",
17
+ "default": 443,
18
+ "minimum": 1,
19
+ "maximum": 65535
20
+ },
21
+ "base_path": {
22
+ "type": "string",
23
+ "description": "a base path that is consistent across api calls",
24
+ "default": "",
25
+ "examples": [
26
+ "/system/api"
27
+ ]
28
+ },
29
+ "version": {
30
+ "type": "string",
31
+ "description": "api version this adapter integrates with",
32
+ "default": "",
33
+ "examples": [
34
+ "v1",
35
+ "v2.6",
36
+ "4.5.1"
37
+ ]
38
+ },
39
+ "cache_location": {
40
+ "type": "string",
41
+ "description": "Where cache of information should be located redis or local memory",
42
+ "default": "none",
43
+ "enum": [
44
+ "redis",
45
+ "local",
46
+ "none"
47
+ ]
48
+ },
49
+ "encode_pathvars": {
50
+ "type": "boolean",
51
+ "description": "When true the path variables are encoded in the url",
52
+ "default": true
53
+ },
54
+ "save_metric": {
55
+ "type": [
56
+ "boolean",
57
+ "string"
58
+ ],
59
+ "description": "When true the metrics collected by the adapter will be stored in mongo or on the filesystem",
60
+ "default": false
61
+ },
62
+ "stub": {
63
+ "type": "boolean",
64
+ "description": "When true will not connect to the remote server, but will use a static object for all responses",
65
+ "default": false
66
+ },
67
+ "protocol": {
68
+ "type": "string",
69
+ "description": "the protocol to use to connect to server",
70
+ "default": "http",
71
+ "enum": [
72
+ "http",
73
+ "https"
74
+ ]
75
+ },
76
+ "authentication": {
77
+ "$ref": "#/definitions/authentication"
78
+ },
79
+ "healthcheck": {
80
+ "$ref": "#/definitions/healthcheck"
81
+ },
82
+ "throttle": {
83
+ "$ref": "#/definitions/throttle"
84
+ },
85
+ "request": {
86
+ "$ref": "#/definitions/request"
87
+ },
88
+ "proxy": {
89
+ "$ref": "#/definitions/proxy"
90
+ },
91
+ "ssl": {
92
+ "$ref": "#/definitions/ssl"
93
+ },
94
+ "mongo": {
95
+ "$ref": "#/definitions/mongo"
96
+ }
97
+ },
98
+ "required": [
99
+ "host",
100
+ "port",
101
+ "authentication",
102
+ "healthcheck"
103
+ ],
104
+ "definitions": {
105
+ "authentication": {
106
+ "type": "object",
107
+ "properties": {
108
+ "auth_method": {
109
+ "type": "string",
110
+ "description": "The authentication method for requests",
111
+ "default": "basic user_password",
112
+ "enum": [
113
+ "basic user_password",
114
+ "static_token",
115
+ "jwt_token",
116
+ "request_token",
117
+ "no_authentication"
118
+ ]
119
+ },
120
+ "username": {
121
+ "type": "string",
122
+ "description": "The username used for requests",
123
+ "default": "",
124
+ "examples": [
125
+ "username"
126
+ ]
127
+ },
128
+ "password": {
129
+ "type": "string",
130
+ "description": "The password used for requests. If it was retrieved through the encrypt password call, use the exact return including the {code} or {crypt}",
131
+ "default": "",
132
+ "examples": [
133
+ "password",
134
+ "{code}password",
135
+ "{crypt}password"
136
+ ]
137
+ },
138
+ "token": {
139
+ "type": "string",
140
+ "description": "The token used for requests",
141
+ "default": "",
142
+ "examples": [
143
+ "sdadafdsf_dummytoken_adfkdhfkajd"
144
+ ]
145
+ },
146
+ "token_user_field": {
147
+ "type": "string",
148
+ "description": "The field to send the user credential when getting a token",
149
+ "default": "username",
150
+ "examples": [
151
+ "username"
152
+ ]
153
+ },
154
+ "token_password_field": {
155
+ "type": "string",
156
+ "description": "The field to send the password credential when getting a token",
157
+ "default": "password",
158
+ "examples": [
159
+ "password"
160
+ ]
161
+ },
162
+ "token_result_field": {
163
+ "type": "string",
164
+ "description": "The field to pull the result from when getting a token",
165
+ "default": "token",
166
+ "examples": [
167
+ "token"
168
+ ]
169
+ },
170
+ "token_URI_path": {
171
+ "type": "string",
172
+ "description": "The path used to retrieve a token",
173
+ "default": "",
174
+ "examples": [
175
+ "/api/version/authenticate"
176
+ ]
177
+ },
178
+ "invalid_token_error": {
179
+ "type": "integer",
180
+ "description": "http error status number which defines an invalid token",
181
+ "default": 401,
182
+ "minimum": 0,
183
+ "maximum": 1000
184
+ },
185
+ "token_timeout": {
186
+ "type": "integer",
187
+ "description": "How long a token is valid (in milliseconds), -1 (always get token), 0 use expiration returned with token",
188
+ "default": -1,
189
+ "minimum": -1,
190
+ "maximum": 3600000
191
+ },
192
+ "token_cache": {
193
+ "type": "string",
194
+ "description": "Whether tokens should be stored in redis or local memory",
195
+ "default": "local",
196
+ "enum": [
197
+ "redis",
198
+ "local"
199
+ ]
200
+ },
201
+ "auth_field": {
202
+ "type": [
203
+ "string",
204
+ "array"
205
+ ],
206
+ "description": "The field in which to pass the token",
207
+ "default": "header.headers.X-AUTH-TOKEN",
208
+ "examples": [
209
+ "header.headers.X-AUTH-TOKEN",
210
+ "header.headers.Authorization",
211
+ "header.auth",
212
+ "body.token",
213
+ "url"
214
+ ]
215
+ },
216
+ "auth_field_format": {
217
+ "type": [
218
+ "string",
219
+ "array"
220
+ ],
221
+ "description": "The format used to pass the authentication -- variables {token}, {username}, {password} will be replaced with the proper values. {b64}...{/b64} will base64 encode everything between the start and end tag.",
222
+ "default": "{token}",
223
+ "examples": [
224
+ "{token}",
225
+ "Token {token}",
226
+ "{username}:{password}",
227
+ "Basic {b64}{username}:{password}{/b64}",
228
+ "token={token}"
229
+ ]
230
+ }
231
+ },
232
+ "required": [
233
+ "auth_method"
234
+ ],
235
+ "allOf": [
236
+ {
237
+ "if": {
238
+ "properties": {
239
+ "auth_method": {
240
+ "enum": [
241
+ "basic user_password"
242
+ ]
243
+ }
244
+ }
245
+ },
246
+ "then": {
247
+ "required": [
248
+ "username",
249
+ "password",
250
+ "auth_field",
251
+ "auth_field_format"
252
+ ]
253
+ }
254
+ },
255
+ {
256
+ "if": {
257
+ "properties": {
258
+ "auth_method": {
259
+ "enum": [
260
+ "request_token"
261
+ ]
262
+ }
263
+ }
264
+ },
265
+ "then": {
266
+ "required": [
267
+ "username",
268
+ "password",
269
+ "auth_field",
270
+ "auth_field_format"
271
+ ]
272
+ }
273
+ },
274
+ {
275
+ "if": {
276
+ "properties": {
277
+ "auth_method": {
278
+ "enum": [
279
+ "static_token"
280
+ ]
281
+ }
282
+ }
283
+ },
284
+ "then": {
285
+ "required": [
286
+ "token",
287
+ "auth_field",
288
+ "auth_field_format"
289
+ ]
290
+ }
291
+ }
292
+ ]
293
+ },
294
+ "healthcheck": {
295
+ "type": "object",
296
+ "properties": {
297
+ "type": {
298
+ "type": "string",
299
+ "description": "The type of healthcheck to run",
300
+ "default": "intermittent",
301
+ "enum": [
302
+ "none",
303
+ "startup",
304
+ "intermittent"
305
+ ]
306
+ },
307
+ "frequency": {
308
+ "type": "integer",
309
+ "description": "How often the healthcheck should run (in milliseconds).",
310
+ "default": 300000,
311
+ "minimum": 60000,
312
+ "maximum": 3600000
313
+ },
314
+ "protocol": {
315
+ "type": "string",
316
+ "description": "The protocol used to check the health of the system",
317
+ "default": "REST",
318
+ "enum": [
319
+ "REST"
320
+ ]
321
+ },
322
+ "URI_Path": {
323
+ "type": "string",
324
+ "description": "The path used to check the health of the system",
325
+ "default": "",
326
+ "examples": [
327
+ "/api/version/ping"
328
+ ]
329
+ }
330
+ },
331
+ "required": [
332
+ "type"
333
+ ],
334
+ "allOf": [
335
+ {
336
+ "if": {
337
+ "properties": {
338
+ "type": {
339
+ "enum": [
340
+ "intermittent"
341
+ ]
342
+ }
343
+ }
344
+ },
345
+ "then": {
346
+ "required": [
347
+ "frequency"
348
+ ]
349
+ }
350
+ }
351
+ ]
352
+ },
353
+ "throttle": {
354
+ "type": "object",
355
+ "properties": {
356
+ "throttle_enabled": {
357
+ "type": "boolean",
358
+ "description": "Whether to use throttling",
359
+ "default": false
360
+ },
361
+ "number_pronghorns": {
362
+ "type": "integer",
363
+ "description": "whether the throttling is being done in a single Pronghorn instance or whether requests are being throttled across multiple pronghorns",
364
+ "default": 1,
365
+ "minimum": 1,
366
+ "maximum": 20
367
+ },
368
+ "sync_async": {
369
+ "type": "string",
370
+ "description": "should the queue handle request synchronously or asynchronously",
371
+ "default": "sync",
372
+ "examples": [
373
+ "async",
374
+ "sync"
375
+ ]
376
+ },
377
+ "max_in_queue": {
378
+ "type": "integer",
379
+ "description": "the maximum number of requests that Pronghorn should allow into the queue before rejecting requests",
380
+ "default": 1000,
381
+ "minimum": 1,
382
+ "maximum": 5000
383
+ },
384
+ "concurrent_max": {
385
+ "type": "integer",
386
+ "description": "defines the number of request that Pronghorn can send aruba_airwave at one time",
387
+ "default": 1,
388
+ "minimum": 0,
389
+ "maximum": 1000
390
+ },
391
+ "expire_timeout": {
392
+ "type": "integer",
393
+ "description": "After the request has completed, Pronghorn will wait the additional expire timeout time (in milliseconds) prior to sending in the next request.",
394
+ "default": 0,
395
+ "minimum": 0,
396
+ "maximum": 60000
397
+ },
398
+ "avg_runtime": {
399
+ "type": "integer",
400
+ "description": "an approximate average of how long it takes aruba_airwave to handle each request",
401
+ "default": 200,
402
+ "minimum": 50,
403
+ "maximum": 60000
404
+ },
405
+ "priorities": {
406
+ "type": "array",
407
+ "description": "define your priorities here",
408
+ "items": {
409
+ "type": "object",
410
+ "properties": {
411
+ "value": {
412
+ "type": "number",
413
+ "description": "Defines a priority - this number is what is passed in on a priority request"
414
+ },
415
+ "percent": {
416
+ "type": "number",
417
+ "description": "this is the percent of the queue that comes before the priority request (0 is front of queue, 100 is last in queue)"
418
+ }
419
+ }
420
+ }
421
+ }
422
+ },
423
+ "required": [
424
+ "throttle_enabled"
425
+ ],
426
+ "allOf": [
427
+ {
428
+ "if": {
429
+ "properties": {
430
+ "throttle_enabled": {
431
+ "enum": [
432
+ true
433
+ ]
434
+ }
435
+ }
436
+ },
437
+ "then": {
438
+ "required": [
439
+ "number_pronghorns",
440
+ "sync_async",
441
+ "max_in_queue",
442
+ "concurrent_max",
443
+ "expire_timeout",
444
+ "avg_runtime"
445
+ ]
446
+ }
447
+ }
448
+ ]
449
+ },
450
+ "request": {
451
+ "type": "object",
452
+ "properties": {
453
+ "number_redirects": {
454
+ "type": "integer",
455
+ "description": "how many redirects before it gives up on the request",
456
+ "default": 0,
457
+ "minimum": 0,
458
+ "maximum": 20
459
+ },
460
+ "number_retries": {
461
+ "type": "integer",
462
+ "description": "how many attempt to make before it gives up on the request",
463
+ "default": 3,
464
+ "minimum": 0,
465
+ "maximum": 20
466
+ },
467
+ "limit_retry_error": {
468
+ "type": [
469
+ "integer",
470
+ "array"
471
+ ],
472
+ "description": "http error status number which defines that no capacity was available and thus after waiting a short interval the adapter can retry the request. Supports an array of numbers or strings including a range provided as '###-###'",
473
+ "default": 0
474
+ },
475
+ "failover_codes": {
476
+ "type": "array",
477
+ "description": "An array of codes where it is ok to try another method",
478
+ "items": {
479
+ "type": "integer"
480
+ }
481
+ },
482
+ "attempt_timeout": {
483
+ "type": "integer",
484
+ "description": "how long Pronghorn should wait before aborting the attempt",
485
+ "default": 5000,
486
+ "minimum": 1000,
487
+ "maximum": 3600000
488
+ },
489
+ "global_request": {
490
+ "type": "object",
491
+ "description": "Global Request data that is overriden by the request object",
492
+ "properties": {
493
+ "payload": {
494
+ "type": "object",
495
+ "description": "payload fields that will be appended to the provided payload (excluding GET calls)"
496
+ },
497
+ "uriOptions": {
498
+ "type": "object",
499
+ "description": "options that will be appended to all GET calls"
500
+ },
501
+ "addlHeaders": {
502
+ "type": "object",
503
+ "description": "headers that will be appended to the headers for the call"
504
+ },
505
+ "authData": {
506
+ "type": "object",
507
+ "description": "authentication data that will be appended to the payload for authentication calls"
508
+ }
509
+ }
510
+ },
511
+ "healthcheck_on_timeout": {
512
+ "type": "boolean",
513
+ "description": "Should the system run a healthcheck on timeout",
514
+ "default": false
515
+ },
516
+ "return_raw": {
517
+ "type": "boolean",
518
+ "description": "Will include the raw response with the data that is returned",
519
+ "default": false
520
+ },
521
+ "archiving": {
522
+ "type": "boolean",
523
+ "description": "Archives each request/response and corresponding metrics",
524
+ "default": false
525
+ }
526
+ },
527
+ "required": [
528
+ "number_retries",
529
+ "limit_retry_error",
530
+ "attempt_timeout",
531
+ "healthcheck_on_timeout"
532
+ ]
533
+ },
534
+ "proxy": {
535
+ "type": "object",
536
+ "properties": {
537
+ "enabled": {
538
+ "type": "boolean",
539
+ "description": "Whether or not there is a proxy for the Server",
540
+ "default": false
541
+ },
542
+ "host": {
543
+ "type": "string",
544
+ "description": "hostname of the proxy for the server",
545
+ "default": "",
546
+ "examples": [
547
+ "proxy.customer.com"
548
+ ]
549
+ },
550
+ "port": {
551
+ "type": "integer",
552
+ "description": "port on which to connect to the proxy for the server",
553
+ "default": 443,
554
+ "minimum": 1,
555
+ "maximum": 65535
556
+ },
557
+ "protocol": {
558
+ "type": "string",
559
+ "description": "the protocol to use to connect to the proxy",
560
+ "default": "http",
561
+ "enum": [
562
+ "http",
563
+ "https",
564
+ "socks4",
565
+ "socks5",
566
+ "tls"
567
+ ]
568
+ }
569
+ },
570
+ "required": [
571
+ "enabled"
572
+ ],
573
+ "allOf": [
574
+ {
575
+ "if": {
576
+ "properties": {
577
+ "enabled": {
578
+ "enum": [
579
+ true
580
+ ]
581
+ }
582
+ }
583
+ },
584
+ "then": {
585
+ "required": [
586
+ "host",
587
+ "port"
588
+ ]
589
+ }
590
+ }
591
+ ]
592
+ },
593
+ "ssl": {
594
+ "type": "object",
595
+ "properties": {
596
+ "ecdhCurve": {
597
+ "type": "string",
598
+ "description": "Do we need to set the autoCurve on this request",
599
+ "default": "",
600
+ "examples": [
601
+ "auto"
602
+ ]
603
+ },
604
+ "enabled": {
605
+ "type": "boolean",
606
+ "description": "Whether or not ssl is enabled on Server",
607
+ "default": false
608
+ },
609
+ "accept_invalid_cert": {
610
+ "type": "boolean",
611
+ "description": "Whether the adapter should accept invalid certificates",
612
+ "default": false
613
+ },
614
+ "ca_file": {
615
+ "type": "string",
616
+ "description": "The fully qualified path name to the CA file used for SSL",
617
+ "default": "",
618
+ "examples": [
619
+ "security/ca.pem"
620
+ ]
621
+ },
622
+ "key_file": {
623
+ "type": "string",
624
+ "description": "The fully qualified path name to the key file used for SSL",
625
+ "default": "",
626
+ "examples": [
627
+ "security/key.pem"
628
+ ]
629
+ },
630
+ "cert_file": {
631
+ "type": "string",
632
+ "description": "The fully qualified path name to the Cert file used for SSL",
633
+ "default": "",
634
+ "examples": [
635
+ "security/cert.pem"
636
+ ]
637
+ },
638
+ "secure_protocol": {
639
+ "type": "string",
640
+ "description": "What protocol to set on the ssl request",
641
+ "default": "",
642
+ "examples": [
643
+ "SSLv2_method",
644
+ "SSLv3_method"
645
+ ]
646
+ },
647
+ "ciphers": {
648
+ "type": "string",
649
+ "description": "Hyphen separated list of acceptable ciphers",
650
+ "default": "",
651
+ "examples": [
652
+ "DHE-RSA-AES256-SHA"
653
+ ]
654
+ }
655
+ },
656
+ "required": [
657
+ "enabled"
658
+ ],
659
+ "allOf": [
660
+ {
661
+ "if": {
662
+ "properties": {
663
+ "enabled": {
664
+ "enum": [
665
+ true
666
+ ]
667
+ }
668
+ }
669
+ },
670
+ "then": {
671
+ "required": [
672
+ "accept_invalid_cert",
673
+ "ciphers"
674
+ ]
675
+ }
676
+ },
677
+ {
678
+ "if": {
679
+ "allOf": [
680
+ {
681
+ "properties": {
682
+ "enabled": {
683
+ "enum": [
684
+ true
685
+ ]
686
+ }
687
+ }
688
+ },
689
+ {
690
+ "properties": {
691
+ "accept_invalid_cert": {
692
+ "enum": [
693
+ false
694
+ ]
695
+ }
696
+ }
697
+ }
698
+ ]
699
+ },
700
+ "then": {
701
+ "required": [
702
+ "ca_file"
703
+ ]
704
+ }
705
+ }
706
+ ]
707
+ },
708
+ "mongo": {
709
+ "type": "object",
710
+ "properties": {
711
+ "host": {
712
+ "type": "string",
713
+ "description": "host where mongo database can be found",
714
+ "default": "",
715
+ "examples": [
716
+ "localhost"
717
+ ]
718
+ },
719
+ "port": {
720
+ "type": "integer",
721
+ "description": "port on which to connect to the mongo database",
722
+ "default": 443,
723
+ "minimum": 0,
724
+ "maximum": 65535
725
+ },
726
+ "database": {
727
+ "type": "string",
728
+ "description": "The name of the database to store adapter information in",
729
+ "default": "",
730
+ "examples": [
731
+ "adapter-xyz"
732
+ ]
733
+ },
734
+ "username": {
735
+ "type": "string",
736
+ "description": "The user to connect to the database with",
737
+ "default": "",
738
+ "examples": [
739
+ "username"
740
+ ]
741
+ },
742
+ "password": {
743
+ "type": "string",
744
+ "description": "The password to connect to the database with",
745
+ "default": "",
746
+ "examples": [
747
+ "password"
748
+ ]
749
+ },
750
+ "replSet": {
751
+ "type": "string",
752
+ "description": "The replica set for the database",
753
+ "default": "",
754
+ "examples": [
755
+ "my_repolica_set"
756
+ ]
757
+ },
758
+ "db_ssl": {
759
+ "type": "object",
760
+ "description": "SSL for mongo database connection",
761
+ "properties": {
762
+ "enabled": {
763
+ "type": "boolean",
764
+ "description": "Whether or not ssl is enabled on Database Server",
765
+ "default": false
766
+ },
767
+ "accept_invalid_cert": {
768
+ "type": "boolean",
769
+ "description": "Whether the adapter should accept invalid certificates",
770
+ "default": false
771
+ },
772
+ "ca_file": {
773
+ "type": "string",
774
+ "description": "The fully qualified path name to the CA file used for Database SSL",
775
+ "default": "",
776
+ "examples": [
777
+ "security/ca.pem"
778
+ ]
779
+ },
780
+ "key_file": {
781
+ "type": "string",
782
+ "description": "The fully qualified path name to the key file used for Database SSL",
783
+ "default": "",
784
+ "examples": [
785
+ "security/key.pem"
786
+ ]
787
+ },
788
+ "cert_file": {
789
+ "type": "string",
790
+ "description": "The fully qualified path name to the Cert file used for Database SSL",
791
+ "default": "",
792
+ "examples": [
793
+ "security/cert.pem"
794
+ ]
795
+ }
796
+ }
797
+ }
798
+ }
799
+ }
800
+ }
801
+ }