@itentialopensource/adapter-f5_velos 0.1.1 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CALLS.md +115 -0
- package/CHANGELOG.md +8 -1
- package/CONTRIBUTING.md +1 -160
- package/ENHANCE.md +2 -2
- package/README.md +31 -22
- package/adapter.js +159 -330
- package/adapterBase.js +538 -873
- package/changelogs/changelog.md +9 -0
- package/metadata.json +47 -0
- package/package.json +23 -26
- package/pronghorn.json +474 -142
- package/propertiesSchema.json +453 -40
- package/refs?service=git-upload-pack +0 -0
- package/report/adapter-openapi.json +1178 -0
- package/report/adapter-openapi.yaml +756 -0
- package/report/adapterInfo.json +10 -0
- package/report/updateReport1698420886159.json +120 -0
- package/sampleProperties.json +63 -2
- package/test/integration/adapterTestBasicGet.js +1 -1
- package/test/integration/adapterTestConnectivity.js +91 -42
- package/test/integration/adapterTestIntegration.js +130 -2
- package/test/unit/adapterBaseTestUnit.js +388 -313
- package/test/unit/adapterTestUnit.js +306 -109
- package/utils/adapterInfo.js +1 -1
- package/utils/addAuth.js +1 -1
- package/utils/artifactize.js +1 -1
- package/utils/checkMigrate.js +1 -1
- package/utils/entitiesToDB.js +1 -0
- package/utils/findPath.js +1 -1
- package/utils/methodDocumentor.js +71 -23
- package/utils/modify.js +13 -15
- package/utils/packModificationScript.js +1 -1
- package/utils/taskMover.js +309 -0
- package/utils/tbScript.js +3 -10
- package/utils/tbUtils.js +2 -3
- package/utils/testRunner.js +1 -1
- package/utils/troubleshootingAdapter.js +1 -3
- package/workflows/README.md +0 -3
|
@@ -0,0 +1,1178 @@
|
|
|
1
|
+
{
|
|
2
|
+
"openapi": "3.0.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
|
+
"servers": [
|
|
14
|
+
{
|
|
15
|
+
"url": "http://{defaultHost}",
|
|
16
|
+
"variables": {
|
|
17
|
+
"defaultHost": {
|
|
18
|
+
"default": "www.example.com/restconf"
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"url": "https://{defaultHost}",
|
|
24
|
+
"variables": {
|
|
25
|
+
"defaultHost": {
|
|
26
|
+
"default": "www.example.com/restconf"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"paths": {
|
|
32
|
+
"/data/f5-utils-file-transfer:file": {
|
|
33
|
+
"get": {
|
|
34
|
+
"tags": [
|
|
35
|
+
"F5 Utils File Transfer"
|
|
36
|
+
],
|
|
37
|
+
"summary": "data_f5_utils_file_transfer_file_get",
|
|
38
|
+
"description": "File utility commands.",
|
|
39
|
+
"operationId": "data_f5_utils_file_transfer_file_get",
|
|
40
|
+
"parameters": [],
|
|
41
|
+
"responses": {
|
|
42
|
+
"200": {
|
|
43
|
+
"description": "File utility commands.",
|
|
44
|
+
"headers": {},
|
|
45
|
+
"content": {
|
|
46
|
+
"application/yang-data+json": {
|
|
47
|
+
"schema": {
|
|
48
|
+
"$ref": "#/components/schemas/data_f5-utils-file-transfer_file"
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"deprecated": false,
|
|
55
|
+
"security": [
|
|
56
|
+
{
|
|
57
|
+
"basicAuth": []
|
|
58
|
+
}
|
|
59
|
+
]
|
|
60
|
+
},
|
|
61
|
+
"post": {
|
|
62
|
+
"tags": [
|
|
63
|
+
"F5 Utils File Transfer"
|
|
64
|
+
],
|
|
65
|
+
"summary": "data_f5_utils_file_transfer_file_post",
|
|
66
|
+
"description": "File utility commands.",
|
|
67
|
+
"operationId": "data_f5_utils_file_transfer_file_post",
|
|
68
|
+
"parameters": [],
|
|
69
|
+
"requestBody": {
|
|
70
|
+
"description": "File utility commands.",
|
|
71
|
+
"content": {
|
|
72
|
+
"application/json": {
|
|
73
|
+
"schema": {
|
|
74
|
+
"allOf": [
|
|
75
|
+
{
|
|
76
|
+
"$ref": "#/components/schemas/data_f5-utils-file-transfer_file-post"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"description": "File utility commands."
|
|
80
|
+
}
|
|
81
|
+
]
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
"required": true
|
|
86
|
+
},
|
|
87
|
+
"responses": {
|
|
88
|
+
"201": {
|
|
89
|
+
"description": "container file created",
|
|
90
|
+
"headers": {},
|
|
91
|
+
"content": {}
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"deprecated": false,
|
|
95
|
+
"security": [
|
|
96
|
+
{
|
|
97
|
+
"basicAuth": []
|
|
98
|
+
}
|
|
99
|
+
]
|
|
100
|
+
},
|
|
101
|
+
"put": {
|
|
102
|
+
"tags": [
|
|
103
|
+
"F5 Utils File Transfer"
|
|
104
|
+
],
|
|
105
|
+
"summary": "data_f5_utils_file_transfer_file_put",
|
|
106
|
+
"description": "File utility commands.",
|
|
107
|
+
"operationId": "data_f5_utils_file_transfer_file_put",
|
|
108
|
+
"parameters": [],
|
|
109
|
+
"requestBody": {
|
|
110
|
+
"description": "File utility commands.",
|
|
111
|
+
"content": {
|
|
112
|
+
"application/json": {
|
|
113
|
+
"schema": {
|
|
114
|
+
"allOf": [
|
|
115
|
+
{
|
|
116
|
+
"$ref": "#/components/schemas/data_f5-utils-file-transfer_file"
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"description": "File utility commands."
|
|
120
|
+
}
|
|
121
|
+
]
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
"required": true
|
|
126
|
+
},
|
|
127
|
+
"responses": {
|
|
128
|
+
"201": {
|
|
129
|
+
"description": "container file created or replaced",
|
|
130
|
+
"headers": {},
|
|
131
|
+
"content": {}
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
"deprecated": false,
|
|
135
|
+
"security": [
|
|
136
|
+
{
|
|
137
|
+
"basicAuth": []
|
|
138
|
+
}
|
|
139
|
+
]
|
|
140
|
+
},
|
|
141
|
+
"patch": {
|
|
142
|
+
"tags": [
|
|
143
|
+
"F5 Utils File Transfer"
|
|
144
|
+
],
|
|
145
|
+
"summary": "data_f5_utils_file_transfer_file_patch",
|
|
146
|
+
"description": "File utility commands.",
|
|
147
|
+
"operationId": "data_f5_utils_file_transfer_file_patch",
|
|
148
|
+
"parameters": [],
|
|
149
|
+
"requestBody": {
|
|
150
|
+
"description": "File utility commands.",
|
|
151
|
+
"content": {
|
|
152
|
+
"application/json": {
|
|
153
|
+
"schema": {
|
|
154
|
+
"allOf": [
|
|
155
|
+
{
|
|
156
|
+
"$ref": "#/components/schemas/data_f5-utils-file-transfer_file"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"description": "File utility commands."
|
|
160
|
+
}
|
|
161
|
+
]
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"required": true
|
|
166
|
+
},
|
|
167
|
+
"responses": {
|
|
168
|
+
"204": {
|
|
169
|
+
"description": "container file updated",
|
|
170
|
+
"headers": {},
|
|
171
|
+
"content": {}
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
"deprecated": false,
|
|
175
|
+
"security": [
|
|
176
|
+
{
|
|
177
|
+
"basicAuth": []
|
|
178
|
+
}
|
|
179
|
+
]
|
|
180
|
+
},
|
|
181
|
+
"delete": {
|
|
182
|
+
"tags": [
|
|
183
|
+
"F5 Utils File Transfer"
|
|
184
|
+
],
|
|
185
|
+
"summary": "data_f5_utils_file_transfer_file_delete",
|
|
186
|
+
"description": "File utility commands.",
|
|
187
|
+
"operationId": "data_f5_utils_file_transfer_file_delete",
|
|
188
|
+
"parameters": [],
|
|
189
|
+
"responses": {
|
|
190
|
+
"204": {
|
|
191
|
+
"description": "No Content",
|
|
192
|
+
"headers": {},
|
|
193
|
+
"content": {}
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
"deprecated": false,
|
|
197
|
+
"security": [
|
|
198
|
+
{
|
|
199
|
+
"basicAuth": []
|
|
200
|
+
}
|
|
201
|
+
]
|
|
202
|
+
}
|
|
203
|
+
},
|
|
204
|
+
"/data/f5-utils-file-transfer:file/import": {
|
|
205
|
+
"post": {
|
|
206
|
+
"tags": [
|
|
207
|
+
"F5 Utils File Transfer"
|
|
208
|
+
],
|
|
209
|
+
"summary": "data_f5_utils_file_transfer_file_import_post",
|
|
210
|
+
"description": "Initiate an import of the remote file to the System.",
|
|
211
|
+
"operationId": "data_f5_utils_file_transfer_file_import_post",
|
|
212
|
+
"parameters": [],
|
|
213
|
+
"requestBody": {
|
|
214
|
+
"description": "Initiate an import of the remote file to the System.",
|
|
215
|
+
"content": {
|
|
216
|
+
"application/json": {
|
|
217
|
+
"schema": {
|
|
218
|
+
"allOf": [
|
|
219
|
+
{
|
|
220
|
+
"$ref": "#/components/schemas/data_f5-utils-file-transfer_file_import-post-input"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"description": "Initiate an import of the remote file to the System."
|
|
224
|
+
}
|
|
225
|
+
]
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
"required": true
|
|
230
|
+
},
|
|
231
|
+
"responses": {
|
|
232
|
+
"201": {
|
|
233
|
+
"description": "Created",
|
|
234
|
+
"headers": {},
|
|
235
|
+
"content": {
|
|
236
|
+
"application/yang-data+json": {
|
|
237
|
+
"schema": {
|
|
238
|
+
"$ref": "#/components/schemas/data_f5-utils-file-transfer_file_import-post-output"
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
"deprecated": false,
|
|
245
|
+
"security": [
|
|
246
|
+
{
|
|
247
|
+
"basicAuth": []
|
|
248
|
+
}
|
|
249
|
+
]
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
"/data/f5-utils-file-transfer:file/export": {
|
|
253
|
+
"post": {
|
|
254
|
+
"tags": [
|
|
255
|
+
"F5 Utils File Transfer"
|
|
256
|
+
],
|
|
257
|
+
"summary": "data_f5_utils_file_transfer_file_export_post",
|
|
258
|
+
"description": "Initiate an export of the file to the remote system.",
|
|
259
|
+
"operationId": "data_f5_utils_file_transfer_file_export_post",
|
|
260
|
+
"parameters": [],
|
|
261
|
+
"requestBody": {
|
|
262
|
+
"description": "Initiate an export of the file to the remote system.",
|
|
263
|
+
"content": {
|
|
264
|
+
"application/json": {
|
|
265
|
+
"schema": {
|
|
266
|
+
"allOf": [
|
|
267
|
+
{
|
|
268
|
+
"$ref": "#/components/schemas/data_f5-utils-file-transfer_file_export-post-input"
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"description": "Initiate an export of the file to the remote system."
|
|
272
|
+
}
|
|
273
|
+
]
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
},
|
|
277
|
+
"required": true
|
|
278
|
+
},
|
|
279
|
+
"responses": {
|
|
280
|
+
"201": {
|
|
281
|
+
"description": "Created",
|
|
282
|
+
"headers": {},
|
|
283
|
+
"content": {
|
|
284
|
+
"application/yang-data+json": {
|
|
285
|
+
"schema": {
|
|
286
|
+
"$ref": "#/components/schemas/data_f5-utils-file-transfer_file_export-post-output"
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
},
|
|
292
|
+
"deprecated": false,
|
|
293
|
+
"security": [
|
|
294
|
+
{
|
|
295
|
+
"basicAuth": []
|
|
296
|
+
}
|
|
297
|
+
]
|
|
298
|
+
}
|
|
299
|
+
},
|
|
300
|
+
"/data/f5-utils-file-transfer:file/delete": {
|
|
301
|
+
"post": {
|
|
302
|
+
"tags": [
|
|
303
|
+
"F5 Utils File Transfer"
|
|
304
|
+
],
|
|
305
|
+
"summary": "data_f5_utils_file_transfer_file_delete_post",
|
|
306
|
+
"description": "Delete an existing file. The result will indicate a success or failure.",
|
|
307
|
+
"operationId": "data_f5_utils_file_transfer_file_delete_post",
|
|
308
|
+
"parameters": [],
|
|
309
|
+
"requestBody": {
|
|
310
|
+
"description": "Delete an existing file. The result will indicate a success or failure.",
|
|
311
|
+
"content": {
|
|
312
|
+
"application/json": {
|
|
313
|
+
"schema": {
|
|
314
|
+
"allOf": [
|
|
315
|
+
{
|
|
316
|
+
"$ref": "#/components/schemas/data_f5-utils-file-transfer_file_delete-post-input"
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"description": "Delete an existing file. The result will indicate a success or failure."
|
|
320
|
+
}
|
|
321
|
+
]
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
},
|
|
325
|
+
"required": true
|
|
326
|
+
},
|
|
327
|
+
"responses": {
|
|
328
|
+
"201": {
|
|
329
|
+
"description": "Created",
|
|
330
|
+
"headers": {},
|
|
331
|
+
"content": {
|
|
332
|
+
"application/yang-data+json": {
|
|
333
|
+
"schema": {
|
|
334
|
+
"$ref": "#/components/schemas/data_f5-utils-file-transfer_file_delete-post-output"
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
},
|
|
340
|
+
"deprecated": false,
|
|
341
|
+
"security": [
|
|
342
|
+
{
|
|
343
|
+
"basicAuth": []
|
|
344
|
+
}
|
|
345
|
+
]
|
|
346
|
+
}
|
|
347
|
+
},
|
|
348
|
+
"/data/f5-utils-file-transfer:file/list": {
|
|
349
|
+
"post": {
|
|
350
|
+
"tags": [
|
|
351
|
+
"F5 Utils File Transfer"
|
|
352
|
+
],
|
|
353
|
+
"summary": "data_f5_utils_file_transfer_file_list_post",
|
|
354
|
+
"description": "Display list of directories/files in the given path.",
|
|
355
|
+
"operationId": "data_f5_utils_file_transfer_file_list_post",
|
|
356
|
+
"parameters": [],
|
|
357
|
+
"requestBody": {
|
|
358
|
+
"description": "Display list of directories/files in the given path.",
|
|
359
|
+
"content": {
|
|
360
|
+
"application/json": {
|
|
361
|
+
"schema": {
|
|
362
|
+
"allOf": [
|
|
363
|
+
{
|
|
364
|
+
"$ref": "#/components/schemas/data_f5-utils-file-transfer_file_list-post-input"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"description": "Display list of directories/files in the given path."
|
|
368
|
+
}
|
|
369
|
+
]
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
},
|
|
373
|
+
"required": true
|
|
374
|
+
},
|
|
375
|
+
"responses": {
|
|
376
|
+
"201": {
|
|
377
|
+
"description": "Created",
|
|
378
|
+
"headers": {},
|
|
379
|
+
"content": {
|
|
380
|
+
"application/yang-data+json": {
|
|
381
|
+
"schema": {
|
|
382
|
+
"$ref": "#/components/schemas/data_f5-utils-file-transfer_file_list-post-output"
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
},
|
|
388
|
+
"deprecated": false,
|
|
389
|
+
"security": [
|
|
390
|
+
{
|
|
391
|
+
"basicAuth": []
|
|
392
|
+
}
|
|
393
|
+
]
|
|
394
|
+
}
|
|
395
|
+
},
|
|
396
|
+
"/data/f5-utils-file-transfer:file/transfer-status": {
|
|
397
|
+
"post": {
|
|
398
|
+
"tags": [
|
|
399
|
+
"F5 Utils File Transfer"
|
|
400
|
+
],
|
|
401
|
+
"summary": "data_f5_utils_file_transfer_file_transfer_status_post",
|
|
402
|
+
"description": "Display the status of file operation.\nThe result will indicate an error, or percent complete.",
|
|
403
|
+
"operationId": "data_f5_utils_file_transfer_file_transfer_status_post",
|
|
404
|
+
"parameters": [],
|
|
405
|
+
"requestBody": {
|
|
406
|
+
"description": "Display the status of file operation.\nThe result will indicate an error, or percent complete.",
|
|
407
|
+
"content": {
|
|
408
|
+
"application/json": {
|
|
409
|
+
"schema": {
|
|
410
|
+
"allOf": [
|
|
411
|
+
{
|
|
412
|
+
"$ref": "#/components/schemas/data_f5-utils-file-transfer_file_transfer-status-post-input"
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"description": "Display the status of file operation.\nThe result will indicate an error, or percent complete."
|
|
416
|
+
}
|
|
417
|
+
]
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
},
|
|
421
|
+
"required": true
|
|
422
|
+
},
|
|
423
|
+
"responses": {
|
|
424
|
+
"201": {
|
|
425
|
+
"description": "Created",
|
|
426
|
+
"headers": {},
|
|
427
|
+
"content": {
|
|
428
|
+
"application/yang-data+json": {
|
|
429
|
+
"schema": {
|
|
430
|
+
"$ref": "#/components/schemas/data_f5-utils-file-transfer_file_transfer-status-post-output"
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
}
|
|
434
|
+
}
|
|
435
|
+
},
|
|
436
|
+
"deprecated": false,
|
|
437
|
+
"security": [
|
|
438
|
+
{
|
|
439
|
+
"basicAuth": []
|
|
440
|
+
}
|
|
441
|
+
]
|
|
442
|
+
}
|
|
443
|
+
},
|
|
444
|
+
"/data/openconfig-system:system/f5-database:database": {
|
|
445
|
+
"get": {
|
|
446
|
+
"tags": [
|
|
447
|
+
"F5 Openconfig System"
|
|
448
|
+
],
|
|
449
|
+
"summary": "data_openconfig_system_system_f5_database_database_get",
|
|
450
|
+
"description": "",
|
|
451
|
+
"operationId": "data_openconfig_system_system_f5_database_database_get",
|
|
452
|
+
"parameters": [],
|
|
453
|
+
"responses": {
|
|
454
|
+
"200": {
|
|
455
|
+
"description": "OK",
|
|
456
|
+
"headers": {},
|
|
457
|
+
"content": {
|
|
458
|
+
"application/yang-data+json": {
|
|
459
|
+
"schema": {
|
|
460
|
+
"$ref": "#/components/schemas/data_openconfig-system_system_f5-database_database"
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
}
|
|
465
|
+
},
|
|
466
|
+
"deprecated": false,
|
|
467
|
+
"security": [
|
|
468
|
+
{
|
|
469
|
+
"basicAuth": []
|
|
470
|
+
}
|
|
471
|
+
]
|
|
472
|
+
},
|
|
473
|
+
"post": {
|
|
474
|
+
"tags": [
|
|
475
|
+
"F5 Openconfig System"
|
|
476
|
+
],
|
|
477
|
+
"summary": "data_openconfig_system_system_f5_database_database_post",
|
|
478
|
+
"description": "",
|
|
479
|
+
"operationId": "data_openconfig_system_system_f5_database_database_post",
|
|
480
|
+
"parameters": [],
|
|
481
|
+
"requestBody": {
|
|
482
|
+
"description": "",
|
|
483
|
+
"content": {
|
|
484
|
+
"application/json": {
|
|
485
|
+
"schema": {
|
|
486
|
+
"$ref": "#/components/schemas/data_openconfig-system_system_f5-database_database-post"
|
|
487
|
+
}
|
|
488
|
+
}
|
|
489
|
+
},
|
|
490
|
+
"required": true
|
|
491
|
+
},
|
|
492
|
+
"responses": {
|
|
493
|
+
"201": {
|
|
494
|
+
"description": "container database created",
|
|
495
|
+
"headers": {},
|
|
496
|
+
"content": {}
|
|
497
|
+
}
|
|
498
|
+
},
|
|
499
|
+
"deprecated": false,
|
|
500
|
+
"security": [
|
|
501
|
+
{
|
|
502
|
+
"basicAuth": []
|
|
503
|
+
}
|
|
504
|
+
]
|
|
505
|
+
},
|
|
506
|
+
"put": {
|
|
507
|
+
"tags": [
|
|
508
|
+
"F5 Openconfig System"
|
|
509
|
+
],
|
|
510
|
+
"summary": "data_openconfig_system_system_f5_database_database_put",
|
|
511
|
+
"description": "",
|
|
512
|
+
"operationId": "data_openconfig_system_system_f5_database_database_put",
|
|
513
|
+
"parameters": [],
|
|
514
|
+
"requestBody": {
|
|
515
|
+
"description": "",
|
|
516
|
+
"content": {
|
|
517
|
+
"application/json": {
|
|
518
|
+
"schema": {
|
|
519
|
+
"$ref": "#/components/schemas/data_openconfig-system_system_f5-database_database"
|
|
520
|
+
}
|
|
521
|
+
}
|
|
522
|
+
},
|
|
523
|
+
"required": true
|
|
524
|
+
},
|
|
525
|
+
"responses": {
|
|
526
|
+
"201": {
|
|
527
|
+
"description": "container database created or replaced",
|
|
528
|
+
"headers": {},
|
|
529
|
+
"content": {}
|
|
530
|
+
}
|
|
531
|
+
},
|
|
532
|
+
"deprecated": false,
|
|
533
|
+
"security": [
|
|
534
|
+
{
|
|
535
|
+
"basicAuth": []
|
|
536
|
+
}
|
|
537
|
+
]
|
|
538
|
+
},
|
|
539
|
+
"patch": {
|
|
540
|
+
"tags": [
|
|
541
|
+
"F5 Openconfig System"
|
|
542
|
+
],
|
|
543
|
+
"summary": "data_openconfig_system_system_f5_database_database_patch",
|
|
544
|
+
"description": "",
|
|
545
|
+
"operationId": "data_openconfig_system_system_f5_database_database_patch",
|
|
546
|
+
"parameters": [],
|
|
547
|
+
"requestBody": {
|
|
548
|
+
"description": "",
|
|
549
|
+
"content": {
|
|
550
|
+
"application/json": {
|
|
551
|
+
"schema": {
|
|
552
|
+
"$ref": "#/components/schemas/data_openconfig-system_system_f5-database_database"
|
|
553
|
+
}
|
|
554
|
+
}
|
|
555
|
+
},
|
|
556
|
+
"required": true
|
|
557
|
+
},
|
|
558
|
+
"responses": {
|
|
559
|
+
"204": {
|
|
560
|
+
"description": "container database updated",
|
|
561
|
+
"headers": {},
|
|
562
|
+
"content": {}
|
|
563
|
+
}
|
|
564
|
+
},
|
|
565
|
+
"deprecated": false,
|
|
566
|
+
"security": [
|
|
567
|
+
{
|
|
568
|
+
"basicAuth": []
|
|
569
|
+
}
|
|
570
|
+
]
|
|
571
|
+
},
|
|
572
|
+
"delete": {
|
|
573
|
+
"tags": [
|
|
574
|
+
"F5 Openconfig System"
|
|
575
|
+
],
|
|
576
|
+
"summary": "data_openconfig_system_system_f5_database_database_delete",
|
|
577
|
+
"description": "",
|
|
578
|
+
"operationId": "data_openconfig_system_system_f5_database_database_delete",
|
|
579
|
+
"parameters": [],
|
|
580
|
+
"responses": {
|
|
581
|
+
"204": {
|
|
582
|
+
"description": "No Content",
|
|
583
|
+
"headers": {},
|
|
584
|
+
"content": {}
|
|
585
|
+
}
|
|
586
|
+
},
|
|
587
|
+
"deprecated": false,
|
|
588
|
+
"security": [
|
|
589
|
+
{
|
|
590
|
+
"basicAuth": []
|
|
591
|
+
}
|
|
592
|
+
]
|
|
593
|
+
}
|
|
594
|
+
},
|
|
595
|
+
"/data/openconfig-system:system/f5-database:database/f5-database:config-backup": {
|
|
596
|
+
"post": {
|
|
597
|
+
"tags": [
|
|
598
|
+
"F5 Openconfig System"
|
|
599
|
+
],
|
|
600
|
+
"summary": "data_openconfig_system_system_f5_database_database_f5_database_config_backup_post",
|
|
601
|
+
"description": "",
|
|
602
|
+
"operationId": "data_openconfig_system_system_f5_database_database_f5_database_config_backup_post",
|
|
603
|
+
"parameters": [],
|
|
604
|
+
"requestBody": {
|
|
605
|
+
"description": "",
|
|
606
|
+
"content": {
|
|
607
|
+
"application/json": {
|
|
608
|
+
"schema": {
|
|
609
|
+
"$ref": "#/components/schemas/data_openconfig-system_system_f5-database_database_f5-database_config-backup-post-input"
|
|
610
|
+
}
|
|
611
|
+
}
|
|
612
|
+
},
|
|
613
|
+
"required": true
|
|
614
|
+
},
|
|
615
|
+
"responses": {
|
|
616
|
+
"201": {
|
|
617
|
+
"description": "Created",
|
|
618
|
+
"headers": {},
|
|
619
|
+
"content": {
|
|
620
|
+
"application/yang-data+json": {
|
|
621
|
+
"schema": {
|
|
622
|
+
"$ref": "#/components/schemas/data_openconfig-system_system_f5-database_database_f5-database_config-backup-post-output"
|
|
623
|
+
}
|
|
624
|
+
}
|
|
625
|
+
}
|
|
626
|
+
}
|
|
627
|
+
},
|
|
628
|
+
"deprecated": false,
|
|
629
|
+
"security": [
|
|
630
|
+
{
|
|
631
|
+
"basicAuth": []
|
|
632
|
+
}
|
|
633
|
+
]
|
|
634
|
+
}
|
|
635
|
+
},
|
|
636
|
+
"/data/openconfig-system:system/f5-database:database/f5-database:cdb-backup": {
|
|
637
|
+
"post": {
|
|
638
|
+
"tags": [
|
|
639
|
+
"F5 Openconfig System"
|
|
640
|
+
],
|
|
641
|
+
"summary": "data_openconfig_system_system_f5_database_database_f5_database_cdb_backup_post",
|
|
642
|
+
"description": "",
|
|
643
|
+
"operationId": "data_openconfig_system_system_f5_database_database_f5_database_cdb_backup_post",
|
|
644
|
+
"parameters": [],
|
|
645
|
+
"requestBody": {
|
|
646
|
+
"description": "",
|
|
647
|
+
"content": {
|
|
648
|
+
"text/plain": {
|
|
649
|
+
"schema": {
|
|
650
|
+
"type": "object"
|
|
651
|
+
}
|
|
652
|
+
}
|
|
653
|
+
},
|
|
654
|
+
"required": true
|
|
655
|
+
},
|
|
656
|
+
"responses": {
|
|
657
|
+
"201": {
|
|
658
|
+
"description": "Created",
|
|
659
|
+
"headers": {},
|
|
660
|
+
"content": {
|
|
661
|
+
"application/yang-data+json": {
|
|
662
|
+
"schema": {
|
|
663
|
+
"$ref": "#/components/schemas/data_openconfig-system_system_f5-database_database_f5-database_cdb-backup-post-output"
|
|
664
|
+
}
|
|
665
|
+
}
|
|
666
|
+
}
|
|
667
|
+
}
|
|
668
|
+
},
|
|
669
|
+
"deprecated": false,
|
|
670
|
+
"security": [
|
|
671
|
+
{
|
|
672
|
+
"basicAuth": []
|
|
673
|
+
}
|
|
674
|
+
]
|
|
675
|
+
}
|
|
676
|
+
},
|
|
677
|
+
"/data/openconfig-system:system/f5-database:database/f5-database:config-restore": {
|
|
678
|
+
"post": {
|
|
679
|
+
"tags": [
|
|
680
|
+
"F5 Openconfig System"
|
|
681
|
+
],
|
|
682
|
+
"summary": "data_openconfig_system_system_f5_database_database_f5_database_config_restore_post",
|
|
683
|
+
"description": "",
|
|
684
|
+
"operationId": "data_openconfig_system_system_f5_database_database_f5_database_config_restore_post",
|
|
685
|
+
"parameters": [],
|
|
686
|
+
"requestBody": {
|
|
687
|
+
"description": "",
|
|
688
|
+
"content": {
|
|
689
|
+
"application/json": {
|
|
690
|
+
"schema": {
|
|
691
|
+
"$ref": "#/components/schemas/data_openconfig-system_system_f5-database_database_f5-database_config-restore-post-input"
|
|
692
|
+
}
|
|
693
|
+
}
|
|
694
|
+
},
|
|
695
|
+
"required": true
|
|
696
|
+
},
|
|
697
|
+
"responses": {
|
|
698
|
+
"201": {
|
|
699
|
+
"description": "Created",
|
|
700
|
+
"headers": {},
|
|
701
|
+
"content": {
|
|
702
|
+
"application/yang-data+json": {
|
|
703
|
+
"schema": {
|
|
704
|
+
"$ref": "#/components/schemas/data_openconfig-system_system_f5-database_database_f5-database_config-restore-post-output"
|
|
705
|
+
}
|
|
706
|
+
}
|
|
707
|
+
}
|
|
708
|
+
}
|
|
709
|
+
},
|
|
710
|
+
"deprecated": false,
|
|
711
|
+
"security": [
|
|
712
|
+
{
|
|
713
|
+
"basicAuth": []
|
|
714
|
+
}
|
|
715
|
+
]
|
|
716
|
+
}
|
|
717
|
+
},
|
|
718
|
+
"/data/openconfig-system:system/f5-database:database/f5-database:reset-to-default": {
|
|
719
|
+
"post": {
|
|
720
|
+
"tags": [
|
|
721
|
+
"F5 Openconfig System"
|
|
722
|
+
],
|
|
723
|
+
"summary": "data_openconfig_system_system_f5_database_database_f5_database_reset_to_default_post",
|
|
724
|
+
"description": "",
|
|
725
|
+
"operationId": "data_openconfig_system_system_f5_database_database_f5_database_reset_to_default_post",
|
|
726
|
+
"parameters": [],
|
|
727
|
+
"requestBody": {
|
|
728
|
+
"description": "",
|
|
729
|
+
"content": {
|
|
730
|
+
"application/json": {
|
|
731
|
+
"schema": {
|
|
732
|
+
"$ref": "#/components/schemas/data_openconfig-system_system_f5-database_database_f5-database_reset-to-default-post-input"
|
|
733
|
+
}
|
|
734
|
+
}
|
|
735
|
+
},
|
|
736
|
+
"required": true
|
|
737
|
+
},
|
|
738
|
+
"responses": {
|
|
739
|
+
"201": {
|
|
740
|
+
"description": "Created",
|
|
741
|
+
"headers": {},
|
|
742
|
+
"content": {
|
|
743
|
+
"application/yang-data+json": {
|
|
744
|
+
"schema": {
|
|
745
|
+
"$ref": "#/components/schemas/data_openconfig-system_system_f5-database_database_f5-database_reset-to-default-post-output"
|
|
746
|
+
}
|
|
747
|
+
}
|
|
748
|
+
}
|
|
749
|
+
}
|
|
750
|
+
},
|
|
751
|
+
"deprecated": false,
|
|
752
|
+
"security": [
|
|
753
|
+
{
|
|
754
|
+
"basicAuth": []
|
|
755
|
+
}
|
|
756
|
+
]
|
|
757
|
+
}
|
|
758
|
+
}
|
|
759
|
+
},
|
|
760
|
+
"components": {
|
|
761
|
+
"schemas": {
|
|
762
|
+
"data_f5-utils-file-transfer_file_transfer-status-post-output": {
|
|
763
|
+
"title": "data_f5-utils-file-transfer_file_transfer-status-post-output",
|
|
764
|
+
"type": "object",
|
|
765
|
+
"properties": {
|
|
766
|
+
"f5-utils-file-transfer:result": {
|
|
767
|
+
"type": "string",
|
|
768
|
+
"description": "A message indicating the result of the file transfer status. (leaf)"
|
|
769
|
+
},
|
|
770
|
+
"f5-utils-file-transfer:resultint": {
|
|
771
|
+
"type": "string",
|
|
772
|
+
"description": "An error indicator. A Zero value (0) indicates success. (leaf)"
|
|
773
|
+
}
|
|
774
|
+
}
|
|
775
|
+
},
|
|
776
|
+
"data_f5-utils-file-transfer_file_transfer-status-post-input": {
|
|
777
|
+
"title": "data_f5-utils-file-transfer_file_transfer-status-post-input",
|
|
778
|
+
"type": "object",
|
|
779
|
+
"properties": {
|
|
780
|
+
"f5-utils-file-transfer:file-name": {
|
|
781
|
+
"type": "string",
|
|
782
|
+
"description": "Local file path. Accepts either absolute or relative path. (leaf)"
|
|
783
|
+
}
|
|
784
|
+
}
|
|
785
|
+
},
|
|
786
|
+
"data_f5-utils-file-transfer_file_list-post-output": {
|
|
787
|
+
"title": "data_f5-utils-file-transfer_file_list-post-output",
|
|
788
|
+
"type": "object",
|
|
789
|
+
"properties": {
|
|
790
|
+
"f5-utils-file-transfer:entries": {
|
|
791
|
+
"type": "array",
|
|
792
|
+
"items": {
|
|
793
|
+
"$ref": "#/components/schemas/F5UtilsFileTransferEntry"
|
|
794
|
+
},
|
|
795
|
+
"description": "(list)"
|
|
796
|
+
}
|
|
797
|
+
}
|
|
798
|
+
},
|
|
799
|
+
"data_f5-utils-file-transfer_file_list-post-input": {
|
|
800
|
+
"title": "data_f5-utils-file-transfer_file_list-post-input",
|
|
801
|
+
"type": "object",
|
|
802
|
+
"properties": {
|
|
803
|
+
"f5-utils-file-transfer:path": {
|
|
804
|
+
"type": "string",
|
|
805
|
+
"description": "Provide the directory/file path. (leaf)"
|
|
806
|
+
}
|
|
807
|
+
}
|
|
808
|
+
},
|
|
809
|
+
"data_f5-utils-file-transfer_file_import-post-output": {
|
|
810
|
+
"title": "data_f5-utils-file-transfer_file_import-post-output",
|
|
811
|
+
"type": "object",
|
|
812
|
+
"properties": {
|
|
813
|
+
"f5-utils-file-transfer:result": {
|
|
814
|
+
"type": "string",
|
|
815
|
+
"description": "A message indicating the result of import file transfer action. (leaf)"
|
|
816
|
+
},
|
|
817
|
+
"f5-utils-file-transfer:resultint": {
|
|
818
|
+
"type": "string",
|
|
819
|
+
"description": "An error indicator. A Zero value (0) indicates success. (leaf)"
|
|
820
|
+
}
|
|
821
|
+
}
|
|
822
|
+
},
|
|
823
|
+
"data_f5-utils-file-transfer_file_import-post-input": {
|
|
824
|
+
"title": "data_f5-utils-file-transfer_file_import-post-input",
|
|
825
|
+
"type": "object",
|
|
826
|
+
"properties": {
|
|
827
|
+
"f5-utils-file-transfer:insecure": {
|
|
828
|
+
"type": "string",
|
|
829
|
+
"description": "Disable remote system identity verification (leaf)"
|
|
830
|
+
},
|
|
831
|
+
"f5-utils-file-transfer:protocol": {
|
|
832
|
+
"allOf": [
|
|
833
|
+
{
|
|
834
|
+
"$ref": "#/components/schemas/F5UtilsFileTransferProtocol"
|
|
835
|
+
},
|
|
836
|
+
{
|
|
837
|
+
"description": "Choose protocol to be used for file transfer. (leaf)"
|
|
838
|
+
}
|
|
839
|
+
]
|
|
840
|
+
},
|
|
841
|
+
"f5-utils-file-transfer:username": {
|
|
842
|
+
"type": "string",
|
|
843
|
+
"description": "Provide the remote system username. (leaf)"
|
|
844
|
+
},
|
|
845
|
+
"f5-utils-file-transfer:password": {
|
|
846
|
+
"type": "string",
|
|
847
|
+
"description": "Provide the remote system password in simple text. (leaf)"
|
|
848
|
+
},
|
|
849
|
+
"f5-utils-file-transfer:web-token": {
|
|
850
|
+
"type": "string",
|
|
851
|
+
"description": "Provide the remote system web token. (leaf)"
|
|
852
|
+
},
|
|
853
|
+
"f5-utils-file-transfer:remote-host": {
|
|
854
|
+
"type": "string",
|
|
855
|
+
"description": "Remote System FQDN or IPv4/IPv6 address. (leaf)"
|
|
856
|
+
},
|
|
857
|
+
"f5-utils-file-transfer:remote-port": {
|
|
858
|
+
"type": "integer",
|
|
859
|
+
"description": "Provide port to connect to on the remote host. (leaf)",
|
|
860
|
+
"format": "int32"
|
|
861
|
+
},
|
|
862
|
+
"f5-utils-file-transfer:remote-file": {
|
|
863
|
+
"type": "string",
|
|
864
|
+
"description": "Remote file path. (leaf)"
|
|
865
|
+
},
|
|
866
|
+
"f5-utils-file-transfer:local-file": {
|
|
867
|
+
"type": "string",
|
|
868
|
+
"description": "Local file path. Accepts either absolute or relative path. (leaf)"
|
|
869
|
+
}
|
|
870
|
+
}
|
|
871
|
+
},
|
|
872
|
+
"data_f5-utils-file-transfer_file_export-post-output": {
|
|
873
|
+
"title": "data_f5-utils-file-transfer_file_export-post-output",
|
|
874
|
+
"type": "object",
|
|
875
|
+
"properties": {
|
|
876
|
+
"f5-utils-file-transfer:result": {
|
|
877
|
+
"type": "string",
|
|
878
|
+
"description": "A message indicating the result of export file transfer action. (leaf)"
|
|
879
|
+
},
|
|
880
|
+
"f5-utils-file-transfer:resultint": {
|
|
881
|
+
"type": "string",
|
|
882
|
+
"description": "An error indicator. A Zero value (0) indicates success. (leaf)"
|
|
883
|
+
}
|
|
884
|
+
}
|
|
885
|
+
},
|
|
886
|
+
"data_f5-utils-file-transfer_file_export-post-input": {
|
|
887
|
+
"title": "data_f5-utils-file-transfer_file_export-post-input",
|
|
888
|
+
"type": "object",
|
|
889
|
+
"properties": {
|
|
890
|
+
"f5-utils-file-transfer:insecure": {
|
|
891
|
+
"type": "string",
|
|
892
|
+
"description": "Disable remote system identity verification (leaf)"
|
|
893
|
+
},
|
|
894
|
+
"f5-utils-file-transfer:protocol": {
|
|
895
|
+
"allOf": [
|
|
896
|
+
{
|
|
897
|
+
"$ref": "#/components/schemas/F5UtilsFileTransferProtocol"
|
|
898
|
+
},
|
|
899
|
+
{
|
|
900
|
+
"description": "Choose protocol to be used for file transfer. (leaf)"
|
|
901
|
+
}
|
|
902
|
+
]
|
|
903
|
+
},
|
|
904
|
+
"f5-utils-file-transfer:username": {
|
|
905
|
+
"type": "string",
|
|
906
|
+
"description": "Provide the remote system username. (leaf)"
|
|
907
|
+
},
|
|
908
|
+
"f5-utils-file-transfer:password": {
|
|
909
|
+
"type": "string",
|
|
910
|
+
"description": "Provide the remote system password in simple text. (leaf)"
|
|
911
|
+
},
|
|
912
|
+
"f5-utils-file-transfer:web-token": {
|
|
913
|
+
"type": "string",
|
|
914
|
+
"description": "Provide the remote system web token. (leaf)"
|
|
915
|
+
},
|
|
916
|
+
"f5-utils-file-transfer:local-file": {
|
|
917
|
+
"type": "string",
|
|
918
|
+
"description": "Local file path. Accepts either absolute or relative path. (leaf)"
|
|
919
|
+
},
|
|
920
|
+
"f5-utils-file-transfer:remote-host": {
|
|
921
|
+
"type": "string",
|
|
922
|
+
"description": "Remote System FQDN or IPv4/IPv6 address. (leaf)"
|
|
923
|
+
},
|
|
924
|
+
"f5-utils-file-transfer:remote-port": {
|
|
925
|
+
"type": "integer",
|
|
926
|
+
"description": "Provide port to connect to on the remote host. (leaf)",
|
|
927
|
+
"format": "int32"
|
|
928
|
+
},
|
|
929
|
+
"f5-utils-file-transfer:remote-file": {
|
|
930
|
+
"type": "string",
|
|
931
|
+
"description": "Remote file path. (leaf)"
|
|
932
|
+
}
|
|
933
|
+
}
|
|
934
|
+
},
|
|
935
|
+
"data_f5-utils-file-transfer_file_delete-post-output": {
|
|
936
|
+
"title": "data_f5-utils-file-transfer_file_delete-post-output",
|
|
937
|
+
"type": "object",
|
|
938
|
+
"properties": {
|
|
939
|
+
"f5-utils-file-transfer:result": {
|
|
940
|
+
"type": "string",
|
|
941
|
+
"description": "A message indicating the result of the delete file action. (leaf)"
|
|
942
|
+
},
|
|
943
|
+
"f5-utils-file-transfer:resultint": {
|
|
944
|
+
"type": "string",
|
|
945
|
+
"description": "An error indicator. A Zero value (0) indicates success. (leaf)"
|
|
946
|
+
}
|
|
947
|
+
}
|
|
948
|
+
},
|
|
949
|
+
"data_f5-utils-file-transfer_file_delete-post-input": {
|
|
950
|
+
"title": "data_f5-utils-file-transfer_file_delete-post-input",
|
|
951
|
+
"type": "object",
|
|
952
|
+
"properties": {
|
|
953
|
+
"f5-utils-file-transfer:file-name": {
|
|
954
|
+
"type": "string",
|
|
955
|
+
"description": "Provide the file name to be deleted. Accepts either\nabsolute or relative path. (leaf)"
|
|
956
|
+
}
|
|
957
|
+
}
|
|
958
|
+
},
|
|
959
|
+
"data_f5-utils-file-transfer_file-post": {
|
|
960
|
+
"title": "data_f5-utils-file-transfer_file-post",
|
|
961
|
+
"type": "object",
|
|
962
|
+
"properties": {
|
|
963
|
+
"f5-utils-file-transfer:insecure": {
|
|
964
|
+
"type": "string",
|
|
965
|
+
"description": "Disable remote system identity verification (leaf)"
|
|
966
|
+
},
|
|
967
|
+
"f5-utils-file-transfer:protocol": {
|
|
968
|
+
"allOf": [
|
|
969
|
+
{
|
|
970
|
+
"$ref": "#/components/schemas/F5UtilsFileTransferProtocol"
|
|
971
|
+
},
|
|
972
|
+
{
|
|
973
|
+
"description": "Choose protocol to be used for file transfer. (leaf)"
|
|
974
|
+
}
|
|
975
|
+
]
|
|
976
|
+
},
|
|
977
|
+
"f5-utils-file-transfer:username": {
|
|
978
|
+
"type": "string",
|
|
979
|
+
"description": "Provide the remote system username. (leaf)"
|
|
980
|
+
},
|
|
981
|
+
"f5-utils-file-transfer:password": {
|
|
982
|
+
"type": "string",
|
|
983
|
+
"description": "Provide the remote system password in simple text. (leaf)"
|
|
984
|
+
},
|
|
985
|
+
"f5-utils-file-transfer:web-token": {
|
|
986
|
+
"type": "string",
|
|
987
|
+
"description": "Provide the remote system web token. (leaf)"
|
|
988
|
+
},
|
|
989
|
+
"f5-utils-file-transfer:remote-host": {
|
|
990
|
+
"type": "string",
|
|
991
|
+
"description": "Remote System FQDN or IPv4/IPv6 address. (leaf)"
|
|
992
|
+
},
|
|
993
|
+
"f5-utils-file-transfer:remote-port": {
|
|
994
|
+
"type": "integer",
|
|
995
|
+
"description": "Provide port to connect to on the remote host. (leaf)",
|
|
996
|
+
"format": "int32"
|
|
997
|
+
},
|
|
998
|
+
"f5-utils-file-transfer:remote-file": {
|
|
999
|
+
"type": "string",
|
|
1000
|
+
"description": "Remote file path. (leaf)"
|
|
1001
|
+
},
|
|
1002
|
+
"f5-utils-file-transfer:local-file": {
|
|
1003
|
+
"type": "string",
|
|
1004
|
+
"description": "Local file path. Accepts either absolute or relative path. (leaf)"
|
|
1005
|
+
},
|
|
1006
|
+
"f5-utils-file-transfer:path": {
|
|
1007
|
+
"type": "string",
|
|
1008
|
+
"description": "Provide the directory/file path. (leaf)"
|
|
1009
|
+
},
|
|
1010
|
+
"f5-utils-file-transfer:file-name": {
|
|
1011
|
+
"type": "string",
|
|
1012
|
+
"description": "Local file path. Accepts either absolute or relative path. (leaf)"
|
|
1013
|
+
}
|
|
1014
|
+
}
|
|
1015
|
+
},
|
|
1016
|
+
"data_f5-utils-file-transfer_file": {
|
|
1017
|
+
"title": "data_f5-utils-file-transfer_file",
|
|
1018
|
+
"type": "object",
|
|
1019
|
+
"properties": {
|
|
1020
|
+
"f5-utils-file-transfer:file": {
|
|
1021
|
+
"type": "object",
|
|
1022
|
+
"description": "File utility commands. (non-presence)"
|
|
1023
|
+
}
|
|
1024
|
+
}
|
|
1025
|
+
},
|
|
1026
|
+
"data_openconfig-system_system_f5-database_database_f5-database_reset-to-default-post-output": {
|
|
1027
|
+
"title": "data_openconfig-system_system_f5-database_database_f5-database_reset-to-default-post-output",
|
|
1028
|
+
"type": "object",
|
|
1029
|
+
"properties": {
|
|
1030
|
+
"f5-database:result": {
|
|
1031
|
+
"type": "string",
|
|
1032
|
+
"description": "Result of the reset-to-default response. (leaf)"
|
|
1033
|
+
}
|
|
1034
|
+
}
|
|
1035
|
+
},
|
|
1036
|
+
"data_openconfig-system_system_f5-database_database_f5-database_reset-to-default-post-input": {
|
|
1037
|
+
"title": "data_openconfig-system_system_f5-database_database_f5-database_reset-to-default-post-input",
|
|
1038
|
+
"type": "object",
|
|
1039
|
+
"properties": {
|
|
1040
|
+
"f5-database:proceed": {
|
|
1041
|
+
"allOf": [
|
|
1042
|
+
{
|
|
1043
|
+
"$ref": "#/components/schemas/F5DatabaseProceed"
|
|
1044
|
+
},
|
|
1045
|
+
{
|
|
1046
|
+
"description": "(leaf)"
|
|
1047
|
+
}
|
|
1048
|
+
]
|
|
1049
|
+
}
|
|
1050
|
+
}
|
|
1051
|
+
},
|
|
1052
|
+
"data_openconfig-system_system_f5-database_database_f5-database_config-restore-post-output": {
|
|
1053
|
+
"title": "data_openconfig-system_system_f5-database_database_f5-database_config-restore-post-output",
|
|
1054
|
+
"type": "object",
|
|
1055
|
+
"properties": {
|
|
1056
|
+
"f5-database:result": {
|
|
1057
|
+
"type": "string",
|
|
1058
|
+
"description": "Result of the config-restore response. (leaf)"
|
|
1059
|
+
}
|
|
1060
|
+
}
|
|
1061
|
+
},
|
|
1062
|
+
"data_openconfig-system_system_f5-database_database_f5-database_config-restore-post-input": {
|
|
1063
|
+
"title": "data_openconfig-system_system_f5-database_database_f5-database_config-restore-post-input",
|
|
1064
|
+
"type": "object",
|
|
1065
|
+
"properties": {
|
|
1066
|
+
"f5-database:name": {
|
|
1067
|
+
"type": "string",
|
|
1068
|
+
"description": "(leaf)"
|
|
1069
|
+
}
|
|
1070
|
+
}
|
|
1071
|
+
},
|
|
1072
|
+
"data_openconfig-system_system_f5-database_database_f5-database_config-backup-post-output": {
|
|
1073
|
+
"title": "data_openconfig-system_system_f5-database_database_f5-database_config-backup-post-output",
|
|
1074
|
+
"type": "object",
|
|
1075
|
+
"properties": {
|
|
1076
|
+
"f5-database:result": {
|
|
1077
|
+
"type": "string",
|
|
1078
|
+
"description": "Result of the config-backup response. (leaf)"
|
|
1079
|
+
}
|
|
1080
|
+
}
|
|
1081
|
+
},
|
|
1082
|
+
"data_openconfig-system_system_f5-database_database_f5-database_config-backup-post-input": {
|
|
1083
|
+
"title": "data_openconfig-system_system_f5-database_database_f5-database_config-backup-post-input",
|
|
1084
|
+
"type": "object",
|
|
1085
|
+
"properties": {
|
|
1086
|
+
"f5-database:name": {
|
|
1087
|
+
"type": "string",
|
|
1088
|
+
"description": "(leaf)"
|
|
1089
|
+
}
|
|
1090
|
+
}
|
|
1091
|
+
},
|
|
1092
|
+
"data_openconfig-system_system_f5-database_database_f5-database_cdb-backup-post-output": {
|
|
1093
|
+
"title": "data_openconfig-system_system_f5-database_database_f5-database_cdb-backup-post-output",
|
|
1094
|
+
"type": "object",
|
|
1095
|
+
"properties": {
|
|
1096
|
+
"f5-database:result": {
|
|
1097
|
+
"type": "string",
|
|
1098
|
+
"description": "Result of the cdb-backup operation. (leaf)"
|
|
1099
|
+
}
|
|
1100
|
+
}
|
|
1101
|
+
},
|
|
1102
|
+
"data_openconfig-system_system_f5-database_database-post": {
|
|
1103
|
+
"title": "data_openconfig-system_system_f5-database_database-post",
|
|
1104
|
+
"type": "object",
|
|
1105
|
+
"properties": {
|
|
1106
|
+
"f5-database:name": {
|
|
1107
|
+
"type": "string",
|
|
1108
|
+
"description": "(leaf)"
|
|
1109
|
+
},
|
|
1110
|
+
"f5-database:proceed": {
|
|
1111
|
+
"allOf": [
|
|
1112
|
+
{
|
|
1113
|
+
"$ref": "#/components/schemas/F5DatabaseProceed"
|
|
1114
|
+
},
|
|
1115
|
+
{
|
|
1116
|
+
"description": "(leaf)"
|
|
1117
|
+
}
|
|
1118
|
+
]
|
|
1119
|
+
}
|
|
1120
|
+
}
|
|
1121
|
+
},
|
|
1122
|
+
"data_openconfig-system_system_f5-database_database": {
|
|
1123
|
+
"title": "data_openconfig-system_system_f5-database_database",
|
|
1124
|
+
"type": "object",
|
|
1125
|
+
"properties": {
|
|
1126
|
+
"f5-database:database": {
|
|
1127
|
+
"type": "object",
|
|
1128
|
+
"description": "(non-presence)"
|
|
1129
|
+
}
|
|
1130
|
+
}
|
|
1131
|
+
},
|
|
1132
|
+
"F5DatabaseProceed": {
|
|
1133
|
+
"title": "F5DatabaseProceed",
|
|
1134
|
+
"enum": [
|
|
1135
|
+
"no",
|
|
1136
|
+
"yes"
|
|
1137
|
+
],
|
|
1138
|
+
"type": "string",
|
|
1139
|
+
"description": "(leaf)"
|
|
1140
|
+
},
|
|
1141
|
+
"F5UtilsFileTransferEntry": {
|
|
1142
|
+
"title": "F5UtilsFileTransferEntry",
|
|
1143
|
+
"type": "object",
|
|
1144
|
+
"properties": {
|
|
1145
|
+
"name": {
|
|
1146
|
+
"type": "string",
|
|
1147
|
+
"description": "A Message indicating list of files/directories from\nresult of file list action. (leaf)"
|
|
1148
|
+
}
|
|
1149
|
+
}
|
|
1150
|
+
},
|
|
1151
|
+
"F5UtilsFileTransferProtocol": {
|
|
1152
|
+
"title": "F5UtilsFileTransferProtocol",
|
|
1153
|
+
"enum": [
|
|
1154
|
+
"scp",
|
|
1155
|
+
"sftp",
|
|
1156
|
+
"https"
|
|
1157
|
+
],
|
|
1158
|
+
"type": "string",
|
|
1159
|
+
"description": "Choose protocol to be used for file transfer. (leaf)"
|
|
1160
|
+
}
|
|
1161
|
+
},
|
|
1162
|
+
"securitySchemes": {
|
|
1163
|
+
"basicAuth": {
|
|
1164
|
+
"type": "http",
|
|
1165
|
+
"scheme": "basic"
|
|
1166
|
+
}
|
|
1167
|
+
}
|
|
1168
|
+
},
|
|
1169
|
+
"security": [],
|
|
1170
|
+
"tags": [
|
|
1171
|
+
{
|
|
1172
|
+
"name": "F5 Utils File Transfer"
|
|
1173
|
+
},
|
|
1174
|
+
{
|
|
1175
|
+
"name": "F5 Openconfig System"
|
|
1176
|
+
}
|
|
1177
|
+
]
|
|
1178
|
+
}
|