@itentialopensource/adapter-f5_velos 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 (63) hide show
  1. package/.eslintignore +5 -0
  2. package/.eslintrc.js +18 -0
  3. package/.jshintrc +3 -0
  4. package/AUTH.md +39 -0
  5. package/BROKER.md +199 -0
  6. package/CALLS.md +170 -0
  7. package/CHANGELOG.md +9 -0
  8. package/CODE_OF_CONDUCT.md +43 -0
  9. package/CONTRIBUTING.md +172 -0
  10. package/ENHANCE.md +69 -0
  11. package/LICENSE +201 -0
  12. package/PROPERTIES.md +641 -0
  13. package/README.md +337 -0
  14. package/SUMMARY.md +9 -0
  15. package/SYSTEMINFO.md +11 -0
  16. package/TROUBLESHOOT.md +47 -0
  17. package/adapter.js +2381 -0
  18. package/adapterBase.js +1787 -0
  19. package/entities/.generic/action.json +214 -0
  20. package/entities/.generic/schema.json +28 -0
  21. package/entities/.system/action.json +50 -0
  22. package/entities/.system/mockdatafiles/getToken-default.json +3 -0
  23. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  24. package/entities/.system/schema.json +19 -0
  25. package/entities/.system/schemaTokenReq.json +53 -0
  26. package/entities/.system/schemaTokenResp.json +53 -0
  27. package/entities/F5OpenconfigSystem/action.json +185 -0
  28. package/entities/F5OpenconfigSystem/schema.json +71 -0
  29. package/entities/F5UtilsFileTransfer/action.json +205 -0
  30. package/entities/F5UtilsFileTransfer/schema.json +72 -0
  31. package/error.json +190 -0
  32. package/package.json +88 -0
  33. package/pronghorn.json +1264 -0
  34. package/propertiesDecorators.json +14 -0
  35. package/propertiesSchema.json +1248 -0
  36. package/refs?service=git-upload-pack +0 -0
  37. package/report/F5 velos.json +1537 -0
  38. package/report/creationReport.json +324 -0
  39. package/sampleProperties.json +195 -0
  40. package/test/integration/adapterTestBasicGet.js +83 -0
  41. package/test/integration/adapterTestConnectivity.js +93 -0
  42. package/test/integration/adapterTestIntegration.js +837 -0
  43. package/test/unit/adapterBaseTestUnit.js +949 -0
  44. package/test/unit/adapterTestUnit.js +1794 -0
  45. package/utils/adapterInfo.js +206 -0
  46. package/utils/addAuth.js +94 -0
  47. package/utils/artifactize.js +146 -0
  48. package/utils/basicGet.js +50 -0
  49. package/utils/checkMigrate.js +63 -0
  50. package/utils/entitiesToDB.js +178 -0
  51. package/utils/findPath.js +74 -0
  52. package/utils/methodDocumentor.js +225 -0
  53. package/utils/modify.js +154 -0
  54. package/utils/packModificationScript.js +35 -0
  55. package/utils/patches2bundledDeps.js +90 -0
  56. package/utils/pre-commit.sh +32 -0
  57. package/utils/removeHooks.js +20 -0
  58. package/utils/setup.js +33 -0
  59. package/utils/tbScript.js +246 -0
  60. package/utils/tbUtils.js +490 -0
  61. package/utils/testRunner.js +298 -0
  62. package/utils/troubleshootingAdapter.js +195 -0
  63. package/workflows/README.md +3 -0
package/pronghorn.json ADDED
@@ -0,0 +1,1264 @@
1
+ {
2
+ "id": "@itentialopensource/adapter-f5_velos",
3
+ "type": "Adapter",
4
+ "export": "F5Velos",
5
+ "title": "F5_velos",
6
+ "src": "adapter.js",
7
+ "roles": [
8
+ "admin"
9
+ ],
10
+ "methods": [
11
+ {
12
+ "name": "iapUpdateAdapterConfiguration",
13
+ "summary": "Updates the adapter configuration",
14
+ "description": "Updates the adapter configuration file with the provided changes",
15
+ "input": [
16
+ {
17
+ "name": "configFile",
18
+ "type": "string",
19
+ "info": "The name of the file to change",
20
+ "required": true,
21
+ "schema": {
22
+ "title": "configFile",
23
+ "type": "string"
24
+ }
25
+ },
26
+ {
27
+ "name": "changes",
28
+ "type": "object",
29
+ "info": "JSON object containing the configuration changes",
30
+ "required": true,
31
+ "schema": {
32
+ "title": "changes",
33
+ "type": "object"
34
+ }
35
+ },
36
+ {
37
+ "name": "entity",
38
+ "type": "string",
39
+ "info": "The entity in which the changes are being made",
40
+ "required": false,
41
+ "schema": {
42
+ "title": "entity",
43
+ "type": "string"
44
+ }
45
+ },
46
+ {
47
+ "name": "type",
48
+ "type": "string",
49
+ "info": "The type of file to change - action, schema, or mock",
50
+ "required": false,
51
+ "schema": {
52
+ "title": "type",
53
+ "type": "string"
54
+ }
55
+ },
56
+ {
57
+ "name": "action",
58
+ "type": "string",
59
+ "info": "The action to be changed",
60
+ "required": false,
61
+ "schema": {
62
+ "title": "action",
63
+ "type": "string"
64
+ }
65
+ }
66
+ ],
67
+ "output": {
68
+ "name": "result",
69
+ "type": "object",
70
+ "description": "A JSON Object containing status, code and the result",
71
+ "schema": {
72
+ "title": "result",
73
+ "type": "object"
74
+ }
75
+ },
76
+ "roles": [
77
+ "admin"
78
+ ],
79
+ "route": {
80
+ "verb": "POST",
81
+ "path": "/iapUpdateAdapterConfiguration"
82
+ },
83
+ "task": true
84
+ },
85
+ {
86
+ "name": "iapFindAdapterPath",
87
+ "summary": "Provides the ability to see if a particular API path is supported by the adapter",
88
+ "description": "Provides the ability to see if a particular API path is supported by the adapter",
89
+ "input": [
90
+ {
91
+ "name": "apiPath",
92
+ "type": "string",
93
+ "info": "The API Path you want to check - make sure to not include base path and version",
94
+ "description": "The API Path you want to check - make sure to not include base path and version",
95
+ "schema": {
96
+ "title": "apiPath",
97
+ "type": "string"
98
+ },
99
+ "required": true
100
+ }
101
+ ],
102
+ "output": {
103
+ "name": "result",
104
+ "type": "object",
105
+ "description": "A JSON Object containing the result",
106
+ "schema": {
107
+ "title": "result",
108
+ "type": "object"
109
+ }
110
+ },
111
+ "roles": [
112
+ "admin"
113
+ ],
114
+ "route": {
115
+ "verb": "POST",
116
+ "path": "/iapFindAdapterPath"
117
+ },
118
+ "task": true
119
+ },
120
+ {
121
+ "name": "iapSuspendAdapter",
122
+ "summary": "Suspends the adapter",
123
+ "description": "Suspends the adapter",
124
+ "input": [
125
+ {
126
+ "name": "mode",
127
+ "type": "enum",
128
+ "enumerals": [
129
+ "pause",
130
+ "error"
131
+ ],
132
+ "info": "How incoming requests are handled. Defaults to 'pause'",
133
+ "description": "How incoming requests are handled. Defaults to 'pause'",
134
+ "schema": {
135
+ "title": "mode",
136
+ "type": "string"
137
+ },
138
+ "required": false
139
+ }
140
+ ],
141
+ "output": {
142
+ "name": "result",
143
+ "type": "object",
144
+ "description": "A JSON Object containing the adapter suspended status",
145
+ "schema": {
146
+ "title": "result",
147
+ "type": "object"
148
+ }
149
+ },
150
+ "roles": [
151
+ "admin"
152
+ ],
153
+ "route": {
154
+ "verb": "POST",
155
+ "path": "/iapSuspendAdapter"
156
+ },
157
+ "task": true
158
+ },
159
+ {
160
+ "name": "iapUnsuspendAdapter",
161
+ "summary": "Unsuspends the adapter",
162
+ "description": "Unsuspends the adapter",
163
+ "input": [],
164
+ "output": {
165
+ "name": "result",
166
+ "type": "object",
167
+ "description": "A JSON Object containing the adapter suspended status",
168
+ "schema": {
169
+ "title": "result",
170
+ "type": "object"
171
+ }
172
+ },
173
+ "roles": [
174
+ "admin"
175
+ ],
176
+ "route": {
177
+ "verb": "POST",
178
+ "path": "/iapUnsuspendAdapter"
179
+ },
180
+ "task": true
181
+ },
182
+ {
183
+ "name": "iapGetAdapterQueue",
184
+ "summary": "Return the requests that are waiting in the queue if throttling is enabled",
185
+ "description": "Return the requests that are waiting in the queue if throttling is enabled",
186
+ "input": [],
187
+ "output": {
188
+ "name": "result",
189
+ "type": "object",
190
+ "description": "A JSON Object containing the adapter queue",
191
+ "schema": {
192
+ "title": "result",
193
+ "type": "object"
194
+ }
195
+ },
196
+ "roles": [
197
+ "admin"
198
+ ],
199
+ "route": {
200
+ "verb": "POST",
201
+ "path": "/iapGetAdapterQueue"
202
+ },
203
+ "task": true
204
+ },
205
+ {
206
+ "name": "iapTroubleshootAdapter",
207
+ "summary": "Runs troubleshoot script for adapter",
208
+ "description": "Runs troubleshoot script for adapter",
209
+ "input": [
210
+ {
211
+ "name": "props",
212
+ "type": "object",
213
+ "info": "Object containing configuration, healthcheck and auth properties {'connProps':{'host': 'api.service.com', 'base_path': '/', 'protocol': 'http', 'port': 443, 'version': 'v1'},'healthCheckEndpoint': '/healthcheck', 'auth': {'auth_method': 'no authentication', 'username': 'username', 'password': 'password'}}",
214
+ "required": true,
215
+ "schema": {
216
+ "title": "props",
217
+ "type": "object"
218
+ }
219
+ },
220
+ {
221
+ "name": "persistFlag",
222
+ "type": "boolean",
223
+ "info": "Whether the input properties should be saved",
224
+ "required": true
225
+ }
226
+ ],
227
+ "output": {
228
+ "name": "result",
229
+ "type": "object",
230
+ "description": "A JSON Object containing the test results",
231
+ "schema": {
232
+ "title": "result",
233
+ "type": "object"
234
+ }
235
+ },
236
+ "roles": [
237
+ "admin"
238
+ ],
239
+ "route": {
240
+ "verb": "POST",
241
+ "path": "/iapTroubleshootAdapter"
242
+ },
243
+ "task": true
244
+ },
245
+ {
246
+ "name": "iapRunAdapterHealthcheck",
247
+ "summary": "Runs healthcheck script for adapter",
248
+ "description": "Runs healthcheck script for adapter",
249
+ "input": [],
250
+ "output": {
251
+ "name": "result",
252
+ "type": "boolean",
253
+ "description": "Whether healthcheck passed or failed"
254
+ },
255
+ "roles": [
256
+ "admin"
257
+ ],
258
+ "route": {
259
+ "verb": "POST",
260
+ "path": "/iapRunAdapterHealthcheck"
261
+ },
262
+ "task": true
263
+ },
264
+ {
265
+ "name": "iapRunAdapterConnectivity",
266
+ "summary": "Runs connectivity check script for adapter",
267
+ "description": "Runs connectivity check script for adapter",
268
+ "input": [],
269
+ "output": {
270
+ "name": "result",
271
+ "type": "object",
272
+ "description": "A JSON Object containing the test results",
273
+ "schema": {
274
+ "title": "result",
275
+ "type": "object"
276
+ }
277
+ },
278
+ "roles": [
279
+ "admin"
280
+ ],
281
+ "route": {
282
+ "verb": "POST",
283
+ "path": "/iapRunAdapterConnectivity"
284
+ },
285
+ "task": true
286
+ },
287
+ {
288
+ "name": "iapRunAdapterBasicGet",
289
+ "summary": "Runs basicGet script for adapter",
290
+ "description": "Runs basicGet script for adapter",
291
+ "input": [],
292
+ "output": {
293
+ "name": "result",
294
+ "type": "object",
295
+ "description": "A JSON Object containing the test results",
296
+ "schema": {
297
+ "title": "result",
298
+ "type": "object"
299
+ }
300
+ },
301
+ "roles": [
302
+ "admin"
303
+ ],
304
+ "route": {
305
+ "verb": "POST",
306
+ "path": "/iapRunAdapterBasicGet"
307
+ },
308
+ "task": true
309
+ },
310
+ {
311
+ "name": "iapMoveAdapterEntitiesToDB",
312
+ "summary": "Moves entities from an adapter into the IAP database",
313
+ "description": "Moves entities from an adapter into the IAP database",
314
+ "input": [],
315
+ "output": {
316
+ "name": "res",
317
+ "type": "object",
318
+ "description": "A JSON Object containing status, code and the response from the mongo transaction",
319
+ "schema": {
320
+ "title": "res",
321
+ "type": "object"
322
+ }
323
+ },
324
+ "roles": [
325
+ "admin"
326
+ ],
327
+ "route": {
328
+ "verb": "POST",
329
+ "path": "/iapMoveAdapterEntitiesToDB"
330
+ },
331
+ "task": true
332
+ },
333
+ {
334
+ "name": "genericAdapterRequest",
335
+ "summary": "Makes the requested generic call",
336
+ "description": "Makes the requested generic call",
337
+ "input": [
338
+ {
339
+ "name": "uriPath",
340
+ "type": "string",
341
+ "info": "the path of the api call - do not include the host, port, base path or version",
342
+ "description": "the path of the api call",
343
+ "schema": {
344
+ "title": "uriPath",
345
+ "type": "string"
346
+ },
347
+ "required": true
348
+ },
349
+ {
350
+ "name": "restMethod",
351
+ "type": "string",
352
+ "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
353
+ "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
354
+ "schema": {
355
+ "title": "restMethod",
356
+ "type": "string"
357
+ },
358
+ "required": true
359
+ },
360
+ {
361
+ "name": "queryData",
362
+ "type": "object",
363
+ "info": "the query parameters to be put on the url (optional)",
364
+ "description": "the query parameters to be put on the url (optional)",
365
+ "schema": {
366
+ "title": "queryData",
367
+ "type": "object"
368
+ },
369
+ "required": false
370
+ },
371
+ {
372
+ "name": "requestBody",
373
+ "type": "object",
374
+ "info": "the payload to be sent with the request (optional)",
375
+ "description": "the payload to be sent with the request (optional)",
376
+ "schema": {
377
+ "title": "requestBody",
378
+ "type": "object"
379
+ },
380
+ "required": false
381
+ },
382
+ {
383
+ "name": "addlHeaders",
384
+ "type": "object",
385
+ "info": "additional headers to be put on the call (optional)",
386
+ "description": "additional headers to be put on the call (optional)",
387
+ "schema": {
388
+ "title": "addlHeaders",
389
+ "type": "object"
390
+ },
391
+ "required": false
392
+ }
393
+ ],
394
+ "output": {
395
+ "name": "result",
396
+ "type": "object",
397
+ "description": "A JSON Object containing status, code and the result",
398
+ "schema": {
399
+ "title": "result",
400
+ "type": "object"
401
+ }
402
+ },
403
+ "roles": [
404
+ "admin"
405
+ ],
406
+ "route": {
407
+ "verb": "POST",
408
+ "path": "/genericAdapterRequest"
409
+ },
410
+ "task": true
411
+ },
412
+ {
413
+ "name": "genericAdapterRequestNoBasePath",
414
+ "summary": "Makes the requested generic call",
415
+ "description": "Makes the requested generic call",
416
+ "input": [
417
+ {
418
+ "name": "uriPath",
419
+ "type": "string",
420
+ "info": "the path of the api call - do not include the host, port, base path or version",
421
+ "description": "the path of the api call",
422
+ "schema": {
423
+ "title": "uriPath",
424
+ "type": "string"
425
+ },
426
+ "required": true
427
+ },
428
+ {
429
+ "name": "restMethod",
430
+ "type": "string",
431
+ "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
432
+ "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
433
+ "schema": {
434
+ "title": "restMethod",
435
+ "type": "string"
436
+ },
437
+ "required": true
438
+ },
439
+ {
440
+ "name": "queryData",
441
+ "type": "object",
442
+ "info": "the query parameters to be put on the url (optional)",
443
+ "description": "the query parameters to be put on the url (optional)",
444
+ "schema": {
445
+ "title": "queryData",
446
+ "type": "object"
447
+ },
448
+ "required": false
449
+ },
450
+ {
451
+ "name": "requestBody",
452
+ "type": "object",
453
+ "info": "the payload to be sent with the request (optional)",
454
+ "description": "the payload to be sent with the request (optional)",
455
+ "schema": {
456
+ "title": "requestBody",
457
+ "type": "object"
458
+ },
459
+ "required": false
460
+ },
461
+ {
462
+ "name": "addlHeaders",
463
+ "type": "object",
464
+ "info": "additional headers to be put on the call (optional)",
465
+ "description": "additional headers to be put on the call (optional)",
466
+ "schema": {
467
+ "title": "addlHeaders",
468
+ "type": "object"
469
+ },
470
+ "required": false
471
+ }
472
+ ],
473
+ "output": {
474
+ "name": "result",
475
+ "type": "object",
476
+ "description": "A JSON Object containing status, code and the result",
477
+ "schema": {
478
+ "title": "result",
479
+ "type": "object"
480
+ }
481
+ },
482
+ "roles": [
483
+ "admin"
484
+ ],
485
+ "route": {
486
+ "verb": "POST",
487
+ "path": "/genericAdapterRequestNoBasePath"
488
+ },
489
+ "task": true
490
+ },
491
+ {
492
+ "name": "getDevice",
493
+ "summary": "Get the Appliance",
494
+ "description": "Get the Appliance",
495
+ "input": [
496
+ {
497
+ "name": "deviceName",
498
+ "type": "string",
499
+ "info": "An Appliance Device Name",
500
+ "required": true,
501
+ "schema": {
502
+ "title": "deviceName",
503
+ "type": "string"
504
+ }
505
+ }
506
+ ],
507
+ "output": {
508
+ "name": "result",
509
+ "type": "object",
510
+ "description": "A JSON Object containing status, code and the result",
511
+ "schema": {
512
+ "title": "result",
513
+ "type": "object"
514
+ }
515
+ },
516
+ "roles": [
517
+ "admin"
518
+ ],
519
+ "route": {
520
+ "verb": "POST",
521
+ "path": "/getDevice"
522
+ },
523
+ "task": true
524
+ },
525
+ {
526
+ "name": "getDevicesFiltered",
527
+ "summary": "Get Appliances that match the filter",
528
+ "description": "Get Appliances that match the filter",
529
+ "input": [
530
+ {
531
+ "name": "options",
532
+ "type": "object",
533
+ "info": "options - e.g. { 'start': 1, 'limit': 20, 'filter': { 'name': 'abc123' } }",
534
+ "required": true,
535
+ "schema": {
536
+ "title": "options",
537
+ "type": "object"
538
+ }
539
+ }
540
+ ],
541
+ "output": {
542
+ "name": "result",
543
+ "type": "array",
544
+ "description": "A JSON Object containing status, code and the result",
545
+ "schema": {
546
+ "title": "result",
547
+ "type": "array"
548
+ }
549
+ },
550
+ "roles": [
551
+ "admin"
552
+ ],
553
+ "route": {
554
+ "verb": "POST",
555
+ "path": "/getDevicesFiltered"
556
+ },
557
+ "task": true
558
+ },
559
+ {
560
+ "name": "isAlive",
561
+ "summary": "Checks the status for the provided Appliance",
562
+ "description": "Checks the status for the provided Appliance",
563
+ "input": [
564
+ {
565
+ "name": "deviceName",
566
+ "type": "string",
567
+ "info": "An Appliance Device Name",
568
+ "required": true,
569
+ "schema": {
570
+ "title": "deviceName",
571
+ "type": "string"
572
+ }
573
+ }
574
+ ],
575
+ "output": {
576
+ "name": "result",
577
+ "type": "boolean",
578
+ "description": "A JSON Object containing status, code and the result",
579
+ "schema": {
580
+ "title": "result",
581
+ "type": "boolean"
582
+ }
583
+ },
584
+ "roles": [
585
+ "admin"
586
+ ],
587
+ "route": {
588
+ "verb": "POST",
589
+ "path": "/isAlive"
590
+ },
591
+ "task": true
592
+ },
593
+ {
594
+ "name": "getConfig",
595
+ "summary": "Gets a config for the provided Appliance",
596
+ "description": "Gets a config for the provided Appliance",
597
+ "input": [
598
+ {
599
+ "name": "deviceName",
600
+ "type": "string",
601
+ "info": "An Appliance Device Name",
602
+ "required": true,
603
+ "schema": {
604
+ "title": "deviceName",
605
+ "type": "string"
606
+ }
607
+ },
608
+ {
609
+ "name": "format",
610
+ "type": "string",
611
+ "info": "The format to be returned - this is ignored as we always return json",
612
+ "required": false,
613
+ "schema": {
614
+ "title": "format",
615
+ "type": "string"
616
+ }
617
+ }
618
+ ],
619
+ "output": {
620
+ "name": "result",
621
+ "type": "object",
622
+ "description": "A JSON Object containing status, code and the result",
623
+ "schema": {
624
+ "title": "result",
625
+ "type": "object"
626
+ }
627
+ },
628
+ "roles": [
629
+ "admin"
630
+ ],
631
+ "route": {
632
+ "verb": "POST",
633
+ "path": "/getConfig"
634
+ },
635
+ "task": true
636
+ },
637
+ {
638
+ "name": "iapGetDeviceCount",
639
+ "summary": "Gets a device count from the system",
640
+ "description": "Gets a device count from the system",
641
+ "input": [],
642
+ "output": {
643
+ "name": "result",
644
+ "type": "object",
645
+ "description": "A JSON Object containing status, code and the result",
646
+ "schema": {
647
+ "title": "result",
648
+ "type": "object"
649
+ }
650
+ },
651
+ "roles": [
652
+ "admin"
653
+ ],
654
+ "route": {
655
+ "verb": "POST",
656
+ "path": "/iapGetDeviceCount"
657
+ },
658
+ "task": true
659
+ },
660
+ {
661
+ "name": "getDataF5UtilsFileTransferFile",
662
+ "summary": "File utility commands.",
663
+ "description": "File utility commands.",
664
+ "input": [],
665
+ "output": {
666
+ "name": "result",
667
+ "type": "object",
668
+ "description": "A JSON Object containing status, code and the result",
669
+ "schema": {
670
+ "title": "result",
671
+ "type": "object"
672
+ }
673
+ },
674
+ "roles": [
675
+ "admin"
676
+ ],
677
+ "route": {
678
+ "verb": "GET",
679
+ "path": "/getDataF5UtilsFileTransferFile"
680
+ },
681
+ "task": true
682
+ },
683
+ {
684
+ "name": "postDataF5UtilsFileTransferFile",
685
+ "summary": "File utility commands.",
686
+ "description": "File utility commands.",
687
+ "input": [
688
+ {
689
+ "name": "file",
690
+ "type": "object",
691
+ "info": "File utility commands.: object",
692
+ "required": true,
693
+ "schema": {
694
+ "type": "object",
695
+ "definitions": {}
696
+ }
697
+ }
698
+ ],
699
+ "output": {
700
+ "name": "result",
701
+ "type": "object",
702
+ "description": "A JSON Object containing status, code and the result",
703
+ "schema": {
704
+ "title": "result",
705
+ "type": "object"
706
+ }
707
+ },
708
+ "roles": [
709
+ "admin"
710
+ ],
711
+ "route": {
712
+ "verb": "POST",
713
+ "path": "/postDataF5UtilsFileTransferFile"
714
+ },
715
+ "task": true
716
+ },
717
+ {
718
+ "name": "putDataF5UtilsFileTransferFile",
719
+ "summary": "File utility commands.",
720
+ "description": "File utility commands.",
721
+ "input": [
722
+ {
723
+ "name": "file",
724
+ "type": "object",
725
+ "info": "File utility commands.: object",
726
+ "required": true,
727
+ "schema": {
728
+ "type": "object",
729
+ "definitions": {}
730
+ }
731
+ }
732
+ ],
733
+ "output": {
734
+ "name": "result",
735
+ "type": "object",
736
+ "description": "A JSON Object containing status, code and the result",
737
+ "schema": {
738
+ "title": "result",
739
+ "type": "object"
740
+ }
741
+ },
742
+ "roles": [
743
+ "admin"
744
+ ],
745
+ "route": {
746
+ "verb": "POST",
747
+ "path": "/putDataF5UtilsFileTransferFile"
748
+ },
749
+ "task": true
750
+ },
751
+ {
752
+ "name": "patchDataF5UtilsFileTransferFile",
753
+ "summary": "File utility commands.",
754
+ "description": "File utility commands.",
755
+ "input": [
756
+ {
757
+ "name": "file",
758
+ "type": "object",
759
+ "info": "File utility commands.: object",
760
+ "required": true,
761
+ "schema": {
762
+ "type": "object",
763
+ "definitions": {}
764
+ }
765
+ }
766
+ ],
767
+ "output": {
768
+ "name": "result",
769
+ "type": "object",
770
+ "description": "A JSON Object containing status, code and the result",
771
+ "schema": {
772
+ "title": "result",
773
+ "type": "object"
774
+ }
775
+ },
776
+ "roles": [
777
+ "admin"
778
+ ],
779
+ "route": {
780
+ "verb": "POST",
781
+ "path": "/patchDataF5UtilsFileTransferFile"
782
+ },
783
+ "task": true
784
+ },
785
+ {
786
+ "name": "deleteDataF5UtilsFileTransferFile",
787
+ "summary": "File utility commands.",
788
+ "description": "File utility commands.",
789
+ "input": [],
790
+ "output": {
791
+ "name": "result",
792
+ "type": "object",
793
+ "description": "A JSON Object containing status, code and the result",
794
+ "schema": {
795
+ "title": "result",
796
+ "type": "object"
797
+ }
798
+ },
799
+ "roles": [
800
+ "admin"
801
+ ],
802
+ "route": {
803
+ "verb": "GET",
804
+ "path": "/deleteDataF5UtilsFileTransferFile"
805
+ },
806
+ "task": true
807
+ },
808
+ {
809
+ "name": "postDataF5UtilsFileTransferFileImport",
810
+ "summary": "Initiate an import of the remote file to the System.",
811
+ "description": "Initiate an import of the remote file to the System.",
812
+ "input": [
813
+ {
814
+ "name": "importParam",
815
+ "type": "object",
816
+ "info": "Initiate an import of the remote file to the System.: object",
817
+ "required": true,
818
+ "schema": {
819
+ "type": "object",
820
+ "definitions": {}
821
+ }
822
+ }
823
+ ],
824
+ "output": {
825
+ "name": "result",
826
+ "type": "object",
827
+ "description": "A JSON Object containing status, code and the result",
828
+ "schema": {
829
+ "title": "result",
830
+ "type": "object"
831
+ }
832
+ },
833
+ "roles": [
834
+ "admin"
835
+ ],
836
+ "route": {
837
+ "verb": "POST",
838
+ "path": "/postDataF5UtilsFileTransferFileImport"
839
+ },
840
+ "task": true
841
+ },
842
+ {
843
+ "name": "postDataF5UtilsFileTransferFileExport",
844
+ "summary": "Initiate an export of the file to the remote system.",
845
+ "description": "Initiate an export of the file to the remote system.",
846
+ "input": [
847
+ {
848
+ "name": "exportParam",
849
+ "type": "object",
850
+ "info": "Initiate an export of the file to the remote system.: object",
851
+ "required": true,
852
+ "schema": {
853
+ "type": "object",
854
+ "definitions": {}
855
+ }
856
+ }
857
+ ],
858
+ "output": {
859
+ "name": "result",
860
+ "type": "object",
861
+ "description": "A JSON Object containing status, code and the result",
862
+ "schema": {
863
+ "title": "result",
864
+ "type": "object"
865
+ }
866
+ },
867
+ "roles": [
868
+ "admin"
869
+ ],
870
+ "route": {
871
+ "verb": "POST",
872
+ "path": "/postDataF5UtilsFileTransferFileExport"
873
+ },
874
+ "task": true
875
+ },
876
+ {
877
+ "name": "postDataF5UtilsFileTransferFileDelete",
878
+ "summary": "Delete an existing file. The result will indicate a success or failure.",
879
+ "description": "Delete an existing file. The result will indicate a success or failure.",
880
+ "input": [
881
+ {
882
+ "name": "deleteParam",
883
+ "type": "object",
884
+ "info": "Delete an existing file. The result will indicate a success or failure.: object",
885
+ "required": true,
886
+ "schema": {
887
+ "type": "object",
888
+ "definitions": {}
889
+ }
890
+ }
891
+ ],
892
+ "output": {
893
+ "name": "result",
894
+ "type": "object",
895
+ "description": "A JSON Object containing status, code and the result",
896
+ "schema": {
897
+ "title": "result",
898
+ "type": "object"
899
+ }
900
+ },
901
+ "roles": [
902
+ "admin"
903
+ ],
904
+ "route": {
905
+ "verb": "POST",
906
+ "path": "/postDataF5UtilsFileTransferFileDelete"
907
+ },
908
+ "task": true
909
+ },
910
+ {
911
+ "name": "postDataF5UtilsFileTransferFileList",
912
+ "summary": "Display list of directories/files in the given path.",
913
+ "description": "Display list of directories/files in the given path.",
914
+ "input": [
915
+ {
916
+ "name": "list",
917
+ "type": "object",
918
+ "info": "Display list of directories/files in the given path.: object",
919
+ "required": true,
920
+ "schema": {
921
+ "type": "object",
922
+ "definitions": {}
923
+ }
924
+ }
925
+ ],
926
+ "output": {
927
+ "name": "result",
928
+ "type": "object",
929
+ "description": "A JSON Object containing status, code and the result",
930
+ "schema": {
931
+ "title": "result",
932
+ "type": "object"
933
+ }
934
+ },
935
+ "roles": [
936
+ "admin"
937
+ ],
938
+ "route": {
939
+ "verb": "POST",
940
+ "path": "/postDataF5UtilsFileTransferFileList"
941
+ },
942
+ "task": true
943
+ },
944
+ {
945
+ "name": "postDataF5UtilsFileTransferFileTransferStatus",
946
+ "summary": "Display the status of file operation.\nThe result will indicate an error, or percent complete.",
947
+ "description": "Display the status of file operation.\nThe result will indicate an error, or percent complete.",
948
+ "input": [
949
+ {
950
+ "name": "transferStatus",
951
+ "type": "object",
952
+ "info": "Display the status of file operation.\nThe result will indicate an error, or percent complete.: object",
953
+ "required": true,
954
+ "schema": {
955
+ "type": "object",
956
+ "definitions": {}
957
+ }
958
+ }
959
+ ],
960
+ "output": {
961
+ "name": "result",
962
+ "type": "object",
963
+ "description": "A JSON Object containing status, code and the result",
964
+ "schema": {
965
+ "title": "result",
966
+ "type": "object"
967
+ }
968
+ },
969
+ "roles": [
970
+ "admin"
971
+ ],
972
+ "route": {
973
+ "verb": "POST",
974
+ "path": "/postDataF5UtilsFileTransferFileTransferStatus"
975
+ },
976
+ "task": true
977
+ },
978
+ {
979
+ "name": "getOpenconfigSystemF5Database",
980
+ "summary": "data_openconfig_system_system_f5_database_database_get",
981
+ "description": "data_openconfig_system_system_f5_database_database_get",
982
+ "input": [],
983
+ "output": {
984
+ "name": "result",
985
+ "type": "object",
986
+ "description": "A JSON Object containing status, code and the result",
987
+ "schema": {
988
+ "title": "result",
989
+ "type": "object"
990
+ }
991
+ },
992
+ "roles": [
993
+ "admin"
994
+ ],
995
+ "route": {
996
+ "verb": "GET",
997
+ "path": "/getOpenconfigSystemF5Database"
998
+ },
999
+ "task": true
1000
+ },
1001
+ {
1002
+ "name": "postOpenconfigSystemF5Database",
1003
+ "summary": "data_openconfig_system_system_f5_database_database_post",
1004
+ "description": "data_openconfig_system_system_f5_database_database_post",
1005
+ "input": [
1006
+ {
1007
+ "name": "database",
1008
+ "type": "object",
1009
+ "info": ": object",
1010
+ "required": true,
1011
+ "schema": {
1012
+ "type": "object",
1013
+ "definitions": {}
1014
+ }
1015
+ }
1016
+ ],
1017
+ "output": {
1018
+ "name": "result",
1019
+ "type": "object",
1020
+ "description": "A JSON Object containing status, code and the result",
1021
+ "schema": {
1022
+ "title": "result",
1023
+ "type": "object"
1024
+ }
1025
+ },
1026
+ "roles": [
1027
+ "admin"
1028
+ ],
1029
+ "route": {
1030
+ "verb": "POST",
1031
+ "path": "/postOpenconfigSystemF5Database"
1032
+ },
1033
+ "task": true
1034
+ },
1035
+ {
1036
+ "name": "putOpenconfigSystemF5Database",
1037
+ "summary": "data_openconfig_system_system_f5_database_database_put",
1038
+ "description": "data_openconfig_system_system_f5_database_database_put",
1039
+ "input": [
1040
+ {
1041
+ "name": "database",
1042
+ "type": "object",
1043
+ "info": ": object",
1044
+ "required": true,
1045
+ "schema": {
1046
+ "type": "object",
1047
+ "definitions": {}
1048
+ }
1049
+ }
1050
+ ],
1051
+ "output": {
1052
+ "name": "result",
1053
+ "type": "object",
1054
+ "description": "A JSON Object containing status, code and the result",
1055
+ "schema": {
1056
+ "title": "result",
1057
+ "type": "object"
1058
+ }
1059
+ },
1060
+ "roles": [
1061
+ "admin"
1062
+ ],
1063
+ "route": {
1064
+ "verb": "POST",
1065
+ "path": "/putOpenconfigSystemF5Database"
1066
+ },
1067
+ "task": true
1068
+ },
1069
+ {
1070
+ "name": "patchOpenconfigSystemF5Database",
1071
+ "summary": "data_openconfig_system_system_f5_database_database_patch",
1072
+ "description": "data_openconfig_system_system_f5_database_database_patch",
1073
+ "input": [
1074
+ {
1075
+ "name": "database",
1076
+ "type": "object",
1077
+ "info": ": object",
1078
+ "required": true,
1079
+ "schema": {
1080
+ "type": "object",
1081
+ "definitions": {}
1082
+ }
1083
+ }
1084
+ ],
1085
+ "output": {
1086
+ "name": "result",
1087
+ "type": "object",
1088
+ "description": "A JSON Object containing status, code and the result",
1089
+ "schema": {
1090
+ "title": "result",
1091
+ "type": "object"
1092
+ }
1093
+ },
1094
+ "roles": [
1095
+ "admin"
1096
+ ],
1097
+ "route": {
1098
+ "verb": "POST",
1099
+ "path": "/patchOpenconfigSystemF5Database"
1100
+ },
1101
+ "task": true
1102
+ },
1103
+ {
1104
+ "name": "deleteOpenconfigSystemF5Database",
1105
+ "summary": "data_openconfig_system_system_f5_database_database_delete",
1106
+ "description": "data_openconfig_system_system_f5_database_database_delete",
1107
+ "input": [],
1108
+ "output": {
1109
+ "name": "result",
1110
+ "type": "object",
1111
+ "description": "A JSON Object containing status, code and the result",
1112
+ "schema": {
1113
+ "title": "result",
1114
+ "type": "object"
1115
+ }
1116
+ },
1117
+ "roles": [
1118
+ "admin"
1119
+ ],
1120
+ "route": {
1121
+ "verb": "GET",
1122
+ "path": "/deleteOpenconfigSystemF5Database"
1123
+ },
1124
+ "task": true
1125
+ },
1126
+ {
1127
+ "name": "postOpenconfigSystemF5DatabaseConfigBackup",
1128
+ "summary": "data_openconfig_system_system_f5_database_database_f5_database_config_backup_post",
1129
+ "description": "data_openconfig_system_system_f5_database_database_f5_database_config_backup_post",
1130
+ "input": [
1131
+ {
1132
+ "name": "configBackup",
1133
+ "type": "object",
1134
+ "info": ": object",
1135
+ "required": true,
1136
+ "schema": {
1137
+ "type": "object",
1138
+ "definitions": {}
1139
+ }
1140
+ }
1141
+ ],
1142
+ "output": {
1143
+ "name": "result",
1144
+ "type": "object",
1145
+ "description": "A JSON Object containing status, code and the result",
1146
+ "schema": {
1147
+ "title": "result",
1148
+ "type": "object"
1149
+ }
1150
+ },
1151
+ "roles": [
1152
+ "admin"
1153
+ ],
1154
+ "route": {
1155
+ "verb": "POST",
1156
+ "path": "/postOpenconfigSystemF5DatabaseConfigBackup"
1157
+ },
1158
+ "task": true
1159
+ },
1160
+ {
1161
+ "name": "postOpenconfigSystemF5DatabaseCdbBackup",
1162
+ "summary": "data_openconfig_system_system_f5_database_database_f5_database_cdb_backup_post",
1163
+ "description": "data_openconfig_system_system_f5_database_database_f5_database_cdb_backup_post",
1164
+ "input": [
1165
+ {
1166
+ "name": "cdbBackup",
1167
+ "type": "object",
1168
+ "info": ": object",
1169
+ "required": true,
1170
+ "schema": {
1171
+ "type": "object",
1172
+ "definitions": {}
1173
+ }
1174
+ }
1175
+ ],
1176
+ "output": {
1177
+ "name": "result",
1178
+ "type": "object",
1179
+ "description": "A JSON Object containing status, code and the result",
1180
+ "schema": {
1181
+ "title": "result",
1182
+ "type": "object"
1183
+ }
1184
+ },
1185
+ "roles": [
1186
+ "admin"
1187
+ ],
1188
+ "route": {
1189
+ "verb": "POST",
1190
+ "path": "/postOpenconfigSystemF5DatabaseCdbBackup"
1191
+ },
1192
+ "task": true
1193
+ },
1194
+ {
1195
+ "name": "postOpenconfigSystemF5DatabaseConfigRestore",
1196
+ "summary": "data_openconfig_system_system_f5_database_database_f5_database_config_restore_post",
1197
+ "description": "data_openconfig_system_system_f5_database_database_f5_database_config_restore_post",
1198
+ "input": [
1199
+ {
1200
+ "name": "configRestore",
1201
+ "type": "object",
1202
+ "info": ": object",
1203
+ "required": true,
1204
+ "schema": {
1205
+ "type": "object",
1206
+ "definitions": {}
1207
+ }
1208
+ }
1209
+ ],
1210
+ "output": {
1211
+ "name": "result",
1212
+ "type": "object",
1213
+ "description": "A JSON Object containing status, code and the result",
1214
+ "schema": {
1215
+ "title": "result",
1216
+ "type": "object"
1217
+ }
1218
+ },
1219
+ "roles": [
1220
+ "admin"
1221
+ ],
1222
+ "route": {
1223
+ "verb": "POST",
1224
+ "path": "/postOpenconfigSystemF5DatabaseConfigRestore"
1225
+ },
1226
+ "task": true
1227
+ },
1228
+ {
1229
+ "name": "postOpenconfigSystemF5DatabaseResetToDefault",
1230
+ "summary": "data_openconfig_system_system_f5_database_database_f5_database_reset_to_default_post",
1231
+ "description": "data_openconfig_system_system_f5_database_database_f5_database_reset_to_default_post",
1232
+ "input": [
1233
+ {
1234
+ "name": "resetToDefault",
1235
+ "type": "object",
1236
+ "info": ": object",
1237
+ "required": true,
1238
+ "schema": {
1239
+ "type": "object",
1240
+ "definitions": {}
1241
+ }
1242
+ }
1243
+ ],
1244
+ "output": {
1245
+ "name": "result",
1246
+ "type": "object",
1247
+ "description": "A JSON Object containing status, code and the result",
1248
+ "schema": {
1249
+ "title": "result",
1250
+ "type": "object"
1251
+ }
1252
+ },
1253
+ "roles": [
1254
+ "admin"
1255
+ ],
1256
+ "route": {
1257
+ "verb": "POST",
1258
+ "path": "/postOpenconfigSystemF5DatabaseResetToDefault"
1259
+ },
1260
+ "task": true
1261
+ }
1262
+ ],
1263
+ "views": []
1264
+ }