@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
@@ -0,0 +1,1537 @@
1
+ {
2
+ "swagger": "2.0",
3
+ "info": {
4
+ "title": "f5-utils-file-transfer",
5
+ "description": "Provide support to do file transfer operations on the System.",
6
+ "contact": {
7
+ "name": "F5 Networks",
8
+ "url": "https://www.f5.com/F5OS/",
9
+ "email": "f5os@f5.com"
10
+ },
11
+ "version": "2020-12-10"
12
+ },
13
+ "basePath": "/restconf",
14
+ "tags": [
15
+ {
16
+ "name": "F5 Utils File Transfer"
17
+ },
18
+ {
19
+ "name": "F5 Openconfig System"
20
+ }
21
+ ],
22
+ "schemes": [
23
+ "http",
24
+ "https"
25
+ ],
26
+ "produces": [
27
+ "application/yang-data+json"
28
+ ],
29
+ "consumes": [
30
+ "application/yang-data+json"
31
+ ],
32
+ "paths": {
33
+ "/data/f5-utils-file-transfer:file": {
34
+ "get": {
35
+ "tags": [
36
+ "F5 Utils File Transfer"
37
+ ],
38
+ "summary": "File utility commands.",
39
+ "description": "File utility commands.",
40
+ "operationId": "data_f5_utils_file_transfer_file_get",
41
+ "produces": [
42
+ "application/yang-data+json"
43
+ ],
44
+ "parameters": [
45
+ ],
46
+ "responses": {
47
+ "200": {
48
+ "description": "File utility commands.",
49
+ "schema": {
50
+ "$ref": "#/definitions/data_f5-utils-file-transfer_file"
51
+ }
52
+ }
53
+ },
54
+ "security": [
55
+ {
56
+ "basicAuth": []
57
+ }
58
+ ]
59
+ },
60
+ "post": {
61
+ "tags": [
62
+ "F5 Utils File Transfer"
63
+ ],
64
+ "summary": "File utility commands.",
65
+ "description": "File utility commands.",
66
+ "operationId": "data_f5_utils_file_transfer_file_post",
67
+ "produces": [
68
+ "application/yang-data+json"
69
+ ],
70
+ "parameters": [
71
+ {
72
+ "$ref": "#/parameters/data_f5-utils-file-transfer_file-post"
73
+ }
74
+ ],
75
+ "responses": {
76
+ "201": {
77
+ "description": "container file created"
78
+ }
79
+ },
80
+ "security": [
81
+ {
82
+ "basicAuth": []
83
+ }
84
+ ]
85
+ },
86
+ "put": {
87
+ "tags": [
88
+ "F5 Utils File Transfer"
89
+ ],
90
+ "summary": "File utility commands.",
91
+ "description": "File utility commands.",
92
+ "operationId": "data_f5_utils_file_transfer_file_put",
93
+ "produces": [
94
+ "application/yang-data+json"
95
+ ],
96
+ "parameters": [
97
+ {
98
+ "$ref": "#/parameters/data_f5-utils-file-transfer_file"
99
+ }
100
+ ],
101
+ "responses": {
102
+ "201": {
103
+ "description": "container file created or replaced"
104
+ }
105
+ },
106
+ "security": [
107
+ {
108
+ "basicAuth": []
109
+ }
110
+ ]
111
+ },
112
+ "patch": {
113
+ "tags": [
114
+ "F5 Utils File Transfer"
115
+ ],
116
+ "summary": "File utility commands.",
117
+ "description": "File utility commands.",
118
+ "operationId": "data_f5_utils_file_transfer_file_patch",
119
+ "produces": [
120
+ "application/yang-data+json"
121
+ ],
122
+ "parameters": [
123
+ {
124
+ "$ref": "#/parameters/data_f5-utils-file-transfer_file"
125
+ }
126
+ ],
127
+ "responses": {
128
+ "204": {
129
+ "description": "container file updated"
130
+ }
131
+ },
132
+ "security": [
133
+ {
134
+ "basicAuth": []
135
+ }
136
+ ]
137
+ },
138
+ "delete": {
139
+ "tags": [
140
+ "F5 Utils File Transfer"
141
+ ],
142
+ "summary": "File utility commands.",
143
+ "description": "File utility commands.",
144
+ "operationId": "data_f5_utils_file_transfer_file_delete",
145
+ "produces": [
146
+ "application/yang-data+json"
147
+ ],
148
+ "parameters": [
149
+ ],
150
+ "responses": {
151
+ "204": {
152
+ "$ref": "#/responses/204"
153
+ }
154
+ },
155
+ "security": [
156
+ {
157
+ "basicAuth": []
158
+ }
159
+ ]
160
+ }
161
+ },
162
+ "/data/f5-utils-file-transfer:file/import": {
163
+ "post": {
164
+ "tags": [
165
+ "F5 Utils File Transfer"
166
+ ],
167
+ "summary": "Initiate an import of the remote file to the System.",
168
+ "description": "Initiate an import of the remote file to the System.",
169
+ "operationId": "data_f5_utils_file_transfer_file_import_post",
170
+ "produces": [
171
+ "application/yang-data+json"
172
+ ],
173
+ "parameters": [
174
+ {
175
+ "$ref": "#/parameters/data_f5-utils-file-transfer_file_import-post-input"
176
+ }
177
+ ],
178
+ "responses": {
179
+ "201": {
180
+ "description": "Created",
181
+ "schema": {
182
+ "$ref": "#/definitions/data_f5-utils-file-transfer_file_import-post-output"
183
+ }
184
+ }
185
+ },
186
+ "security": [
187
+ {
188
+ "basicAuth": []
189
+ }
190
+ ]
191
+ }
192
+ },
193
+ "/data/f5-utils-file-transfer:file/export": {
194
+ "post": {
195
+ "tags": [
196
+ "F5 Utils File Transfer"
197
+ ],
198
+ "summary": "Initiate an export of the file to the remote system.",
199
+ "description": "Initiate an export of the file to the remote system.",
200
+ "operationId": "data_f5_utils_file_transfer_file_export_post",
201
+ "produces": [
202
+ "application/yang-data+json"
203
+ ],
204
+ "parameters": [
205
+ {
206
+ "$ref": "#/parameters/data_f5-utils-file-transfer_file_export-post-input"
207
+ }
208
+ ],
209
+ "responses": {
210
+ "201": {
211
+ "description": "Created",
212
+ "schema": {
213
+ "$ref": "#/definitions/data_f5-utils-file-transfer_file_export-post-output"
214
+ }
215
+ }
216
+ },
217
+ "security": [
218
+ {
219
+ "basicAuth": []
220
+ }
221
+ ]
222
+ }
223
+ },
224
+ "/data/f5-utils-file-transfer:file/delete": {
225
+ "post": {
226
+ "tags": [
227
+ "F5 Utils File Transfer"
228
+ ],
229
+ "summary": "Delete an existing file. The result will indicate a success or failure.",
230
+ "description": "Delete an existing file. The result will indicate a success or failure.",
231
+ "operationId": "data_f5_utils_file_transfer_file_delete_post",
232
+ "produces": [
233
+ "application/yang-data+json"
234
+ ],
235
+ "parameters": [
236
+ {
237
+ "$ref": "#/parameters/data_f5-utils-file-transfer_file_delete-post-input"
238
+ }
239
+ ],
240
+ "responses": {
241
+ "201": {
242
+ "description": "Created",
243
+ "schema": {
244
+ "$ref": "#/definitions/data_f5-utils-file-transfer_file_delete-post-output"
245
+ }
246
+ }
247
+ },
248
+ "security": [
249
+ {
250
+ "basicAuth": []
251
+ }
252
+ ]
253
+ }
254
+ },
255
+ "/data/f5-utils-file-transfer:file/list": {
256
+ "post": {
257
+ "tags": [
258
+ "F5 Utils File Transfer"
259
+ ],
260
+ "summary": "Display list of directories/files in the given path.",
261
+ "description": "Display list of directories/files in the given path.",
262
+ "operationId": "data_f5_utils_file_transfer_file_list_post",
263
+ "produces": [
264
+ "application/yang-data+json"
265
+ ],
266
+ "parameters": [
267
+ {
268
+ "$ref": "#/parameters/data_f5-utils-file-transfer_file_list-post-input"
269
+ }
270
+ ],
271
+ "responses": {
272
+ "201": {
273
+ "description": "Created",
274
+ "schema": {
275
+ "$ref": "#/definitions/data_f5-utils-file-transfer_file_list-post-output"
276
+ }
277
+ }
278
+ },
279
+ "security": [
280
+ {
281
+ "basicAuth": []
282
+ }
283
+ ]
284
+ }
285
+ },
286
+ "/data/f5-utils-file-transfer:file/transfer-status": {
287
+ "post": {
288
+ "tags": [
289
+ "F5 Utils File Transfer"
290
+ ],
291
+ "summary": "Display the status of file operation.\nThe result will indicate an error, or percent complete.",
292
+ "description": "Display the status of file operation.\nThe result will indicate an error, or percent complete.",
293
+ "operationId": "data_f5_utils_file_transfer_file_transfer_status_post",
294
+ "produces": [
295
+ "application/yang-data+json"
296
+ ],
297
+ "parameters": [
298
+ {
299
+ "$ref": "#/parameters/data_f5-utils-file-transfer_file_transfer-status-post-input"
300
+ }
301
+ ],
302
+ "responses": {
303
+ "201": {
304
+ "description": "Created",
305
+ "schema": {
306
+ "$ref": "#/definitions/data_f5-utils-file-transfer_file_transfer-status-post-output"
307
+ }
308
+ }
309
+ },
310
+ "security": [
311
+ {
312
+ "basicAuth": []
313
+ }
314
+ ]
315
+ }
316
+ },
317
+ "/data/openconfig-system:system/f5-database:database": {
318
+ "get": {
319
+ "tags": [
320
+ "F5 Openconfig System"
321
+ ],
322
+ "summary": "",
323
+ "description": "",
324
+ "operationId": "data_openconfig_system_system_f5_database_database_get",
325
+ "produces": [
326
+ "application/yang-data+json"
327
+ ],
328
+ "parameters": [
329
+ ],
330
+ "responses": {
331
+ "200": {
332
+ "description": "OK",
333
+ "schema": {
334
+ "$ref": "#/definitions/data_openconfig-system_system_f5-database_database"
335
+ }
336
+ }
337
+ },
338
+ "security": [
339
+ {
340
+ "basicAuth": []
341
+ }
342
+ ]
343
+ },
344
+ "post": {
345
+ "tags": [
346
+ "F5 Openconfig System"
347
+ ],
348
+ "summary": "",
349
+ "description": "",
350
+ "operationId": "data_openconfig_system_system_f5_database_database_post",
351
+ "produces": [
352
+ "application/yang-data+json"
353
+ ],
354
+ "parameters": [
355
+ {
356
+ "$ref": "#/parameters/data_openconfig-system_system_f5-database_database-post"
357
+ }
358
+ ],
359
+ "responses": {
360
+ "201": {
361
+ "description": "container database created"
362
+ }
363
+ },
364
+ "security": [
365
+ {
366
+ "basicAuth": []
367
+ }
368
+ ]
369
+ },
370
+ "put": {
371
+ "tags": [
372
+ "F5 Openconfig System"
373
+ ],
374
+ "summary": "",
375
+ "description": "",
376
+ "operationId": "data_openconfig_system_system_f5_database_database_put",
377
+ "produces": [
378
+ "application/yang-data+json"
379
+ ],
380
+ "parameters": [
381
+ {
382
+ "$ref": "#/parameters/data_openconfig-system_system_f5-database_database"
383
+ }
384
+ ],
385
+ "responses": {
386
+ "201": {
387
+ "description": "container database created or replaced"
388
+ }
389
+ },
390
+ "security": [
391
+ {
392
+ "basicAuth": []
393
+ }
394
+ ]
395
+ },
396
+ "patch": {
397
+ "tags": [
398
+ "F5 Openconfig System"
399
+ ],
400
+ "summary": "",
401
+ "description": "",
402
+ "operationId": "data_openconfig_system_system_f5_database_database_patch",
403
+ "produces": [
404
+ "application/yang-data+json"
405
+ ],
406
+ "parameters": [
407
+ {
408
+ "$ref": "#/parameters/data_openconfig-system_system_f5-database_database"
409
+ }
410
+ ],
411
+ "responses": {
412
+ "204": {
413
+ "description": "container database updated"
414
+ }
415
+ },
416
+ "security": [
417
+ {
418
+ "basicAuth": []
419
+ }
420
+ ]
421
+ },
422
+ "delete": {
423
+ "tags": [
424
+ "F5 Openconfig System"
425
+ ],
426
+ "summary": "",
427
+ "description": "",
428
+ "operationId": "data_openconfig_system_system_f5_database_database_delete",
429
+ "produces": [
430
+ "application/yang-data+json"
431
+ ],
432
+ "parameters": [
433
+ ],
434
+ "responses": {
435
+ "204": {
436
+ "$ref": "#/responses/204"
437
+ }
438
+ },
439
+ "security": [
440
+ {
441
+ "basicAuth": []
442
+ }
443
+ ]
444
+ }
445
+ },
446
+ "/data/openconfig-system:system/f5-database:database/f5-database:config-backup": {
447
+ "post": {
448
+ "tags": [
449
+ "F5 Openconfig System"
450
+ ],
451
+ "summary": "",
452
+ "description": "",
453
+ "operationId": "data_openconfig_system_system_f5_database_database_f5_database_config_backup_post",
454
+ "produces": [
455
+ "application/yang-data+json"
456
+ ],
457
+ "parameters": [
458
+ {
459
+ "$ref": "#/parameters/data_openconfig-system_system_f5-database_database_f5-database_config-backup-post-input"
460
+ }
461
+ ],
462
+ "responses": {
463
+ "201": {
464
+ "description": "Created",
465
+ "schema": {
466
+ "$ref": "#/definitions/data_openconfig-system_system_f5-database_database_f5-database_config-backup-post-output"
467
+ }
468
+ }
469
+ },
470
+ "security": [
471
+ {
472
+ "basicAuth": []
473
+ }
474
+ ]
475
+ }
476
+ },
477
+ "/data/openconfig-system:system/f5-database:database/f5-database:cdb-backup": {
478
+ "post": {
479
+ "tags": [
480
+ "F5 Openconfig System"
481
+ ],
482
+ "summary": "",
483
+ "description": "",
484
+ "operationId": "data_openconfig_system_system_f5_database_database_f5_database_cdb_backup_post",
485
+ "produces": [
486
+ "application/yang-data+json"
487
+ ],
488
+ "parameters": [
489
+ {
490
+ "$ref": "#/parameters/data_openconfig-system_system_f5-database_database_f5-database_cdb-backup-post-input"
491
+ }
492
+ ],
493
+ "responses": {
494
+ "201": {
495
+ "description": "Created",
496
+ "schema": {
497
+ "$ref": "#/definitions/data_openconfig-system_system_f5-database_database_f5-database_cdb-backup-post-output"
498
+ }
499
+ }
500
+ },
501
+ "security": [
502
+ {
503
+ "basicAuth": []
504
+ }
505
+ ]
506
+ }
507
+ },
508
+ "/data/openconfig-system:system/f5-database:database/f5-database:config-restore": {
509
+ "post": {
510
+ "tags": [
511
+ "F5 Openconfig System"
512
+ ],
513
+ "summary": "",
514
+ "description": "",
515
+ "operationId": "data_openconfig_system_system_f5_database_database_f5_database_config_restore_post",
516
+ "produces": [
517
+ "application/yang-data+json"
518
+ ],
519
+ "parameters": [
520
+ {
521
+ "$ref": "#/parameters/data_openconfig-system_system_f5-database_database_f5-database_config-restore-post-input"
522
+ }
523
+ ],
524
+ "responses": {
525
+ "201": {
526
+ "description": "Created",
527
+ "schema": {
528
+ "$ref": "#/definitions/data_openconfig-system_system_f5-database_database_f5-database_config-restore-post-output"
529
+ }
530
+ }
531
+ },
532
+ "security": [
533
+ {
534
+ "basicAuth": []
535
+ }
536
+ ]
537
+ }
538
+ },
539
+ "/data/openconfig-system:system/f5-database:database/f5-database:reset-to-default": {
540
+ "post": {
541
+ "tags": [
542
+ "F5 Openconfig System"
543
+ ],
544
+ "summary": "",
545
+ "description": "",
546
+ "operationId": "data_openconfig_system_system_f5_database_database_f5_database_reset_to_default_post",
547
+ "produces": [
548
+ "application/yang-data+json"
549
+ ],
550
+ "parameters": [
551
+ {
552
+ "$ref": "#/parameters/data_openconfig-system_system_f5-database_database_f5-database_reset-to-default-post-input"
553
+ }
554
+ ],
555
+ "responses": {
556
+ "201": {
557
+ "description": "Created",
558
+ "schema": {
559
+ "$ref": "#/definitions/data_openconfig-system_system_f5-database_database_f5-database_reset-to-default-post-output"
560
+ }
561
+ }
562
+ },
563
+ "security": [
564
+ {
565
+ "basicAuth": []
566
+ }
567
+ ]
568
+ }
569
+ }
570
+ },
571
+ "parameters": {
572
+ "content": {
573
+ "name": "content",
574
+ "in": "query",
575
+ "description": "controlling descendant nodes in response",
576
+ "required": false,
577
+ "type": "string",
578
+ "format": "enumeration",
579
+ "default": "config",
580
+ "enum": [
581
+ "config",
582
+ "nonconfig",
583
+ "all"
584
+ ]
585
+ },
586
+ "depth": {
587
+ "name": "depth",
588
+ "in": "query",
589
+ "description": "limit the depth of nodes in response",
590
+ "required": false,
591
+ "type": "integer",
592
+ "format": "uint16"
593
+ },
594
+ "fields": {
595
+ "name": "fields",
596
+ "in": "query",
597
+ "description": "optionally identify specific data nodes in response",
598
+ "required": false,
599
+ "type": "string",
600
+ "format": "string"
601
+ },
602
+ "filter": {
603
+ "name": "filter",
604
+ "in": "query",
605
+ "description": "xpath expression to filter data nodes in response",
606
+ "required": false,
607
+ "type": "string",
608
+ "format": "string"
609
+ },
610
+ "with-defaults": {
611
+ "name": "with-defaults",
612
+ "in": "query",
613
+ "description": "controlling default values in response",
614
+ "required": false,
615
+ "type": "string",
616
+ "format": "enumeration",
617
+ "default": "report-all",
618
+ "enum": [
619
+ "report-all",
620
+ "trim",
621
+ "explicit",
622
+ "report-all-tagged"
623
+ ]
624
+ },
625
+ "insert": {
626
+ "name": "insert",
627
+ "in": "query",
628
+ "description": "controlling the order when adding new list elements",
629
+ "required": false,
630
+ "type": "string",
631
+ "format": "enumeration",
632
+ "default": "first",
633
+ "enum": [
634
+ "first",
635
+ "last",
636
+ "before",
637
+ "after"
638
+ ]
639
+ },
640
+ "point": {
641
+ "name": "point",
642
+ "in": "query",
643
+ "description": "used to specify the insertion point",
644
+ "required": false,
645
+ "type": "string",
646
+ "format": "string"
647
+ },
648
+ "data_f5-utils-file-transfer_file_transfer-status-post-input": {
649
+ "name": "transfer-status",
650
+ "in": "body",
651
+ "description": "Display the status of file operation.\nThe result will indicate an error, or percent complete.",
652
+ "required": true,
653
+ "schema": {
654
+ "$ref": "#/definitions/data_f5-utils-file-transfer_file_transfer-status-post-input"
655
+ }
656
+ },
657
+ "data_f5-utils-file-transfer_file_list-post-input": {
658
+ "name": "list",
659
+ "in": "body",
660
+ "description": "Display list of directories/files in the given path.",
661
+ "required": true,
662
+ "schema": {
663
+ "$ref": "#/definitions/data_f5-utils-file-transfer_file_list-post-input"
664
+ }
665
+ },
666
+ "data_f5-utils-file-transfer_file_import-post-input": {
667
+ "name": "import",
668
+ "in": "body",
669
+ "description": "Initiate an import of the remote file to the System.",
670
+ "required": true,
671
+ "schema": {
672
+ "$ref": "#/definitions/data_f5-utils-file-transfer_file_import-post-input"
673
+ }
674
+ },
675
+ "data_f5-utils-file-transfer_file_export-post-input": {
676
+ "name": "export",
677
+ "in": "body",
678
+ "description": "Initiate an export of the file to the remote system.",
679
+ "required": true,
680
+ "schema": {
681
+ "$ref": "#/definitions/data_f5-utils-file-transfer_file_export-post-input"
682
+ }
683
+ },
684
+ "data_f5-utils-file-transfer_file_delete-post-input": {
685
+ "name": "delete",
686
+ "in": "body",
687
+ "description": "Delete an existing file. The result will indicate a success or failure.",
688
+ "required": true,
689
+ "schema": {
690
+ "$ref": "#/definitions/data_f5-utils-file-transfer_file_delete-post-input"
691
+ }
692
+ },
693
+ "data_f5-utils-file-transfer_file-post": {
694
+ "name": "file",
695
+ "in": "body",
696
+ "description": "File utility commands.",
697
+ "required": true,
698
+ "schema": {
699
+ "$ref": "#/definitions/data_f5-utils-file-transfer_file-post"
700
+ }
701
+ },
702
+ "data_f5-utils-file-transfer_file": {
703
+ "name": "file",
704
+ "in": "body",
705
+ "description": "File utility commands.",
706
+ "required": true,
707
+ "schema": {
708
+ "$ref": "#/definitions/data_f5-utils-file-transfer_file"
709
+ }
710
+ },
711
+ "user-username": {
712
+ "name": "user-username",
713
+ "in": "path",
714
+ "description": "References the configured username for the user",
715
+ "required": true,
716
+ "type": "string",
717
+ "format": "leafref"
718
+ },
719
+ "server-group-name": {
720
+ "name": "server-group-name",
721
+ "in": "path",
722
+ "description": "Reference to configured name of the server group",
723
+ "required": true,
724
+ "type": "string",
725
+ "format": "leafref"
726
+ },
727
+ "server-address": {
728
+ "name": "server-address",
729
+ "in": "path",
730
+ "description": "References the configured address of the DNS server",
731
+ "required": true,
732
+ "type": "string",
733
+ "format": "leafref"
734
+ },
735
+ "selector-severity": {
736
+ "name": "selector-severity",
737
+ "in": "path",
738
+ "description": "Reference to severity list key",
739
+ "required": true,
740
+ "type": "string",
741
+ "format": "leafref"
742
+ },
743
+ "selector-facility": {
744
+ "name": "selector-facility",
745
+ "in": "path",
746
+ "description": "Reference to facility list key",
747
+ "required": true,
748
+ "type": "string",
749
+ "format": "leafref"
750
+ },
751
+ "search-id": {
752
+ "name": "search-id",
753
+ "in": "path",
754
+ "description": "An ordered list of domains to search when resolving\na host name.",
755
+ "required": true,
756
+ "type": "string",
757
+ "format": "string"
758
+ },
759
+ "remote-server-host": {
760
+ "name": "remote-server-host",
761
+ "in": "path",
762
+ "description": "Reference to the host list key",
763
+ "required": true,
764
+ "type": "string",
765
+ "format": "leafref"
766
+ },
767
+ "process-pid": {
768
+ "name": "process-pid",
769
+ "in": "path",
770
+ "description": "Reference to the process pid key",
771
+ "required": true,
772
+ "type": "string",
773
+ "format": "leafref"
774
+ },
775
+ "ntp-key-key-id": {
776
+ "name": "ntp-key-key-id",
777
+ "in": "path",
778
+ "description": "Reference to auth key-id list key",
779
+ "required": true,
780
+ "type": "string",
781
+ "format": "leafref"
782
+ },
783
+ "listen-addresses-id": {
784
+ "name": "listen-addresses-id",
785
+ "in": "path",
786
+ "description": "The IP addresses that the gRPC server should listen\non. This may be an IPv4 or an IPv6 address",
787
+ "required": true,
788
+ "type": "string",
789
+ "format": "union"
790
+ },
791
+ "ipv6-address-id": {
792
+ "name": "ipv6-address-id",
793
+ "in": "path",
794
+ "description": "List of IPv6 addresses for the host entry",
795
+ "required": true,
796
+ "type": "string",
797
+ "format": "string"
798
+ },
799
+ "ipv4-address-id": {
800
+ "name": "ipv4-address-id",
801
+ "in": "path",
802
+ "description": "List of IPv4 addressses for the host entry",
803
+ "required": true,
804
+ "type": "string",
805
+ "format": "string"
806
+ },
807
+ "host-entry-hostname": {
808
+ "name": "host-entry-hostname",
809
+ "in": "path",
810
+ "description": "Reference to the hostname list key",
811
+ "required": true,
812
+ "type": "string",
813
+ "format": "leafref"
814
+ },
815
+ "event-event-type": {
816
+ "name": "event-event-type",
817
+ "in": "path",
818
+ "description": "Reference to the event-type list key",
819
+ "required": true,
820
+ "type": "string",
821
+ "format": "leafref"
822
+ },
823
+ "data_openconfig-system_system_f5-database_database_f5-database_reset-to-default-post-input": {
824
+ "name": "reset-to-default",
825
+ "in": "body",
826
+ "description": "",
827
+ "required": true,
828
+ "schema": {
829
+ "$ref": "#/definitions/data_openconfig-system_system_f5-database_database_f5-database_reset-to-default-post-input"
830
+ }
831
+ },
832
+ "data_openconfig-system_system_f5-database_database_f5-database_config-restore-post-input": {
833
+ "name": "config-restore",
834
+ "in": "body",
835
+ "description": "",
836
+ "required": true,
837
+ "schema": {
838
+ "$ref": "#/definitions/data_openconfig-system_system_f5-database_database_f5-database_config-restore-post-input"
839
+ }
840
+ },
841
+ "data_openconfig-system_system_f5-database_database_f5-database_config-backup-post-input": {
842
+ "name": "config-backup",
843
+ "in": "body",
844
+ "description": "",
845
+ "required": true,
846
+ "schema": {
847
+ "$ref": "#/definitions/data_openconfig-system_system_f5-database_database_f5-database_config-backup-post-input"
848
+ }
849
+ },
850
+ "data_openconfig-system_system_f5-database_database_f5-database_cdb-backup-post-input": {
851
+ "name": "cdb-backup",
852
+ "in": "body",
853
+ "description": "",
854
+ "required": true,
855
+ "schema": {
856
+ "$ref": "#/definitions/data_openconfig-system_system_f5-database_database_f5-database_cdb-backup-post-input"
857
+ }
858
+ },
859
+ "data_openconfig-system_system_f5-database_database-post": {
860
+ "name": "database",
861
+ "in": "body",
862
+ "description": "",
863
+ "required": true,
864
+ "schema": {
865
+ "$ref": "#/definitions/data_openconfig-system_system_f5-database_database-post"
866
+ }
867
+ },
868
+ "data_openconfig-system_system_f5-database_database": {
869
+ "name": "database",
870
+ "in": "body",
871
+ "description": "",
872
+ "required": true,
873
+ "schema": {
874
+ "$ref": "#/definitions/data_openconfig-system_system_f5-database_database"
875
+ }
876
+ },
877
+ "cpu-index": {
878
+ "name": "cpu-index",
879
+ "in": "path",
880
+ "description": "Reference to list key",
881
+ "required": true,
882
+ "type": "string",
883
+ "format": "leafref"
884
+ },
885
+ "authorization-method-id": {
886
+ "name": "authorization-method-id",
887
+ "in": "path",
888
+ "description": "Ordered list of methods for authorizing commands. The first\nmethod that provides a response (positive or negative) should\nbe used. The list may contain a well-defined method such\nas the set of all TACACS or RADIUS servers, or the name of\na defined AAA server group. The system must validate\nthat the named server group exists.",
889
+ "required": true,
890
+ "type": "string",
891
+ "format": "union"
892
+ },
893
+ "authentication-method-id": {
894
+ "name": "authentication-method-id",
895
+ "in": "path",
896
+ "description": "Ordered list of authentication methods for users. This\ncan be either a reference to a server group, or a well-\ndefined designation in the AAA_METHOD_TYPE identity. If\nauthentication fails with one method, the next defined\nmethod is tried -- failure of all methods results in the\nuser being denied access.",
897
+ "required": true,
898
+ "type": "string",
899
+ "format": "union"
900
+ },
901
+ "args-id": {
902
+ "name": "args-id",
903
+ "in": "path",
904
+ "description": "Current process command line arguments. Arguments with\na parameter (e.g., --option 10 or -option=10) should be\nrepresented as a single element of the list with the\nargument name and parameter together. Flag arguments, i.e.,\nthose without a parameter should also be in their own list\nelement.",
905
+ "required": true,
906
+ "type": "string",
907
+ "format": "string"
908
+ },
909
+ "alias-id": {
910
+ "name": "alias-id",
911
+ "in": "path",
912
+ "description": "Additional aliases for the hostname",
913
+ "required": true,
914
+ "type": "string",
915
+ "format": "string"
916
+ },
917
+ "alarm-id": {
918
+ "name": "alarm-id",
919
+ "in": "path",
920
+ "description": "References the unique alarm id",
921
+ "required": true,
922
+ "type": "string",
923
+ "format": "leafref"
924
+ },
925
+ "accounting-method-id": {
926
+ "name": "accounting-method-id",
927
+ "in": "path",
928
+ "description": "An ordered list of methods used for AAA accounting for this\nevent type. The method is defined by the destination for\naccounting data, which may be specified as the group of\nall TACACS+/RADIUS servers, a defined server group, or\nthe local system.",
929
+ "required": true,
930
+ "type": "string",
931
+ "format": "union"
932
+ }
933
+ },
934
+ "responses": {
935
+ "200": {
936
+ "description": "OK"
937
+ },
938
+ "201": {
939
+ "description": "Created"
940
+ },
941
+ "204": {
942
+ "description": "No Content"
943
+ },
944
+ "400": {
945
+ "description": "Bad Request"
946
+ },
947
+ "401": {
948
+ "description": "Unauthorized"
949
+ },
950
+ "404": {
951
+ "description": "Not Found"
952
+ },
953
+ "405": {
954
+ "description": "Method Not Allowed"
955
+ },
956
+ "409": {
957
+ "description": "Conflict"
958
+ }
959
+ },
960
+ "securityDefinitions": {
961
+ "basicAuth": {
962
+ "type": "basic"
963
+ }
964
+ },
965
+ "definitions": {
966
+ "data_f5-utils-file-transfer_file_transfer-status-post-output": {
967
+ "type": "object",
968
+ "properties": {
969
+ "f5-utils-file-transfer:result": {
970
+ "description": "A message indicating the result of the file transfer status. (leaf)",
971
+ "x-yang": {
972
+ "type": "leaf"
973
+ },
974
+ "type": "string",
975
+ "format": "string"
976
+ },
977
+ "f5-utils-file-transfer:resultint": {
978
+ "description": "An error indicator. A Zero value (0) indicates success. (leaf)",
979
+ "x-yang": {
980
+ "type": "leaf"
981
+ },
982
+ "type": "string",
983
+ "format": "int32"
984
+ }
985
+ }
986
+ },
987
+ "data_f5-utils-file-transfer_file_transfer-status-post-input": {
988
+ "type": "object",
989
+ "properties": {
990
+ "f5-utils-file-transfer:file-name": {
991
+ "description": "Local file path. Accepts either absolute or relative path. (leaf)",
992
+ "x-yang": {
993
+ "type": "leaf"
994
+ },
995
+ "type": "string",
996
+ "format": "string"
997
+ }
998
+ }
999
+ },
1000
+ "data_f5-utils-file-transfer_file_list-post-output": {
1001
+ "type": "object",
1002
+ "properties": {
1003
+ "f5-utils-file-transfer:entries": {
1004
+ "type": "array",
1005
+ "description": "(list)",
1006
+ "x-yang": {
1007
+ "type": "list"
1008
+ },
1009
+ "items": {
1010
+ "type": "object",
1011
+ "properties": {
1012
+ "name": {
1013
+ "description": "A Message indicating list of files/directories from\nresult of file list action. (leaf)",
1014
+ "x-yang": {
1015
+ "type": "leaf"
1016
+ },
1017
+ "type": "string",
1018
+ "format": "string"
1019
+ }
1020
+ }
1021
+ }
1022
+ }
1023
+ }
1024
+ },
1025
+ "data_f5-utils-file-transfer_file_list-post-input": {
1026
+ "type": "object",
1027
+ "properties": {
1028
+ "f5-utils-file-transfer:path": {
1029
+ "description": "Provide the directory/file path. (leaf)",
1030
+ "x-yang": {
1031
+ "type": "leaf"
1032
+ },
1033
+ "type": "string",
1034
+ "format": "string"
1035
+ }
1036
+ }
1037
+ },
1038
+ "data_f5-utils-file-transfer_file_import-post-output": {
1039
+ "type": "object",
1040
+ "properties": {
1041
+ "f5-utils-file-transfer:result": {
1042
+ "description": "A message indicating the result of import file transfer action. (leaf)",
1043
+ "x-yang": {
1044
+ "type": "leaf"
1045
+ },
1046
+ "type": "string",
1047
+ "format": "string"
1048
+ },
1049
+ "f5-utils-file-transfer:resultint": {
1050
+ "description": "An error indicator. A Zero value (0) indicates success. (leaf)",
1051
+ "x-yang": {
1052
+ "type": "leaf"
1053
+ },
1054
+ "type": "string",
1055
+ "format": "int32"
1056
+ }
1057
+ }
1058
+ },
1059
+ "data_f5-utils-file-transfer_file_import-post-input": {
1060
+ "type": "object",
1061
+ "properties": {
1062
+ "f5-utils-file-transfer:insecure": {
1063
+ "description": "Disable remote system identity verification (leaf)",
1064
+ "x-yang": {
1065
+ "type": "leaf"
1066
+ },
1067
+ "type": "string",
1068
+ "format": "[null]"
1069
+ },
1070
+ "f5-utils-file-transfer:protocol": {
1071
+ "description": "Choose protocol to be used for file transfer. (leaf)",
1072
+ "x-yang": {
1073
+ "type": "leaf"
1074
+ },
1075
+ "type": "string",
1076
+ "format": "enumeration",
1077
+ "default": "scp",
1078
+ "enum": [
1079
+ "scp",
1080
+ "sftp",
1081
+ "https"
1082
+ ]
1083
+ },
1084
+ "f5-utils-file-transfer:username": {
1085
+ "description": "Provide the remote system username. (leaf)",
1086
+ "x-yang": {
1087
+ "type": "leaf"
1088
+ },
1089
+ "type": "string",
1090
+ "format": "string"
1091
+ },
1092
+ "f5-utils-file-transfer:password": {
1093
+ "description": "Provide the remote system password in simple text. (leaf)",
1094
+ "x-yang": {
1095
+ "type": "leaf"
1096
+ },
1097
+ "type": "string",
1098
+ "format": "string"
1099
+ },
1100
+ "f5-utils-file-transfer:web-token": {
1101
+ "description": "Provide the remote system web token. (leaf)",
1102
+ "x-yang": {
1103
+ "type": "leaf"
1104
+ },
1105
+ "type": "string",
1106
+ "format": "string"
1107
+ },
1108
+ "f5-utils-file-transfer:remote-host": {
1109
+ "description": "Remote System FQDN or IPv4/IPv6 address. (leaf)",
1110
+ "x-yang": {
1111
+ "type": "leaf"
1112
+ },
1113
+ "type": "string",
1114
+ "format": "union"
1115
+ },
1116
+ "f5-utils-file-transfer:remote-port": {
1117
+ "description": "Provide port to connect to on the remote host. (leaf)",
1118
+ "x-yang": {
1119
+ "type": "leaf"
1120
+ },
1121
+ "type": "integer",
1122
+ "format": "uint16"
1123
+ },
1124
+ "f5-utils-file-transfer:remote-file": {
1125
+ "description": "Remote file path. (leaf)",
1126
+ "x-yang": {
1127
+ "type": "leaf"
1128
+ },
1129
+ "type": "string",
1130
+ "format": "string"
1131
+ },
1132
+ "f5-utils-file-transfer:local-file": {
1133
+ "description": "Local file path. Accepts either absolute or relative path. (leaf)",
1134
+ "x-yang": {
1135
+ "type": "leaf"
1136
+ },
1137
+ "type": "string",
1138
+ "format": "string"
1139
+ }
1140
+ }
1141
+ },
1142
+ "data_f5-utils-file-transfer_file_export-post-output": {
1143
+ "type": "object",
1144
+ "properties": {
1145
+ "f5-utils-file-transfer:result": {
1146
+ "description": "A message indicating the result of export file transfer action. (leaf)",
1147
+ "x-yang": {
1148
+ "type": "leaf"
1149
+ },
1150
+ "type": "string",
1151
+ "format": "string"
1152
+ },
1153
+ "f5-utils-file-transfer:resultint": {
1154
+ "description": "An error indicator. A Zero value (0) indicates success. (leaf)",
1155
+ "x-yang": {
1156
+ "type": "leaf"
1157
+ },
1158
+ "type": "string",
1159
+ "format": "int32"
1160
+ }
1161
+ }
1162
+ },
1163
+ "data_f5-utils-file-transfer_file_export-post-input": {
1164
+ "type": "object",
1165
+ "properties": {
1166
+ "f5-utils-file-transfer:insecure": {
1167
+ "description": "Disable remote system identity verification (leaf)",
1168
+ "x-yang": {
1169
+ "type": "leaf"
1170
+ },
1171
+ "type": "string",
1172
+ "format": "[null]"
1173
+ },
1174
+ "f5-utils-file-transfer:protocol": {
1175
+ "description": "Choose protocol to be used for file transfer. (leaf)",
1176
+ "x-yang": {
1177
+ "type": "leaf"
1178
+ },
1179
+ "type": "string",
1180
+ "format": "enumeration",
1181
+ "default": "scp",
1182
+ "enum": [
1183
+ "scp",
1184
+ "sftp",
1185
+ "https"
1186
+ ]
1187
+ },
1188
+ "f5-utils-file-transfer:username": {
1189
+ "description": "Provide the remote system username. (leaf)",
1190
+ "x-yang": {
1191
+ "type": "leaf"
1192
+ },
1193
+ "type": "string",
1194
+ "format": "string"
1195
+ },
1196
+ "f5-utils-file-transfer:password": {
1197
+ "description": "Provide the remote system password in simple text. (leaf)",
1198
+ "x-yang": {
1199
+ "type": "leaf"
1200
+ },
1201
+ "type": "string",
1202
+ "format": "string"
1203
+ },
1204
+ "f5-utils-file-transfer:web-token": {
1205
+ "description": "Provide the remote system web token. (leaf)",
1206
+ "x-yang": {
1207
+ "type": "leaf"
1208
+ },
1209
+ "type": "string",
1210
+ "format": "string"
1211
+ },
1212
+ "f5-utils-file-transfer:local-file": {
1213
+ "description": "Local file path. Accepts either absolute or relative path. (leaf)",
1214
+ "x-yang": {
1215
+ "type": "leaf"
1216
+ },
1217
+ "type": "string",
1218
+ "format": "string"
1219
+ },
1220
+ "f5-utils-file-transfer:remote-host": {
1221
+ "description": "Remote System FQDN or IPv4/IPv6 address. (leaf)",
1222
+ "x-yang": {
1223
+ "type": "leaf"
1224
+ },
1225
+ "type": "string",
1226
+ "format": "union"
1227
+ },
1228
+ "f5-utils-file-transfer:remote-port": {
1229
+ "description": "Provide port to connect to on the remote host. (leaf)",
1230
+ "x-yang": {
1231
+ "type": "leaf"
1232
+ },
1233
+ "type": "integer",
1234
+ "format": "uint16"
1235
+ },
1236
+ "f5-utils-file-transfer:remote-file": {
1237
+ "description": "Remote file path. (leaf)",
1238
+ "x-yang": {
1239
+ "type": "leaf"
1240
+ },
1241
+ "type": "string",
1242
+ "format": "string"
1243
+ }
1244
+ }
1245
+ },
1246
+ "data_f5-utils-file-transfer_file_delete-post-output": {
1247
+ "type": "object",
1248
+ "properties": {
1249
+ "f5-utils-file-transfer:result": {
1250
+ "description": "A message indicating the result of the delete file action. (leaf)",
1251
+ "x-yang": {
1252
+ "type": "leaf"
1253
+ },
1254
+ "type": "string",
1255
+ "format": "string"
1256
+ },
1257
+ "f5-utils-file-transfer:resultint": {
1258
+ "description": "An error indicator. A Zero value (0) indicates success. (leaf)",
1259
+ "x-yang": {
1260
+ "type": "leaf"
1261
+ },
1262
+ "type": "string",
1263
+ "format": "int32"
1264
+ }
1265
+ }
1266
+ },
1267
+ "data_f5-utils-file-transfer_file_delete-post-input": {
1268
+ "type": "object",
1269
+ "properties": {
1270
+ "f5-utils-file-transfer:file-name": {
1271
+ "description": "Provide the file name to be deleted. Accepts either\nabsolute or relative path. (leaf)",
1272
+ "x-yang": {
1273
+ "type": "leaf"
1274
+ },
1275
+ "type": "string",
1276
+ "format": "string"
1277
+ }
1278
+ }
1279
+ },
1280
+ "data_f5-utils-file-transfer_file-post": {
1281
+ "type": "object",
1282
+ "properties": {
1283
+ "f5-utils-file-transfer:insecure": {
1284
+ "description": "Disable remote system identity verification (leaf)",
1285
+ "x-yang": {
1286
+ "type": "leaf"
1287
+ },
1288
+ "type": "string",
1289
+ "format": "[null]"
1290
+ },
1291
+ "f5-utils-file-transfer:protocol": {
1292
+ "description": "Choose protocol to be used for file transfer. (leaf)",
1293
+ "x-yang": {
1294
+ "type": "leaf"
1295
+ },
1296
+ "type": "string",
1297
+ "format": "enumeration",
1298
+ "default": "scp",
1299
+ "enum": [
1300
+ "scp",
1301
+ "sftp",
1302
+ "https"
1303
+ ]
1304
+ },
1305
+ "f5-utils-file-transfer:username": {
1306
+ "description": "Provide the remote system username. (leaf)",
1307
+ "x-yang": {
1308
+ "type": "leaf"
1309
+ },
1310
+ "type": "string",
1311
+ "format": "string"
1312
+ },
1313
+ "f5-utils-file-transfer:password": {
1314
+ "description": "Provide the remote system password in simple text. (leaf)",
1315
+ "x-yang": {
1316
+ "type": "leaf"
1317
+ },
1318
+ "type": "string",
1319
+ "format": "string"
1320
+ },
1321
+ "f5-utils-file-transfer:web-token": {
1322
+ "description": "Provide the remote system web token. (leaf)",
1323
+ "x-yang": {
1324
+ "type": "leaf"
1325
+ },
1326
+ "type": "string",
1327
+ "format": "string"
1328
+ },
1329
+ "f5-utils-file-transfer:remote-host": {
1330
+ "description": "Remote System FQDN or IPv4/IPv6 address. (leaf)",
1331
+ "x-yang": {
1332
+ "type": "leaf"
1333
+ },
1334
+ "type": "string",
1335
+ "format": "union"
1336
+ },
1337
+ "f5-utils-file-transfer:remote-port": {
1338
+ "description": "Provide port to connect to on the remote host. (leaf)",
1339
+ "x-yang": {
1340
+ "type": "leaf"
1341
+ },
1342
+ "type": "integer",
1343
+ "format": "uint16"
1344
+ },
1345
+ "f5-utils-file-transfer:remote-file": {
1346
+ "description": "Remote file path. (leaf)",
1347
+ "x-yang": {
1348
+ "type": "leaf"
1349
+ },
1350
+ "type": "string",
1351
+ "format": "string"
1352
+ },
1353
+ "f5-utils-file-transfer:local-file": {
1354
+ "description": "Local file path. Accepts either absolute or relative path. (leaf)",
1355
+ "x-yang": {
1356
+ "type": "leaf"
1357
+ },
1358
+ "type": "string",
1359
+ "format": "string"
1360
+ },
1361
+ "f5-utils-file-transfer:path": {
1362
+ "description": "Provide the directory/file path. (leaf)",
1363
+ "x-yang": {
1364
+ "type": "leaf"
1365
+ },
1366
+ "type": "string",
1367
+ "format": "string"
1368
+ },
1369
+ "f5-utils-file-transfer:file-name": {
1370
+ "description": "Local file path. Accepts either absolute or relative path. (leaf)",
1371
+ "x-yang": {
1372
+ "type": "leaf"
1373
+ },
1374
+ "type": "string",
1375
+ "format": "string"
1376
+ }
1377
+ }
1378
+ },
1379
+ "data_f5-utils-file-transfer_file": {
1380
+ "type": "object",
1381
+ "properties": {
1382
+ "f5-utils-file-transfer:file": {
1383
+ "description": "File utility commands. (non-presence)",
1384
+ "type": "object",
1385
+ "x-yang": {
1386
+ "type": "container",
1387
+ "is_presence": "false"
1388
+ },
1389
+ "properties": {
1390
+ }
1391
+ }
1392
+ }
1393
+ },
1394
+ "data_openconfig-system_system_f5-database_database_f5-database_reset-to-default-post-output": {
1395
+ "type": "object",
1396
+ "properties": {
1397
+ "f5-database:result": {
1398
+ "description": "Result of the reset-to-default response. (leaf)",
1399
+ "x-yang": {
1400
+ "type": "leaf"
1401
+ },
1402
+ "type": "string",
1403
+ "format": "string"
1404
+ }
1405
+ }
1406
+ },
1407
+ "data_openconfig-system_system_f5-database_database_f5-database_reset-to-default-post-input": {
1408
+ "type": "object",
1409
+ "properties": {
1410
+ "f5-database:proceed": {
1411
+ "description": "(leaf)",
1412
+ "x-yang": {
1413
+ "type": "leaf"
1414
+ },
1415
+ "type": "string",
1416
+ "format": "enumeration",
1417
+ "default": "no",
1418
+ "enum": [
1419
+ "no",
1420
+ "yes"
1421
+ ]
1422
+ }
1423
+ }
1424
+ },
1425
+ "data_openconfig-system_system_f5-database_database_f5-database_config-restore-post-output": {
1426
+ "type": "object",
1427
+ "properties": {
1428
+ "f5-database:result": {
1429
+ "description": "Result of the config-restore response. (leaf)",
1430
+ "x-yang": {
1431
+ "type": "leaf"
1432
+ },
1433
+ "type": "string",
1434
+ "format": "string"
1435
+ }
1436
+ }
1437
+ },
1438
+ "data_openconfig-system_system_f5-database_database_f5-database_config-restore-post-input": {
1439
+ "type": "object",
1440
+ "properties": {
1441
+ "f5-database:name": {
1442
+ "description": "(leaf)",
1443
+ "x-yang": {
1444
+ "type": "leaf"
1445
+ },
1446
+ "type": "string",
1447
+ "format": "string"
1448
+ }
1449
+ }
1450
+ },
1451
+ "data_openconfig-system_system_f5-database_database_f5-database_config-backup-post-output": {
1452
+ "type": "object",
1453
+ "properties": {
1454
+ "f5-database:result": {
1455
+ "description": "Result of the config-backup response. (leaf)",
1456
+ "x-yang": {
1457
+ "type": "leaf"
1458
+ },
1459
+ "type": "string",
1460
+ "format": "string"
1461
+ }
1462
+ }
1463
+ },
1464
+ "data_openconfig-system_system_f5-database_database_f5-database_config-backup-post-input": {
1465
+ "type": "object",
1466
+ "properties": {
1467
+ "f5-database:name": {
1468
+ "description": "(leaf)",
1469
+ "x-yang": {
1470
+ "type": "leaf"
1471
+ },
1472
+ "type": "string",
1473
+ "format": "string"
1474
+ }
1475
+ }
1476
+ },
1477
+ "data_openconfig-system_system_f5-database_database_f5-database_cdb-backup-post-output": {
1478
+ "type": "object",
1479
+ "properties": {
1480
+ "f5-database:result": {
1481
+ "description": "Result of the cdb-backup operation. (leaf)",
1482
+ "x-yang": {
1483
+ "type": "leaf"
1484
+ },
1485
+ "type": "string",
1486
+ "format": "string"
1487
+ }
1488
+ }
1489
+ },
1490
+ "data_openconfig-system_system_f5-database_database_f5-database_cdb-backup-post-input": {
1491
+ "type": "object",
1492
+ "properties": {
1493
+ }
1494
+ },
1495
+ "data_openconfig-system_system_f5-database_database-post": {
1496
+ "type": "object",
1497
+ "properties": {
1498
+ "f5-database:name": {
1499
+ "description": "(leaf)",
1500
+ "x-yang": {
1501
+ "type": "leaf"
1502
+ },
1503
+ "type": "string",
1504
+ "format": "string"
1505
+ },
1506
+ "f5-database:proceed": {
1507
+ "description": "(leaf)",
1508
+ "x-yang": {
1509
+ "type": "leaf"
1510
+ },
1511
+ "type": "string",
1512
+ "format": "enumeration",
1513
+ "default": "no",
1514
+ "enum": [
1515
+ "no",
1516
+ "yes"
1517
+ ]
1518
+ }
1519
+ }
1520
+ },
1521
+ "data_openconfig-system_system_f5-database_database": {
1522
+ "type": "object",
1523
+ "properties": {
1524
+ "f5-database:database": {
1525
+ "description": "(non-presence)",
1526
+ "type": "object",
1527
+ "x-yang": {
1528
+ "type": "container",
1529
+ "is_presence": "false"
1530
+ },
1531
+ "properties": {
1532
+ }
1533
+ }
1534
+ }
1535
+ }
1536
+ }
1537
+ }