@itentialopensource/adapter-nokia_netact 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 (73) hide show
  1. package/.eslintignore +5 -0
  2. package/.eslintrc.js +18 -0
  3. package/.jshintrc +3 -0
  4. package/AUTH.md +32 -0
  5. package/BROKER.md +211 -0
  6. package/CALLS.md +447 -0
  7. package/CODE_OF_CONDUCT.md +43 -0
  8. package/CONTRIBUTING.md +13 -0
  9. package/ENHANCE.md +69 -0
  10. package/LICENSE +201 -0
  11. package/PROPERTIES.md +646 -0
  12. package/README.md +343 -0
  13. package/SUMMARY.md +9 -0
  14. package/SYSTEMINFO.md +18 -0
  15. package/TAB1.md +11 -0
  16. package/TAB2.md +303 -0
  17. package/TROUBLESHOOT.md +47 -0
  18. package/adapter.js +4743 -0
  19. package/adapterBase.js +1452 -0
  20. package/changelogs/CHANGELOG.md +0 -0
  21. package/entities/.generic/action.json +214 -0
  22. package/entities/.generic/schema.json +28 -0
  23. package/entities/.system/action.json +50 -0
  24. package/entities/.system/mockdatafiles/getToken-default.json +3 -0
  25. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  26. package/entities/.system/schema.json +19 -0
  27. package/entities/.system/schemaTokenReq.json +53 -0
  28. package/entities/.system/schemaTokenResp.json +53 -0
  29. package/entities/OpenCmOperationsPortBinding/action.json +64 -0
  30. package/entities/OpenCmOperationsPortBinding/schema.json +21 -0
  31. package/entities/OpenCmPersistencyPortBinding/action.json +244 -0
  32. package/entities/OpenCmPersistencyPortBinding/schema.json +30 -0
  33. package/entities/Operations/action.json +169 -0
  34. package/entities/Operations/schema.json +26 -0
  35. package/entities/Persistency/action.json +348 -0
  36. package/entities/Persistency/schema.json +35 -0
  37. package/error.json +190 -0
  38. package/metadata.json +78 -0
  39. package/package.json +81 -0
  40. package/pronghorn.json +2889 -0
  41. package/propertiesDecorators.json +14 -0
  42. package/propertiesSchema.json +1574 -0
  43. package/report/Nokia-NetAct-REST-SOAP-OpenAPI3.v1.json +3014 -0
  44. package/report/adapter-openapi.json +3014 -0
  45. package/report/adapter-openapi.yaml +2396 -0
  46. package/report/adapterInfo.json +10 -0
  47. package/report/auto-adapter-openapi.json +1420 -0
  48. package/report/creationReport.json +455 -0
  49. package/sampleProperties.json +257 -0
  50. package/test/integration/adapterTestBasicGet.js +83 -0
  51. package/test/integration/adapterTestConnectivity.js +118 -0
  52. package/test/integration/adapterTestIntegration.js +1509 -0
  53. package/test/unit/adapterBaseTestUnit.js +1024 -0
  54. package/test/unit/adapterTestUnit.js +2477 -0
  55. package/utils/adapterInfo.js +206 -0
  56. package/utils/addAuth.js +94 -0
  57. package/utils/artifactize.js +146 -0
  58. package/utils/basicGet.js +50 -0
  59. package/utils/checkMigrate.js +63 -0
  60. package/utils/entitiesToDB.js +179 -0
  61. package/utils/findPath.js +74 -0
  62. package/utils/methodDocumentor.js +273 -0
  63. package/utils/modify.js +152 -0
  64. package/utils/packModificationScript.js +35 -0
  65. package/utils/patches2bundledDeps.js +90 -0
  66. package/utils/pre-commit.sh +32 -0
  67. package/utils/removeHooks.js +20 -0
  68. package/utils/setup.js +33 -0
  69. package/utils/taskMover.js +309 -0
  70. package/utils/tbScript.js +239 -0
  71. package/utils/tbUtils.js +489 -0
  72. package/utils/testRunner.js +298 -0
  73. package/utils/troubleshootingAdapter.js +193 -0
package/pronghorn.json ADDED
@@ -0,0 +1,2889 @@
1
+ {
2
+ "id": "@itentialopensource/adapter-nokia_netact",
3
+ "type": "Adapter",
4
+ "export": "NokiaNetact",
5
+ "title": "Nokia_netact",
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
+ "name": "replace",
68
+ "type": "boolean",
69
+ "info": "True to replace entire mock data, false to merge/append",
70
+ "required": false,
71
+ "schema": {
72
+ "title": "replace",
73
+ "type": "boolean"
74
+ }
75
+ }
76
+ ],
77
+ "output": {
78
+ "name": "result",
79
+ "type": "object",
80
+ "description": "A JSON Object containing status, code and the result",
81
+ "schema": {
82
+ "title": "result",
83
+ "type": "object"
84
+ }
85
+ },
86
+ "roles": [
87
+ "admin"
88
+ ],
89
+ "route": {
90
+ "verb": "POST",
91
+ "path": "/iapUpdateAdapterConfiguration"
92
+ },
93
+ "task": true
94
+ },
95
+ {
96
+ "name": "iapSuspendAdapter",
97
+ "summary": "Suspends the adapter",
98
+ "description": "Suspends the adapter",
99
+ "input": [
100
+ {
101
+ "name": "mode",
102
+ "type": "enum",
103
+ "enumerals": [
104
+ "pause",
105
+ "error"
106
+ ],
107
+ "info": "How incoming requests are handled. Defaults to 'pause'",
108
+ "description": "How incoming requests are handled. Defaults to 'pause'",
109
+ "schema": {
110
+ "title": "mode",
111
+ "type": "string"
112
+ },
113
+ "required": false
114
+ }
115
+ ],
116
+ "output": {
117
+ "name": "result",
118
+ "type": "object",
119
+ "description": "A JSON Object containing the adapter suspended status",
120
+ "schema": {
121
+ "title": "result",
122
+ "type": "object"
123
+ }
124
+ },
125
+ "roles": [
126
+ "admin"
127
+ ],
128
+ "route": {
129
+ "verb": "POST",
130
+ "path": "/iapSuspendAdapter"
131
+ },
132
+ "task": true
133
+ },
134
+ {
135
+ "name": "iapUnsuspendAdapter",
136
+ "summary": "Unsuspends the adapter",
137
+ "description": "Unsuspends the adapter",
138
+ "input": [],
139
+ "output": {
140
+ "name": "result",
141
+ "type": "object",
142
+ "description": "A JSON Object containing the adapter suspended status",
143
+ "schema": {
144
+ "title": "result",
145
+ "type": "object"
146
+ }
147
+ },
148
+ "roles": [
149
+ "admin"
150
+ ],
151
+ "route": {
152
+ "verb": "POST",
153
+ "path": "/iapUnsuspendAdapter"
154
+ },
155
+ "task": true
156
+ },
157
+ {
158
+ "name": "iapGetAdapterQueue",
159
+ "summary": "Return the requests that are waiting in the queue if throttling is enabled",
160
+ "description": "Return the requests that are waiting in the queue if throttling is enabled",
161
+ "input": [],
162
+ "output": {
163
+ "name": "result",
164
+ "type": "object",
165
+ "description": "A JSON Object containing the adapter queue",
166
+ "schema": {
167
+ "title": "result",
168
+ "type": "object"
169
+ }
170
+ },
171
+ "roles": [
172
+ "admin"
173
+ ],
174
+ "route": {
175
+ "verb": "POST",
176
+ "path": "/iapGetAdapterQueue"
177
+ },
178
+ "task": true
179
+ },
180
+ {
181
+ "name": "iapFindAdapterPath",
182
+ "summary": "Provides the ability to see if a particular API path is supported by the adapter",
183
+ "description": "Provides the ability to see if a particular API path is supported by the adapter",
184
+ "input": [
185
+ {
186
+ "name": "apiPath",
187
+ "type": "string",
188
+ "info": "The API Path you want to check - make sure to not include base path and version",
189
+ "description": "The API Path you want to check - make sure to not include base path and version",
190
+ "schema": {
191
+ "title": "apiPath",
192
+ "type": "string"
193
+ },
194
+ "required": true
195
+ }
196
+ ],
197
+ "output": {
198
+ "name": "result",
199
+ "type": "object",
200
+ "description": "A JSON Object containing the result",
201
+ "schema": {
202
+ "title": "result",
203
+ "type": "object"
204
+ }
205
+ },
206
+ "roles": [
207
+ "admin"
208
+ ],
209
+ "route": {
210
+ "verb": "POST",
211
+ "path": "/iapFindAdapterPath"
212
+ },
213
+ "task": true
214
+ },
215
+ {
216
+ "name": "iapTroubleshootAdapter",
217
+ "summary": "Runs troubleshoot script for adapter",
218
+ "description": "Runs troubleshoot script for adapter",
219
+ "input": [
220
+ {
221
+ "name": "props",
222
+ "type": "object",
223
+ "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'}}",
224
+ "required": true,
225
+ "schema": {
226
+ "title": "props",
227
+ "type": "object"
228
+ }
229
+ },
230
+ {
231
+ "name": "persistFlag",
232
+ "type": "boolean",
233
+ "info": "Whether the input properties should be saved",
234
+ "required": true,
235
+ "schema": {
236
+ "title": "persistFlag",
237
+ "type": "boolean"
238
+ }
239
+ }
240
+ ],
241
+ "output": {
242
+ "name": "result",
243
+ "type": "object",
244
+ "description": "A JSON Object containing the test results",
245
+ "schema": {
246
+ "title": "result",
247
+ "type": "object"
248
+ }
249
+ },
250
+ "roles": [
251
+ "admin"
252
+ ],
253
+ "route": {
254
+ "verb": "POST",
255
+ "path": "/iapTroubleshootAdapter"
256
+ },
257
+ "task": true
258
+ },
259
+ {
260
+ "name": "iapRunAdapterHealthcheck",
261
+ "summary": "Runs healthcheck script for adapter",
262
+ "description": "Runs healthcheck script for adapter",
263
+ "input": [],
264
+ "output": {
265
+ "name": "result",
266
+ "type": "boolean",
267
+ "description": "Whether healthcheck passed or failed",
268
+ "schema": {
269
+ "title": "result",
270
+ "type": "boolean"
271
+ }
272
+ },
273
+ "roles": [
274
+ "admin"
275
+ ],
276
+ "route": {
277
+ "verb": "POST",
278
+ "path": "/iapRunAdapterHealthcheck"
279
+ },
280
+ "task": true
281
+ },
282
+ {
283
+ "name": "iapRunAdapterConnectivity",
284
+ "summary": "Runs connectivity check script for adapter",
285
+ "description": "Runs connectivity check script for adapter",
286
+ "input": [],
287
+ "output": {
288
+ "name": "result",
289
+ "type": "object",
290
+ "description": "A JSON Object containing the test results",
291
+ "schema": {
292
+ "title": "result",
293
+ "type": "object"
294
+ }
295
+ },
296
+ "roles": [
297
+ "admin"
298
+ ],
299
+ "route": {
300
+ "verb": "POST",
301
+ "path": "/iapRunAdapterConnectivity"
302
+ },
303
+ "task": true
304
+ },
305
+ {
306
+ "name": "iapRunAdapterBasicGet",
307
+ "summary": "Runs basicGet script for adapter",
308
+ "description": "Runs basicGet script for adapter",
309
+ "input": [],
310
+ "output": {
311
+ "name": "result",
312
+ "type": "object",
313
+ "description": "A JSON Object containing the test results",
314
+ "schema": {
315
+ "title": "result",
316
+ "type": "object"
317
+ }
318
+ },
319
+ "roles": [
320
+ "admin"
321
+ ],
322
+ "route": {
323
+ "verb": "POST",
324
+ "path": "/iapRunAdapterBasicGet"
325
+ },
326
+ "task": true
327
+ },
328
+ {
329
+ "name": "iapMoveAdapterEntitiesToDB",
330
+ "summary": "Moves entities from an adapter into the IAP database",
331
+ "description": "Moves entities from an adapter into the IAP database",
332
+ "input": [],
333
+ "output": {
334
+ "name": "res",
335
+ "type": "object",
336
+ "description": "A JSON Object containing status, code and the response from the mongo transaction",
337
+ "schema": {
338
+ "title": "res",
339
+ "type": "object"
340
+ }
341
+ },
342
+ "roles": [
343
+ "admin"
344
+ ],
345
+ "route": {
346
+ "verb": "POST",
347
+ "path": "/iapMoveAdapterEntitiesToDB"
348
+ },
349
+ "task": true
350
+ },
351
+ {
352
+ "name": "iapDeactivateTasks",
353
+ "summary": "Deactivate the inputted tasks",
354
+ "description": "Deactivate the inputted tasks",
355
+ "input": [
356
+ {
357
+ "name": "tasks",
358
+ "type": "array",
359
+ "description": "Tasks to deactivate",
360
+ "schema": {
361
+ "title": "tasks",
362
+ "type": "array"
363
+ }
364
+ }
365
+ ],
366
+ "output": {
367
+ "name": "result",
368
+ "type": "object",
369
+ "description": "A JSON Object containing success status",
370
+ "schema": {
371
+ "title": "result",
372
+ "type": "object"
373
+ }
374
+ },
375
+ "roles": [
376
+ "admin"
377
+ ],
378
+ "route": {
379
+ "verb": "POST",
380
+ "path": "/iapDeactivateTasks"
381
+ },
382
+ "task": true
383
+ },
384
+ {
385
+ "name": "iapActivateTasks",
386
+ "summary": "Activate the inputted tasks",
387
+ "description": "activate the inputted tasks",
388
+ "input": [
389
+ {
390
+ "name": "tasks",
391
+ "type": "array",
392
+ "description": "Tasks to activate",
393
+ "schema": {
394
+ "title": "tasks",
395
+ "type": "array"
396
+ }
397
+ }
398
+ ],
399
+ "output": {
400
+ "name": "result",
401
+ "type": "object",
402
+ "description": "A JSON Object containing success status",
403
+ "schema": {
404
+ "title": "result",
405
+ "type": "object"
406
+ }
407
+ },
408
+ "roles": [
409
+ "admin"
410
+ ],
411
+ "route": {
412
+ "verb": "POST",
413
+ "path": "/iapActivateTasks"
414
+ },
415
+ "task": true
416
+ },
417
+ {
418
+ "name": "iapPopulateEntityCache",
419
+ "summary": "Populate the cache for the given entities",
420
+ "description": "Populate the cache for the given entities",
421
+ "input": [
422
+ {
423
+ "name": "entityTypes",
424
+ "type": "array",
425
+ "info": "the entity type(s) to populate",
426
+ "required": true,
427
+ "schema": {
428
+ "title": "entityTypes",
429
+ "type": "array"
430
+ }
431
+ }
432
+ ],
433
+ "output": {
434
+ "name": "result",
435
+ "type": "object",
436
+ "description": "A JSON Object containing status, code and the result",
437
+ "schema": {
438
+ "title": "result",
439
+ "type": "object"
440
+ }
441
+ },
442
+ "roles": [
443
+ "admin"
444
+ ],
445
+ "route": {
446
+ "verb": "POST",
447
+ "path": "/iapPopulateEntityCache"
448
+ },
449
+ "task": true
450
+ },
451
+ {
452
+ "name": "iapRetrieveEntitiesCache",
453
+ "summary": "Retrieves data from cache for specified entity type",
454
+ "description": "Retrieves data from cache for specified entity type",
455
+ "input": [
456
+ {
457
+ "name": "entityType",
458
+ "type": "string",
459
+ "info": "entity of which to retrieve",
460
+ "required": true,
461
+ "schema": {
462
+ "title": "entityType",
463
+ "type": "string"
464
+ }
465
+ },
466
+ {
467
+ "name": "options",
468
+ "type": "object",
469
+ "info": "settings of which data to return and how to return it",
470
+ "required": false,
471
+ "schema": {
472
+ "title": "options",
473
+ "type": "object"
474
+ }
475
+ }
476
+ ],
477
+ "output": {
478
+ "name": "result",
479
+ "type": "object",
480
+ "description": "A JSON Object containing status, code and the result",
481
+ "schema": {
482
+ "title": "result",
483
+ "type": "object"
484
+ }
485
+ },
486
+ "roles": [
487
+ "admin"
488
+ ],
489
+ "route": {
490
+ "verb": "POST",
491
+ "path": "/iapRetrieveEntitiesCache"
492
+ },
493
+ "task": true
494
+ },
495
+ {
496
+ "name": "getDevice",
497
+ "summary": "Get the Appliance",
498
+ "description": "Get the Appliance",
499
+ "input": [
500
+ {
501
+ "name": "deviceName",
502
+ "type": "string",
503
+ "info": "An Appliance Device Name",
504
+ "required": true,
505
+ "schema": {
506
+ "title": "deviceName",
507
+ "type": "string"
508
+ }
509
+ }
510
+ ],
511
+ "output": {
512
+ "name": "result",
513
+ "type": "object",
514
+ "description": "A JSON Object containing status, code and the result",
515
+ "schema": {
516
+ "title": "result",
517
+ "type": "object"
518
+ }
519
+ },
520
+ "roles": [
521
+ "admin"
522
+ ],
523
+ "route": {
524
+ "verb": "POST",
525
+ "path": "/getDevice"
526
+ },
527
+ "task": false
528
+ },
529
+ {
530
+ "name": "getDevicesFiltered",
531
+ "summary": "Get Appliances that match the filter",
532
+ "description": "Get Appliances that match the filter",
533
+ "input": [
534
+ {
535
+ "name": "options",
536
+ "type": "object",
537
+ "info": "options - e.g. { 'start': 1, 'limit': 20, 'filter': { 'name': 'abc123' } }",
538
+ "required": true,
539
+ "schema": {
540
+ "title": "options",
541
+ "type": "object"
542
+ }
543
+ }
544
+ ],
545
+ "output": {
546
+ "name": "result",
547
+ "type": "array",
548
+ "description": "A JSON Object containing status, code and the result",
549
+ "schema": {
550
+ "title": "result",
551
+ "type": "array"
552
+ }
553
+ },
554
+ "roles": [
555
+ "admin"
556
+ ],
557
+ "route": {
558
+ "verb": "POST",
559
+ "path": "/getDevicesFiltered"
560
+ },
561
+ "task": false
562
+ },
563
+ {
564
+ "name": "isAlive",
565
+ "summary": "Checks the status for the provided Appliance",
566
+ "description": "Checks the status for the provided Appliance",
567
+ "input": [
568
+ {
569
+ "name": "deviceName",
570
+ "type": "string",
571
+ "info": "An Appliance Device Name",
572
+ "required": true,
573
+ "schema": {
574
+ "title": "deviceName",
575
+ "type": "string"
576
+ }
577
+ }
578
+ ],
579
+ "output": {
580
+ "name": "result",
581
+ "type": "boolean",
582
+ "description": "A JSON Object containing status, code and the result",
583
+ "schema": {
584
+ "title": "result",
585
+ "type": "boolean"
586
+ }
587
+ },
588
+ "roles": [
589
+ "admin"
590
+ ],
591
+ "route": {
592
+ "verb": "POST",
593
+ "path": "/isAlive"
594
+ },
595
+ "task": false
596
+ },
597
+ {
598
+ "name": "getConfig",
599
+ "summary": "Gets a config for the provided Appliance",
600
+ "description": "Gets a config for the provided Appliance",
601
+ "input": [
602
+ {
603
+ "name": "deviceName",
604
+ "type": "string",
605
+ "info": "An Appliance Device Name",
606
+ "required": true,
607
+ "schema": {
608
+ "title": "deviceName",
609
+ "type": "string"
610
+ }
611
+ },
612
+ {
613
+ "name": "format",
614
+ "type": "string",
615
+ "info": "The format to be returned - this is ignored as we always return json",
616
+ "required": false,
617
+ "schema": {
618
+ "title": "format",
619
+ "type": "string"
620
+ }
621
+ }
622
+ ],
623
+ "output": {
624
+ "name": "result",
625
+ "type": "object",
626
+ "description": "A JSON Object containing status, code and the result",
627
+ "schema": {
628
+ "title": "result",
629
+ "type": "object"
630
+ }
631
+ },
632
+ "roles": [
633
+ "admin"
634
+ ],
635
+ "route": {
636
+ "verb": "POST",
637
+ "path": "/getConfig"
638
+ },
639
+ "task": false
640
+ },
641
+ {
642
+ "name": "iapGetDeviceCount",
643
+ "summary": "Gets a device count from the system",
644
+ "description": "Gets a device count from the system",
645
+ "input": [],
646
+ "output": {
647
+ "name": "result",
648
+ "type": "object",
649
+ "description": "A JSON Object containing status, code and the result",
650
+ "schema": {
651
+ "title": "result",
652
+ "type": "object"
653
+ }
654
+ },
655
+ "roles": [
656
+ "admin"
657
+ ],
658
+ "route": {
659
+ "verb": "POST",
660
+ "path": "/iapGetDeviceCount"
661
+ },
662
+ "task": false
663
+ },
664
+ {
665
+ "name": "iapExpandedGenericAdapterRequest",
666
+ "summary": "Makes the requested generic call with additional options",
667
+ "description": "Makes the requested generic call with additional options via metadata",
668
+ "input": [
669
+ {
670
+ "name": "metadata",
671
+ "type": "object",
672
+ "info": "metadata for the call (optional)",
673
+ "description": "metadata for the call - allows for many enhancements (optional)",
674
+ "schema": {
675
+ "title": "metadata",
676
+ "type": "object"
677
+ },
678
+ "required": false
679
+ },
680
+ {
681
+ "name": "uriPath",
682
+ "type": "string",
683
+ "info": "the path of the api call - do not include the host, port, base path or version",
684
+ "description": "the path of the api call",
685
+ "schema": {
686
+ "title": "uriPath",
687
+ "type": "string"
688
+ },
689
+ "required": false
690
+ },
691
+ {
692
+ "name": "restMethod",
693
+ "type": "string",
694
+ "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
695
+ "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
696
+ "schema": {
697
+ "title": "restMethod",
698
+ "type": "string"
699
+ },
700
+ "required": false
701
+ },
702
+ {
703
+ "name": "pathVars",
704
+ "type": "object",
705
+ "info": "the parameters to be put within the url path (optional)",
706
+ "description": "the parameters to be put within the url path (optional)",
707
+ "schema": {
708
+ "title": "pathVars",
709
+ "type": "object"
710
+ },
711
+ "required": false
712
+ },
713
+ {
714
+ "name": "queryData",
715
+ "type": "object",
716
+ "info": "the query parameters to be put on the url (optional)",
717
+ "description": "the query parameters to be put on the url (optional)",
718
+ "schema": {
719
+ "title": "queryData",
720
+ "type": "object"
721
+ },
722
+ "required": false
723
+ },
724
+ {
725
+ "name": "requestBody",
726
+ "type": "object",
727
+ "info": "the payload to be sent with the request (optional)",
728
+ "description": "the payload to be sent with the request (optional)",
729
+ "schema": {
730
+ "title": "requestBody",
731
+ "type": "object"
732
+ },
733
+ "required": false
734
+ },
735
+ {
736
+ "name": "addlHeaders",
737
+ "type": "object",
738
+ "info": "additional headers to be put on the call (optional)",
739
+ "description": "additional headers to be put on the call (optional)",
740
+ "schema": {
741
+ "title": "addlHeaders",
742
+ "type": "object"
743
+ },
744
+ "required": false
745
+ }
746
+ ],
747
+ "output": {
748
+ "name": "result",
749
+ "type": "object",
750
+ "description": "A JSON Object containing status, code and the result",
751
+ "schema": {
752
+ "title": "result",
753
+ "type": "object"
754
+ }
755
+ },
756
+ "roles": [
757
+ "admin"
758
+ ],
759
+ "route": {
760
+ "verb": "POST",
761
+ "path": "/iapExpandedGenericAdapterRequest"
762
+ },
763
+ "task": true
764
+ },
765
+ {
766
+ "name": "genericAdapterRequest",
767
+ "summary": "Makes the requested generic call",
768
+ "description": "Makes the requested generic call",
769
+ "input": [
770
+ {
771
+ "name": "uriPath",
772
+ "type": "string",
773
+ "info": "the path of the api call - do not include the host, port, base path or version",
774
+ "description": "the path of the api call",
775
+ "schema": {
776
+ "title": "uriPath",
777
+ "type": "string"
778
+ },
779
+ "required": true
780
+ },
781
+ {
782
+ "name": "restMethod",
783
+ "type": "string",
784
+ "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
785
+ "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
786
+ "schema": {
787
+ "title": "restMethod",
788
+ "type": "string"
789
+ },
790
+ "required": true
791
+ },
792
+ {
793
+ "name": "queryData",
794
+ "type": "object",
795
+ "info": "the query parameters to be put on the url (optional)",
796
+ "description": "the query parameters to be put on the url (optional)",
797
+ "schema": {
798
+ "title": "queryData",
799
+ "type": "object"
800
+ },
801
+ "required": false
802
+ },
803
+ {
804
+ "name": "requestBody",
805
+ "type": "object",
806
+ "info": "the payload to be sent with the request (optional)",
807
+ "description": "the payload to be sent with the request (optional)",
808
+ "schema": {
809
+ "title": "requestBody",
810
+ "type": "object"
811
+ },
812
+ "required": false
813
+ },
814
+ {
815
+ "name": "addlHeaders",
816
+ "type": "object",
817
+ "info": "additional headers to be put on the call (optional)",
818
+ "description": "additional headers to be put on the call (optional)",
819
+ "schema": {
820
+ "title": "addlHeaders",
821
+ "type": "object"
822
+ },
823
+ "required": false
824
+ }
825
+ ],
826
+ "output": {
827
+ "name": "result",
828
+ "type": "object",
829
+ "description": "A JSON Object containing status, code and the result",
830
+ "schema": {
831
+ "title": "result",
832
+ "type": "object"
833
+ }
834
+ },
835
+ "roles": [
836
+ "admin"
837
+ ],
838
+ "route": {
839
+ "verb": "POST",
840
+ "path": "/genericAdapterRequest"
841
+ },
842
+ "task": true
843
+ },
844
+ {
845
+ "name": "genericAdapterRequestNoBasePath",
846
+ "summary": "Makes the requested generic call",
847
+ "description": "Makes the requested generic call",
848
+ "input": [
849
+ {
850
+ "name": "uriPath",
851
+ "type": "string",
852
+ "info": "the path of the api call - do not include the host, port, base path or version",
853
+ "description": "the path of the api call",
854
+ "schema": {
855
+ "title": "uriPath",
856
+ "type": "string"
857
+ },
858
+ "required": true
859
+ },
860
+ {
861
+ "name": "restMethod",
862
+ "type": "string",
863
+ "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
864
+ "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
865
+ "schema": {
866
+ "title": "restMethod",
867
+ "type": "string"
868
+ },
869
+ "required": true
870
+ },
871
+ {
872
+ "name": "queryData",
873
+ "type": "object",
874
+ "info": "the query parameters to be put on the url (optional)",
875
+ "description": "the query parameters to be put on the url (optional)",
876
+ "schema": {
877
+ "title": "queryData",
878
+ "type": "object"
879
+ },
880
+ "required": false
881
+ },
882
+ {
883
+ "name": "requestBody",
884
+ "type": "object",
885
+ "info": "the payload to be sent with the request (optional)",
886
+ "description": "the payload to be sent with the request (optional)",
887
+ "schema": {
888
+ "title": "requestBody",
889
+ "type": "object"
890
+ },
891
+ "required": false
892
+ },
893
+ {
894
+ "name": "addlHeaders",
895
+ "type": "object",
896
+ "info": "additional headers to be put on the call (optional)",
897
+ "description": "additional headers to be put on the call (optional)",
898
+ "schema": {
899
+ "title": "addlHeaders",
900
+ "type": "object"
901
+ },
902
+ "required": false
903
+ }
904
+ ],
905
+ "output": {
906
+ "name": "result",
907
+ "type": "object",
908
+ "description": "A JSON Object containing status, code and the result",
909
+ "schema": {
910
+ "title": "result",
911
+ "type": "object"
912
+ }
913
+ },
914
+ "roles": [
915
+ "admin"
916
+ ],
917
+ "route": {
918
+ "verb": "POST",
919
+ "path": "/genericAdapterRequestNoBasePath"
920
+ },
921
+ "task": true
922
+ },
923
+ {
924
+ "name": "iapRunAdapterLint",
925
+ "summary": "Run the adapter lint script to return the results",
926
+ "description": "Run the adapter lint script to return the results",
927
+ "input": [],
928
+ "output": {
929
+ "name": "result",
930
+ "type": "string",
931
+ "description": "A string containing the run results",
932
+ "schema": {
933
+ "title": "result",
934
+ "type": "string"
935
+ }
936
+ },
937
+ "roles": [
938
+ "admin"
939
+ ],
940
+ "route": {
941
+ "verb": "GET",
942
+ "path": "/iapRunAdapterLint"
943
+ },
944
+ "task": true
945
+ },
946
+ {
947
+ "name": "iapRunAdapterTests",
948
+ "summary": "Run the adapter test scripts (baseunit and unit) to return the results",
949
+ "description": "Run the adapter test scripts (baseunit and unit) to return the results",
950
+ "input": [],
951
+ "output": {
952
+ "name": "result",
953
+ "type": "object",
954
+ "description": "A JSON Object containing status, code and the result",
955
+ "schema": {
956
+ "title": "result",
957
+ "type": "object"
958
+ }
959
+ },
960
+ "roles": [
961
+ "admin"
962
+ ],
963
+ "route": {
964
+ "verb": "GET",
965
+ "path": "/iapRunAdapterTests"
966
+ },
967
+ "task": true
968
+ },
969
+ {
970
+ "name": "iapGetAdapterInventory",
971
+ "summary": "Provide inventory information abbout the adapter",
972
+ "description": "Provide inventory information abbout the adapter",
973
+ "input": [],
974
+ "output": {
975
+ "name": "result",
976
+ "type": "object",
977
+ "description": "A JSON Object containing status, code and the result",
978
+ "schema": {
979
+ "title": "result",
980
+ "type": "object"
981
+ }
982
+ },
983
+ "roles": [
984
+ "admin"
985
+ ],
986
+ "route": {
987
+ "verb": "GET",
988
+ "path": "/iapGetAdapterInventory"
989
+ },
990
+ "task": true
991
+ },
992
+ {
993
+ "name": "getConfigurations",
994
+ "summary": "Retrieve configuration headers",
995
+ "description": "Retrieve configuration headers",
996
+ "input": [
997
+ {
998
+ "name": "type",
999
+ "type": "string",
1000
+ "info": ": Must be one of [ACTUAL, REFERENCE, PLAN]",
1001
+ "required": false,
1002
+ "schema": {
1003
+ "title": "type",
1004
+ "type": "string"
1005
+ }
1006
+ },
1007
+ {
1008
+ "name": "confId",
1009
+ "type": "string",
1010
+ "info": ": string",
1011
+ "required": false,
1012
+ "schema": {
1013
+ "title": "confId",
1014
+ "type": "string"
1015
+ }
1016
+ },
1017
+ {
1018
+ "name": "name",
1019
+ "type": "string",
1020
+ "info": ": string",
1021
+ "required": false,
1022
+ "schema": {
1023
+ "title": "name",
1024
+ "type": "string"
1025
+ }
1026
+ },
1027
+ {
1028
+ "name": "iapMetadata",
1029
+ "type": "object",
1030
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
1031
+ "required": false,
1032
+ "schema": {
1033
+ "title": "iapMetadata",
1034
+ "type": "object"
1035
+ }
1036
+ }
1037
+ ],
1038
+ "output": {
1039
+ "name": "result",
1040
+ "type": "object",
1041
+ "description": "A JSON Object containing status, code and the result",
1042
+ "schema": {
1043
+ "title": "result",
1044
+ "type": "object"
1045
+ }
1046
+ },
1047
+ "roles": [
1048
+ "admin"
1049
+ ],
1050
+ "route": {
1051
+ "verb": "POST",
1052
+ "path": "/getConfigurations"
1053
+ },
1054
+ "task": true
1055
+ },
1056
+ {
1057
+ "name": "createConfiguration",
1058
+ "summary": "Create a plan",
1059
+ "description": "Create a plan",
1060
+ "input": [
1061
+ {
1062
+ "name": "body",
1063
+ "type": "object",
1064
+ "info": ": object",
1065
+ "required": true,
1066
+ "schema": {
1067
+ "type": "object",
1068
+ "definitions": {}
1069
+ }
1070
+ },
1071
+ {
1072
+ "name": "iapMetadata",
1073
+ "type": "object",
1074
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
1075
+ "required": false,
1076
+ "schema": {
1077
+ "title": "iapMetadata",
1078
+ "type": "object"
1079
+ }
1080
+ }
1081
+ ],
1082
+ "output": {
1083
+ "name": "result",
1084
+ "type": "object",
1085
+ "description": "A JSON Object containing status, code and the result",
1086
+ "schema": {
1087
+ "title": "result",
1088
+ "type": "object"
1089
+ }
1090
+ },
1091
+ "roles": [
1092
+ "admin"
1093
+ ],
1094
+ "route": {
1095
+ "verb": "POST",
1096
+ "path": "/createConfiguration"
1097
+ },
1098
+ "task": true
1099
+ },
1100
+ {
1101
+ "name": "deleteConfiguration",
1102
+ "summary": "Delete a plan",
1103
+ "description": "Delete a plan",
1104
+ "input": [
1105
+ {
1106
+ "name": "confId",
1107
+ "type": "string",
1108
+ "info": ": string",
1109
+ "required": true,
1110
+ "schema": {
1111
+ "title": "confId",
1112
+ "type": "string"
1113
+ }
1114
+ },
1115
+ {
1116
+ "name": "iapMetadata",
1117
+ "type": "object",
1118
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
1119
+ "required": false,
1120
+ "schema": {
1121
+ "title": "iapMetadata",
1122
+ "type": "object"
1123
+ }
1124
+ }
1125
+ ],
1126
+ "output": {
1127
+ "name": "result",
1128
+ "type": "object",
1129
+ "description": "A JSON Object containing status, code and the result",
1130
+ "schema": {
1131
+ "title": "result",
1132
+ "type": "object"
1133
+ }
1134
+ },
1135
+ "roles": [
1136
+ "admin"
1137
+ ],
1138
+ "route": {
1139
+ "verb": "POST",
1140
+ "path": "/deleteConfiguration"
1141
+ },
1142
+ "task": true
1143
+ },
1144
+ {
1145
+ "name": "updateConfiguration",
1146
+ "summary": "Update a plan",
1147
+ "description": "Update a plan",
1148
+ "input": [
1149
+ {
1150
+ "name": "body",
1151
+ "type": "object",
1152
+ "info": ": object",
1153
+ "required": true,
1154
+ "schema": {
1155
+ "type": "object",
1156
+ "definitions": {}
1157
+ }
1158
+ },
1159
+ {
1160
+ "name": "iapMetadata",
1161
+ "type": "object",
1162
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
1163
+ "required": false,
1164
+ "schema": {
1165
+ "title": "iapMetadata",
1166
+ "type": "object"
1167
+ }
1168
+ }
1169
+ ],
1170
+ "output": {
1171
+ "name": "result",
1172
+ "type": "object",
1173
+ "description": "A JSON Object containing status, code and the result",
1174
+ "schema": {
1175
+ "title": "result",
1176
+ "type": "object"
1177
+ }
1178
+ },
1179
+ "roles": [
1180
+ "admin"
1181
+ ],
1182
+ "route": {
1183
+ "verb": "POST",
1184
+ "path": "/updateConfiguration"
1185
+ },
1186
+ "task": true
1187
+ },
1188
+ {
1189
+ "name": "getDescendantMOLites",
1190
+ "summary": "Retrieve descendant Managed Objects",
1191
+ "description": "Retrieve descendant Managed Objects",
1192
+ "input": [
1193
+ {
1194
+ "name": "body",
1195
+ "type": "object",
1196
+ "info": ": object",
1197
+ "required": true,
1198
+ "schema": {
1199
+ "type": "object",
1200
+ "definitions": {}
1201
+ }
1202
+ },
1203
+ {
1204
+ "name": "iapMetadata",
1205
+ "type": "object",
1206
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
1207
+ "required": false,
1208
+ "schema": {
1209
+ "title": "iapMetadata",
1210
+ "type": "object"
1211
+ }
1212
+ }
1213
+ ],
1214
+ "output": {
1215
+ "name": "result",
1216
+ "type": "object",
1217
+ "description": "A JSON Object containing status, code and the result",
1218
+ "schema": {
1219
+ "title": "result",
1220
+ "type": "object"
1221
+ }
1222
+ },
1223
+ "roles": [
1224
+ "admin"
1225
+ ],
1226
+ "route": {
1227
+ "verb": "POST",
1228
+ "path": "/getDescendantMOLites"
1229
+ },
1230
+ "task": true
1231
+ },
1232
+ {
1233
+ "name": "getManagedObjects",
1234
+ "summary": "Retrieve Managed Objects parameters",
1235
+ "description": "Retrieve Managed Objects parameters",
1236
+ "input": [
1237
+ {
1238
+ "name": "body",
1239
+ "type": "object",
1240
+ "info": ": object",
1241
+ "required": true,
1242
+ "schema": {
1243
+ "type": "object",
1244
+ "definitions": {}
1245
+ }
1246
+ },
1247
+ {
1248
+ "name": "iapMetadata",
1249
+ "type": "object",
1250
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
1251
+ "required": false,
1252
+ "schema": {
1253
+ "title": "iapMetadata",
1254
+ "type": "object"
1255
+ }
1256
+ }
1257
+ ],
1258
+ "output": {
1259
+ "name": "result",
1260
+ "type": "object",
1261
+ "description": "A JSON Object containing status, code and the result",
1262
+ "schema": {
1263
+ "title": "result",
1264
+ "type": "object"
1265
+ }
1266
+ },
1267
+ "roles": [
1268
+ "admin"
1269
+ ],
1270
+ "route": {
1271
+ "verb": "POST",
1272
+ "path": "/getManagedObjects"
1273
+ },
1274
+ "task": true
1275
+ },
1276
+ {
1277
+ "name": "updateManagedObjects",
1278
+ "summary": "Update Managed Objects in plan configuration",
1279
+ "description": "Update Managed Objects in plan configuration",
1280
+ "input": [
1281
+ {
1282
+ "name": "body",
1283
+ "type": "object",
1284
+ "info": ": object",
1285
+ "required": true,
1286
+ "schema": {
1287
+ "type": "object",
1288
+ "definitions": {}
1289
+ }
1290
+ },
1291
+ {
1292
+ "name": "iapMetadata",
1293
+ "type": "object",
1294
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
1295
+ "required": false,
1296
+ "schema": {
1297
+ "title": "iapMetadata",
1298
+ "type": "object"
1299
+ }
1300
+ }
1301
+ ],
1302
+ "output": {
1303
+ "name": "result",
1304
+ "type": "object",
1305
+ "description": "A JSON Object containing status, code and the result",
1306
+ "schema": {
1307
+ "title": "result",
1308
+ "type": "object"
1309
+ }
1310
+ },
1311
+ "roles": [
1312
+ "admin"
1313
+ ],
1314
+ "route": {
1315
+ "verb": "POST",
1316
+ "path": "/updateManagedObjects"
1317
+ },
1318
+ "task": true
1319
+ },
1320
+ {
1321
+ "name": "addManagedObjects",
1322
+ "summary": "Add Managed Objects to plan configuration",
1323
+ "description": "Add Managed Objects to plan configuration",
1324
+ "input": [
1325
+ {
1326
+ "name": "body",
1327
+ "type": "object",
1328
+ "info": ": object",
1329
+ "required": true,
1330
+ "schema": {
1331
+ "type": "object",
1332
+ "definitions": {}
1333
+ }
1334
+ },
1335
+ {
1336
+ "name": "iapMetadata",
1337
+ "type": "object",
1338
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
1339
+ "required": false,
1340
+ "schema": {
1341
+ "title": "iapMetadata",
1342
+ "type": "object"
1343
+ }
1344
+ }
1345
+ ],
1346
+ "output": {
1347
+ "name": "result",
1348
+ "type": "object",
1349
+ "description": "A JSON Object containing status, code and the result",
1350
+ "schema": {
1351
+ "title": "result",
1352
+ "type": "object"
1353
+ }
1354
+ },
1355
+ "roles": [
1356
+ "admin"
1357
+ ],
1358
+ "route": {
1359
+ "verb": "POST",
1360
+ "path": "/addManagedObjects"
1361
+ },
1362
+ "task": true
1363
+ },
1364
+ {
1365
+ "name": "removeManagedObjects",
1366
+ "summary": "Remove Managed Objects from plan configuration",
1367
+ "description": "Remove Managed Objects from plan configuration",
1368
+ "input": [
1369
+ {
1370
+ "name": "body",
1371
+ "type": "object",
1372
+ "info": ": object",
1373
+ "required": true,
1374
+ "schema": {
1375
+ "type": "object",
1376
+ "definitions": {}
1377
+ }
1378
+ },
1379
+ {
1380
+ "name": "iapMetadata",
1381
+ "type": "object",
1382
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
1383
+ "required": false,
1384
+ "schema": {
1385
+ "title": "iapMetadata",
1386
+ "type": "object"
1387
+ }
1388
+ }
1389
+ ],
1390
+ "output": {
1391
+ "name": "result",
1392
+ "type": "object",
1393
+ "description": "A JSON Object containing status, code and the result",
1394
+ "schema": {
1395
+ "title": "result",
1396
+ "type": "object"
1397
+ }
1398
+ },
1399
+ "roles": [
1400
+ "admin"
1401
+ ],
1402
+ "route": {
1403
+ "verb": "POST",
1404
+ "path": "/removeManagedObjects"
1405
+ },
1406
+ "task": true
1407
+ },
1408
+ {
1409
+ "name": "getMetaAdaptations",
1410
+ "summary": "Retrieve adaptations",
1411
+ "description": "Retrieve adaptations",
1412
+ "input": [
1413
+ {
1414
+ "name": "adaptId",
1415
+ "type": "array",
1416
+ "info": ": array",
1417
+ "required": false,
1418
+ "schema": {
1419
+ "title": "adaptId",
1420
+ "type": "array"
1421
+ }
1422
+ },
1423
+ {
1424
+ "name": "iapMetadata",
1425
+ "type": "object",
1426
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
1427
+ "required": false,
1428
+ "schema": {
1429
+ "title": "iapMetadata",
1430
+ "type": "object"
1431
+ }
1432
+ }
1433
+ ],
1434
+ "output": {
1435
+ "name": "result",
1436
+ "type": "object",
1437
+ "description": "A JSON Object containing status, code and the result",
1438
+ "schema": {
1439
+ "title": "result",
1440
+ "type": "object"
1441
+ }
1442
+ },
1443
+ "roles": [
1444
+ "admin"
1445
+ ],
1446
+ "route": {
1447
+ "verb": "POST",
1448
+ "path": "/getMetaAdaptations"
1449
+ },
1450
+ "task": true
1451
+ },
1452
+ {
1453
+ "name": "getMetaClasses",
1454
+ "summary": "Retrieve Managed Objects classes",
1455
+ "description": "Retrieve Managed Objects classes",
1456
+ "input": [
1457
+ {
1458
+ "name": "adaptId",
1459
+ "type": "array",
1460
+ "info": ": array",
1461
+ "required": false,
1462
+ "schema": {
1463
+ "title": "adaptId",
1464
+ "type": "array"
1465
+ }
1466
+ },
1467
+ {
1468
+ "name": "iapMetadata",
1469
+ "type": "object",
1470
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
1471
+ "required": false,
1472
+ "schema": {
1473
+ "title": "iapMetadata",
1474
+ "type": "object"
1475
+ }
1476
+ }
1477
+ ],
1478
+ "output": {
1479
+ "name": "result",
1480
+ "type": "object",
1481
+ "description": "A JSON Object containing status, code and the result",
1482
+ "schema": {
1483
+ "title": "result",
1484
+ "type": "object"
1485
+ }
1486
+ },
1487
+ "roles": [
1488
+ "admin"
1489
+ ],
1490
+ "route": {
1491
+ "verb": "POST",
1492
+ "path": "/getMetaClasses"
1493
+ },
1494
+ "task": true
1495
+ },
1496
+ {
1497
+ "name": "getMetaParameters",
1498
+ "summary": "Retrieve metadata for given Managed Objects classes",
1499
+ "description": "Retrieve metadata for given Managed Objects classes",
1500
+ "input": [
1501
+ {
1502
+ "name": "body",
1503
+ "type": "object",
1504
+ "info": ": object",
1505
+ "required": true,
1506
+ "schema": {
1507
+ "type": "object",
1508
+ "definitions": {}
1509
+ }
1510
+ },
1511
+ {
1512
+ "name": "iapMetadata",
1513
+ "type": "object",
1514
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
1515
+ "required": false,
1516
+ "schema": {
1517
+ "title": "iapMetadata",
1518
+ "type": "object"
1519
+ }
1520
+ }
1521
+ ],
1522
+ "output": {
1523
+ "name": "result",
1524
+ "type": "object",
1525
+ "description": "A JSON Object containing status, code and the result",
1526
+ "schema": {
1527
+ "title": "result",
1528
+ "type": "object"
1529
+ }
1530
+ },
1531
+ "roles": [
1532
+ "admin"
1533
+ ],
1534
+ "route": {
1535
+ "verb": "POST",
1536
+ "path": "/getMetaParameters"
1537
+ },
1538
+ "task": true
1539
+ },
1540
+ {
1541
+ "name": "getMOLites",
1542
+ "summary": "Retrieve Managed Objects by their DNs",
1543
+ "description": "Retrieve Managed Objects by their DNs",
1544
+ "input": [
1545
+ {
1546
+ "name": "body",
1547
+ "type": "object",
1548
+ "info": ": object",
1549
+ "required": true,
1550
+ "schema": {
1551
+ "type": "object",
1552
+ "definitions": {}
1553
+ }
1554
+ },
1555
+ {
1556
+ "name": "iapMetadata",
1557
+ "type": "object",
1558
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
1559
+ "required": false,
1560
+ "schema": {
1561
+ "title": "iapMetadata",
1562
+ "type": "object"
1563
+ }
1564
+ }
1565
+ ],
1566
+ "output": {
1567
+ "name": "result",
1568
+ "type": "object",
1569
+ "description": "A JSON Object containing status, code and the result",
1570
+ "schema": {
1571
+ "title": "result",
1572
+ "type": "object"
1573
+ }
1574
+ },
1575
+ "roles": [
1576
+ "admin"
1577
+ ],
1578
+ "route": {
1579
+ "verb": "POST",
1580
+ "path": "/getMOLites"
1581
+ },
1582
+ "task": true
1583
+ },
1584
+ {
1585
+ "name": "query",
1586
+ "summary": "Retrieve expression values associated with given query",
1587
+ "description": "Retrieve expression values associated with given query",
1588
+ "input": [
1589
+ {
1590
+ "name": "body",
1591
+ "type": "object",
1592
+ "info": ": object",
1593
+ "required": true,
1594
+ "schema": {
1595
+ "type": "object",
1596
+ "definitions": {}
1597
+ }
1598
+ },
1599
+ {
1600
+ "name": "iapMetadata",
1601
+ "type": "object",
1602
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
1603
+ "required": false,
1604
+ "schema": {
1605
+ "title": "iapMetadata",
1606
+ "type": "object"
1607
+ }
1608
+ }
1609
+ ],
1610
+ "output": {
1611
+ "name": "result",
1612
+ "type": "object",
1613
+ "description": "A JSON Object containing status, code and the result",
1614
+ "schema": {
1615
+ "title": "result",
1616
+ "type": "object"
1617
+ }
1618
+ },
1619
+ "roles": [
1620
+ "admin"
1621
+ ],
1622
+ "route": {
1623
+ "verb": "POST",
1624
+ "path": "/query"
1625
+ },
1626
+ "task": true
1627
+ },
1628
+ {
1629
+ "name": "queryMOLites",
1630
+ "summary": "Retrieve Managed Objects for given search criteria",
1631
+ "description": "Retrieve Managed Objects for given search criteria",
1632
+ "input": [
1633
+ {
1634
+ "name": "body",
1635
+ "type": "object",
1636
+ "info": ": object",
1637
+ "required": true,
1638
+ "schema": {
1639
+ "type": "object",
1640
+ "definitions": {}
1641
+ }
1642
+ },
1643
+ {
1644
+ "name": "iapMetadata",
1645
+ "type": "object",
1646
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
1647
+ "required": false,
1648
+ "schema": {
1649
+ "title": "iapMetadata",
1650
+ "type": "object"
1651
+ }
1652
+ }
1653
+ ],
1654
+ "output": {
1655
+ "name": "result",
1656
+ "type": "object",
1657
+ "description": "A JSON Object containing status, code and the result",
1658
+ "schema": {
1659
+ "title": "result",
1660
+ "type": "object"
1661
+ }
1662
+ },
1663
+ "roles": [
1664
+ "admin"
1665
+ ],
1666
+ "route": {
1667
+ "verb": "POST",
1668
+ "path": "/queryMOLites"
1669
+ },
1670
+ "task": true
1671
+ },
1672
+ {
1673
+ "name": "getRelatedMOLites",
1674
+ "summary": "Retrieve related Managed Objects",
1675
+ "description": "Retrieve related Managed Objects",
1676
+ "input": [
1677
+ {
1678
+ "name": "body",
1679
+ "type": "object",
1680
+ "info": ": object",
1681
+ "required": true,
1682
+ "schema": {
1683
+ "type": "object",
1684
+ "definitions": {}
1685
+ }
1686
+ },
1687
+ {
1688
+ "name": "iapMetadata",
1689
+ "type": "object",
1690
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
1691
+ "required": false,
1692
+ "schema": {
1693
+ "title": "iapMetadata",
1694
+ "type": "object"
1695
+ }
1696
+ }
1697
+ ],
1698
+ "output": {
1699
+ "name": "result",
1700
+ "type": "object",
1701
+ "description": "A JSON Object containing status, code and the result",
1702
+ "schema": {
1703
+ "title": "result",
1704
+ "type": "object"
1705
+ }
1706
+ },
1707
+ "roles": [
1708
+ "admin"
1709
+ ],
1710
+ "route": {
1711
+ "verb": "POST",
1712
+ "path": "/getRelatedMOLites"
1713
+ },
1714
+ "task": true
1715
+ },
1716
+ {
1717
+ "name": "getRootMOLites",
1718
+ "summary": "Retrieve root Managed Objects",
1719
+ "description": "Retrieve root Managed Objects",
1720
+ "input": [
1721
+ {
1722
+ "name": "confId",
1723
+ "type": "string",
1724
+ "info": ": string",
1725
+ "required": false,
1726
+ "schema": {
1727
+ "title": "confId",
1728
+ "type": "string"
1729
+ }
1730
+ },
1731
+ {
1732
+ "name": "iapMetadata",
1733
+ "type": "object",
1734
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
1735
+ "required": false,
1736
+ "schema": {
1737
+ "title": "iapMetadata",
1738
+ "type": "object"
1739
+ }
1740
+ }
1741
+ ],
1742
+ "output": {
1743
+ "name": "result",
1744
+ "type": "object",
1745
+ "description": "A JSON Object containing status, code and the result",
1746
+ "schema": {
1747
+ "title": "result",
1748
+ "type": "object"
1749
+ }
1750
+ },
1751
+ "roles": [
1752
+ "admin"
1753
+ ],
1754
+ "route": {
1755
+ "verb": "POST",
1756
+ "path": "/getRootMOLites"
1757
+ },
1758
+ "task": true
1759
+ },
1760
+ {
1761
+ "name": "readOperationAttributes",
1762
+ "summary": "Retrieve operations attributes",
1763
+ "description": "Retrieve operations attributes",
1764
+ "input": [
1765
+ {
1766
+ "name": "operationIds",
1767
+ "type": "string",
1768
+ "info": ": string",
1769
+ "required": false,
1770
+ "schema": {
1771
+ "title": "operationIds",
1772
+ "type": "string"
1773
+ }
1774
+ },
1775
+ {
1776
+ "name": "iapMetadata",
1777
+ "type": "object",
1778
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
1779
+ "required": false,
1780
+ "schema": {
1781
+ "title": "iapMetadata",
1782
+ "type": "object"
1783
+ }
1784
+ }
1785
+ ],
1786
+ "output": {
1787
+ "name": "result",
1788
+ "type": "object",
1789
+ "description": "A JSON Object containing status, code and the result",
1790
+ "schema": {
1791
+ "title": "result",
1792
+ "type": "object"
1793
+ }
1794
+ },
1795
+ "roles": [
1796
+ "admin"
1797
+ ],
1798
+ "route": {
1799
+ "verb": "POST",
1800
+ "path": "/readOperationAttributes"
1801
+ },
1802
+ "task": true
1803
+ },
1804
+ {
1805
+ "name": "readOperationDefinitions",
1806
+ "summary": "Retrieve workflow operation definitions",
1807
+ "description": "Retrieve workflow operation definitions",
1808
+ "input": [
1809
+ {
1810
+ "name": "iapMetadata",
1811
+ "type": "object",
1812
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
1813
+ "required": false,
1814
+ "schema": {
1815
+ "title": "iapMetadata",
1816
+ "type": "object"
1817
+ }
1818
+ }
1819
+ ],
1820
+ "output": {
1821
+ "name": "result",
1822
+ "type": "object",
1823
+ "description": "A JSON Object containing status, code and the result",
1824
+ "schema": {
1825
+ "title": "result",
1826
+ "type": "object"
1827
+ }
1828
+ },
1829
+ "roles": [
1830
+ "admin"
1831
+ ],
1832
+ "route": {
1833
+ "verb": "GET",
1834
+ "path": "/readOperationDefinitions"
1835
+ },
1836
+ "task": true
1837
+ },
1838
+ {
1839
+ "name": "readOperationExecutions",
1840
+ "summary": "Retrieve operation executions",
1841
+ "description": "Retrieve operation executions",
1842
+ "input": [
1843
+ {
1844
+ "name": "before",
1845
+ "type": "string",
1846
+ "info": ": string",
1847
+ "required": false,
1848
+ "schema": {
1849
+ "title": "before",
1850
+ "type": "string"
1851
+ }
1852
+ },
1853
+ {
1854
+ "name": "after",
1855
+ "type": "string",
1856
+ "info": ": string",
1857
+ "required": false,
1858
+ "schema": {
1859
+ "title": "after",
1860
+ "type": "string"
1861
+ }
1862
+ },
1863
+ {
1864
+ "name": "operationNames",
1865
+ "type": "string",
1866
+ "info": ": string",
1867
+ "required": false,
1868
+ "schema": {
1869
+ "title": "operationNames",
1870
+ "type": "string"
1871
+ }
1872
+ },
1873
+ {
1874
+ "name": "iapMetadata",
1875
+ "type": "object",
1876
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
1877
+ "required": false,
1878
+ "schema": {
1879
+ "title": "iapMetadata",
1880
+ "type": "object"
1881
+ }
1882
+ }
1883
+ ],
1884
+ "output": {
1885
+ "name": "result",
1886
+ "type": "object",
1887
+ "description": "A JSON Object containing status, code and the result",
1888
+ "schema": {
1889
+ "title": "result",
1890
+ "type": "object"
1891
+ }
1892
+ },
1893
+ "roles": [
1894
+ "admin"
1895
+ ],
1896
+ "route": {
1897
+ "verb": "POST",
1898
+ "path": "/readOperationExecutions"
1899
+ },
1900
+ "task": true
1901
+ },
1902
+ {
1903
+ "name": "readOperationFeedbacks",
1904
+ "summary": "Retrieve operation feedbacks",
1905
+ "description": "Retrieve operation feedbacks",
1906
+ "input": [
1907
+ {
1908
+ "name": "operationIds",
1909
+ "type": "string",
1910
+ "info": ": string",
1911
+ "required": false,
1912
+ "schema": {
1913
+ "title": "operationIds",
1914
+ "type": "string"
1915
+ }
1916
+ },
1917
+ {
1918
+ "name": "after",
1919
+ "type": "string",
1920
+ "info": ": string",
1921
+ "required": false,
1922
+ "schema": {
1923
+ "title": "after",
1924
+ "type": "string"
1925
+ }
1926
+ },
1927
+ {
1928
+ "name": "limit",
1929
+ "type": "string",
1930
+ "info": ": string",
1931
+ "required": false,
1932
+ "schema": {
1933
+ "title": "limit",
1934
+ "type": "string"
1935
+ }
1936
+ },
1937
+ {
1938
+ "name": "iapMetadata",
1939
+ "type": "object",
1940
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
1941
+ "required": false,
1942
+ "schema": {
1943
+ "title": "iapMetadata",
1944
+ "type": "object"
1945
+ }
1946
+ }
1947
+ ],
1948
+ "output": {
1949
+ "name": "result",
1950
+ "type": "object",
1951
+ "description": "A JSON Object containing status, code and the result",
1952
+ "schema": {
1953
+ "title": "result",
1954
+ "type": "object"
1955
+ }
1956
+ },
1957
+ "roles": [
1958
+ "admin"
1959
+ ],
1960
+ "route": {
1961
+ "verb": "POST",
1962
+ "path": "/readOperationFeedbacks"
1963
+ },
1964
+ "task": true
1965
+ },
1966
+ {
1967
+ "name": "interruptOperation",
1968
+ "summary": "Interrupt an operation",
1969
+ "description": "Interrupt an operation",
1970
+ "input": [
1971
+ {
1972
+ "name": "body",
1973
+ "type": "object",
1974
+ "info": ": object",
1975
+ "required": true,
1976
+ "schema": {
1977
+ "type": "object",
1978
+ "definitions": {}
1979
+ }
1980
+ },
1981
+ {
1982
+ "name": "iapMetadata",
1983
+ "type": "object",
1984
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
1985
+ "required": false,
1986
+ "schema": {
1987
+ "title": "iapMetadata",
1988
+ "type": "object"
1989
+ }
1990
+ }
1991
+ ],
1992
+ "output": {
1993
+ "name": "result",
1994
+ "type": "object",
1995
+ "description": "A JSON Object containing status, code and the result",
1996
+ "schema": {
1997
+ "title": "result",
1998
+ "type": "object"
1999
+ }
2000
+ },
2001
+ "roles": [
2002
+ "admin"
2003
+ ],
2004
+ "route": {
2005
+ "verb": "POST",
2006
+ "path": "/interruptOperation"
2007
+ },
2008
+ "task": true
2009
+ },
2010
+ {
2011
+ "name": "scheduleOperation",
2012
+ "summary": "Schedule an operation",
2013
+ "description": "Schedule an operation",
2014
+ "input": [
2015
+ {
2016
+ "name": "iapMetadata",
2017
+ "type": "object",
2018
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
2019
+ "required": false,
2020
+ "schema": {
2021
+ "title": "iapMetadata",
2022
+ "type": "object"
2023
+ }
2024
+ }
2025
+ ],
2026
+ "output": {
2027
+ "name": "result",
2028
+ "type": "object",
2029
+ "description": "A JSON Object containing status, code and the result",
2030
+ "schema": {
2031
+ "title": "result",
2032
+ "type": "object"
2033
+ }
2034
+ },
2035
+ "roles": [
2036
+ "admin"
2037
+ ],
2038
+ "route": {
2039
+ "verb": "GET",
2040
+ "path": "/scheduleOperation"
2041
+ },
2042
+ "task": true
2043
+ },
2044
+ {
2045
+ "name": "startOperation",
2046
+ "summary": "Start an operation",
2047
+ "description": "Start an operation",
2048
+ "input": [
2049
+ {
2050
+ "name": "iapMetadata",
2051
+ "type": "object",
2052
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
2053
+ "required": false,
2054
+ "schema": {
2055
+ "title": "iapMetadata",
2056
+ "type": "object"
2057
+ }
2058
+ }
2059
+ ],
2060
+ "output": {
2061
+ "name": "result",
2062
+ "type": "object",
2063
+ "description": "A JSON Object containing status, code and the result",
2064
+ "schema": {
2065
+ "title": "result",
2066
+ "type": "object"
2067
+ }
2068
+ },
2069
+ "roles": [
2070
+ "admin"
2071
+ ],
2072
+ "route": {
2073
+ "verb": "GET",
2074
+ "path": "/startOperation"
2075
+ },
2076
+ "task": true
2077
+ },
2078
+ {
2079
+ "name": "readOperationStatuses",
2080
+ "summary": "Retrieve operation statuses",
2081
+ "description": "Retrieve operation statuses",
2082
+ "input": [
2083
+ {
2084
+ "name": "operationIds",
2085
+ "type": "string",
2086
+ "info": ": string",
2087
+ "required": false,
2088
+ "schema": {
2089
+ "title": "operationIds",
2090
+ "type": "string"
2091
+ }
2092
+ },
2093
+ {
2094
+ "name": "iapMetadata",
2095
+ "type": "object",
2096
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
2097
+ "required": false,
2098
+ "schema": {
2099
+ "title": "iapMetadata",
2100
+ "type": "object"
2101
+ }
2102
+ }
2103
+ ],
2104
+ "output": {
2105
+ "name": "result",
2106
+ "type": "object",
2107
+ "description": "A JSON Object containing status, code and the result",
2108
+ "schema": {
2109
+ "title": "result",
2110
+ "type": "object"
2111
+ }
2112
+ },
2113
+ "roles": [
2114
+ "admin"
2115
+ ],
2116
+ "route": {
2117
+ "verb": "POST",
2118
+ "path": "/readOperationStatuses"
2119
+ },
2120
+ "task": true
2121
+ },
2122
+ {
2123
+ "name": "getOpenCmManagedObjects",
2124
+ "summary": "getManagedObjects",
2125
+ "description": "SOAP Call. XML Input. Returns the requested ManagedObjects from Configuration",
2126
+ "input": [
2127
+ {
2128
+ "name": "body",
2129
+ "type": "object",
2130
+ "info": ": object",
2131
+ "required": true,
2132
+ "schema": {
2133
+ "allOf": [
2134
+ {
2135
+ "type": "object"
2136
+ },
2137
+ {
2138
+ "type": "object"
2139
+ }
2140
+ ],
2141
+ "definitions": {}
2142
+ }
2143
+ },
2144
+ {
2145
+ "name": "iapMetadata",
2146
+ "type": "object",
2147
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
2148
+ "required": false,
2149
+ "schema": {
2150
+ "title": "iapMetadata",
2151
+ "type": "object"
2152
+ }
2153
+ }
2154
+ ],
2155
+ "output": {
2156
+ "name": "result",
2157
+ "type": "object",
2158
+ "description": "A JSON Object containing status, code and the result",
2159
+ "schema": {
2160
+ "title": "result",
2161
+ "type": "object"
2162
+ }
2163
+ },
2164
+ "roles": [
2165
+ "admin"
2166
+ ],
2167
+ "route": {
2168
+ "verb": "POST",
2169
+ "path": "/getOpenCmManagedObjects"
2170
+ },
2171
+ "task": true
2172
+ },
2173
+ {
2174
+ "name": "createManagedObjects",
2175
+ "summary": "createManagedObjects",
2176
+ "description": "SOAP Call. XML Input. Creates the requested ManagedObjects to Configuration.",
2177
+ "input": [
2178
+ {
2179
+ "name": "body",
2180
+ "type": "object",
2181
+ "info": ": object",
2182
+ "required": true,
2183
+ "schema": {
2184
+ "allOf": [
2185
+ {
2186
+ "type": "object"
2187
+ },
2188
+ {
2189
+ "type": "object"
2190
+ }
2191
+ ],
2192
+ "definitions": {}
2193
+ }
2194
+ },
2195
+ {
2196
+ "name": "iapMetadata",
2197
+ "type": "object",
2198
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
2199
+ "required": false,
2200
+ "schema": {
2201
+ "title": "iapMetadata",
2202
+ "type": "object"
2203
+ }
2204
+ }
2205
+ ],
2206
+ "output": {
2207
+ "name": "result",
2208
+ "type": "object",
2209
+ "description": "A JSON Object containing status, code and the result",
2210
+ "schema": {
2211
+ "title": "result",
2212
+ "type": "object"
2213
+ }
2214
+ },
2215
+ "roles": [
2216
+ "admin"
2217
+ ],
2218
+ "route": {
2219
+ "verb": "POST",
2220
+ "path": "/createManagedObjects"
2221
+ },
2222
+ "task": true
2223
+ },
2224
+ {
2225
+ "name": "updateOpenCmManagedObjects",
2226
+ "summary": "updateManagedObjects",
2227
+ "description": "SOAP Call. XML Input. Updates the requested ManagedObjects to Configuration.",
2228
+ "input": [
2229
+ {
2230
+ "name": "body",
2231
+ "type": "object",
2232
+ "info": ": object",
2233
+ "required": true,
2234
+ "schema": {
2235
+ "allOf": [
2236
+ {
2237
+ "type": "object"
2238
+ },
2239
+ {
2240
+ "type": "object"
2241
+ }
2242
+ ],
2243
+ "definitions": {}
2244
+ }
2245
+ },
2246
+ {
2247
+ "name": "iapMetadata",
2248
+ "type": "object",
2249
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
2250
+ "required": false,
2251
+ "schema": {
2252
+ "title": "iapMetadata",
2253
+ "type": "object"
2254
+ }
2255
+ }
2256
+ ],
2257
+ "output": {
2258
+ "name": "result",
2259
+ "type": "object",
2260
+ "description": "A JSON Object containing status, code and the result",
2261
+ "schema": {
2262
+ "title": "result",
2263
+ "type": "object"
2264
+ }
2265
+ },
2266
+ "roles": [
2267
+ "admin"
2268
+ ],
2269
+ "route": {
2270
+ "verb": "POST",
2271
+ "path": "/updateOpenCmManagedObjects"
2272
+ },
2273
+ "task": true
2274
+ },
2275
+ {
2276
+ "name": "deleteManagedObjects",
2277
+ "summary": "deleteManagedObjects",
2278
+ "description": "SOAP Call. XML Input. Deletes the requested ManagedObjects fromConfiguration.",
2279
+ "input": [
2280
+ {
2281
+ "name": "body",
2282
+ "type": "object",
2283
+ "info": ": object",
2284
+ "required": true,
2285
+ "schema": {
2286
+ "allOf": [
2287
+ {
2288
+ "type": "object"
2289
+ },
2290
+ {
2291
+ "type": "object"
2292
+ }
2293
+ ],
2294
+ "definitions": {}
2295
+ }
2296
+ },
2297
+ {
2298
+ "name": "iapMetadata",
2299
+ "type": "object",
2300
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
2301
+ "required": false,
2302
+ "schema": {
2303
+ "title": "iapMetadata",
2304
+ "type": "object"
2305
+ }
2306
+ }
2307
+ ],
2308
+ "output": {
2309
+ "name": "result",
2310
+ "type": "object",
2311
+ "description": "A JSON Object containing status, code and the result",
2312
+ "schema": {
2313
+ "title": "result",
2314
+ "type": "object"
2315
+ }
2316
+ },
2317
+ "roles": [
2318
+ "admin"
2319
+ ],
2320
+ "route": {
2321
+ "verb": "POST",
2322
+ "path": "/deleteManagedObjects"
2323
+ },
2324
+ "task": true
2325
+ },
2326
+ {
2327
+ "name": "getOpenCmMOLites",
2328
+ "summary": "getMOLites",
2329
+ "description": "SOAP Call. XML Input. Returns the requested MOLites from Configuration.",
2330
+ "input": [
2331
+ {
2332
+ "name": "body",
2333
+ "type": "object",
2334
+ "info": ": object",
2335
+ "required": true,
2336
+ "schema": {
2337
+ "allOf": [
2338
+ {
2339
+ "type": "object"
2340
+ },
2341
+ {
2342
+ "type": "object"
2343
+ }
2344
+ ],
2345
+ "definitions": {}
2346
+ }
2347
+ },
2348
+ {
2349
+ "name": "iapMetadata",
2350
+ "type": "object",
2351
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
2352
+ "required": false,
2353
+ "schema": {
2354
+ "title": "iapMetadata",
2355
+ "type": "object"
2356
+ }
2357
+ }
2358
+ ],
2359
+ "output": {
2360
+ "name": "result",
2361
+ "type": "object",
2362
+ "description": "A JSON Object containing status, code and the result",
2363
+ "schema": {
2364
+ "title": "result",
2365
+ "type": "object"
2366
+ }
2367
+ },
2368
+ "roles": [
2369
+ "admin"
2370
+ ],
2371
+ "route": {
2372
+ "verb": "POST",
2373
+ "path": "/getOpenCmMOLites"
2374
+ },
2375
+ "task": true
2376
+ },
2377
+ {
2378
+ "name": "getOpenCmRelatedMOLites",
2379
+ "summary": "getRelatedMOLites",
2380
+ "description": "SOAP Call. XML Input. Returns the requested related MOLites from Configuration.",
2381
+ "input": [
2382
+ {
2383
+ "name": "body",
2384
+ "type": "object",
2385
+ "info": ": object",
2386
+ "required": true,
2387
+ "schema": {
2388
+ "allOf": [
2389
+ {
2390
+ "type": "object"
2391
+ },
2392
+ {
2393
+ "type": "object"
2394
+ }
2395
+ ],
2396
+ "definitions": {}
2397
+ }
2398
+ },
2399
+ {
2400
+ "name": "iapMetadata",
2401
+ "type": "object",
2402
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
2403
+ "required": false,
2404
+ "schema": {
2405
+ "title": "iapMetadata",
2406
+ "type": "object"
2407
+ }
2408
+ }
2409
+ ],
2410
+ "output": {
2411
+ "name": "result",
2412
+ "type": "object",
2413
+ "description": "A JSON Object containing status, code and the result",
2414
+ "schema": {
2415
+ "title": "result",
2416
+ "type": "object"
2417
+ }
2418
+ },
2419
+ "roles": [
2420
+ "admin"
2421
+ ],
2422
+ "route": {
2423
+ "verb": "POST",
2424
+ "path": "/getOpenCmRelatedMOLites"
2425
+ },
2426
+ "task": true
2427
+ },
2428
+ {
2429
+ "name": "queryOpenCmMOLites",
2430
+ "summary": "queryMOLites",
2431
+ "description": "SOAP Call. XML Input. Returns MOLites calculated by the requested query.",
2432
+ "input": [
2433
+ {
2434
+ "name": "body",
2435
+ "type": "object",
2436
+ "info": ": object",
2437
+ "required": true,
2438
+ "schema": {
2439
+ "allOf": [
2440
+ {
2441
+ "type": "object"
2442
+ },
2443
+ {
2444
+ "type": "object"
2445
+ }
2446
+ ],
2447
+ "definitions": {}
2448
+ }
2449
+ },
2450
+ {
2451
+ "name": "iapMetadata",
2452
+ "type": "object",
2453
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
2454
+ "required": false,
2455
+ "schema": {
2456
+ "title": "iapMetadata",
2457
+ "type": "object"
2458
+ }
2459
+ }
2460
+ ],
2461
+ "output": {
2462
+ "name": "result",
2463
+ "type": "object",
2464
+ "description": "A JSON Object containing status, code and the result",
2465
+ "schema": {
2466
+ "title": "result",
2467
+ "type": "object"
2468
+ }
2469
+ },
2470
+ "roles": [
2471
+ "admin"
2472
+ ],
2473
+ "route": {
2474
+ "verb": "POST",
2475
+ "path": "/queryOpenCmMOLites"
2476
+ },
2477
+ "task": true
2478
+ },
2479
+ {
2480
+ "name": "getPersistencyMetadata",
2481
+ "summary": "getPersistencyMetadata",
2482
+ "description": "SOAP Call. XML Input. Returns metadata definitions.",
2483
+ "input": [
2484
+ {
2485
+ "name": "body",
2486
+ "type": "object",
2487
+ "info": ": object",
2488
+ "required": true,
2489
+ "schema": {
2490
+ "allOf": [
2491
+ {
2492
+ "type": "object"
2493
+ },
2494
+ {
2495
+ "type": "object"
2496
+ }
2497
+ ],
2498
+ "definitions": {}
2499
+ }
2500
+ },
2501
+ {
2502
+ "name": "iapMetadata",
2503
+ "type": "object",
2504
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
2505
+ "required": false,
2506
+ "schema": {
2507
+ "title": "iapMetadata",
2508
+ "type": "object"
2509
+ }
2510
+ }
2511
+ ],
2512
+ "output": {
2513
+ "name": "result",
2514
+ "type": "object",
2515
+ "description": "A JSON Object containing status, code and the result",
2516
+ "schema": {
2517
+ "title": "result",
2518
+ "type": "object"
2519
+ }
2520
+ },
2521
+ "roles": [
2522
+ "admin"
2523
+ ],
2524
+ "route": {
2525
+ "verb": "POST",
2526
+ "path": "/getPersistencyMetadata"
2527
+ },
2528
+ "task": true
2529
+ },
2530
+ {
2531
+ "name": "getOpenCmConfigurations",
2532
+ "summary": "getConfigurations",
2533
+ "description": "SOAP Call. XML Input. Returns configurations",
2534
+ "input": [
2535
+ {
2536
+ "name": "body",
2537
+ "type": "object",
2538
+ "info": ": object",
2539
+ "required": true,
2540
+ "schema": {
2541
+ "allOf": [
2542
+ {
2543
+ "type": "object"
2544
+ },
2545
+ {
2546
+ "type": "object"
2547
+ }
2548
+ ],
2549
+ "definitions": {}
2550
+ }
2551
+ },
2552
+ {
2553
+ "name": "iapMetadata",
2554
+ "type": "object",
2555
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
2556
+ "required": false,
2557
+ "schema": {
2558
+ "title": "iapMetadata",
2559
+ "type": "object"
2560
+ }
2561
+ }
2562
+ ],
2563
+ "output": {
2564
+ "name": "result",
2565
+ "type": "object",
2566
+ "description": "A JSON Object containing status, code and the result",
2567
+ "schema": {
2568
+ "title": "result",
2569
+ "type": "object"
2570
+ }
2571
+ },
2572
+ "roles": [
2573
+ "admin"
2574
+ ],
2575
+ "route": {
2576
+ "verb": "POST",
2577
+ "path": "/getOpenCmConfigurations"
2578
+ },
2579
+ "task": true
2580
+ },
2581
+ {
2582
+ "name": "createOpenCmConfiguration",
2583
+ "summary": "createConfiguration",
2584
+ "description": "SOAP Call. XML Input. Creates a new configuration with specified attributes.",
2585
+ "input": [
2586
+ {
2587
+ "name": "body",
2588
+ "type": "object",
2589
+ "info": ": object",
2590
+ "required": true,
2591
+ "schema": {
2592
+ "allOf": [
2593
+ {
2594
+ "type": "object"
2595
+ },
2596
+ {
2597
+ "type": "object"
2598
+ }
2599
+ ],
2600
+ "definitions": {}
2601
+ }
2602
+ },
2603
+ {
2604
+ "name": "iapMetadata",
2605
+ "type": "object",
2606
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
2607
+ "required": false,
2608
+ "schema": {
2609
+ "title": "iapMetadata",
2610
+ "type": "object"
2611
+ }
2612
+ }
2613
+ ],
2614
+ "output": {
2615
+ "name": "result",
2616
+ "type": "object",
2617
+ "description": "A JSON Object containing status, code and the result",
2618
+ "schema": {
2619
+ "title": "result",
2620
+ "type": "object"
2621
+ }
2622
+ },
2623
+ "roles": [
2624
+ "admin"
2625
+ ],
2626
+ "route": {
2627
+ "verb": "POST",
2628
+ "path": "/createOpenCmConfiguration"
2629
+ },
2630
+ "task": true
2631
+ },
2632
+ {
2633
+ "name": "postPersistencyOpenCmPersistencyServiceSOAPUpdateConfiguration",
2634
+ "summary": "updateConfiguration",
2635
+ "description": "SOAP Call. XML Input. Updates modifiable attributes of a configuration.",
2636
+ "input": [
2637
+ {
2638
+ "name": "body",
2639
+ "type": "object",
2640
+ "info": ": object",
2641
+ "required": true,
2642
+ "schema": {
2643
+ "allOf": [
2644
+ {
2645
+ "type": "object"
2646
+ },
2647
+ {
2648
+ "type": "object"
2649
+ }
2650
+ ],
2651
+ "definitions": {}
2652
+ }
2653
+ },
2654
+ {
2655
+ "name": "iapMetadata",
2656
+ "type": "object",
2657
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
2658
+ "required": false,
2659
+ "schema": {
2660
+ "title": "iapMetadata",
2661
+ "type": "object"
2662
+ }
2663
+ }
2664
+ ],
2665
+ "output": {
2666
+ "name": "result",
2667
+ "type": "object",
2668
+ "description": "A JSON Object containing status, code and the result",
2669
+ "schema": {
2670
+ "title": "result",
2671
+ "type": "object"
2672
+ }
2673
+ },
2674
+ "roles": [
2675
+ "admin"
2676
+ ],
2677
+ "route": {
2678
+ "verb": "POST",
2679
+ "path": "/postPersistencyOpenCmPersistencyServiceSOAPUpdateConfiguration"
2680
+ },
2681
+ "task": true
2682
+ },
2683
+ {
2684
+ "name": "deleteOpenCmConfiguration",
2685
+ "summary": "deleteConfiguration",
2686
+ "description": "SOAP Call. XML Input. Deletes existing configuration and all of its content.",
2687
+ "input": [
2688
+ {
2689
+ "name": "body",
2690
+ "type": "object",
2691
+ "info": ": object",
2692
+ "required": true,
2693
+ "schema": {
2694
+ "allOf": [
2695
+ {
2696
+ "type": "object"
2697
+ },
2698
+ {
2699
+ "type": "object"
2700
+ }
2701
+ ],
2702
+ "definitions": {}
2703
+ }
2704
+ },
2705
+ {
2706
+ "name": "iapMetadata",
2707
+ "type": "object",
2708
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
2709
+ "required": false,
2710
+ "schema": {
2711
+ "title": "iapMetadata",
2712
+ "type": "object"
2713
+ }
2714
+ }
2715
+ ],
2716
+ "output": {
2717
+ "name": "result",
2718
+ "type": "object",
2719
+ "description": "A JSON Object containing status, code and the result",
2720
+ "schema": {
2721
+ "title": "result",
2722
+ "type": "object"
2723
+ }
2724
+ },
2725
+ "roles": [
2726
+ "admin"
2727
+ ],
2728
+ "route": {
2729
+ "verb": "POST",
2730
+ "path": "/deleteOpenCmConfiguration"
2731
+ },
2732
+ "task": true
2733
+ },
2734
+ {
2735
+ "name": "getOperationsMetadata",
2736
+ "summary": "getOperationsMetadata",
2737
+ "description": "SOAP Call. XML Input. Returns metadata of available operations.",
2738
+ "input": [
2739
+ {
2740
+ "name": "body",
2741
+ "type": "object",
2742
+ "info": ": object",
2743
+ "required": true,
2744
+ "schema": {
2745
+ "allOf": [
2746
+ {
2747
+ "type": "object"
2748
+ },
2749
+ {
2750
+ "type": "object"
2751
+ }
2752
+ ],
2753
+ "definitions": {}
2754
+ }
2755
+ },
2756
+ {
2757
+ "name": "iapMetadata",
2758
+ "type": "object",
2759
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
2760
+ "required": false,
2761
+ "schema": {
2762
+ "title": "iapMetadata",
2763
+ "type": "object"
2764
+ }
2765
+ }
2766
+ ],
2767
+ "output": {
2768
+ "name": "result",
2769
+ "type": "object",
2770
+ "description": "A JSON Object containing status, code and the result",
2771
+ "schema": {
2772
+ "title": "result",
2773
+ "type": "object"
2774
+ }
2775
+ },
2776
+ "roles": [
2777
+ "admin"
2778
+ ],
2779
+ "route": {
2780
+ "verb": "POST",
2781
+ "path": "/getOperationsMetadata"
2782
+ },
2783
+ "task": true
2784
+ },
2785
+ {
2786
+ "name": "startOpenCmOperation",
2787
+ "summary": "startOperation",
2788
+ "description": "SOAP Call. XML Input. Issues a request to start an new operation, using the provided attribute bindings.",
2789
+ "input": [
2790
+ {
2791
+ "name": "body",
2792
+ "type": "object",
2793
+ "info": ": object",
2794
+ "required": true,
2795
+ "schema": {
2796
+ "allOf": [
2797
+ {
2798
+ "type": "object"
2799
+ },
2800
+ {
2801
+ "type": "object"
2802
+ }
2803
+ ],
2804
+ "definitions": {}
2805
+ }
2806
+ },
2807
+ {
2808
+ "name": "iapMetadata",
2809
+ "type": "object",
2810
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
2811
+ "required": false,
2812
+ "schema": {
2813
+ "title": "iapMetadata",
2814
+ "type": "object"
2815
+ }
2816
+ }
2817
+ ],
2818
+ "output": {
2819
+ "name": "result",
2820
+ "type": "object",
2821
+ "description": "A JSON Object containing status, code and the result",
2822
+ "schema": {
2823
+ "title": "result",
2824
+ "type": "object"
2825
+ }
2826
+ },
2827
+ "roles": [
2828
+ "admin"
2829
+ ],
2830
+ "route": {
2831
+ "verb": "POST",
2832
+ "path": "/startOpenCmOperation"
2833
+ },
2834
+ "task": true
2835
+ },
2836
+ {
2837
+ "name": "interruptOperationOpenCm",
2838
+ "summary": "interruptOperationOpenCm",
2839
+ "description": "SOAP Call. XML Input. Issues a request to interrupt an ongoing operation.",
2840
+ "input": [
2841
+ {
2842
+ "name": "body",
2843
+ "type": "object",
2844
+ "info": ": object",
2845
+ "required": true,
2846
+ "schema": {
2847
+ "allOf": [
2848
+ {
2849
+ "type": "object"
2850
+ },
2851
+ {
2852
+ "type": "object"
2853
+ }
2854
+ ],
2855
+ "definitions": {}
2856
+ }
2857
+ },
2858
+ {
2859
+ "name": "iapMetadata",
2860
+ "type": "object",
2861
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
2862
+ "required": false,
2863
+ "schema": {
2864
+ "title": "iapMetadata",
2865
+ "type": "object"
2866
+ }
2867
+ }
2868
+ ],
2869
+ "output": {
2870
+ "name": "result",
2871
+ "type": "object",
2872
+ "description": "A JSON Object containing status, code and the result",
2873
+ "schema": {
2874
+ "title": "result",
2875
+ "type": "object"
2876
+ }
2877
+ },
2878
+ "roles": [
2879
+ "admin"
2880
+ ],
2881
+ "route": {
2882
+ "verb": "POST",
2883
+ "path": "/interruptOperationOpenCm"
2884
+ },
2885
+ "task": true
2886
+ }
2887
+ ],
2888
+ "views": []
2889
+ }