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