@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,244 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actions": [
|
|
3
|
+
{
|
|
4
|
+
"name": "getOpenCmManagedObjects",
|
|
5
|
+
"protocol": "REST",
|
|
6
|
+
"method": "POST",
|
|
7
|
+
"entitypath": "{base_path}/{version}/persistency/OpenCmPersistencyServiceSOAP/getManagedObjects?{query}",
|
|
8
|
+
"requestSchema": "schema.json",
|
|
9
|
+
"responseSchema": "schema.json",
|
|
10
|
+
"timeout": 0,
|
|
11
|
+
"sendEmpty": false,
|
|
12
|
+
"requestDatatype": "XML",
|
|
13
|
+
"responseDatatype": "XML2JSON",
|
|
14
|
+
"headers": {},
|
|
15
|
+
"responseObjects": [
|
|
16
|
+
{
|
|
17
|
+
"type": "default",
|
|
18
|
+
"key": "",
|
|
19
|
+
"mockFile": ""
|
|
20
|
+
}
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"name": "createManagedObjects",
|
|
25
|
+
"protocol": "REST",
|
|
26
|
+
"method": "POST",
|
|
27
|
+
"entitypath": "{base_path}/{version}/persistency/OpenCmPersistencyServiceSOAP/createManagedObjects?{query}",
|
|
28
|
+
"requestSchema": "schema.json",
|
|
29
|
+
"responseSchema": "schema.json",
|
|
30
|
+
"timeout": 0,
|
|
31
|
+
"sendEmpty": false,
|
|
32
|
+
"requestDatatype": "XML",
|
|
33
|
+
"responseDatatype": "XML2JSON",
|
|
34
|
+
"headers": {},
|
|
35
|
+
"responseObjects": [
|
|
36
|
+
{
|
|
37
|
+
"type": "default",
|
|
38
|
+
"key": "",
|
|
39
|
+
"mockFile": ""
|
|
40
|
+
}
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "updateOpenCmManagedObjects",
|
|
45
|
+
"protocol": "REST",
|
|
46
|
+
"method": "POST",
|
|
47
|
+
"entitypath": "{base_path}/{version}/persistency/OpenCmPersistencyServiceSOAP/updateManagedObjects?{query}",
|
|
48
|
+
"requestSchema": "schema.json",
|
|
49
|
+
"responseSchema": "schema.json",
|
|
50
|
+
"timeout": 0,
|
|
51
|
+
"sendEmpty": false,
|
|
52
|
+
"requestDatatype": "XML",
|
|
53
|
+
"responseDatatype": "XML2JSON",
|
|
54
|
+
"headers": {},
|
|
55
|
+
"responseObjects": [
|
|
56
|
+
{
|
|
57
|
+
"type": "default",
|
|
58
|
+
"key": "",
|
|
59
|
+
"mockFile": ""
|
|
60
|
+
}
|
|
61
|
+
]
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"name": "deleteManagedObjects",
|
|
65
|
+
"protocol": "REST",
|
|
66
|
+
"method": "POST",
|
|
67
|
+
"entitypath": "{base_path}/{version}/persistency/OpenCmPersistencyServiceSOAP/deleteManagedObjects?{query}",
|
|
68
|
+
"requestSchema": "schema.json",
|
|
69
|
+
"responseSchema": "schema.json",
|
|
70
|
+
"timeout": 0,
|
|
71
|
+
"sendEmpty": false,
|
|
72
|
+
"requestDatatype": "XML",
|
|
73
|
+
"responseDatatype": "XML2JSON",
|
|
74
|
+
"headers": {},
|
|
75
|
+
"responseObjects": [
|
|
76
|
+
{
|
|
77
|
+
"type": "default",
|
|
78
|
+
"key": "",
|
|
79
|
+
"mockFile": ""
|
|
80
|
+
}
|
|
81
|
+
]
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"name": "getOpenCmMOLites",
|
|
85
|
+
"protocol": "REST",
|
|
86
|
+
"method": "POST",
|
|
87
|
+
"entitypath": "{base_path}/{version}/persistency/OpenCmPersistencyServiceSOAP/getMOLites?{query}",
|
|
88
|
+
"requestSchema": "schema.json",
|
|
89
|
+
"responseSchema": "schema.json",
|
|
90
|
+
"timeout": 0,
|
|
91
|
+
"sendEmpty": false,
|
|
92
|
+
"requestDatatype": "XML",
|
|
93
|
+
"responseDatatype": "XML2JSON",
|
|
94
|
+
"headers": {},
|
|
95
|
+
"responseObjects": [
|
|
96
|
+
{
|
|
97
|
+
"type": "default",
|
|
98
|
+
"key": "",
|
|
99
|
+
"mockFile": ""
|
|
100
|
+
}
|
|
101
|
+
]
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "getOpenCmRelatedMOLites",
|
|
105
|
+
"protocol": "REST",
|
|
106
|
+
"method": "POST",
|
|
107
|
+
"entitypath": "{base_path}/{version}/persistency/OpenCmPersistencyServiceSOAP/getRelatedMOLites?{query}",
|
|
108
|
+
"requestSchema": "schema.json",
|
|
109
|
+
"responseSchema": "schema.json",
|
|
110
|
+
"timeout": 0,
|
|
111
|
+
"sendEmpty": false,
|
|
112
|
+
"requestDatatype": "XML",
|
|
113
|
+
"responseDatatype": "XML2JSON",
|
|
114
|
+
"headers": {},
|
|
115
|
+
"responseObjects": [
|
|
116
|
+
{
|
|
117
|
+
"type": "default",
|
|
118
|
+
"key": "",
|
|
119
|
+
"mockFile": ""
|
|
120
|
+
}
|
|
121
|
+
]
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"name": "queryOpenCmMOLites",
|
|
125
|
+
"protocol": "REST",
|
|
126
|
+
"method": "POST",
|
|
127
|
+
"entitypath": "{base_path}/{version}/persistency/OpenCmPersistencyServiceSOAP/queryMOLites?{query}",
|
|
128
|
+
"requestSchema": "schema.json",
|
|
129
|
+
"responseSchema": "schema.json",
|
|
130
|
+
"timeout": 0,
|
|
131
|
+
"sendEmpty": false,
|
|
132
|
+
"requestDatatype": "XML",
|
|
133
|
+
"responseDatatype": "XML2JSON",
|
|
134
|
+
"headers": {},
|
|
135
|
+
"responseObjects": [
|
|
136
|
+
{
|
|
137
|
+
"type": "default",
|
|
138
|
+
"key": "",
|
|
139
|
+
"mockFile": ""
|
|
140
|
+
}
|
|
141
|
+
]
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"name": "getPersistencyMetadata",
|
|
145
|
+
"protocol": "REST",
|
|
146
|
+
"method": "POST",
|
|
147
|
+
"entitypath": "{base_path}/{version}/persistency/OpenCmPersistencyServiceSOAP/getMetadata?{query}",
|
|
148
|
+
"requestSchema": "schema.json",
|
|
149
|
+
"responseSchema": "schema.json",
|
|
150
|
+
"timeout": 0,
|
|
151
|
+
"sendEmpty": false,
|
|
152
|
+
"requestDatatype": "XML",
|
|
153
|
+
"responseDatatype": "XML2JSON",
|
|
154
|
+
"headers": {},
|
|
155
|
+
"responseObjects": [
|
|
156
|
+
{
|
|
157
|
+
"type": "default",
|
|
158
|
+
"key": "",
|
|
159
|
+
"mockFile": ""
|
|
160
|
+
}
|
|
161
|
+
]
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"name": "getOpenCmConfigurations",
|
|
165
|
+
"protocol": "REST",
|
|
166
|
+
"method": "POST",
|
|
167
|
+
"entitypath": "{base_path}/{version}/persistency/OpenCmPersistencyServiceSOAP/getConfigurations?{query}",
|
|
168
|
+
"requestSchema": "schema.json",
|
|
169
|
+
"responseSchema": "schema.json",
|
|
170
|
+
"timeout": 0,
|
|
171
|
+
"sendEmpty": false,
|
|
172
|
+
"requestDatatype": "XML",
|
|
173
|
+
"responseDatatype": "XML2JSON",
|
|
174
|
+
"headers": {},
|
|
175
|
+
"responseObjects": [
|
|
176
|
+
{
|
|
177
|
+
"type": "default",
|
|
178
|
+
"key": "",
|
|
179
|
+
"mockFile": ""
|
|
180
|
+
}
|
|
181
|
+
]
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"name": "createOpenCmConfiguration",
|
|
185
|
+
"protocol": "REST",
|
|
186
|
+
"method": "POST",
|
|
187
|
+
"entitypath": "{base_path}/{version}/persistency/OpenCmPersistencyServiceSOAP/createConfiguration?{query}",
|
|
188
|
+
"requestSchema": "schema.json",
|
|
189
|
+
"responseSchema": "schema.json",
|
|
190
|
+
"timeout": 0,
|
|
191
|
+
"sendEmpty": false,
|
|
192
|
+
"requestDatatype": "XML",
|
|
193
|
+
"responseDatatype": "XML2JSON",
|
|
194
|
+
"headers": {},
|
|
195
|
+
"responseObjects": [
|
|
196
|
+
{
|
|
197
|
+
"type": "default",
|
|
198
|
+
"key": "",
|
|
199
|
+
"mockFile": ""
|
|
200
|
+
}
|
|
201
|
+
]
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"name": "postPersistencyOpenCmPersistencyServiceSOAPUpdateConfiguration",
|
|
205
|
+
"protocol": "REST",
|
|
206
|
+
"method": "POST",
|
|
207
|
+
"entitypath": "{base_path}/{version}/persistency/OpenCmPersistencyServiceSOAP/updateConfiguration?{query}",
|
|
208
|
+
"requestSchema": "schema.json",
|
|
209
|
+
"responseSchema": "schema.json",
|
|
210
|
+
"timeout": 0,
|
|
211
|
+
"sendEmpty": false,
|
|
212
|
+
"requestDatatype": "XML",
|
|
213
|
+
"responseDatatype": "XML2JSON",
|
|
214
|
+
"headers": {},
|
|
215
|
+
"responseObjects": [
|
|
216
|
+
{
|
|
217
|
+
"type": "default",
|
|
218
|
+
"key": "",
|
|
219
|
+
"mockFile": ""
|
|
220
|
+
}
|
|
221
|
+
]
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"name": "deleteOpenCmConfiguration",
|
|
225
|
+
"protocol": "REST",
|
|
226
|
+
"method": "POST",
|
|
227
|
+
"entitypath": "{base_path}/{version}/persistency/OpenCmPersistencyServiceSOAP/deleteConfiguration?{query}",
|
|
228
|
+
"requestSchema": "schema.json",
|
|
229
|
+
"responseSchema": "schema.json",
|
|
230
|
+
"timeout": 0,
|
|
231
|
+
"sendEmpty": false,
|
|
232
|
+
"requestDatatype": "XML",
|
|
233
|
+
"responseDatatype": "XML2JSON",
|
|
234
|
+
"headers": {},
|
|
235
|
+
"responseObjects": [
|
|
236
|
+
{
|
|
237
|
+
"type": "default",
|
|
238
|
+
"key": "",
|
|
239
|
+
"mockFile": ""
|
|
240
|
+
}
|
|
241
|
+
]
|
|
242
|
+
}
|
|
243
|
+
]
|
|
244
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$id": "schema.json",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"schema": "http://json-schema.org/draft-07/schema#",
|
|
5
|
+
"translate": false,
|
|
6
|
+
"dynamicfields": true,
|
|
7
|
+
"properties": {
|
|
8
|
+
"ph_request_type": {
|
|
9
|
+
"type": "string",
|
|
10
|
+
"description": "type of request (internal to adapter)",
|
|
11
|
+
"default": "getOpenCmManagedObjects",
|
|
12
|
+
"enum": [
|
|
13
|
+
"getOpenCmManagedObjects",
|
|
14
|
+
"createManagedObjects",
|
|
15
|
+
"updateOpenCmManagedObjects",
|
|
16
|
+
"deleteManagedObjects",
|
|
17
|
+
"getOpenCmMOLites",
|
|
18
|
+
"getOpenCmRelatedMOLites",
|
|
19
|
+
"queryOpenCmMOLites",
|
|
20
|
+
"getPersistencyMetadata",
|
|
21
|
+
"getOpenCmConfigurations",
|
|
22
|
+
"createOpenCmConfiguration",
|
|
23
|
+
"postPersistencyOpenCmPersistencyServiceSOAPUpdateConfiguration",
|
|
24
|
+
"deleteOpenCmConfiguration"
|
|
25
|
+
],
|
|
26
|
+
"external_name": "ph_request_type"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"definitions": {}
|
|
30
|
+
}
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actions": [
|
|
3
|
+
{
|
|
4
|
+
"name": "readOperationAttributes",
|
|
5
|
+
"protocol": "REST",
|
|
6
|
+
"method": "GET",
|
|
7
|
+
"entitypath": "{base_path}/{version}/operations/v1/attributes?{query}",
|
|
8
|
+
"requestSchema": "schema.json",
|
|
9
|
+
"responseSchema": "schema.json",
|
|
10
|
+
"timeout": 0,
|
|
11
|
+
"sendEmpty": false,
|
|
12
|
+
"sendGetBody": false,
|
|
13
|
+
"requestDatatype": "JSON",
|
|
14
|
+
"responseDatatype": "JSON",
|
|
15
|
+
"headers": {},
|
|
16
|
+
"responseObjects": [
|
|
17
|
+
{
|
|
18
|
+
"type": "default",
|
|
19
|
+
"key": "",
|
|
20
|
+
"mockFile": ""
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "readOperationDefinitions",
|
|
26
|
+
"protocol": "REST",
|
|
27
|
+
"method": "GET",
|
|
28
|
+
"entitypath": "{base_path}/{version}/operations/v1/definitions?{query}",
|
|
29
|
+
"requestSchema": "schema.json",
|
|
30
|
+
"responseSchema": "schema.json",
|
|
31
|
+
"timeout": 0,
|
|
32
|
+
"sendEmpty": false,
|
|
33
|
+
"sendGetBody": false,
|
|
34
|
+
"requestDatatype": "JSON",
|
|
35
|
+
"responseDatatype": "JSON",
|
|
36
|
+
"headers": {},
|
|
37
|
+
"responseObjects": [
|
|
38
|
+
{
|
|
39
|
+
"type": "default",
|
|
40
|
+
"key": "",
|
|
41
|
+
"mockFile": ""
|
|
42
|
+
}
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "readOperationExecutions",
|
|
47
|
+
"protocol": "REST",
|
|
48
|
+
"method": "GET",
|
|
49
|
+
"entitypath": "{base_path}/{version}/operations/v1/executions?{query}",
|
|
50
|
+
"requestSchema": "schema.json",
|
|
51
|
+
"responseSchema": "schema.json",
|
|
52
|
+
"timeout": 0,
|
|
53
|
+
"sendEmpty": false,
|
|
54
|
+
"sendGetBody": false,
|
|
55
|
+
"requestDatatype": "JSON",
|
|
56
|
+
"responseDatatype": "JSON",
|
|
57
|
+
"headers": {},
|
|
58
|
+
"responseObjects": [
|
|
59
|
+
{
|
|
60
|
+
"type": "default",
|
|
61
|
+
"key": "",
|
|
62
|
+
"mockFile": ""
|
|
63
|
+
}
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "readOperationFeedbacks",
|
|
68
|
+
"protocol": "REST",
|
|
69
|
+
"method": "GET",
|
|
70
|
+
"entitypath": "{base_path}/{version}/operations/v1/feedbacks?{query}",
|
|
71
|
+
"requestSchema": "schema.json",
|
|
72
|
+
"responseSchema": "schema.json",
|
|
73
|
+
"timeout": 0,
|
|
74
|
+
"sendEmpty": false,
|
|
75
|
+
"sendGetBody": false,
|
|
76
|
+
"requestDatatype": "JSON",
|
|
77
|
+
"responseDatatype": "JSON",
|
|
78
|
+
"headers": {},
|
|
79
|
+
"responseObjects": [
|
|
80
|
+
{
|
|
81
|
+
"type": "default",
|
|
82
|
+
"key": "",
|
|
83
|
+
"mockFile": ""
|
|
84
|
+
}
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "interruptOperation",
|
|
89
|
+
"protocol": "REST",
|
|
90
|
+
"method": "PUT",
|
|
91
|
+
"entitypath": "{base_path}/{version}/operations/v1/interrupt?{query}",
|
|
92
|
+
"requestSchema": "schema.json",
|
|
93
|
+
"responseSchema": "schema.json",
|
|
94
|
+
"timeout": 0,
|
|
95
|
+
"sendEmpty": false,
|
|
96
|
+
"requestDatatype": "JSON",
|
|
97
|
+
"responseDatatype": "JSON",
|
|
98
|
+
"headers": {},
|
|
99
|
+
"responseObjects": [
|
|
100
|
+
{
|
|
101
|
+
"type": "default",
|
|
102
|
+
"key": "",
|
|
103
|
+
"mockFile": ""
|
|
104
|
+
}
|
|
105
|
+
]
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "scheduleOperation",
|
|
109
|
+
"protocol": "REST",
|
|
110
|
+
"method": "POST",
|
|
111
|
+
"entitypath": "{base_path}/{version}/operations/v1/schedule?{query}",
|
|
112
|
+
"requestSchema": "schema.json",
|
|
113
|
+
"responseSchema": "schema.json",
|
|
114
|
+
"timeout": 0,
|
|
115
|
+
"sendEmpty": false,
|
|
116
|
+
"requestDatatype": "JSON",
|
|
117
|
+
"responseDatatype": "JSON",
|
|
118
|
+
"headers": {},
|
|
119
|
+
"responseObjects": [
|
|
120
|
+
{
|
|
121
|
+
"type": "default",
|
|
122
|
+
"key": "",
|
|
123
|
+
"mockFile": ""
|
|
124
|
+
}
|
|
125
|
+
]
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"name": "startOperation",
|
|
129
|
+
"protocol": "REST",
|
|
130
|
+
"method": "POST",
|
|
131
|
+
"entitypath": "{base_path}/{version}/operations/v1/start?{query}",
|
|
132
|
+
"requestSchema": "schema.json",
|
|
133
|
+
"responseSchema": "schema.json",
|
|
134
|
+
"timeout": 0,
|
|
135
|
+
"sendEmpty": false,
|
|
136
|
+
"requestDatatype": "JSON",
|
|
137
|
+
"responseDatatype": "JSON",
|
|
138
|
+
"headers": {},
|
|
139
|
+
"responseObjects": [
|
|
140
|
+
{
|
|
141
|
+
"type": "default",
|
|
142
|
+
"key": "",
|
|
143
|
+
"mockFile": ""
|
|
144
|
+
}
|
|
145
|
+
]
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"name": "readOperationStatuses",
|
|
149
|
+
"protocol": "REST",
|
|
150
|
+
"method": "GET",
|
|
151
|
+
"entitypath": "{base_path}/{version}/operations/v1/statuses?{query}",
|
|
152
|
+
"requestSchema": "schema.json",
|
|
153
|
+
"responseSchema": "schema.json",
|
|
154
|
+
"timeout": 0,
|
|
155
|
+
"sendEmpty": false,
|
|
156
|
+
"sendGetBody": false,
|
|
157
|
+
"requestDatatype": "JSON",
|
|
158
|
+
"responseDatatype": "JSON",
|
|
159
|
+
"headers": {},
|
|
160
|
+
"responseObjects": [
|
|
161
|
+
{
|
|
162
|
+
"type": "default",
|
|
163
|
+
"key": "",
|
|
164
|
+
"mockFile": ""
|
|
165
|
+
}
|
|
166
|
+
]
|
|
167
|
+
}
|
|
168
|
+
]
|
|
169
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$id": "schema.json",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"schema": "http://json-schema.org/draft-07/schema#",
|
|
5
|
+
"translate": false,
|
|
6
|
+
"dynamicfields": true,
|
|
7
|
+
"properties": {
|
|
8
|
+
"ph_request_type": {
|
|
9
|
+
"type": "string",
|
|
10
|
+
"description": "type of request (internal to adapter)",
|
|
11
|
+
"default": "readOperationAttributes",
|
|
12
|
+
"enum": [
|
|
13
|
+
"readOperationAttributes",
|
|
14
|
+
"readOperationDefinitions",
|
|
15
|
+
"readOperationExecutions",
|
|
16
|
+
"readOperationFeedbacks",
|
|
17
|
+
"interruptOperation",
|
|
18
|
+
"scheduleOperation",
|
|
19
|
+
"startOperation",
|
|
20
|
+
"readOperationStatuses"
|
|
21
|
+
],
|
|
22
|
+
"external_name": "ph_request_type"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"definitions": {}
|
|
26
|
+
}
|