@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.
- package/.eslintignore +5 -0
- package/.eslintrc.js +18 -0
- package/.jshintrc +3 -0
- package/AUTH.md +32 -0
- package/BROKER.md +211 -0
- package/CALLS.md +447 -0
- package/CODE_OF_CONDUCT.md +43 -0
- package/CONTRIBUTING.md +13 -0
- package/ENHANCE.md +69 -0
- package/LICENSE +201 -0
- package/PROPERTIES.md +646 -0
- package/README.md +343 -0
- package/SUMMARY.md +9 -0
- package/SYSTEMINFO.md +18 -0
- package/TAB1.md +11 -0
- package/TAB2.md +303 -0
- package/TROUBLESHOOT.md +47 -0
- package/adapter.js +4743 -0
- package/adapterBase.js +1452 -0
- package/changelogs/CHANGELOG.md +0 -0
- package/entities/.generic/action.json +214 -0
- package/entities/.generic/schema.json +28 -0
- package/entities/.system/action.json +50 -0
- package/entities/.system/mockdatafiles/getToken-default.json +3 -0
- package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
- package/entities/.system/schema.json +19 -0
- package/entities/.system/schemaTokenReq.json +53 -0
- package/entities/.system/schemaTokenResp.json +53 -0
- package/entities/OpenCmOperationsPortBinding/action.json +64 -0
- package/entities/OpenCmOperationsPortBinding/schema.json +21 -0
- package/entities/OpenCmPersistencyPortBinding/action.json +244 -0
- package/entities/OpenCmPersistencyPortBinding/schema.json +30 -0
- package/entities/Operations/action.json +169 -0
- package/entities/Operations/schema.json +26 -0
- package/entities/Persistency/action.json +348 -0
- package/entities/Persistency/schema.json +35 -0
- package/error.json +190 -0
- package/metadata.json +78 -0
- package/package.json +81 -0
- package/pronghorn.json +2889 -0
- package/propertiesDecorators.json +14 -0
- package/propertiesSchema.json +1574 -0
- package/report/Nokia-NetAct-REST-SOAP-OpenAPI3.v1.json +3014 -0
- package/report/adapter-openapi.json +3014 -0
- package/report/adapter-openapi.yaml +2396 -0
- package/report/adapterInfo.json +10 -0
- package/report/auto-adapter-openapi.json +1420 -0
- package/report/creationReport.json +455 -0
- package/sampleProperties.json +257 -0
- package/test/integration/adapterTestBasicGet.js +83 -0
- package/test/integration/adapterTestConnectivity.js +118 -0
- package/test/integration/adapterTestIntegration.js +1509 -0
- package/test/unit/adapterBaseTestUnit.js +1024 -0
- package/test/unit/adapterTestUnit.js +2477 -0
- package/utils/adapterInfo.js +206 -0
- package/utils/addAuth.js +94 -0
- package/utils/artifactize.js +146 -0
- package/utils/basicGet.js +50 -0
- package/utils/checkMigrate.js +63 -0
- package/utils/entitiesToDB.js +179 -0
- package/utils/findPath.js +74 -0
- package/utils/methodDocumentor.js +273 -0
- package/utils/modify.js +152 -0
- package/utils/packModificationScript.js +35 -0
- package/utils/patches2bundledDeps.js +90 -0
- package/utils/pre-commit.sh +32 -0
- package/utils/removeHooks.js +20 -0
- package/utils/setup.js +33 -0
- package/utils/taskMover.js +309 -0
- package/utils/tbScript.js +239 -0
- package/utils/tbUtils.js +489 -0
- package/utils/testRunner.js +298 -0
- package/utils/troubleshootingAdapter.js +193 -0
|
@@ -0,0 +1,2396 @@
|
|
|
1
|
+
openapi: 3.0.0
|
|
2
|
+
info:
|
|
3
|
+
title: Nokia NetAct CM Api
|
|
4
|
+
contact: {}
|
|
5
|
+
version: 'v1'
|
|
6
|
+
servers:
|
|
7
|
+
- url: http://r28waslb.r28.netact.uk.pri.o2.com/netact/cm/open-api
|
|
8
|
+
variables: {}
|
|
9
|
+
- url: https://r28waslb.r28.netact.uk.pri.o2.com/netact/cm/open-api
|
|
10
|
+
variables: {}
|
|
11
|
+
paths:
|
|
12
|
+
/persistency/v1/configuration:
|
|
13
|
+
get:
|
|
14
|
+
tags:
|
|
15
|
+
- persistency
|
|
16
|
+
summary: getConfigurations
|
|
17
|
+
description: ''
|
|
18
|
+
operationId: getConfigurations
|
|
19
|
+
parameters:
|
|
20
|
+
- name: type
|
|
21
|
+
in: query
|
|
22
|
+
description: ''
|
|
23
|
+
style: form
|
|
24
|
+
explode: true
|
|
25
|
+
schema:
|
|
26
|
+
$ref: '#/components/schemas/Type'
|
|
27
|
+
- name: confId
|
|
28
|
+
in: query
|
|
29
|
+
description: ''
|
|
30
|
+
style: form
|
|
31
|
+
explode: true
|
|
32
|
+
schema:
|
|
33
|
+
type: string
|
|
34
|
+
- name: name
|
|
35
|
+
in: query
|
|
36
|
+
description: ''
|
|
37
|
+
style: form
|
|
38
|
+
explode: true
|
|
39
|
+
schema:
|
|
40
|
+
type: string
|
|
41
|
+
responses:
|
|
42
|
+
'200':
|
|
43
|
+
description: successful operation
|
|
44
|
+
headers: {}
|
|
45
|
+
content:
|
|
46
|
+
application/vnd.nokia-conf-headers-response-v1+json:
|
|
47
|
+
schema:
|
|
48
|
+
$ref: '#/components/schemas/ConfigurationsResponse'
|
|
49
|
+
application/json:
|
|
50
|
+
schema:
|
|
51
|
+
$ref: '#/components/schemas/ConfigurationsResponse'
|
|
52
|
+
deprecated: false
|
|
53
|
+
post:
|
|
54
|
+
tags:
|
|
55
|
+
- persistency
|
|
56
|
+
summary: createConfiguration
|
|
57
|
+
description: ''
|
|
58
|
+
operationId: createConfiguration
|
|
59
|
+
parameters: []
|
|
60
|
+
requestBody:
|
|
61
|
+
description: ''
|
|
62
|
+
content:
|
|
63
|
+
application/vnd.nokia-conf-info-request-v1+json:
|
|
64
|
+
schema:
|
|
65
|
+
$ref: '#/components/schemas/ConfInfoRequest'
|
|
66
|
+
required: true
|
|
67
|
+
responses:
|
|
68
|
+
'200':
|
|
69
|
+
description: successful operation
|
|
70
|
+
headers: {}
|
|
71
|
+
content:
|
|
72
|
+
application/vnd.nokia-add-conf-response-v1+json:
|
|
73
|
+
schema:
|
|
74
|
+
$ref: '#/components/schemas/ConfigurationHeaderResponse'
|
|
75
|
+
application/json:
|
|
76
|
+
schema:
|
|
77
|
+
$ref: '#/components/schemas/ConfigurationHeaderResponse'
|
|
78
|
+
deprecated: false
|
|
79
|
+
delete:
|
|
80
|
+
tags:
|
|
81
|
+
- persistency
|
|
82
|
+
summary: deleteConfiguration
|
|
83
|
+
description: ''
|
|
84
|
+
operationId: deleteConfiguration
|
|
85
|
+
parameters:
|
|
86
|
+
- name: confId
|
|
87
|
+
in: query
|
|
88
|
+
description: ''
|
|
89
|
+
required: true
|
|
90
|
+
style: form
|
|
91
|
+
explode: true
|
|
92
|
+
schema:
|
|
93
|
+
type: string
|
|
94
|
+
responses:
|
|
95
|
+
'200':
|
|
96
|
+
description: successful operation
|
|
97
|
+
headers: {}
|
|
98
|
+
content: {}
|
|
99
|
+
deprecated: false
|
|
100
|
+
patch:
|
|
101
|
+
tags:
|
|
102
|
+
- persistency
|
|
103
|
+
summary: updateConfiguration
|
|
104
|
+
description: ''
|
|
105
|
+
operationId: updateConfiguration
|
|
106
|
+
parameters: []
|
|
107
|
+
requestBody:
|
|
108
|
+
description: ''
|
|
109
|
+
content:
|
|
110
|
+
application/vnd.nokia-conf-info-request-v1+json:
|
|
111
|
+
schema:
|
|
112
|
+
$ref: '#/components/schemas/ConfInfoRequest'
|
|
113
|
+
required: true
|
|
114
|
+
responses:
|
|
115
|
+
'200':
|
|
116
|
+
description: successful operation
|
|
117
|
+
headers: {}
|
|
118
|
+
content: {}
|
|
119
|
+
deprecated: false
|
|
120
|
+
/persistency/v1/descendantMOLites:
|
|
121
|
+
post:
|
|
122
|
+
tags:
|
|
123
|
+
- persistency
|
|
124
|
+
summary: getDescendantMOLites
|
|
125
|
+
description: ''
|
|
126
|
+
operationId: getDescendantMOLites
|
|
127
|
+
parameters: []
|
|
128
|
+
requestBody:
|
|
129
|
+
description: ''
|
|
130
|
+
content:
|
|
131
|
+
application/vnd.nokia-descendant-mos-request-v1+json:
|
|
132
|
+
schema:
|
|
133
|
+
$ref: '#/components/schemas/DescendantMOsRequest'
|
|
134
|
+
required: true
|
|
135
|
+
responses:
|
|
136
|
+
'200':
|
|
137
|
+
description: successful operation
|
|
138
|
+
headers: {}
|
|
139
|
+
content:
|
|
140
|
+
application/vnd.nokia-related-molites-response-v1+json:
|
|
141
|
+
schema:
|
|
142
|
+
$ref: '#/components/schemas/RelatedMOLitesResponse'
|
|
143
|
+
application/json:
|
|
144
|
+
schema:
|
|
145
|
+
$ref: '#/components/schemas/RelatedMOLitesResponse'
|
|
146
|
+
deprecated: false
|
|
147
|
+
/persistency/v1/getManagedObjects:
|
|
148
|
+
post:
|
|
149
|
+
tags:
|
|
150
|
+
- persistency
|
|
151
|
+
summary: getManagedObjects
|
|
152
|
+
description: ''
|
|
153
|
+
operationId: getManagedObjects
|
|
154
|
+
parameters: []
|
|
155
|
+
requestBody:
|
|
156
|
+
description: ''
|
|
157
|
+
content:
|
|
158
|
+
application/vnd.nokia-moids-request-v1+json:
|
|
159
|
+
schema:
|
|
160
|
+
$ref: '#/components/schemas/MOIdsRequest'
|
|
161
|
+
required: true
|
|
162
|
+
responses:
|
|
163
|
+
'200':
|
|
164
|
+
description: successful operation
|
|
165
|
+
headers: {}
|
|
166
|
+
content:
|
|
167
|
+
application/vnd.nokia-mos-response-v1+json:
|
|
168
|
+
schema:
|
|
169
|
+
$ref: '#/components/schemas/ManagedObjectsResponse'
|
|
170
|
+
application/json:
|
|
171
|
+
schema:
|
|
172
|
+
$ref: '#/components/schemas/ManagedObjectsResponse'
|
|
173
|
+
deprecated: false
|
|
174
|
+
/persistency/v1/managedObjects:
|
|
175
|
+
put:
|
|
176
|
+
tags:
|
|
177
|
+
- persistency
|
|
178
|
+
summary: updateManagedObjects
|
|
179
|
+
description: ''
|
|
180
|
+
operationId: updateManagedObjects
|
|
181
|
+
parameters: []
|
|
182
|
+
requestBody:
|
|
183
|
+
description: ''
|
|
184
|
+
content:
|
|
185
|
+
application/vnd.nokia-managed-objects-request-v1+json:
|
|
186
|
+
schema:
|
|
187
|
+
$ref: '#/components/schemas/ManagedObjectsRequest'
|
|
188
|
+
required: true
|
|
189
|
+
responses:
|
|
190
|
+
'200':
|
|
191
|
+
description: successful operation
|
|
192
|
+
headers: {}
|
|
193
|
+
content: {}
|
|
194
|
+
deprecated: false
|
|
195
|
+
post:
|
|
196
|
+
tags:
|
|
197
|
+
- persistency
|
|
198
|
+
summary: addManagedObjects
|
|
199
|
+
description: ''
|
|
200
|
+
operationId: addManagedObjects
|
|
201
|
+
parameters: []
|
|
202
|
+
requestBody:
|
|
203
|
+
description: ''
|
|
204
|
+
content:
|
|
205
|
+
application/vnd.nokia-managed-objects-request-v1+json:
|
|
206
|
+
schema:
|
|
207
|
+
$ref: '#/components/schemas/ManagedObjectsRequest'
|
|
208
|
+
required: true
|
|
209
|
+
responses:
|
|
210
|
+
'200':
|
|
211
|
+
description: successful operation
|
|
212
|
+
headers: {}
|
|
213
|
+
content: {}
|
|
214
|
+
deprecated: false
|
|
215
|
+
delete:
|
|
216
|
+
tags:
|
|
217
|
+
- persistency
|
|
218
|
+
summary: removeManagedObjects
|
|
219
|
+
description: ''
|
|
220
|
+
operationId: removeManagedObjects
|
|
221
|
+
parameters:
|
|
222
|
+
- name: Content-Type
|
|
223
|
+
in: header
|
|
224
|
+
description: ''
|
|
225
|
+
required: true
|
|
226
|
+
style: simple
|
|
227
|
+
schema:
|
|
228
|
+
enum:
|
|
229
|
+
- application/vnd.nokia-moids-request-v1+json
|
|
230
|
+
type: string
|
|
231
|
+
responses:
|
|
232
|
+
'200':
|
|
233
|
+
description: successful operation
|
|
234
|
+
headers: {}
|
|
235
|
+
content: {}
|
|
236
|
+
deprecated: false
|
|
237
|
+
/persistency/v1/meta/adaptations:
|
|
238
|
+
get:
|
|
239
|
+
tags:
|
|
240
|
+
- persistency
|
|
241
|
+
summary: getMetaAdaptations
|
|
242
|
+
description: ''
|
|
243
|
+
operationId: getMetaAdaptations
|
|
244
|
+
parameters:
|
|
245
|
+
- name: adaptId
|
|
246
|
+
in: query
|
|
247
|
+
description: ''
|
|
248
|
+
style: form
|
|
249
|
+
explode: true
|
|
250
|
+
schema:
|
|
251
|
+
type: array
|
|
252
|
+
items:
|
|
253
|
+
type: string
|
|
254
|
+
responses:
|
|
255
|
+
'200':
|
|
256
|
+
description: successful operation
|
|
257
|
+
headers: {}
|
|
258
|
+
content:
|
|
259
|
+
application/vnd.nokia-meta-adaptations-response-v1+json:
|
|
260
|
+
schema:
|
|
261
|
+
$ref: '#/components/schemas/MetaAdaptationsResponse'
|
|
262
|
+
application/json:
|
|
263
|
+
schema:
|
|
264
|
+
$ref: '#/components/schemas/MetaAdaptationsResponse'
|
|
265
|
+
deprecated: false
|
|
266
|
+
/persistency/v1/meta/classes:
|
|
267
|
+
get:
|
|
268
|
+
tags:
|
|
269
|
+
- persistency
|
|
270
|
+
summary: getMetaClasses
|
|
271
|
+
description: ''
|
|
272
|
+
operationId: getMetaClasses
|
|
273
|
+
parameters:
|
|
274
|
+
- name: adaptId
|
|
275
|
+
in: query
|
|
276
|
+
description: ''
|
|
277
|
+
style: form
|
|
278
|
+
explode: true
|
|
279
|
+
schema:
|
|
280
|
+
type: array
|
|
281
|
+
items:
|
|
282
|
+
type: string
|
|
283
|
+
responses:
|
|
284
|
+
'200':
|
|
285
|
+
description: successful operation
|
|
286
|
+
headers: {}
|
|
287
|
+
content:
|
|
288
|
+
application/vnd.nokia-meta-classes-response-v1+json:
|
|
289
|
+
schema:
|
|
290
|
+
$ref: '#/components/schemas/MetaClassesResponse'
|
|
291
|
+
application/json:
|
|
292
|
+
schema:
|
|
293
|
+
$ref: '#/components/schemas/MetaClassesResponse'
|
|
294
|
+
deprecated: false
|
|
295
|
+
/persistency/v1/meta/parameters:
|
|
296
|
+
post:
|
|
297
|
+
tags:
|
|
298
|
+
- persistency
|
|
299
|
+
summary: getMetaParameters
|
|
300
|
+
description: ''
|
|
301
|
+
operationId: getMetaParameters
|
|
302
|
+
parameters: []
|
|
303
|
+
requestBody:
|
|
304
|
+
description: ''
|
|
305
|
+
content:
|
|
306
|
+
application/vnd.nokia-meta-parameters-request-v1+json:
|
|
307
|
+
schema:
|
|
308
|
+
$ref: '#/components/schemas/MetaParametersRequest'
|
|
309
|
+
required: true
|
|
310
|
+
responses:
|
|
311
|
+
'200':
|
|
312
|
+
description: successful operation
|
|
313
|
+
headers: {}
|
|
314
|
+
content:
|
|
315
|
+
application/vnd.nokia-meta-parameters-response-v1+json:
|
|
316
|
+
schema:
|
|
317
|
+
$ref: '#/components/schemas/MOClassDefsResponse'
|
|
318
|
+
application/json:
|
|
319
|
+
schema:
|
|
320
|
+
$ref: '#/components/schemas/MOClassDefsResponse'
|
|
321
|
+
deprecated: false
|
|
322
|
+
/persistency/v1/moLites:
|
|
323
|
+
post:
|
|
324
|
+
tags:
|
|
325
|
+
- persistency
|
|
326
|
+
summary: getMOLites
|
|
327
|
+
description: ''
|
|
328
|
+
operationId: getMOLites
|
|
329
|
+
parameters: []
|
|
330
|
+
requestBody:
|
|
331
|
+
description: ''
|
|
332
|
+
content:
|
|
333
|
+
application/vnd.nokia-moids-request-v1+json:
|
|
334
|
+
schema:
|
|
335
|
+
$ref: '#/components/schemas/MOIdsRequest'
|
|
336
|
+
required: true
|
|
337
|
+
responses:
|
|
338
|
+
'200':
|
|
339
|
+
description: successful operation
|
|
340
|
+
headers: {}
|
|
341
|
+
content:
|
|
342
|
+
application/vnd.nokia-molites-response-v1+json:
|
|
343
|
+
schema:
|
|
344
|
+
$ref: '#/components/schemas/MOLitesResponse'
|
|
345
|
+
application/json:
|
|
346
|
+
schema:
|
|
347
|
+
$ref: '#/components/schemas/MOLitesResponse'
|
|
348
|
+
deprecated: false
|
|
349
|
+
/persistency/v1/query:
|
|
350
|
+
post:
|
|
351
|
+
tags:
|
|
352
|
+
- persistency
|
|
353
|
+
summary: query
|
|
354
|
+
description: ''
|
|
355
|
+
operationId: query
|
|
356
|
+
parameters: []
|
|
357
|
+
requestBody:
|
|
358
|
+
description: ''
|
|
359
|
+
content:
|
|
360
|
+
application/vnd.nokia-query-request-v1+json:
|
|
361
|
+
schema:
|
|
362
|
+
$ref: '#/components/schemas/QueryRequest'
|
|
363
|
+
required: true
|
|
364
|
+
responses:
|
|
365
|
+
'200':
|
|
366
|
+
description: successful operation
|
|
367
|
+
headers: {}
|
|
368
|
+
content: {}
|
|
369
|
+
deprecated: false
|
|
370
|
+
/persistency/v1/queryMOLites:
|
|
371
|
+
post:
|
|
372
|
+
tags:
|
|
373
|
+
- persistency
|
|
374
|
+
summary: queryMOLites
|
|
375
|
+
description: ''
|
|
376
|
+
operationId: queryMOLites
|
|
377
|
+
parameters: []
|
|
378
|
+
requestBody:
|
|
379
|
+
description: ''
|
|
380
|
+
content:
|
|
381
|
+
application/vnd.nokia-query-mos-request-v1+json:
|
|
382
|
+
schema:
|
|
383
|
+
$ref: '#/components/schemas/QueryMOsRequest'
|
|
384
|
+
required: true
|
|
385
|
+
responses:
|
|
386
|
+
'200':
|
|
387
|
+
description: successful operation
|
|
388
|
+
headers: {}
|
|
389
|
+
content: {}
|
|
390
|
+
deprecated: false
|
|
391
|
+
/persistency/v1/relatedMOLites:
|
|
392
|
+
post:
|
|
393
|
+
tags:
|
|
394
|
+
- persistency
|
|
395
|
+
summary: getRelatedMOLites
|
|
396
|
+
description: ''
|
|
397
|
+
operationId: getRelatedMOLites
|
|
398
|
+
parameters: []
|
|
399
|
+
requestBody:
|
|
400
|
+
description: ''
|
|
401
|
+
content:
|
|
402
|
+
application/vnd.nokia-related-mos-request-v1+json:
|
|
403
|
+
schema:
|
|
404
|
+
$ref: '#/components/schemas/RelatedMOsRequest'
|
|
405
|
+
required: true
|
|
406
|
+
responses:
|
|
407
|
+
'200':
|
|
408
|
+
description: successful operation
|
|
409
|
+
headers: {}
|
|
410
|
+
content:
|
|
411
|
+
application/vnd.nokia-related-molites-response-v1+json:
|
|
412
|
+
schema:
|
|
413
|
+
$ref: '#/components/schemas/RelatedMOLitesResponse'
|
|
414
|
+
application/json:
|
|
415
|
+
schema:
|
|
416
|
+
$ref: '#/components/schemas/RelatedMOLitesResponse'
|
|
417
|
+
deprecated: false
|
|
418
|
+
/persistency/v1/rootMOLites:
|
|
419
|
+
get:
|
|
420
|
+
tags:
|
|
421
|
+
- persistency
|
|
422
|
+
summary: getRootMOLites
|
|
423
|
+
description: ''
|
|
424
|
+
operationId: getRootMOLites
|
|
425
|
+
parameters:
|
|
426
|
+
- name: confId
|
|
427
|
+
in: query
|
|
428
|
+
description: ''
|
|
429
|
+
style: form
|
|
430
|
+
explode: true
|
|
431
|
+
schema:
|
|
432
|
+
type: string
|
|
433
|
+
default: '1'
|
|
434
|
+
responses:
|
|
435
|
+
'200':
|
|
436
|
+
description: successful operation
|
|
437
|
+
headers: {}
|
|
438
|
+
content:
|
|
439
|
+
application/vnd.nokia-molites-response-v1+json:
|
|
440
|
+
schema:
|
|
441
|
+
$ref: '#/components/schemas/MOLitesResponse'
|
|
442
|
+
application/json:
|
|
443
|
+
schema:
|
|
444
|
+
$ref: '#/components/schemas/MOLitesResponse'
|
|
445
|
+
deprecated: false
|
|
446
|
+
/operations/v1/attributes:
|
|
447
|
+
get:
|
|
448
|
+
tags:
|
|
449
|
+
- operations
|
|
450
|
+
summary: readOperationAttributes
|
|
451
|
+
description: ''
|
|
452
|
+
operationId: readOperationAttributes
|
|
453
|
+
parameters:
|
|
454
|
+
- name: operationIds
|
|
455
|
+
in: query
|
|
456
|
+
description: ''
|
|
457
|
+
style: form
|
|
458
|
+
explode: true
|
|
459
|
+
schema:
|
|
460
|
+
type: string
|
|
461
|
+
responses:
|
|
462
|
+
'200':
|
|
463
|
+
description: successful operation
|
|
464
|
+
headers: {}
|
|
465
|
+
content:
|
|
466
|
+
application/vnd.nokia-operations-attributes-v1+json:
|
|
467
|
+
schema:
|
|
468
|
+
$ref: '#/components/schemas/OperationAttributes'
|
|
469
|
+
application/json:
|
|
470
|
+
schema:
|
|
471
|
+
$ref: '#/components/schemas/OperationAttributes'
|
|
472
|
+
deprecated: false
|
|
473
|
+
/operations/v1/definitions:
|
|
474
|
+
get:
|
|
475
|
+
tags:
|
|
476
|
+
- operations
|
|
477
|
+
summary: readOperationDefinitions
|
|
478
|
+
description: ''
|
|
479
|
+
operationId: readOperationDefinitions
|
|
480
|
+
parameters: []
|
|
481
|
+
responses:
|
|
482
|
+
'200':
|
|
483
|
+
description: successful operation
|
|
484
|
+
headers: {}
|
|
485
|
+
content:
|
|
486
|
+
application/vnd.nokia-operation-definitions-v1+json:
|
|
487
|
+
schema:
|
|
488
|
+
$ref: '#/components/schemas/OperationDefinitions'
|
|
489
|
+
application/json:
|
|
490
|
+
schema:
|
|
491
|
+
$ref: '#/components/schemas/OperationDefinitions'
|
|
492
|
+
deprecated: false
|
|
493
|
+
/operations/v1/executions:
|
|
494
|
+
get:
|
|
495
|
+
tags:
|
|
496
|
+
- operations
|
|
497
|
+
summary: readOperationExecutions
|
|
498
|
+
description: ''
|
|
499
|
+
operationId: readOperationExecutions
|
|
500
|
+
parameters:
|
|
501
|
+
- name: before
|
|
502
|
+
in: query
|
|
503
|
+
description: ''
|
|
504
|
+
style: form
|
|
505
|
+
explode: true
|
|
506
|
+
schema:
|
|
507
|
+
type: string
|
|
508
|
+
- name: after
|
|
509
|
+
in: query
|
|
510
|
+
description: ''
|
|
511
|
+
style: form
|
|
512
|
+
explode: true
|
|
513
|
+
schema:
|
|
514
|
+
type: string
|
|
515
|
+
- name: operationNames
|
|
516
|
+
in: query
|
|
517
|
+
description: ''
|
|
518
|
+
style: form
|
|
519
|
+
explode: true
|
|
520
|
+
schema:
|
|
521
|
+
type: string
|
|
522
|
+
responses:
|
|
523
|
+
'200':
|
|
524
|
+
description: successful operation
|
|
525
|
+
headers: {}
|
|
526
|
+
content:
|
|
527
|
+
application/vnd.nokia-operation-executions-v1+json:
|
|
528
|
+
schema:
|
|
529
|
+
$ref: '#/components/schemas/OperationExecutions'
|
|
530
|
+
application/json:
|
|
531
|
+
schema:
|
|
532
|
+
$ref: '#/components/schemas/OperationExecutions'
|
|
533
|
+
deprecated: false
|
|
534
|
+
/operations/v1/feedbacks:
|
|
535
|
+
get:
|
|
536
|
+
tags:
|
|
537
|
+
- operations
|
|
538
|
+
summary: readOperationFeedbacks
|
|
539
|
+
description: ''
|
|
540
|
+
operationId: readOperationFeedbacks
|
|
541
|
+
parameters:
|
|
542
|
+
- name: operationIds
|
|
543
|
+
in: query
|
|
544
|
+
description: ''
|
|
545
|
+
style: form
|
|
546
|
+
explode: true
|
|
547
|
+
schema:
|
|
548
|
+
type: string
|
|
549
|
+
- name: after
|
|
550
|
+
in: query
|
|
551
|
+
description: ''
|
|
552
|
+
style: form
|
|
553
|
+
explode: true
|
|
554
|
+
schema:
|
|
555
|
+
type: string
|
|
556
|
+
- name: limit
|
|
557
|
+
in: query
|
|
558
|
+
description: ''
|
|
559
|
+
style: form
|
|
560
|
+
explode: true
|
|
561
|
+
schema:
|
|
562
|
+
type: string
|
|
563
|
+
default: '30'
|
|
564
|
+
responses:
|
|
565
|
+
'200':
|
|
566
|
+
description: successful operation
|
|
567
|
+
headers: {}
|
|
568
|
+
content:
|
|
569
|
+
application/vnd.nokia-operation-feedbacks-v1+json:
|
|
570
|
+
schema:
|
|
571
|
+
$ref: '#/components/schemas/Feedbacks'
|
|
572
|
+
application/json:
|
|
573
|
+
schema:
|
|
574
|
+
$ref: '#/components/schemas/Feedbacks'
|
|
575
|
+
deprecated: false
|
|
576
|
+
/operations/v1/interrupt:
|
|
577
|
+
put:
|
|
578
|
+
tags:
|
|
579
|
+
- operations
|
|
580
|
+
summary: interruptOperation
|
|
581
|
+
description: ''
|
|
582
|
+
operationId: interruptOperation
|
|
583
|
+
parameters: []
|
|
584
|
+
requestBody:
|
|
585
|
+
description: ''
|
|
586
|
+
content:
|
|
587
|
+
application/vnd.nokia-operation-interrupt-v1+json:
|
|
588
|
+
schema:
|
|
589
|
+
$ref: '#/components/schemas/OperationId'
|
|
590
|
+
required: true
|
|
591
|
+
responses:
|
|
592
|
+
'200':
|
|
593
|
+
description: successful operation
|
|
594
|
+
headers: {}
|
|
595
|
+
content: {}
|
|
596
|
+
deprecated: false
|
|
597
|
+
/operations/v1/schedule:
|
|
598
|
+
post:
|
|
599
|
+
tags:
|
|
600
|
+
- operations
|
|
601
|
+
summary: scheduleOperation
|
|
602
|
+
description: ''
|
|
603
|
+
operationId: scheduleOperation
|
|
604
|
+
parameters: []
|
|
605
|
+
responses:
|
|
606
|
+
'200':
|
|
607
|
+
description: successful operation
|
|
608
|
+
headers: {}
|
|
609
|
+
content:
|
|
610
|
+
application/vnd.nokia-operation-execution-v1+json:
|
|
611
|
+
schema:
|
|
612
|
+
$ref: '#/components/schemas/OperationId'
|
|
613
|
+
application/json:
|
|
614
|
+
schema:
|
|
615
|
+
$ref: '#/components/schemas/OperationId'
|
|
616
|
+
deprecated: false
|
|
617
|
+
/operations/v1/start:
|
|
618
|
+
post:
|
|
619
|
+
tags:
|
|
620
|
+
- operations
|
|
621
|
+
summary: startOperation
|
|
622
|
+
description: ''
|
|
623
|
+
operationId: startOperation
|
|
624
|
+
parameters: []
|
|
625
|
+
responses:
|
|
626
|
+
'200':
|
|
627
|
+
description: successful operation
|
|
628
|
+
headers: {}
|
|
629
|
+
content:
|
|
630
|
+
application/vnd.nokia-operation-execution-v1+json:
|
|
631
|
+
schema:
|
|
632
|
+
$ref: '#/components/schemas/OperationId'
|
|
633
|
+
application/json:
|
|
634
|
+
schema:
|
|
635
|
+
$ref: '#/components/schemas/OperationId'
|
|
636
|
+
deprecated: false
|
|
637
|
+
/operations/v1/statuses:
|
|
638
|
+
get:
|
|
639
|
+
tags:
|
|
640
|
+
- operations
|
|
641
|
+
summary: readOperationStatuses
|
|
642
|
+
description: ''
|
|
643
|
+
operationId: readOperationStatuses
|
|
644
|
+
parameters:
|
|
645
|
+
- name: operationIds
|
|
646
|
+
in: query
|
|
647
|
+
description: ''
|
|
648
|
+
style: form
|
|
649
|
+
explode: true
|
|
650
|
+
schema:
|
|
651
|
+
type: string
|
|
652
|
+
responses:
|
|
653
|
+
'200':
|
|
654
|
+
description: successful operation
|
|
655
|
+
headers: {}
|
|
656
|
+
content:
|
|
657
|
+
application/vnd.nokia-operation-statuses-v1+json:
|
|
658
|
+
schema:
|
|
659
|
+
$ref: '#/components/schemas/Statuses'
|
|
660
|
+
application/json:
|
|
661
|
+
schema:
|
|
662
|
+
$ref: '#/components/schemas/Statuses'
|
|
663
|
+
deprecated: false
|
|
664
|
+
/persistency/OpenCmPersistencyServiceSOAP/getManagedObjects:
|
|
665
|
+
post:
|
|
666
|
+
tags:
|
|
667
|
+
- OpenCmPersistencyPortBinding
|
|
668
|
+
summary: getOpenCmManagedObjects
|
|
669
|
+
description: SOAP Call. XML Input. Returns the requested ManagedObjects from Configuration
|
|
670
|
+
operationId: getOpenCmManagedObjects
|
|
671
|
+
parameters:
|
|
672
|
+
- name: Content-Type
|
|
673
|
+
in: header
|
|
674
|
+
description: ''
|
|
675
|
+
required: true
|
|
676
|
+
style: simple
|
|
677
|
+
schema:
|
|
678
|
+
enum:
|
|
679
|
+
- application/xml
|
|
680
|
+
type: string
|
|
681
|
+
requestBody:
|
|
682
|
+
description: ''
|
|
683
|
+
content:
|
|
684
|
+
application/xml:
|
|
685
|
+
schema:
|
|
686
|
+
allOf:
|
|
687
|
+
- $ref: '#/components/schemas/getManagedObjectsRequest'
|
|
688
|
+
- xml:
|
|
689
|
+
name: getManagedObjectsRequest
|
|
690
|
+
attribute: false
|
|
691
|
+
wrapped: false
|
|
692
|
+
required: true
|
|
693
|
+
responses:
|
|
694
|
+
'200':
|
|
695
|
+
description: Successfully retrieved the response
|
|
696
|
+
headers: {}
|
|
697
|
+
content:
|
|
698
|
+
application/xml:
|
|
699
|
+
schema:
|
|
700
|
+
allOf:
|
|
701
|
+
- $ref: '#/components/schemas/PersistencyOpenCmPersistencyServiceSOAPGetManagedObjectsResponse'
|
|
702
|
+
- xml:
|
|
703
|
+
name: PersistencyOpenCmPersistencyServiceSOAPGetManagedObjectsResponse
|
|
704
|
+
attribute: false
|
|
705
|
+
wrapped: false
|
|
706
|
+
deprecated: false
|
|
707
|
+
/persistency/OpenCmPersistencyServiceSOAP/createManagedObjects:
|
|
708
|
+
post:
|
|
709
|
+
tags:
|
|
710
|
+
- OpenCmPersistencyPortBinding
|
|
711
|
+
summary: createManagedObjects
|
|
712
|
+
description: SOAP Call. XML Input. Creates the requested ManagedObjects to Configuration.
|
|
713
|
+
operationId: createManagedObjects
|
|
714
|
+
parameters:
|
|
715
|
+
- name: Content-Type
|
|
716
|
+
in: header
|
|
717
|
+
description: ''
|
|
718
|
+
required: true
|
|
719
|
+
style: simple
|
|
720
|
+
schema:
|
|
721
|
+
enum:
|
|
722
|
+
- application/xml
|
|
723
|
+
type: string
|
|
724
|
+
requestBody:
|
|
725
|
+
description: ''
|
|
726
|
+
content:
|
|
727
|
+
application/xml:
|
|
728
|
+
schema:
|
|
729
|
+
allOf:
|
|
730
|
+
- $ref: '#/components/schemas/getManagedObjectsRequest'
|
|
731
|
+
- xml:
|
|
732
|
+
name: getManagedObjectsRequest
|
|
733
|
+
attribute: false
|
|
734
|
+
wrapped: false
|
|
735
|
+
required: true
|
|
736
|
+
responses:
|
|
737
|
+
'200':
|
|
738
|
+
description: Successfully retrieved the response
|
|
739
|
+
headers: {}
|
|
740
|
+
content:
|
|
741
|
+
application/xml:
|
|
742
|
+
schema:
|
|
743
|
+
allOf:
|
|
744
|
+
- $ref: '#/components/schemas/PersistencyOpenCmPersistencyServiceSOAPCreateManagedObjectsResponse'
|
|
745
|
+
- xml:
|
|
746
|
+
name: PersistencyOpenCmPersistencyServiceSOAPCreateManagedObjectsResponse
|
|
747
|
+
attribute: false
|
|
748
|
+
wrapped: false
|
|
749
|
+
deprecated: false
|
|
750
|
+
/persistency/OpenCmPersistencyServiceSOAP/updateManagedObjects:
|
|
751
|
+
post:
|
|
752
|
+
tags:
|
|
753
|
+
- OpenCmPersistencyPortBinding
|
|
754
|
+
summary: updateOpenCmManagedObjects
|
|
755
|
+
description: SOAP Call. XML Input. Updates the requested ManagedObjects to Configuration.
|
|
756
|
+
operationId: updateOpenCmManagedObjects
|
|
757
|
+
parameters:
|
|
758
|
+
- name: Content-Type
|
|
759
|
+
in: header
|
|
760
|
+
description: ''
|
|
761
|
+
required: true
|
|
762
|
+
style: simple
|
|
763
|
+
schema:
|
|
764
|
+
enum:
|
|
765
|
+
- application/xml
|
|
766
|
+
type: string
|
|
767
|
+
requestBody:
|
|
768
|
+
description: ''
|
|
769
|
+
content:
|
|
770
|
+
application/xml:
|
|
771
|
+
schema:
|
|
772
|
+
allOf:
|
|
773
|
+
- $ref: '#/components/schemas/getManagedObjectsRequest'
|
|
774
|
+
- xml:
|
|
775
|
+
name: getManagedObjectsRequest
|
|
776
|
+
attribute: false
|
|
777
|
+
wrapped: false
|
|
778
|
+
required: true
|
|
779
|
+
responses:
|
|
780
|
+
'200':
|
|
781
|
+
description: Successfully retrieved the response
|
|
782
|
+
headers: {}
|
|
783
|
+
content:
|
|
784
|
+
application/xml:
|
|
785
|
+
schema:
|
|
786
|
+
allOf:
|
|
787
|
+
- $ref: '#/components/schemas/PersistencyOpenCmPersistencyServiceSOAPUpdateManagedObjectsResponse'
|
|
788
|
+
- xml:
|
|
789
|
+
name: PersistencyOpenCmPersistencyServiceSOAPUpdateManagedObjectsResponse
|
|
790
|
+
attribute: false
|
|
791
|
+
wrapped: false
|
|
792
|
+
deprecated: false
|
|
793
|
+
/persistency/OpenCmPersistencyServiceSOAP/deleteManagedObjects:
|
|
794
|
+
post:
|
|
795
|
+
tags:
|
|
796
|
+
- OpenCmPersistencyPortBinding
|
|
797
|
+
summary: deleteManagedObjects
|
|
798
|
+
description: SOAP Call. XML Input. Deletes the requested ManagedObjects fromConfiguration.
|
|
799
|
+
operationId: deleteManagedObjects
|
|
800
|
+
parameters:
|
|
801
|
+
- name: Content-Type
|
|
802
|
+
in: header
|
|
803
|
+
description: ''
|
|
804
|
+
required: true
|
|
805
|
+
style: simple
|
|
806
|
+
schema:
|
|
807
|
+
enum:
|
|
808
|
+
- application/xml
|
|
809
|
+
type: string
|
|
810
|
+
requestBody:
|
|
811
|
+
description: ''
|
|
812
|
+
content:
|
|
813
|
+
application/xml:
|
|
814
|
+
schema:
|
|
815
|
+
allOf:
|
|
816
|
+
- $ref: '#/components/schemas/getManagedObjectsRequest'
|
|
817
|
+
- xml:
|
|
818
|
+
name: getManagedObjectsRequest
|
|
819
|
+
attribute: false
|
|
820
|
+
wrapped: false
|
|
821
|
+
required: true
|
|
822
|
+
responses:
|
|
823
|
+
'200':
|
|
824
|
+
description: Successfully retrieved the response
|
|
825
|
+
headers: {}
|
|
826
|
+
content:
|
|
827
|
+
application/xml:
|
|
828
|
+
schema:
|
|
829
|
+
allOf:
|
|
830
|
+
- $ref: '#/components/schemas/PersistencyOpenCmPersistencyServiceSOAPDeleteManagedObjectsResponse'
|
|
831
|
+
- xml:
|
|
832
|
+
name: PersistencyOpenCmPersistencyServiceSOAPDeleteManagedObjectsResponse
|
|
833
|
+
attribute: false
|
|
834
|
+
wrapped: false
|
|
835
|
+
deprecated: false
|
|
836
|
+
/persistency/OpenCmPersistencyServiceSOAP/getMOLites:
|
|
837
|
+
post:
|
|
838
|
+
tags:
|
|
839
|
+
- OpenCmPersistencyPortBinding
|
|
840
|
+
summary: getOpenCmMOLites
|
|
841
|
+
description: SOAP Call. XML Input. Returns the requested MOLites from Configuration.
|
|
842
|
+
operationId: getOpenCmMOLites
|
|
843
|
+
parameters:
|
|
844
|
+
- name: Content-Type
|
|
845
|
+
in: header
|
|
846
|
+
description: ''
|
|
847
|
+
required: true
|
|
848
|
+
style: simple
|
|
849
|
+
schema:
|
|
850
|
+
enum:
|
|
851
|
+
- application/xml
|
|
852
|
+
type: string
|
|
853
|
+
requestBody:
|
|
854
|
+
description: ''
|
|
855
|
+
content:
|
|
856
|
+
application/xml:
|
|
857
|
+
schema:
|
|
858
|
+
allOf:
|
|
859
|
+
- $ref: '#/components/schemas/getManagedObjectsRequest'
|
|
860
|
+
- xml:
|
|
861
|
+
name: getManagedObjectsRequest
|
|
862
|
+
attribute: false
|
|
863
|
+
wrapped: false
|
|
864
|
+
required: true
|
|
865
|
+
responses:
|
|
866
|
+
'200':
|
|
867
|
+
description: Successfully retrieved the response
|
|
868
|
+
headers: {}
|
|
869
|
+
content:
|
|
870
|
+
application/xml:
|
|
871
|
+
schema:
|
|
872
|
+
allOf:
|
|
873
|
+
- $ref: '#/components/schemas/PersistencyOpenCmPersistencyServiceSOAPGetMOLitesResponse'
|
|
874
|
+
- xml:
|
|
875
|
+
name: PersistencyOpenCmPersistencyServiceSOAPGetMOLitesResponse
|
|
876
|
+
attribute: false
|
|
877
|
+
wrapped: false
|
|
878
|
+
deprecated: false
|
|
879
|
+
/persistency/OpenCmPersistencyServiceSOAP/getRelatedMOLites:
|
|
880
|
+
post:
|
|
881
|
+
tags:
|
|
882
|
+
- OpenCmPersistencyPortBinding
|
|
883
|
+
summary: getOpenCmRelatedMOLites
|
|
884
|
+
description: SOAP Call. XML Input. Returns the requested related MOLites from Configuration.
|
|
885
|
+
operationId: getOpenCmRelatedMOLites
|
|
886
|
+
parameters:
|
|
887
|
+
- name: Content-Type
|
|
888
|
+
in: header
|
|
889
|
+
description: ''
|
|
890
|
+
required: true
|
|
891
|
+
style: simple
|
|
892
|
+
schema:
|
|
893
|
+
enum:
|
|
894
|
+
- application/xml
|
|
895
|
+
type: string
|
|
896
|
+
requestBody:
|
|
897
|
+
description: ''
|
|
898
|
+
content:
|
|
899
|
+
application/xml:
|
|
900
|
+
schema:
|
|
901
|
+
allOf:
|
|
902
|
+
- $ref: '#/components/schemas/getManagedObjectsRequest'
|
|
903
|
+
- xml:
|
|
904
|
+
name: getManagedObjectsRequest
|
|
905
|
+
attribute: false
|
|
906
|
+
wrapped: false
|
|
907
|
+
required: true
|
|
908
|
+
responses:
|
|
909
|
+
'200':
|
|
910
|
+
description: Successfully retrieved the response
|
|
911
|
+
headers: {}
|
|
912
|
+
content:
|
|
913
|
+
application/xml:
|
|
914
|
+
schema:
|
|
915
|
+
allOf:
|
|
916
|
+
- $ref: '#/components/schemas/PersistencyOpenCmPersistencyServiceSOAPGetRelatedMOLitesResponse'
|
|
917
|
+
- xml:
|
|
918
|
+
name: PersistencyOpenCmPersistencyServiceSOAPGetRelatedMOLitesResponse
|
|
919
|
+
attribute: false
|
|
920
|
+
wrapped: false
|
|
921
|
+
deprecated: false
|
|
922
|
+
/persistency/OpenCmPersistencyServiceSOAP/queryMOLites:
|
|
923
|
+
post:
|
|
924
|
+
tags:
|
|
925
|
+
- OpenCmPersistencyPortBinding
|
|
926
|
+
summary: queryOpenCmMOLites
|
|
927
|
+
description: SOAP Call. XML Input. Returns MOLites calculated by the requested query.
|
|
928
|
+
operationId: queryOpenCmMOLites
|
|
929
|
+
parameters:
|
|
930
|
+
- name: Content-Type
|
|
931
|
+
in: header
|
|
932
|
+
description: ''
|
|
933
|
+
required: true
|
|
934
|
+
style: simple
|
|
935
|
+
schema:
|
|
936
|
+
enum:
|
|
937
|
+
- application/xml
|
|
938
|
+
type: string
|
|
939
|
+
requestBody:
|
|
940
|
+
description: ''
|
|
941
|
+
content:
|
|
942
|
+
application/xml:
|
|
943
|
+
schema:
|
|
944
|
+
allOf:
|
|
945
|
+
- $ref: '#/components/schemas/getManagedObjectsRequest'
|
|
946
|
+
- xml:
|
|
947
|
+
name: getManagedObjectsRequest
|
|
948
|
+
attribute: false
|
|
949
|
+
wrapped: false
|
|
950
|
+
required: true
|
|
951
|
+
responses:
|
|
952
|
+
'200':
|
|
953
|
+
description: Successfully retrieved the response
|
|
954
|
+
headers: {}
|
|
955
|
+
content:
|
|
956
|
+
application/xml:
|
|
957
|
+
schema:
|
|
958
|
+
allOf:
|
|
959
|
+
- $ref: '#/components/schemas/PersistencyOpenCmPersistencyServiceSOAPQueryMOLitesResponse'
|
|
960
|
+
- xml:
|
|
961
|
+
name: PersistencyOpenCmPersistencyServiceSOAPQueryMOLitesResponse
|
|
962
|
+
attribute: false
|
|
963
|
+
wrapped: false
|
|
964
|
+
deprecated: false
|
|
965
|
+
/persistency/OpenCmPersistencyServiceSOAP/getMetadata:
|
|
966
|
+
post:
|
|
967
|
+
tags:
|
|
968
|
+
- OpenCmPersistencyPortBinding
|
|
969
|
+
summary: getPersistencyMetadata
|
|
970
|
+
description: SOAP Call. XML Input. Returns metadata definitions.
|
|
971
|
+
operationId: getPersistencyMetadata
|
|
972
|
+
parameters:
|
|
973
|
+
- name: Content-Type
|
|
974
|
+
in: header
|
|
975
|
+
description: ''
|
|
976
|
+
required: true
|
|
977
|
+
style: simple
|
|
978
|
+
schema:
|
|
979
|
+
enum:
|
|
980
|
+
- application/xml
|
|
981
|
+
type: string
|
|
982
|
+
requestBody:
|
|
983
|
+
description: ''
|
|
984
|
+
content:
|
|
985
|
+
application/xml:
|
|
986
|
+
schema:
|
|
987
|
+
allOf:
|
|
988
|
+
- $ref: '#/components/schemas/getManagedObjectsRequest'
|
|
989
|
+
- xml:
|
|
990
|
+
name: getManagedObjectsRequest
|
|
991
|
+
attribute: false
|
|
992
|
+
wrapped: false
|
|
993
|
+
required: true
|
|
994
|
+
responses:
|
|
995
|
+
'200':
|
|
996
|
+
description: Successfully retrieved the response
|
|
997
|
+
headers: {}
|
|
998
|
+
content:
|
|
999
|
+
application/xml:
|
|
1000
|
+
schema:
|
|
1001
|
+
allOf:
|
|
1002
|
+
- $ref: '#/components/schemas/PersistencyOpenCmPersistencyServiceSOAPGetMetadataResponse'
|
|
1003
|
+
- xml:
|
|
1004
|
+
name: PersistencyOpenCmPersistencyServiceSOAPGetMetadataResponse
|
|
1005
|
+
attribute: false
|
|
1006
|
+
wrapped: false
|
|
1007
|
+
deprecated: false
|
|
1008
|
+
/persistency/OpenCmPersistencyServiceSOAP/getConfigurations:
|
|
1009
|
+
post:
|
|
1010
|
+
tags:
|
|
1011
|
+
- OpenCmPersistencyPortBinding
|
|
1012
|
+
summary: getOpenCmConfigurations
|
|
1013
|
+
description: SOAP Call. XML Input. Returns configurations
|
|
1014
|
+
operationId: getOpenCmConfigurations
|
|
1015
|
+
parameters:
|
|
1016
|
+
- name: Content-Type
|
|
1017
|
+
in: header
|
|
1018
|
+
description: ''
|
|
1019
|
+
required: true
|
|
1020
|
+
style: simple
|
|
1021
|
+
schema:
|
|
1022
|
+
enum:
|
|
1023
|
+
- application/xml
|
|
1024
|
+
type: string
|
|
1025
|
+
requestBody:
|
|
1026
|
+
description: ''
|
|
1027
|
+
content:
|
|
1028
|
+
application/xml:
|
|
1029
|
+
schema:
|
|
1030
|
+
allOf:
|
|
1031
|
+
- $ref: '#/components/schemas/getManagedObjectsRequest'
|
|
1032
|
+
- xml:
|
|
1033
|
+
name: getManagedObjectsRequest
|
|
1034
|
+
attribute: false
|
|
1035
|
+
wrapped: false
|
|
1036
|
+
required: true
|
|
1037
|
+
responses:
|
|
1038
|
+
'200':
|
|
1039
|
+
description: Successfully retrieved the response
|
|
1040
|
+
headers: {}
|
|
1041
|
+
content:
|
|
1042
|
+
application/xml:
|
|
1043
|
+
schema:
|
|
1044
|
+
allOf:
|
|
1045
|
+
- $ref: '#/components/schemas/PersistencyOpenCmPersistencyServiceSOAPGetConfigurationsResponse'
|
|
1046
|
+
- xml:
|
|
1047
|
+
name: PersistencyOpenCmPersistencyServiceSOAPGetConfigurationsResponse
|
|
1048
|
+
attribute: false
|
|
1049
|
+
wrapped: false
|
|
1050
|
+
deprecated: false
|
|
1051
|
+
/persistency/OpenCmPersistencyServiceSOAP/createConfiguration:
|
|
1052
|
+
post:
|
|
1053
|
+
tags:
|
|
1054
|
+
- OpenCmPersistencyPortBinding
|
|
1055
|
+
summary: createOpenCmConfiguration
|
|
1056
|
+
description: SOAP Call. XML Input. Creates a new configuration with specified attributes.
|
|
1057
|
+
operationId: createOpenCmConfiguration
|
|
1058
|
+
parameters:
|
|
1059
|
+
- name: Content-Type
|
|
1060
|
+
in: header
|
|
1061
|
+
description: ''
|
|
1062
|
+
required: true
|
|
1063
|
+
style: simple
|
|
1064
|
+
schema:
|
|
1065
|
+
enum:
|
|
1066
|
+
- application/xml
|
|
1067
|
+
type: string
|
|
1068
|
+
requestBody:
|
|
1069
|
+
description: ''
|
|
1070
|
+
content:
|
|
1071
|
+
application/xml:
|
|
1072
|
+
schema:
|
|
1073
|
+
allOf:
|
|
1074
|
+
- $ref: '#/components/schemas/getManagedObjectsRequest'
|
|
1075
|
+
- xml:
|
|
1076
|
+
name: getManagedObjectsRequest
|
|
1077
|
+
attribute: false
|
|
1078
|
+
wrapped: false
|
|
1079
|
+
required: true
|
|
1080
|
+
responses:
|
|
1081
|
+
'200':
|
|
1082
|
+
description: Successfully retrieved the response
|
|
1083
|
+
headers: {}
|
|
1084
|
+
content:
|
|
1085
|
+
application/xml:
|
|
1086
|
+
schema:
|
|
1087
|
+
allOf:
|
|
1088
|
+
- $ref: '#/components/schemas/PersistencyOpenCmPersistencyServiceSOAPCreateConfigurationResponse'
|
|
1089
|
+
- xml:
|
|
1090
|
+
name: PersistencyOpenCmPersistencyServiceSOAPCreateConfigurationResponse
|
|
1091
|
+
attribute: false
|
|
1092
|
+
wrapped: false
|
|
1093
|
+
deprecated: false
|
|
1094
|
+
/persistency/OpenCmPersistencyServiceSOAP/updateConfiguration:
|
|
1095
|
+
post:
|
|
1096
|
+
tags:
|
|
1097
|
+
- OpenCmPersistencyPortBinding
|
|
1098
|
+
summary: updateConfiguration
|
|
1099
|
+
description: SOAP Call. XML Input. Updates modifiable attributes of a configuration.
|
|
1100
|
+
operationId: PostupdateConfiguration
|
|
1101
|
+
parameters:
|
|
1102
|
+
- name: Content-Type
|
|
1103
|
+
in: header
|
|
1104
|
+
description: ''
|
|
1105
|
+
required: true
|
|
1106
|
+
style: simple
|
|
1107
|
+
schema:
|
|
1108
|
+
enum:
|
|
1109
|
+
- application/xml
|
|
1110
|
+
type: string
|
|
1111
|
+
requestBody:
|
|
1112
|
+
description: ''
|
|
1113
|
+
content:
|
|
1114
|
+
application/xml:
|
|
1115
|
+
schema:
|
|
1116
|
+
allOf:
|
|
1117
|
+
- $ref: '#/components/schemas/getManagedObjectsRequest'
|
|
1118
|
+
- xml:
|
|
1119
|
+
name: getManagedObjectsRequest
|
|
1120
|
+
attribute: false
|
|
1121
|
+
wrapped: false
|
|
1122
|
+
required: true
|
|
1123
|
+
responses:
|
|
1124
|
+
'200':
|
|
1125
|
+
description: Successfully retrieved the response
|
|
1126
|
+
headers: {}
|
|
1127
|
+
content:
|
|
1128
|
+
application/xml:
|
|
1129
|
+
schema:
|
|
1130
|
+
allOf:
|
|
1131
|
+
- $ref: '#/components/schemas/PersistencyOpenCmPersistencyServiceSOAPUpdateConfigurationResponse'
|
|
1132
|
+
- xml:
|
|
1133
|
+
name: PersistencyOpenCmPersistencyServiceSOAPUpdateConfigurationResponse
|
|
1134
|
+
attribute: false
|
|
1135
|
+
wrapped: false
|
|
1136
|
+
deprecated: false
|
|
1137
|
+
/persistency/OpenCmPersistencyServiceSOAP/deleteConfiguration:
|
|
1138
|
+
post:
|
|
1139
|
+
tags:
|
|
1140
|
+
- OpenCmPersistencyPortBinding
|
|
1141
|
+
summary: deleteOpenCmConfiguration
|
|
1142
|
+
description: SOAP Call. XML Input. Deletes existing configuration and all of its content.
|
|
1143
|
+
operationId: deleteOpenCmConfiguration
|
|
1144
|
+
parameters:
|
|
1145
|
+
- name: Content-Type
|
|
1146
|
+
in: header
|
|
1147
|
+
description: ''
|
|
1148
|
+
required: true
|
|
1149
|
+
style: simple
|
|
1150
|
+
schema:
|
|
1151
|
+
enum:
|
|
1152
|
+
- application/xml
|
|
1153
|
+
type: string
|
|
1154
|
+
requestBody:
|
|
1155
|
+
description: ''
|
|
1156
|
+
content:
|
|
1157
|
+
application/xml:
|
|
1158
|
+
schema:
|
|
1159
|
+
allOf:
|
|
1160
|
+
- $ref: '#/components/schemas/getManagedObjectsRequest'
|
|
1161
|
+
- xml:
|
|
1162
|
+
name: getManagedObjectsRequest
|
|
1163
|
+
attribute: false
|
|
1164
|
+
wrapped: false
|
|
1165
|
+
required: true
|
|
1166
|
+
responses:
|
|
1167
|
+
'200':
|
|
1168
|
+
description: Successfully retrieved the response
|
|
1169
|
+
headers: {}
|
|
1170
|
+
content:
|
|
1171
|
+
application/xml:
|
|
1172
|
+
schema:
|
|
1173
|
+
allOf:
|
|
1174
|
+
- $ref: '#/components/schemas/PersistencyOpenCmPersistencyServiceSOAPDeleteConfigurationResponse'
|
|
1175
|
+
- xml:
|
|
1176
|
+
name: PersistencyOpenCmPersistencyServiceSOAPDeleteConfigurationResponse
|
|
1177
|
+
attribute: false
|
|
1178
|
+
wrapped: false
|
|
1179
|
+
deprecated: false
|
|
1180
|
+
/operations/OpenCmOperationsServiceSOAP/getMetadata:
|
|
1181
|
+
post:
|
|
1182
|
+
tags:
|
|
1183
|
+
- OpenCmOperationsPortBinding
|
|
1184
|
+
summary: getOperationsMetadata
|
|
1185
|
+
description: SOAP Call. XML Input. Returns metadata of available operations.
|
|
1186
|
+
operationId: getOperationsMetadata
|
|
1187
|
+
parameters:
|
|
1188
|
+
- name: Content-Type
|
|
1189
|
+
in: header
|
|
1190
|
+
description: ''
|
|
1191
|
+
required: true
|
|
1192
|
+
style: simple
|
|
1193
|
+
schema:
|
|
1194
|
+
enum:
|
|
1195
|
+
- application/xml
|
|
1196
|
+
type: string
|
|
1197
|
+
requestBody:
|
|
1198
|
+
description: ''
|
|
1199
|
+
content:
|
|
1200
|
+
application/xml:
|
|
1201
|
+
schema:
|
|
1202
|
+
allOf:
|
|
1203
|
+
- $ref: '#/components/schemas/getManagedObjectsRequest'
|
|
1204
|
+
- xml:
|
|
1205
|
+
name: getManagedObjectsRequest
|
|
1206
|
+
attribute: false
|
|
1207
|
+
wrapped: false
|
|
1208
|
+
required: true
|
|
1209
|
+
responses:
|
|
1210
|
+
'200':
|
|
1211
|
+
description: Successfully retrieved the response
|
|
1212
|
+
headers: {}
|
|
1213
|
+
content:
|
|
1214
|
+
application/xml:
|
|
1215
|
+
schema:
|
|
1216
|
+
allOf:
|
|
1217
|
+
- $ref: '#/components/schemas/OperationsOpenCmOperationsServiceSOAPGetMetadataResponse'
|
|
1218
|
+
- xml:
|
|
1219
|
+
name: OperationsOpenCmOperationsServiceSOAPGetMetadataResponse
|
|
1220
|
+
attribute: false
|
|
1221
|
+
wrapped: false
|
|
1222
|
+
deprecated: false
|
|
1223
|
+
/operations/OpenCmOperationsServiceSOAP/startOperation:
|
|
1224
|
+
post:
|
|
1225
|
+
tags:
|
|
1226
|
+
- OpenCmOperationsPortBinding
|
|
1227
|
+
summary: startOpenCmOperation
|
|
1228
|
+
description: SOAP Call. XML Input. Issues a request to start an new operation, using the provided attribute bindings.
|
|
1229
|
+
operationId: startOpenCmOperation
|
|
1230
|
+
parameters:
|
|
1231
|
+
- name: Content-Type
|
|
1232
|
+
in: header
|
|
1233
|
+
description: ''
|
|
1234
|
+
required: true
|
|
1235
|
+
style: simple
|
|
1236
|
+
schema:
|
|
1237
|
+
enum:
|
|
1238
|
+
- application/xml
|
|
1239
|
+
type: string
|
|
1240
|
+
requestBody:
|
|
1241
|
+
description: ''
|
|
1242
|
+
content:
|
|
1243
|
+
application/xml:
|
|
1244
|
+
schema:
|
|
1245
|
+
allOf:
|
|
1246
|
+
- $ref: '#/components/schemas/getManagedObjectsRequest'
|
|
1247
|
+
- xml:
|
|
1248
|
+
name: getManagedObjectsRequest
|
|
1249
|
+
attribute: false
|
|
1250
|
+
wrapped: false
|
|
1251
|
+
required: true
|
|
1252
|
+
responses:
|
|
1253
|
+
'200':
|
|
1254
|
+
description: Successfully retrieved the response
|
|
1255
|
+
headers: {}
|
|
1256
|
+
content:
|
|
1257
|
+
application/xml:
|
|
1258
|
+
schema:
|
|
1259
|
+
allOf:
|
|
1260
|
+
- $ref: '#/components/schemas/OperationsOpenCmOperationsServiceSOAPStartOperationResponse'
|
|
1261
|
+
- xml:
|
|
1262
|
+
name: OperationsOpenCmOperationsServiceSOAPStartOperationResponse
|
|
1263
|
+
attribute: false
|
|
1264
|
+
wrapped: false
|
|
1265
|
+
deprecated: false
|
|
1266
|
+
/operations/OpenCmOperationsServiceSOAP/interruptOperation:
|
|
1267
|
+
post:
|
|
1268
|
+
tags:
|
|
1269
|
+
- OpenCmOperationsPortBinding
|
|
1270
|
+
summary: interruptOperationOpenCm
|
|
1271
|
+
description: SOAP Call. XML Input. Issues a request to interrupt an ongoing operation.
|
|
1272
|
+
operationId: interruptOperationOpenCm
|
|
1273
|
+
parameters:
|
|
1274
|
+
- name: Content-Type
|
|
1275
|
+
in: header
|
|
1276
|
+
description: ''
|
|
1277
|
+
required: true
|
|
1278
|
+
style: simple
|
|
1279
|
+
schema:
|
|
1280
|
+
enum:
|
|
1281
|
+
- application/xml
|
|
1282
|
+
type: string
|
|
1283
|
+
requestBody:
|
|
1284
|
+
description: ''
|
|
1285
|
+
content:
|
|
1286
|
+
application/xml:
|
|
1287
|
+
schema:
|
|
1288
|
+
allOf:
|
|
1289
|
+
- $ref: '#/components/schemas/getManagedObjectsRequest'
|
|
1290
|
+
- xml:
|
|
1291
|
+
name: getManagedObjectsRequest
|
|
1292
|
+
attribute: false
|
|
1293
|
+
wrapped: false
|
|
1294
|
+
required: true
|
|
1295
|
+
responses:
|
|
1296
|
+
'200':
|
|
1297
|
+
description: Successfully retrieved the response
|
|
1298
|
+
headers: {}
|
|
1299
|
+
content:
|
|
1300
|
+
application/xml:
|
|
1301
|
+
schema:
|
|
1302
|
+
allOf:
|
|
1303
|
+
- $ref: '#/components/schemas/OperationsOpenCmOperationsServiceSOAPInterruptOperationResponse'
|
|
1304
|
+
- xml:
|
|
1305
|
+
name: OperationsOpenCmOperationsServiceSOAPInterruptOperationResponse
|
|
1306
|
+
attribute: false
|
|
1307
|
+
wrapped: false
|
|
1308
|
+
deprecated: false
|
|
1309
|
+
components:
|
|
1310
|
+
schemas:
|
|
1311
|
+
ConfInfoRequest:
|
|
1312
|
+
title: ConfInfoRequest
|
|
1313
|
+
type: object
|
|
1314
|
+
properties:
|
|
1315
|
+
info:
|
|
1316
|
+
$ref: '#/components/schemas/JaxRsConfigurationHeader'
|
|
1317
|
+
type:
|
|
1318
|
+
$ref: '#/components/schemas/Type'
|
|
1319
|
+
ConfigurationHeaderResponse:
|
|
1320
|
+
title: ConfigurationHeaderResponse
|
|
1321
|
+
type: object
|
|
1322
|
+
properties:
|
|
1323
|
+
info:
|
|
1324
|
+
$ref: '#/components/schemas/JaxRsConfigurationHeader'
|
|
1325
|
+
ConfigurationsResponse:
|
|
1326
|
+
title: ConfigurationsResponse
|
|
1327
|
+
type: object
|
|
1328
|
+
properties:
|
|
1329
|
+
configurations:
|
|
1330
|
+
type: array
|
|
1331
|
+
items:
|
|
1332
|
+
$ref: '#/components/schemas/JaxRsConfigurationHeader'
|
|
1333
|
+
description: ''
|
|
1334
|
+
DescendantMOsRequest:
|
|
1335
|
+
title: DescendantMOsRequest
|
|
1336
|
+
type: object
|
|
1337
|
+
properties:
|
|
1338
|
+
moIds:
|
|
1339
|
+
type: array
|
|
1340
|
+
items:
|
|
1341
|
+
type: string
|
|
1342
|
+
description: ''
|
|
1343
|
+
moClasses:
|
|
1344
|
+
type: array
|
|
1345
|
+
items:
|
|
1346
|
+
$ref: '#/components/schemas/JaxRsMOClassKey'
|
|
1347
|
+
description: ''
|
|
1348
|
+
confId:
|
|
1349
|
+
type: string
|
|
1350
|
+
JaxRsConfigurationHeader:
|
|
1351
|
+
title: JaxRsConfigurationHeader
|
|
1352
|
+
type: object
|
|
1353
|
+
properties:
|
|
1354
|
+
genericAttributes:
|
|
1355
|
+
type: object
|
|
1356
|
+
additionalProperties:
|
|
1357
|
+
type: string
|
|
1358
|
+
description:
|
|
1359
|
+
type: string
|
|
1360
|
+
confId:
|
|
1361
|
+
type: integer
|
|
1362
|
+
format: int64
|
|
1363
|
+
name:
|
|
1364
|
+
type: string
|
|
1365
|
+
JaxRsMOClassDef:
|
|
1366
|
+
title: JaxRsMOClassDef
|
|
1367
|
+
type: object
|
|
1368
|
+
properties:
|
|
1369
|
+
moClass:
|
|
1370
|
+
$ref: '#/components/schemas/JaxRsMOClassDefKey'
|
|
1371
|
+
parameters:
|
|
1372
|
+
type: array
|
|
1373
|
+
items:
|
|
1374
|
+
type: object
|
|
1375
|
+
description: ''
|
|
1376
|
+
JaxRsMOClassDefKey:
|
|
1377
|
+
title: JaxRsMOClassDefKey
|
|
1378
|
+
type: object
|
|
1379
|
+
properties:
|
|
1380
|
+
version:
|
|
1381
|
+
type: string
|
|
1382
|
+
id:
|
|
1383
|
+
type: string
|
|
1384
|
+
JaxRsMOClassKey:
|
|
1385
|
+
title: JaxRsMOClassKey
|
|
1386
|
+
type: object
|
|
1387
|
+
properties:
|
|
1388
|
+
classAbbreviation:
|
|
1389
|
+
type: string
|
|
1390
|
+
adaptationId:
|
|
1391
|
+
type: string
|
|
1392
|
+
JaxRsMOLite:
|
|
1393
|
+
title: JaxRsMOLite
|
|
1394
|
+
type: object
|
|
1395
|
+
properties:
|
|
1396
|
+
moId:
|
|
1397
|
+
type: string
|
|
1398
|
+
moClass:
|
|
1399
|
+
$ref: '#/components/schemas/JaxRsMOClassDefKey'
|
|
1400
|
+
planOperation:
|
|
1401
|
+
$ref: '#/components/schemas/PlanOperation'
|
|
1402
|
+
JaxRsManagedObject:
|
|
1403
|
+
title: JaxRsManagedObject
|
|
1404
|
+
type: object
|
|
1405
|
+
properties:
|
|
1406
|
+
parameters:
|
|
1407
|
+
type: object
|
|
1408
|
+
additionalProperties:
|
|
1409
|
+
type: object
|
|
1410
|
+
moId:
|
|
1411
|
+
type: string
|
|
1412
|
+
moClass:
|
|
1413
|
+
$ref: '#/components/schemas/JaxRsMOClassDefKey'
|
|
1414
|
+
operation:
|
|
1415
|
+
$ref: '#/components/schemas/Operation'
|
|
1416
|
+
customId:
|
|
1417
|
+
type: string
|
|
1418
|
+
MOClassDefsResponse:
|
|
1419
|
+
title: MOClassDefsResponse
|
|
1420
|
+
type: object
|
|
1421
|
+
properties:
|
|
1422
|
+
moClassDefinitions:
|
|
1423
|
+
type: array
|
|
1424
|
+
items:
|
|
1425
|
+
$ref: '#/components/schemas/JaxRsMOClassDef'
|
|
1426
|
+
description: ''
|
|
1427
|
+
MOIdsRequest:
|
|
1428
|
+
title: MOIdsRequest
|
|
1429
|
+
type: object
|
|
1430
|
+
properties:
|
|
1431
|
+
moIds:
|
|
1432
|
+
type: array
|
|
1433
|
+
items:
|
|
1434
|
+
type: string
|
|
1435
|
+
description: ''
|
|
1436
|
+
confId:
|
|
1437
|
+
type: string
|
|
1438
|
+
MOLitesResponse:
|
|
1439
|
+
title: MOLitesResponse
|
|
1440
|
+
type: object
|
|
1441
|
+
properties:
|
|
1442
|
+
moLites:
|
|
1443
|
+
type: array
|
|
1444
|
+
items:
|
|
1445
|
+
$ref: '#/components/schemas/JaxRsMOLite'
|
|
1446
|
+
description: ''
|
|
1447
|
+
readOnly: true
|
|
1448
|
+
ManagedObjectsRequest:
|
|
1449
|
+
title: ManagedObjectsRequest
|
|
1450
|
+
type: object
|
|
1451
|
+
properties:
|
|
1452
|
+
confId:
|
|
1453
|
+
type: string
|
|
1454
|
+
managedObjects:
|
|
1455
|
+
type: array
|
|
1456
|
+
items:
|
|
1457
|
+
$ref: '#/components/schemas/JaxRsManagedObject'
|
|
1458
|
+
description: ''
|
|
1459
|
+
ManagedObjectsResponse:
|
|
1460
|
+
title: ManagedObjectsResponse
|
|
1461
|
+
type: object
|
|
1462
|
+
properties:
|
|
1463
|
+
managedObjects:
|
|
1464
|
+
type: array
|
|
1465
|
+
items:
|
|
1466
|
+
$ref: '#/components/schemas/JaxRsManagedObject'
|
|
1467
|
+
description: ''
|
|
1468
|
+
MetaAdaptationsResponse:
|
|
1469
|
+
title: MetaAdaptationsResponse
|
|
1470
|
+
type: object
|
|
1471
|
+
properties:
|
|
1472
|
+
adaptations:
|
|
1473
|
+
type: object
|
|
1474
|
+
additionalProperties: {}
|
|
1475
|
+
MetaClassesResponse:
|
|
1476
|
+
title: MetaClassesResponse
|
|
1477
|
+
type: object
|
|
1478
|
+
properties:
|
|
1479
|
+
classes:
|
|
1480
|
+
type: object
|
|
1481
|
+
additionalProperties: {}
|
|
1482
|
+
MetaParametersRequest:
|
|
1483
|
+
title: MetaParametersRequest
|
|
1484
|
+
type: object
|
|
1485
|
+
properties:
|
|
1486
|
+
moClasses:
|
|
1487
|
+
type: array
|
|
1488
|
+
items:
|
|
1489
|
+
$ref: '#/components/schemas/JaxRsMOClassDefKey'
|
|
1490
|
+
description: ''
|
|
1491
|
+
fragments:
|
|
1492
|
+
type: array
|
|
1493
|
+
items:
|
|
1494
|
+
type: string
|
|
1495
|
+
description: ''
|
|
1496
|
+
QueryMOsRequest:
|
|
1497
|
+
title: QueryMOsRequest
|
|
1498
|
+
type: object
|
|
1499
|
+
properties:
|
|
1500
|
+
confId:
|
|
1501
|
+
type: string
|
|
1502
|
+
moPath:
|
|
1503
|
+
type: string
|
|
1504
|
+
variables:
|
|
1505
|
+
type: object
|
|
1506
|
+
additionalProperties:
|
|
1507
|
+
type: object
|
|
1508
|
+
QueryRequest:
|
|
1509
|
+
title: QueryRequest
|
|
1510
|
+
type: object
|
|
1511
|
+
properties:
|
|
1512
|
+
confId:
|
|
1513
|
+
type: string
|
|
1514
|
+
moPath:
|
|
1515
|
+
type: string
|
|
1516
|
+
variables:
|
|
1517
|
+
type: object
|
|
1518
|
+
additionalProperties:
|
|
1519
|
+
type: object
|
|
1520
|
+
expressions:
|
|
1521
|
+
type: array
|
|
1522
|
+
items:
|
|
1523
|
+
type: string
|
|
1524
|
+
description: ''
|
|
1525
|
+
RelatedMOLitesResponse:
|
|
1526
|
+
title: RelatedMOLitesResponse
|
|
1527
|
+
type: object
|
|
1528
|
+
properties:
|
|
1529
|
+
moLites:
|
|
1530
|
+
type: object
|
|
1531
|
+
additionalProperties:
|
|
1532
|
+
type: object
|
|
1533
|
+
RelatedMOsRequest:
|
|
1534
|
+
title: RelatedMOsRequest
|
|
1535
|
+
type: object
|
|
1536
|
+
properties:
|
|
1537
|
+
moIds:
|
|
1538
|
+
type: array
|
|
1539
|
+
items:
|
|
1540
|
+
type: string
|
|
1541
|
+
description: ''
|
|
1542
|
+
confId:
|
|
1543
|
+
type: string
|
|
1544
|
+
relationshipId:
|
|
1545
|
+
type: string
|
|
1546
|
+
AttributeDefinition:
|
|
1547
|
+
title: AttributeDefinition
|
|
1548
|
+
type: object
|
|
1549
|
+
properties:
|
|
1550
|
+
description:
|
|
1551
|
+
type: string
|
|
1552
|
+
type:
|
|
1553
|
+
$ref: '#/components/schemas/Type1'
|
|
1554
|
+
name:
|
|
1555
|
+
type: string
|
|
1556
|
+
Daily:
|
|
1557
|
+
title: Daily
|
|
1558
|
+
type: object
|
|
1559
|
+
properties:
|
|
1560
|
+
timeOfDay:
|
|
1561
|
+
type: string
|
|
1562
|
+
format: date-time
|
|
1563
|
+
start:
|
|
1564
|
+
type: string
|
|
1565
|
+
format: date-time
|
|
1566
|
+
end:
|
|
1567
|
+
type: string
|
|
1568
|
+
format: date-time
|
|
1569
|
+
Duration:
|
|
1570
|
+
title: Duration
|
|
1571
|
+
type: object
|
|
1572
|
+
properties:
|
|
1573
|
+
hours:
|
|
1574
|
+
type: integer
|
|
1575
|
+
format: int32
|
|
1576
|
+
minutes:
|
|
1577
|
+
type: integer
|
|
1578
|
+
format: int32
|
|
1579
|
+
seconds:
|
|
1580
|
+
type: integer
|
|
1581
|
+
format: int32
|
|
1582
|
+
days:
|
|
1583
|
+
type: integer
|
|
1584
|
+
format: int32
|
|
1585
|
+
months:
|
|
1586
|
+
type: integer
|
|
1587
|
+
format: int32
|
|
1588
|
+
years:
|
|
1589
|
+
type: integer
|
|
1590
|
+
format: int32
|
|
1591
|
+
sign:
|
|
1592
|
+
type: integer
|
|
1593
|
+
format: int32
|
|
1594
|
+
xmlschemaType:
|
|
1595
|
+
$ref: '#/components/schemas/QName'
|
|
1596
|
+
Feedback:
|
|
1597
|
+
title: Feedback
|
|
1598
|
+
type: object
|
|
1599
|
+
properties:
|
|
1600
|
+
details:
|
|
1601
|
+
type: string
|
|
1602
|
+
operationAlias:
|
|
1603
|
+
type: string
|
|
1604
|
+
title:
|
|
1605
|
+
type: string
|
|
1606
|
+
type:
|
|
1607
|
+
$ref: '#/components/schemas/Type2'
|
|
1608
|
+
timestamp:
|
|
1609
|
+
type: string
|
|
1610
|
+
moId:
|
|
1611
|
+
type: string
|
|
1612
|
+
operationId:
|
|
1613
|
+
type: string
|
|
1614
|
+
Feedbacks:
|
|
1615
|
+
title: Feedbacks
|
|
1616
|
+
type: object
|
|
1617
|
+
properties:
|
|
1618
|
+
feedbacks:
|
|
1619
|
+
type: array
|
|
1620
|
+
items:
|
|
1621
|
+
$ref: '#/components/schemas/Feedback'
|
|
1622
|
+
description: ''
|
|
1623
|
+
nextPageLink:
|
|
1624
|
+
type: string
|
|
1625
|
+
Interval:
|
|
1626
|
+
title: Interval
|
|
1627
|
+
type: object
|
|
1628
|
+
properties:
|
|
1629
|
+
duration:
|
|
1630
|
+
$ref: '#/components/schemas/Duration'
|
|
1631
|
+
timeOfDay:
|
|
1632
|
+
type: string
|
|
1633
|
+
format: date-time
|
|
1634
|
+
start:
|
|
1635
|
+
type: string
|
|
1636
|
+
format: date-time
|
|
1637
|
+
end:
|
|
1638
|
+
type: string
|
|
1639
|
+
format: date-time
|
|
1640
|
+
Monthly:
|
|
1641
|
+
title: Monthly
|
|
1642
|
+
type: object
|
|
1643
|
+
properties:
|
|
1644
|
+
dayOfMonth:
|
|
1645
|
+
type: integer
|
|
1646
|
+
format: int32
|
|
1647
|
+
timeOfDay:
|
|
1648
|
+
type: string
|
|
1649
|
+
format: date-time
|
|
1650
|
+
start:
|
|
1651
|
+
type: string
|
|
1652
|
+
format: date-time
|
|
1653
|
+
end:
|
|
1654
|
+
type: string
|
|
1655
|
+
format: date-time
|
|
1656
|
+
OperationAttribute:
|
|
1657
|
+
title: OperationAttribute
|
|
1658
|
+
type: object
|
|
1659
|
+
properties:
|
|
1660
|
+
operationAttributes:
|
|
1661
|
+
type: object
|
|
1662
|
+
additionalProperties:
|
|
1663
|
+
type: string
|
|
1664
|
+
operationId:
|
|
1665
|
+
type: string
|
|
1666
|
+
OperationAttributes:
|
|
1667
|
+
title: OperationAttributes
|
|
1668
|
+
type: object
|
|
1669
|
+
properties:
|
|
1670
|
+
operationAttributes:
|
|
1671
|
+
type: array
|
|
1672
|
+
items:
|
|
1673
|
+
$ref: '#/components/schemas/OperationAttribute'
|
|
1674
|
+
description: ''
|
|
1675
|
+
OperationDefinition:
|
|
1676
|
+
title: OperationDefinition
|
|
1677
|
+
type: object
|
|
1678
|
+
properties:
|
|
1679
|
+
attributeDefs:
|
|
1680
|
+
type: array
|
|
1681
|
+
items:
|
|
1682
|
+
$ref: '#/components/schemas/AttributeDefinition'
|
|
1683
|
+
description: ''
|
|
1684
|
+
description:
|
|
1685
|
+
type: string
|
|
1686
|
+
name:
|
|
1687
|
+
type: string
|
|
1688
|
+
OperationDefinitions:
|
|
1689
|
+
title: OperationDefinitions
|
|
1690
|
+
type: object
|
|
1691
|
+
properties:
|
|
1692
|
+
operationDefs:
|
|
1693
|
+
type: array
|
|
1694
|
+
items:
|
|
1695
|
+
$ref: '#/components/schemas/OperationDefinition'
|
|
1696
|
+
description: ''
|
|
1697
|
+
OperationExecution:
|
|
1698
|
+
title: OperationExecution
|
|
1699
|
+
type: object
|
|
1700
|
+
properties:
|
|
1701
|
+
endTime:
|
|
1702
|
+
type: string
|
|
1703
|
+
operationName:
|
|
1704
|
+
type: string
|
|
1705
|
+
startTime:
|
|
1706
|
+
type: string
|
|
1707
|
+
status:
|
|
1708
|
+
$ref: '#/components/schemas/Status2'
|
|
1709
|
+
userName:
|
|
1710
|
+
type: string
|
|
1711
|
+
operationId:
|
|
1712
|
+
type: string
|
|
1713
|
+
OperationExecutions:
|
|
1714
|
+
title: OperationExecutions
|
|
1715
|
+
type: object
|
|
1716
|
+
properties:
|
|
1717
|
+
operationExecutions:
|
|
1718
|
+
type: array
|
|
1719
|
+
items:
|
|
1720
|
+
$ref: '#/components/schemas/OperationExecution'
|
|
1721
|
+
description: ''
|
|
1722
|
+
OperationId:
|
|
1723
|
+
title: OperationId
|
|
1724
|
+
type: object
|
|
1725
|
+
properties:
|
|
1726
|
+
operationId:
|
|
1727
|
+
type: string
|
|
1728
|
+
QName:
|
|
1729
|
+
title: QName
|
|
1730
|
+
type: object
|
|
1731
|
+
properties:
|
|
1732
|
+
namespaceURI:
|
|
1733
|
+
type: string
|
|
1734
|
+
localPart:
|
|
1735
|
+
type: string
|
|
1736
|
+
prefix:
|
|
1737
|
+
type: string
|
|
1738
|
+
Schedule:
|
|
1739
|
+
title: Schedule
|
|
1740
|
+
type: object
|
|
1741
|
+
properties:
|
|
1742
|
+
interval:
|
|
1743
|
+
$ref: '#/components/schemas/Interval'
|
|
1744
|
+
singleExecution:
|
|
1745
|
+
$ref: '#/components/schemas/SingleExecution'
|
|
1746
|
+
monthly:
|
|
1747
|
+
$ref: '#/components/schemas/Monthly'
|
|
1748
|
+
daily:
|
|
1749
|
+
$ref: '#/components/schemas/Daily'
|
|
1750
|
+
weekly:
|
|
1751
|
+
$ref: '#/components/schemas/Weekly'
|
|
1752
|
+
SingleExecution:
|
|
1753
|
+
title: SingleExecution
|
|
1754
|
+
type: object
|
|
1755
|
+
properties:
|
|
1756
|
+
dateTime:
|
|
1757
|
+
type: string
|
|
1758
|
+
format: date-time
|
|
1759
|
+
StartOperation:
|
|
1760
|
+
title: StartOperation
|
|
1761
|
+
type: object
|
|
1762
|
+
properties:
|
|
1763
|
+
operationAlias:
|
|
1764
|
+
type: string
|
|
1765
|
+
operationName:
|
|
1766
|
+
type: string
|
|
1767
|
+
notificationUrl:
|
|
1768
|
+
type: string
|
|
1769
|
+
schedule:
|
|
1770
|
+
$ref: '#/components/schemas/Schedule'
|
|
1771
|
+
operationAttributes:
|
|
1772
|
+
type: object
|
|
1773
|
+
additionalProperties:
|
|
1774
|
+
type: string
|
|
1775
|
+
Status:
|
|
1776
|
+
title: Status
|
|
1777
|
+
type: object
|
|
1778
|
+
properties:
|
|
1779
|
+
operationAlias:
|
|
1780
|
+
type: string
|
|
1781
|
+
timestamp:
|
|
1782
|
+
type: string
|
|
1783
|
+
status:
|
|
1784
|
+
$ref: '#/components/schemas/Status2'
|
|
1785
|
+
operationId:
|
|
1786
|
+
type: string
|
|
1787
|
+
Statuses:
|
|
1788
|
+
title: Statuses
|
|
1789
|
+
type: object
|
|
1790
|
+
properties:
|
|
1791
|
+
statuses:
|
|
1792
|
+
type: array
|
|
1793
|
+
items:
|
|
1794
|
+
$ref: '#/components/schemas/Status'
|
|
1795
|
+
description: ''
|
|
1796
|
+
Weekly:
|
|
1797
|
+
title: Weekly
|
|
1798
|
+
type: object
|
|
1799
|
+
properties:
|
|
1800
|
+
weekdays:
|
|
1801
|
+
type: array
|
|
1802
|
+
items:
|
|
1803
|
+
$ref: '#/components/schemas/Weekday'
|
|
1804
|
+
description: ''
|
|
1805
|
+
timeOfDay:
|
|
1806
|
+
type: string
|
|
1807
|
+
format: date-time
|
|
1808
|
+
start:
|
|
1809
|
+
type: string
|
|
1810
|
+
format: date-time
|
|
1811
|
+
end:
|
|
1812
|
+
type: string
|
|
1813
|
+
format: date-time
|
|
1814
|
+
getManagedObjectsResponse:
|
|
1815
|
+
title: getManagedObjectsResponse
|
|
1816
|
+
required:
|
|
1817
|
+
- parameters
|
|
1818
|
+
type: object
|
|
1819
|
+
properties:
|
|
1820
|
+
parameters:
|
|
1821
|
+
type: string
|
|
1822
|
+
xml:
|
|
1823
|
+
name: parameters
|
|
1824
|
+
attribute: false
|
|
1825
|
+
wrapped: false
|
|
1826
|
+
xml:
|
|
1827
|
+
name: getManagedObjectsResponse
|
|
1828
|
+
attribute: false
|
|
1829
|
+
wrapped: false
|
|
1830
|
+
createManagedObjectsResponse:
|
|
1831
|
+
title: createManagedObjectsResponse
|
|
1832
|
+
required:
|
|
1833
|
+
- parameters
|
|
1834
|
+
type: object
|
|
1835
|
+
properties:
|
|
1836
|
+
parameters:
|
|
1837
|
+
type: string
|
|
1838
|
+
xml:
|
|
1839
|
+
name: parameters
|
|
1840
|
+
attribute: false
|
|
1841
|
+
wrapped: false
|
|
1842
|
+
xml:
|
|
1843
|
+
name: createManagedObjectsResponse
|
|
1844
|
+
attribute: false
|
|
1845
|
+
wrapped: false
|
|
1846
|
+
updateManagedObjectsResponse:
|
|
1847
|
+
title: updateManagedObjectsResponse
|
|
1848
|
+
required:
|
|
1849
|
+
- parameters
|
|
1850
|
+
type: object
|
|
1851
|
+
properties:
|
|
1852
|
+
parameters:
|
|
1853
|
+
type: string
|
|
1854
|
+
xml:
|
|
1855
|
+
name: parameters
|
|
1856
|
+
attribute: false
|
|
1857
|
+
wrapped: false
|
|
1858
|
+
xml:
|
|
1859
|
+
name: updateManagedObjectsResponse
|
|
1860
|
+
attribute: false
|
|
1861
|
+
wrapped: false
|
|
1862
|
+
deleteManagedObjectsResponse:
|
|
1863
|
+
title: deleteManagedObjectsResponse
|
|
1864
|
+
required:
|
|
1865
|
+
- parameters
|
|
1866
|
+
type: object
|
|
1867
|
+
properties:
|
|
1868
|
+
parameters:
|
|
1869
|
+
type: string
|
|
1870
|
+
xml:
|
|
1871
|
+
name: parameters
|
|
1872
|
+
attribute: false
|
|
1873
|
+
wrapped: false
|
|
1874
|
+
xml:
|
|
1875
|
+
name: deleteManagedObjectsResponse
|
|
1876
|
+
attribute: false
|
|
1877
|
+
wrapped: false
|
|
1878
|
+
getMOLitesResponse:
|
|
1879
|
+
title: getMOLitesResponse
|
|
1880
|
+
required:
|
|
1881
|
+
- parameters
|
|
1882
|
+
type: object
|
|
1883
|
+
properties:
|
|
1884
|
+
parameters:
|
|
1885
|
+
type: string
|
|
1886
|
+
xml:
|
|
1887
|
+
name: parameters
|
|
1888
|
+
attribute: false
|
|
1889
|
+
wrapped: false
|
|
1890
|
+
xml:
|
|
1891
|
+
name: getMOLitesResponse
|
|
1892
|
+
attribute: false
|
|
1893
|
+
wrapped: false
|
|
1894
|
+
getRelatedMOLitesResponse:
|
|
1895
|
+
title: getRelatedMOLitesResponse
|
|
1896
|
+
required:
|
|
1897
|
+
- parameters
|
|
1898
|
+
type: object
|
|
1899
|
+
properties:
|
|
1900
|
+
parameters:
|
|
1901
|
+
type: string
|
|
1902
|
+
xml:
|
|
1903
|
+
name: parameters
|
|
1904
|
+
attribute: false
|
|
1905
|
+
wrapped: false
|
|
1906
|
+
xml:
|
|
1907
|
+
name: getRelatedMOLitesResponse
|
|
1908
|
+
attribute: false
|
|
1909
|
+
wrapped: false
|
|
1910
|
+
queryMOLitesResponse:
|
|
1911
|
+
title: queryMOLitesResponse
|
|
1912
|
+
required:
|
|
1913
|
+
- parameters
|
|
1914
|
+
type: object
|
|
1915
|
+
properties:
|
|
1916
|
+
parameters:
|
|
1917
|
+
type: string
|
|
1918
|
+
xml:
|
|
1919
|
+
name: parameters
|
|
1920
|
+
attribute: false
|
|
1921
|
+
wrapped: false
|
|
1922
|
+
xml:
|
|
1923
|
+
name: queryMOLitesResponse
|
|
1924
|
+
attribute: false
|
|
1925
|
+
wrapped: false
|
|
1926
|
+
getMetadataResponse:
|
|
1927
|
+
title: getMetadataResponse
|
|
1928
|
+
required:
|
|
1929
|
+
- parameters
|
|
1930
|
+
type: object
|
|
1931
|
+
properties:
|
|
1932
|
+
parameters:
|
|
1933
|
+
type: string
|
|
1934
|
+
xml:
|
|
1935
|
+
name: parameters
|
|
1936
|
+
attribute: false
|
|
1937
|
+
wrapped: false
|
|
1938
|
+
xml:
|
|
1939
|
+
name: getMetadataResponse
|
|
1940
|
+
attribute: false
|
|
1941
|
+
wrapped: false
|
|
1942
|
+
getConfigurationsResponse:
|
|
1943
|
+
title: getConfigurationsResponse
|
|
1944
|
+
required:
|
|
1945
|
+
- parameters
|
|
1946
|
+
type: object
|
|
1947
|
+
properties:
|
|
1948
|
+
parameters:
|
|
1949
|
+
type: string
|
|
1950
|
+
xml:
|
|
1951
|
+
name: parameters
|
|
1952
|
+
attribute: false
|
|
1953
|
+
wrapped: false
|
|
1954
|
+
xml:
|
|
1955
|
+
name: getConfigurationsResponse
|
|
1956
|
+
attribute: false
|
|
1957
|
+
wrapped: false
|
|
1958
|
+
createConfigurationResponse:
|
|
1959
|
+
title: createConfigurationResponse
|
|
1960
|
+
required:
|
|
1961
|
+
- parameters
|
|
1962
|
+
type: object
|
|
1963
|
+
properties:
|
|
1964
|
+
parameters:
|
|
1965
|
+
type: string
|
|
1966
|
+
xml:
|
|
1967
|
+
name: parameters
|
|
1968
|
+
attribute: false
|
|
1969
|
+
wrapped: false
|
|
1970
|
+
xml:
|
|
1971
|
+
name: createConfigurationResponse
|
|
1972
|
+
attribute: false
|
|
1973
|
+
wrapped: false
|
|
1974
|
+
updateConfigurationResponse:
|
|
1975
|
+
title: updateConfigurationResponse
|
|
1976
|
+
required:
|
|
1977
|
+
- parameters
|
|
1978
|
+
type: object
|
|
1979
|
+
properties:
|
|
1980
|
+
parameters:
|
|
1981
|
+
type: string
|
|
1982
|
+
xml:
|
|
1983
|
+
name: parameters
|
|
1984
|
+
attribute: false
|
|
1985
|
+
wrapped: false
|
|
1986
|
+
xml:
|
|
1987
|
+
name: updateConfigurationResponse
|
|
1988
|
+
attribute: false
|
|
1989
|
+
wrapped: false
|
|
1990
|
+
deleteConfigurationResponse:
|
|
1991
|
+
title: deleteConfigurationResponse
|
|
1992
|
+
required:
|
|
1993
|
+
- parameters
|
|
1994
|
+
type: object
|
|
1995
|
+
properties:
|
|
1996
|
+
parameters:
|
|
1997
|
+
type: string
|
|
1998
|
+
xml:
|
|
1999
|
+
name: parameters
|
|
2000
|
+
attribute: false
|
|
2001
|
+
wrapped: false
|
|
2002
|
+
xml:
|
|
2003
|
+
name: deleteConfigurationResponse
|
|
2004
|
+
attribute: false
|
|
2005
|
+
wrapped: false
|
|
2006
|
+
getManagedObjectsRequest:
|
|
2007
|
+
title: getManagedObjectsRequest
|
|
2008
|
+
required:
|
|
2009
|
+
- parameters
|
|
2010
|
+
type: object
|
|
2011
|
+
properties:
|
|
2012
|
+
parameters:
|
|
2013
|
+
type: string
|
|
2014
|
+
createManagedObjectsRequest:
|
|
2015
|
+
title: createManagedObjectsRequest
|
|
2016
|
+
required:
|
|
2017
|
+
- parameters
|
|
2018
|
+
type: object
|
|
2019
|
+
properties:
|
|
2020
|
+
parameters:
|
|
2021
|
+
type: string
|
|
2022
|
+
updateManagedObjectsRequest:
|
|
2023
|
+
title: updateManagedObjectsRequest
|
|
2024
|
+
required:
|
|
2025
|
+
- parameters
|
|
2026
|
+
type: object
|
|
2027
|
+
properties:
|
|
2028
|
+
parameters:
|
|
2029
|
+
type: string
|
|
2030
|
+
deleteManagedObjectsRequest:
|
|
2031
|
+
title: deleteManagedObjectsRequest
|
|
2032
|
+
required:
|
|
2033
|
+
- parameters
|
|
2034
|
+
type: object
|
|
2035
|
+
properties:
|
|
2036
|
+
parameters:
|
|
2037
|
+
type: string
|
|
2038
|
+
getMOLitesRequest:
|
|
2039
|
+
title: getMOLitesRequest
|
|
2040
|
+
required:
|
|
2041
|
+
- parameters
|
|
2042
|
+
type: object
|
|
2043
|
+
properties:
|
|
2044
|
+
parameters:
|
|
2045
|
+
type: string
|
|
2046
|
+
getRelatedMOLitesRequest:
|
|
2047
|
+
title: getRelatedMOLitesRequest
|
|
2048
|
+
required:
|
|
2049
|
+
- parameters
|
|
2050
|
+
type: object
|
|
2051
|
+
properties:
|
|
2052
|
+
parameters:
|
|
2053
|
+
type: string
|
|
2054
|
+
queryMOLitesRequest:
|
|
2055
|
+
title: queryMOLitesRequest
|
|
2056
|
+
required:
|
|
2057
|
+
- parameters
|
|
2058
|
+
type: object
|
|
2059
|
+
properties:
|
|
2060
|
+
parameters:
|
|
2061
|
+
type: string
|
|
2062
|
+
getMetadataRequest:
|
|
2063
|
+
title: getMetadataRequest
|
|
2064
|
+
required:
|
|
2065
|
+
- parameters
|
|
2066
|
+
type: object
|
|
2067
|
+
properties:
|
|
2068
|
+
parameters:
|
|
2069
|
+
type: string
|
|
2070
|
+
getConfigurationsRequest:
|
|
2071
|
+
title: getConfigurationsRequest
|
|
2072
|
+
required:
|
|
2073
|
+
- parameters
|
|
2074
|
+
type: object
|
|
2075
|
+
properties:
|
|
2076
|
+
parameters:
|
|
2077
|
+
type: string
|
|
2078
|
+
createConfigurationRequest:
|
|
2079
|
+
title: createConfigurationRequest
|
|
2080
|
+
required:
|
|
2081
|
+
- parameters
|
|
2082
|
+
type: object
|
|
2083
|
+
properties:
|
|
2084
|
+
parameters:
|
|
2085
|
+
type: string
|
|
2086
|
+
updateConfigurationRequest:
|
|
2087
|
+
title: updateConfigurationRequest
|
|
2088
|
+
required:
|
|
2089
|
+
- parameters
|
|
2090
|
+
type: object
|
|
2091
|
+
properties:
|
|
2092
|
+
parameters:
|
|
2093
|
+
type: string
|
|
2094
|
+
deleteConfigurationRequest:
|
|
2095
|
+
title: deleteConfigurationRequest
|
|
2096
|
+
required:
|
|
2097
|
+
- parameters
|
|
2098
|
+
type: object
|
|
2099
|
+
properties:
|
|
2100
|
+
parameters:
|
|
2101
|
+
type: string
|
|
2102
|
+
startOperationResponse:
|
|
2103
|
+
title: startOperationResponse
|
|
2104
|
+
required:
|
|
2105
|
+
- parameters
|
|
2106
|
+
type: object
|
|
2107
|
+
properties:
|
|
2108
|
+
parameters:
|
|
2109
|
+
type: string
|
|
2110
|
+
xml:
|
|
2111
|
+
name: parameters
|
|
2112
|
+
attribute: false
|
|
2113
|
+
wrapped: false
|
|
2114
|
+
xml:
|
|
2115
|
+
name: startOperationResponse
|
|
2116
|
+
attribute: false
|
|
2117
|
+
wrapped: false
|
|
2118
|
+
startOperationRequest:
|
|
2119
|
+
title: startOperationRequest
|
|
2120
|
+
required:
|
|
2121
|
+
- parameters
|
|
2122
|
+
type: object
|
|
2123
|
+
properties:
|
|
2124
|
+
parameters:
|
|
2125
|
+
type: string
|
|
2126
|
+
interruptOperationResponse:
|
|
2127
|
+
title: interruptOperationResponse
|
|
2128
|
+
required:
|
|
2129
|
+
- parameters
|
|
2130
|
+
type: object
|
|
2131
|
+
properties:
|
|
2132
|
+
parameters:
|
|
2133
|
+
type: string
|
|
2134
|
+
xml:
|
|
2135
|
+
name: parameters
|
|
2136
|
+
attribute: false
|
|
2137
|
+
wrapped: false
|
|
2138
|
+
xml:
|
|
2139
|
+
name: interruptOperationResponse
|
|
2140
|
+
attribute: false
|
|
2141
|
+
wrapped: false
|
|
2142
|
+
interruptOperationRequest:
|
|
2143
|
+
title: interruptOperationRequest
|
|
2144
|
+
required:
|
|
2145
|
+
- parameters
|
|
2146
|
+
type: object
|
|
2147
|
+
properties:
|
|
2148
|
+
parameters:
|
|
2149
|
+
type: string
|
|
2150
|
+
Operation:
|
|
2151
|
+
title: Operation
|
|
2152
|
+
enum:
|
|
2153
|
+
- CREATE
|
|
2154
|
+
- UPDATE
|
|
2155
|
+
- DELETE
|
|
2156
|
+
type: string
|
|
2157
|
+
OperationsOpenCmOperationsServiceSOAPGetMetadataResponse:
|
|
2158
|
+
title: OperationsOpenCmOperationsServiceSOAPGetMetadataResponse
|
|
2159
|
+
required:
|
|
2160
|
+
- parameters
|
|
2161
|
+
type: object
|
|
2162
|
+
properties:
|
|
2163
|
+
parameters:
|
|
2164
|
+
type: string
|
|
2165
|
+
xml:
|
|
2166
|
+
name: parameters
|
|
2167
|
+
attribute: false
|
|
2168
|
+
wrapped: false
|
|
2169
|
+
OperationsOpenCmOperationsServiceSOAPInterruptOperationResponse:
|
|
2170
|
+
title: OperationsOpenCmOperationsServiceSOAPInterruptOperationResponse
|
|
2171
|
+
required:
|
|
2172
|
+
- parameters
|
|
2173
|
+
type: object
|
|
2174
|
+
properties:
|
|
2175
|
+
parameters:
|
|
2176
|
+
type: string
|
|
2177
|
+
xml:
|
|
2178
|
+
name: parameters
|
|
2179
|
+
attribute: false
|
|
2180
|
+
wrapped: false
|
|
2181
|
+
OperationsOpenCmOperationsServiceSOAPStartOperationResponse:
|
|
2182
|
+
title: OperationsOpenCmOperationsServiceSOAPStartOperationResponse
|
|
2183
|
+
required:
|
|
2184
|
+
- parameters
|
|
2185
|
+
type: object
|
|
2186
|
+
properties:
|
|
2187
|
+
parameters:
|
|
2188
|
+
type: string
|
|
2189
|
+
xml:
|
|
2190
|
+
name: parameters
|
|
2191
|
+
attribute: false
|
|
2192
|
+
wrapped: false
|
|
2193
|
+
PersistencyOpenCmPersistencyServiceSOAPCreateConfigurationResponse:
|
|
2194
|
+
title: PersistencyOpenCmPersistencyServiceSOAPCreateConfigurationResponse
|
|
2195
|
+
required:
|
|
2196
|
+
- parameters
|
|
2197
|
+
type: object
|
|
2198
|
+
properties:
|
|
2199
|
+
parameters:
|
|
2200
|
+
type: string
|
|
2201
|
+
xml:
|
|
2202
|
+
name: parameters
|
|
2203
|
+
attribute: false
|
|
2204
|
+
wrapped: false
|
|
2205
|
+
PersistencyOpenCmPersistencyServiceSOAPCreateManagedObjectsResponse:
|
|
2206
|
+
title: PersistencyOpenCmPersistencyServiceSOAPCreateManagedObjectsResponse
|
|
2207
|
+
required:
|
|
2208
|
+
- parameters
|
|
2209
|
+
type: object
|
|
2210
|
+
properties:
|
|
2211
|
+
parameters:
|
|
2212
|
+
type: string
|
|
2213
|
+
xml:
|
|
2214
|
+
name: parameters
|
|
2215
|
+
attribute: false
|
|
2216
|
+
wrapped: false
|
|
2217
|
+
PersistencyOpenCmPersistencyServiceSOAPDeleteConfigurationResponse:
|
|
2218
|
+
title: PersistencyOpenCmPersistencyServiceSOAPDeleteConfigurationResponse
|
|
2219
|
+
required:
|
|
2220
|
+
- parameters
|
|
2221
|
+
type: object
|
|
2222
|
+
properties:
|
|
2223
|
+
parameters:
|
|
2224
|
+
type: string
|
|
2225
|
+
xml:
|
|
2226
|
+
name: parameters
|
|
2227
|
+
attribute: false
|
|
2228
|
+
wrapped: false
|
|
2229
|
+
PersistencyOpenCmPersistencyServiceSOAPDeleteManagedObjectsResponse:
|
|
2230
|
+
title: PersistencyOpenCmPersistencyServiceSOAPDeleteManagedObjectsResponse
|
|
2231
|
+
required:
|
|
2232
|
+
- parameters
|
|
2233
|
+
type: object
|
|
2234
|
+
properties:
|
|
2235
|
+
parameters:
|
|
2236
|
+
type: string
|
|
2237
|
+
xml:
|
|
2238
|
+
name: parameters
|
|
2239
|
+
attribute: false
|
|
2240
|
+
wrapped: false
|
|
2241
|
+
PersistencyOpenCmPersistencyServiceSOAPGetConfigurationsResponse:
|
|
2242
|
+
title: PersistencyOpenCmPersistencyServiceSOAPGetConfigurationsResponse
|
|
2243
|
+
required:
|
|
2244
|
+
- parameters
|
|
2245
|
+
type: object
|
|
2246
|
+
properties:
|
|
2247
|
+
parameters:
|
|
2248
|
+
type: string
|
|
2249
|
+
xml:
|
|
2250
|
+
name: parameters
|
|
2251
|
+
attribute: false
|
|
2252
|
+
wrapped: false
|
|
2253
|
+
PersistencyOpenCmPersistencyServiceSOAPGetManagedObjectsResponse:
|
|
2254
|
+
title: PersistencyOpenCmPersistencyServiceSOAPGetManagedObjectsResponse
|
|
2255
|
+
required:
|
|
2256
|
+
- parameters
|
|
2257
|
+
type: object
|
|
2258
|
+
properties:
|
|
2259
|
+
parameters:
|
|
2260
|
+
type: string
|
|
2261
|
+
xml:
|
|
2262
|
+
name: parameters
|
|
2263
|
+
attribute: false
|
|
2264
|
+
wrapped: false
|
|
2265
|
+
PersistencyOpenCmPersistencyServiceSOAPGetMetadataResponse:
|
|
2266
|
+
title: PersistencyOpenCmPersistencyServiceSOAPGetMetadataResponse
|
|
2267
|
+
required:
|
|
2268
|
+
- parameters
|
|
2269
|
+
type: object
|
|
2270
|
+
properties:
|
|
2271
|
+
parameters:
|
|
2272
|
+
type: string
|
|
2273
|
+
xml:
|
|
2274
|
+
name: parameters
|
|
2275
|
+
attribute: false
|
|
2276
|
+
wrapped: false
|
|
2277
|
+
PersistencyOpenCmPersistencyServiceSOAPGetMOLitesResponse:
|
|
2278
|
+
title: PersistencyOpenCmPersistencyServiceSOAPGetMOLitesResponse
|
|
2279
|
+
required:
|
|
2280
|
+
- parameters
|
|
2281
|
+
type: object
|
|
2282
|
+
properties:
|
|
2283
|
+
parameters:
|
|
2284
|
+
type: string
|
|
2285
|
+
xml:
|
|
2286
|
+
name: parameters
|
|
2287
|
+
attribute: false
|
|
2288
|
+
wrapped: false
|
|
2289
|
+
PersistencyOpenCmPersistencyServiceSOAPGetRelatedMOLitesResponse:
|
|
2290
|
+
title: PersistencyOpenCmPersistencyServiceSOAPGetRelatedMOLitesResponse
|
|
2291
|
+
required:
|
|
2292
|
+
- parameters
|
|
2293
|
+
type: object
|
|
2294
|
+
properties:
|
|
2295
|
+
parameters:
|
|
2296
|
+
type: string
|
|
2297
|
+
xml:
|
|
2298
|
+
name: parameters
|
|
2299
|
+
attribute: false
|
|
2300
|
+
wrapped: false
|
|
2301
|
+
PersistencyOpenCmPersistencyServiceSOAPQueryMOLitesResponse:
|
|
2302
|
+
title: PersistencyOpenCmPersistencyServiceSOAPQueryMOLitesResponse
|
|
2303
|
+
required:
|
|
2304
|
+
- parameters
|
|
2305
|
+
type: object
|
|
2306
|
+
properties:
|
|
2307
|
+
parameters:
|
|
2308
|
+
type: string
|
|
2309
|
+
xml:
|
|
2310
|
+
name: parameters
|
|
2311
|
+
attribute: false
|
|
2312
|
+
wrapped: false
|
|
2313
|
+
PersistencyOpenCmPersistencyServiceSOAPUpdateConfigurationResponse:
|
|
2314
|
+
title: PersistencyOpenCmPersistencyServiceSOAPUpdateConfigurationResponse
|
|
2315
|
+
required:
|
|
2316
|
+
- parameters
|
|
2317
|
+
type: object
|
|
2318
|
+
properties:
|
|
2319
|
+
parameters:
|
|
2320
|
+
type: string
|
|
2321
|
+
xml:
|
|
2322
|
+
name: parameters
|
|
2323
|
+
attribute: false
|
|
2324
|
+
wrapped: false
|
|
2325
|
+
PersistencyOpenCmPersistencyServiceSOAPUpdateManagedObjectsResponse:
|
|
2326
|
+
title: PersistencyOpenCmPersistencyServiceSOAPUpdateManagedObjectsResponse
|
|
2327
|
+
required:
|
|
2328
|
+
- parameters
|
|
2329
|
+
type: object
|
|
2330
|
+
properties:
|
|
2331
|
+
parameters:
|
|
2332
|
+
type: string
|
|
2333
|
+
xml:
|
|
2334
|
+
name: parameters
|
|
2335
|
+
attribute: false
|
|
2336
|
+
wrapped: false
|
|
2337
|
+
PlanOperation:
|
|
2338
|
+
title: PlanOperation
|
|
2339
|
+
enum:
|
|
2340
|
+
- CREATE
|
|
2341
|
+
- UPDATE
|
|
2342
|
+
- DELETE
|
|
2343
|
+
type: string
|
|
2344
|
+
Status2:
|
|
2345
|
+
title: Status2
|
|
2346
|
+
enum:
|
|
2347
|
+
- CREATED
|
|
2348
|
+
- STARTED
|
|
2349
|
+
- INTERRUPTING
|
|
2350
|
+
- INTERRUPTED
|
|
2351
|
+
- FINISHED
|
|
2352
|
+
- FAILED
|
|
2353
|
+
type: string
|
|
2354
|
+
Type:
|
|
2355
|
+
title: Type
|
|
2356
|
+
enum:
|
|
2357
|
+
- ACTUAL
|
|
2358
|
+
- REFERENCE
|
|
2359
|
+
- PLAN
|
|
2360
|
+
type: string
|
|
2361
|
+
Type1:
|
|
2362
|
+
title: Type1
|
|
2363
|
+
enum:
|
|
2364
|
+
- INTEGER
|
|
2365
|
+
- STRING
|
|
2366
|
+
- BOOLEAN
|
|
2367
|
+
- LONG
|
|
2368
|
+
type: string
|
|
2369
|
+
Type2:
|
|
2370
|
+
title: Type2
|
|
2371
|
+
enum:
|
|
2372
|
+
- INFO
|
|
2373
|
+
- WARNING
|
|
2374
|
+
- ERROR
|
|
2375
|
+
- OK
|
|
2376
|
+
type: string
|
|
2377
|
+
Weekday:
|
|
2378
|
+
title: Weekday
|
|
2379
|
+
enum:
|
|
2380
|
+
- MON
|
|
2381
|
+
- TUE
|
|
2382
|
+
- WED
|
|
2383
|
+
- THU
|
|
2384
|
+
- FRI
|
|
2385
|
+
- SAT
|
|
2386
|
+
- SUN
|
|
2387
|
+
type: string
|
|
2388
|
+
tags:
|
|
2389
|
+
- name: persistency
|
|
2390
|
+
description: ''
|
|
2391
|
+
- name: operations
|
|
2392
|
+
description: ''
|
|
2393
|
+
- name: OpenCmPersistencyPortBinding
|
|
2394
|
+
description: ''
|
|
2395
|
+
- name: OpenCmOperationsPortBinding
|
|
2396
|
+
description: ''
|