@itentialopensource/adapter-aruba_airwave 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 +6 -0
- package/.eslintrc.js +18 -0
- package/.gitlab/.gitkeep +0 -0
- package/.gitlab/issue_templates/.gitkeep +0 -0
- package/.gitlab/issue_templates/Default.md +17 -0
- package/.gitlab/issue_templates/bugReportTemplate.md +76 -0
- package/.gitlab/issue_templates/featureRequestTemplate.md +14 -0
- package/.jshintrc +0 -0
- package/CHANGELOG.md +9 -0
- package/CODE_OF_CONDUCT.md +48 -0
- package/CONTRIBUTING.md +158 -0
- package/LICENSE +201 -0
- package/README.md +544 -0
- package/adapter.js +2860 -0
- package/adapterBase.js +906 -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 +77 -0
- package/entities/.system/schemaTokenResp.json +65 -0
- package/entities/BatchExecuteAPCommandsAPIS/action.json +45 -0
- package/entities/BatchExecuteAPCommandsAPIS/schema.json +20 -0
- package/entities/ConfigurationAPIS/action.json +126 -0
- package/entities/ConfigurationAPIS/schema.json +90 -0
- package/entities/DeviceAPIS/action.json +46 -0
- package/entities/DeviceAPIS/schema.json +20 -0
- package/entities/LOGIN/action.json +24 -0
- package/entities/LOGIN/schema.json +41 -0
- package/entities/QueryAPIS/action.json +298 -0
- package/entities/QueryAPIS/schema.json +32 -0
- package/entities/ReportAPIS/action.json +25 -0
- package/entities/ReportAPIS/schema.json +30 -0
- package/entities/SearchAPIS/action.json +67 -0
- package/entities/SearchAPIS/schema.json +21 -0
- package/error.json +184 -0
- package/package.json +86 -0
- package/pronghorn.json +1589 -0
- package/propertiesSchema.json +801 -0
- package/refs?service=git-upload-pack +0 -0
- package/report/ArubaAirwavePostman.json-OpenApi3Json.json +1583 -0
- package/report/creationReport.json +381 -0
- package/sampleProperties.json +97 -0
- package/test/integration/adapterTestBasicGet.js +85 -0
- package/test/integration/adapterTestConnectivity.js +93 -0
- package/test/integration/adapterTestIntegration.js +1125 -0
- package/test/unit/adapterBaseTestUnit.js +929 -0
- package/test/unit/adapterTestUnit.js +1413 -0
- package/utils/artifactize.js +146 -0
- package/utils/basicGet.js +63 -0
- package/utils/packModificationScript.js +35 -0
- package/utils/pre-commit.sh +27 -0
- package/utils/setup.js +33 -0
- package/utils/tbScript.js +163 -0
- package/utils/tbUtils.js +372 -0
- package/utils/testRunner.js +298 -0
- package/utils/troubleshootingAdapter.js +219 -0
- package/workflows/README.md +3 -0
package/pronghorn.json
ADDED
|
@@ -0,0 +1,1589 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "@itentialopensource/adapter-aruba_airwave",
|
|
3
|
+
"type": "Adapter",
|
|
4
|
+
"export": "ArubaAirwave",
|
|
5
|
+
"title": "Aruba_airwave",
|
|
6
|
+
"src": "adapter.js",
|
|
7
|
+
"roles": [
|
|
8
|
+
"admin"
|
|
9
|
+
],
|
|
10
|
+
"methods": [
|
|
11
|
+
{
|
|
12
|
+
"name": "updateAdapterConfiguration",
|
|
13
|
+
"summary": "Updates the adapter configuration",
|
|
14
|
+
"description": "Updates the adapter configuration file with the provided changes",
|
|
15
|
+
"input": [
|
|
16
|
+
{
|
|
17
|
+
"name": "configFile",
|
|
18
|
+
"type": "string",
|
|
19
|
+
"info": "The name of the file to change",
|
|
20
|
+
"required": true,
|
|
21
|
+
"schema": {
|
|
22
|
+
"title": "configFile",
|
|
23
|
+
"type": "string"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "changes",
|
|
28
|
+
"type": "object",
|
|
29
|
+
"info": "JSON object containing the configuration changes",
|
|
30
|
+
"required": true,
|
|
31
|
+
"schema": {
|
|
32
|
+
"title": "changes",
|
|
33
|
+
"type": "object"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"name": "entity",
|
|
38
|
+
"type": "string",
|
|
39
|
+
"info": "The entity in which the changes are being made",
|
|
40
|
+
"required": false,
|
|
41
|
+
"schema": {
|
|
42
|
+
"title": "entity",
|
|
43
|
+
"type": "string"
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "type",
|
|
48
|
+
"type": "string",
|
|
49
|
+
"info": "The type of file to change - action, schema, or mock",
|
|
50
|
+
"required": false,
|
|
51
|
+
"schema": {
|
|
52
|
+
"title": "type",
|
|
53
|
+
"type": "string"
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"name": "action",
|
|
58
|
+
"type": "string",
|
|
59
|
+
"info": "The action to be changed",
|
|
60
|
+
"required": false,
|
|
61
|
+
"schema": {
|
|
62
|
+
"title": "action",
|
|
63
|
+
"type": "string"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
],
|
|
67
|
+
"output": {
|
|
68
|
+
"name": "result",
|
|
69
|
+
"type": "object",
|
|
70
|
+
"description": "A JSON Object containing status, code and the result",
|
|
71
|
+
"schema": {
|
|
72
|
+
"title": "result",
|
|
73
|
+
"type": "object"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"roles": [
|
|
77
|
+
"admin"
|
|
78
|
+
],
|
|
79
|
+
"route": {
|
|
80
|
+
"verb": "POST",
|
|
81
|
+
"path": "/updateAdapterConfiguration"
|
|
82
|
+
},
|
|
83
|
+
"task": true
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "troubleshoot",
|
|
87
|
+
"summary": "Runs troubleshoot script for adapter",
|
|
88
|
+
"description": "Runs troubleshoot script for adapter",
|
|
89
|
+
"input": [
|
|
90
|
+
{
|
|
91
|
+
"name": "props",
|
|
92
|
+
"type": "object",
|
|
93
|
+
"info": "Object containing configuration, healthcheck and auth properties {'connProps':{'host': 'api.service.com', 'base_path': '/', 'protocol': 'http', 'port': 443, 'version': 'v1'},'healthCheckEndpoint': '/healthcheck', 'auth': {'auth_method': 'no authentication', 'username': 'username', 'password': 'password'}}",
|
|
94
|
+
"required": true,
|
|
95
|
+
"schema": {
|
|
96
|
+
"title": "props",
|
|
97
|
+
"type": "object"
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"name": "persistFlag",
|
|
102
|
+
"type": "boolean",
|
|
103
|
+
"info": "Whether the input properties should be saved",
|
|
104
|
+
"required": true
|
|
105
|
+
}
|
|
106
|
+
],
|
|
107
|
+
"output": {
|
|
108
|
+
"name": "result",
|
|
109
|
+
"type": "object",
|
|
110
|
+
"description": "A JSON Object containing the test results",
|
|
111
|
+
"schema": {
|
|
112
|
+
"title": "result",
|
|
113
|
+
"type": "object"
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
"roles": [
|
|
117
|
+
"admin"
|
|
118
|
+
],
|
|
119
|
+
"route": {
|
|
120
|
+
"verb": "POST",
|
|
121
|
+
"path": "/troubleshoot"
|
|
122
|
+
},
|
|
123
|
+
"task": true
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"name": "runHealthcheck",
|
|
127
|
+
"summary": "Runs healthcheck script for adapter",
|
|
128
|
+
"description": "Runs healthcheck script for adapter",
|
|
129
|
+
"input": [],
|
|
130
|
+
"output": {
|
|
131
|
+
"name": "result",
|
|
132
|
+
"type": "boolean",
|
|
133
|
+
"description": "Whether healthcheck passed or failed"
|
|
134
|
+
},
|
|
135
|
+
"roles": [
|
|
136
|
+
"admin"
|
|
137
|
+
],
|
|
138
|
+
"route": {
|
|
139
|
+
"verb": "POST",
|
|
140
|
+
"path": "/runHealthcheck"
|
|
141
|
+
},
|
|
142
|
+
"task": true
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"name": "runConnectivity",
|
|
146
|
+
"summary": "Runs connectivity check script for adapter",
|
|
147
|
+
"description": "Runs connectivity check script for adapter",
|
|
148
|
+
"input": [],
|
|
149
|
+
"output": {
|
|
150
|
+
"name": "result",
|
|
151
|
+
"type": "object",
|
|
152
|
+
"description": "A JSON Object containing the test results",
|
|
153
|
+
"schema": {
|
|
154
|
+
"title": "result",
|
|
155
|
+
"type": "object"
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
"roles": [
|
|
159
|
+
"admin"
|
|
160
|
+
],
|
|
161
|
+
"route": {
|
|
162
|
+
"verb": "POST",
|
|
163
|
+
"path": "/runConnectivity"
|
|
164
|
+
},
|
|
165
|
+
"task": true
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"name": "runBasicGet",
|
|
169
|
+
"summary": "Runs basicGet script for adapter",
|
|
170
|
+
"description": "Runs basicGet script for adapter",
|
|
171
|
+
"input": [],
|
|
172
|
+
"output": {
|
|
173
|
+
"name": "result",
|
|
174
|
+
"type": "object",
|
|
175
|
+
"description": "A JSON Object containing the test results",
|
|
176
|
+
"schema": {
|
|
177
|
+
"title": "result",
|
|
178
|
+
"type": "object"
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
"roles": [
|
|
182
|
+
"admin"
|
|
183
|
+
],
|
|
184
|
+
"route": {
|
|
185
|
+
"verb": "POST",
|
|
186
|
+
"path": "/runBasicGet"
|
|
187
|
+
},
|
|
188
|
+
"task": true
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"name": "suspend",
|
|
192
|
+
"summary": "Suspends the adapter",
|
|
193
|
+
"description": "Suspends the adapter",
|
|
194
|
+
"input": [
|
|
195
|
+
{
|
|
196
|
+
"name": "mode",
|
|
197
|
+
"type": "enum",
|
|
198
|
+
"enumerals": [
|
|
199
|
+
"pause",
|
|
200
|
+
"error"
|
|
201
|
+
],
|
|
202
|
+
"info": "How incoming requests are handled. Defaults to 'pause'",
|
|
203
|
+
"description": "How incoming requests are handled. Defaults to 'pause'",
|
|
204
|
+
"schema": {
|
|
205
|
+
"title": "mode",
|
|
206
|
+
"type": "string"
|
|
207
|
+
},
|
|
208
|
+
"required": false
|
|
209
|
+
}
|
|
210
|
+
],
|
|
211
|
+
"output": {
|
|
212
|
+
"name": "result",
|
|
213
|
+
"type": "object",
|
|
214
|
+
"description": "A JSON Object containing the adapter suspended status",
|
|
215
|
+
"schema": {
|
|
216
|
+
"title": "result",
|
|
217
|
+
"type": "object"
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
"roles": [
|
|
221
|
+
"admin"
|
|
222
|
+
],
|
|
223
|
+
"route": {
|
|
224
|
+
"verb": "POST",
|
|
225
|
+
"path": "/suspend"
|
|
226
|
+
},
|
|
227
|
+
"task": true
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"name": "unsuspend",
|
|
231
|
+
"summary": "Unsuspends the adapter",
|
|
232
|
+
"description": "Unsuspends the adapter",
|
|
233
|
+
"input": [],
|
|
234
|
+
"output": {
|
|
235
|
+
"name": "result",
|
|
236
|
+
"type": "object",
|
|
237
|
+
"description": "A JSON Object containing the adapter suspended status",
|
|
238
|
+
"schema": {
|
|
239
|
+
"title": "result",
|
|
240
|
+
"type": "object"
|
|
241
|
+
}
|
|
242
|
+
},
|
|
243
|
+
"roles": [
|
|
244
|
+
"admin"
|
|
245
|
+
],
|
|
246
|
+
"route": {
|
|
247
|
+
"verb": "POST",
|
|
248
|
+
"path": "/unsuspend"
|
|
249
|
+
},
|
|
250
|
+
"task": true
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"name": "aMPStats",
|
|
254
|
+
"summary": "AMP Stats",
|
|
255
|
+
"description": "AMP Stats\r\nURL: https://{{host}}/amp_stats.xml\r\nXML Schema: amp_stats.xsd\r\nParameters: Optionally include_bandwidth or include_all_stats can be passed in the request.\r\nExample Output: https://{{host}}/amp_stats.xml?include_all_stats=1&include_bandwidth=1",
|
|
256
|
+
"input": [],
|
|
257
|
+
"output": {
|
|
258
|
+
"name": "result",
|
|
259
|
+
"type": "object",
|
|
260
|
+
"description": "A JSON Object containing status, code and the result",
|
|
261
|
+
"schema": {
|
|
262
|
+
"title": "result",
|
|
263
|
+
"type": "object"
|
|
264
|
+
}
|
|
265
|
+
},
|
|
266
|
+
"roles": [
|
|
267
|
+
"admin"
|
|
268
|
+
],
|
|
269
|
+
"route": {
|
|
270
|
+
"verb": "GET",
|
|
271
|
+
"path": "/aMPStats"
|
|
272
|
+
},
|
|
273
|
+
"task": true
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"name": "folderList",
|
|
277
|
+
"summary": "Folder List",
|
|
278
|
+
"description": "URL: https://{{host}}/folder_list.xml\r\nXML Schema: amp_folder_list.xsd\r\nParameters: Optionally limit information returned to one or more folders by supplying folder IDs.\r\nExample URL: https://1{{host}}/folder_list.xml?id=1",
|
|
279
|
+
"input": [
|
|
280
|
+
{
|
|
281
|
+
"name": "queryData",
|
|
282
|
+
"type": "object",
|
|
283
|
+
"info": "the query parameters to be put on the url (optional)",
|
|
284
|
+
"description": "the query parameters to be put on the url (optional)",
|
|
285
|
+
"schema": {
|
|
286
|
+
"title": "queryData",
|
|
287
|
+
"type": "object"
|
|
288
|
+
},
|
|
289
|
+
"required": false
|
|
290
|
+
}
|
|
291
|
+
],
|
|
292
|
+
"output": {
|
|
293
|
+
"name": "result",
|
|
294
|
+
"type": "object",
|
|
295
|
+
"description": "A JSON Object containing status, code and the result",
|
|
296
|
+
"schema": {
|
|
297
|
+
"title": "result",
|
|
298
|
+
"type": "object"
|
|
299
|
+
}
|
|
300
|
+
},
|
|
301
|
+
"roles": [
|
|
302
|
+
"admin"
|
|
303
|
+
],
|
|
304
|
+
"route": {
|
|
305
|
+
"verb": "GET",
|
|
306
|
+
"path": "/folderList"
|
|
307
|
+
},
|
|
308
|
+
"task": true
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"name": "catalogRepository",
|
|
312
|
+
"summary": "Catalog Repository",
|
|
313
|
+
"description": "Catalog Repository",
|
|
314
|
+
"input": [],
|
|
315
|
+
"output": {
|
|
316
|
+
"name": "result",
|
|
317
|
+
"type": "object",
|
|
318
|
+
"description": "A JSON Object containing status, code and the result",
|
|
319
|
+
"schema": {
|
|
320
|
+
"title": "result",
|
|
321
|
+
"type": "object"
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
"roles": [
|
|
325
|
+
"admin"
|
|
326
|
+
],
|
|
327
|
+
"route": {
|
|
328
|
+
"verb": "GET",
|
|
329
|
+
"path": "/catalogRepository"
|
|
330
|
+
},
|
|
331
|
+
"task": true
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"name": "alertList",
|
|
335
|
+
"summary": "Alert List",
|
|
336
|
+
"description": "Alert List",
|
|
337
|
+
"input": [],
|
|
338
|
+
"output": {
|
|
339
|
+
"name": "result",
|
|
340
|
+
"type": "object",
|
|
341
|
+
"description": "A JSON Object containing status, code and the result",
|
|
342
|
+
"schema": {
|
|
343
|
+
"title": "result",
|
|
344
|
+
"type": "object"
|
|
345
|
+
}
|
|
346
|
+
},
|
|
347
|
+
"roles": [
|
|
348
|
+
"admin"
|
|
349
|
+
],
|
|
350
|
+
"route": {
|
|
351
|
+
"verb": "GET",
|
|
352
|
+
"path": "/alertList"
|
|
353
|
+
},
|
|
354
|
+
"task": true
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"name": "aPList",
|
|
358
|
+
"summary": "AP List",
|
|
359
|
+
"description": "URL: https://{{host}}/ap_list.xml\r\nXML Schema: amp_ap_list.xsd\r\nParameters: \r\n Optionally limit information returned to one or more APs by supplying AP IDs.\r\n Similarly, limit by AP folders, AP groups, and controllers by supplying their IDs.\r\nExample URL: https://{{host}}/ap_list.xml?id=79&id=3648&ap_folder_id=3&ap_group_id=1&controller_id=15",
|
|
360
|
+
"input": [
|
|
361
|
+
{
|
|
362
|
+
"name": "queryData",
|
|
363
|
+
"type": "object",
|
|
364
|
+
"info": "the query parameters to be put on the url (optional)",
|
|
365
|
+
"description": "the query parameters to be put on the url (optional)",
|
|
366
|
+
"schema": {
|
|
367
|
+
"title": "queryData",
|
|
368
|
+
"type": "object"
|
|
369
|
+
},
|
|
370
|
+
"required": false
|
|
371
|
+
}
|
|
372
|
+
],
|
|
373
|
+
"output": {
|
|
374
|
+
"name": "result",
|
|
375
|
+
"type": "object",
|
|
376
|
+
"description": "A JSON Object containing status, code and the result",
|
|
377
|
+
"schema": {
|
|
378
|
+
"title": "result",
|
|
379
|
+
"type": "object"
|
|
380
|
+
}
|
|
381
|
+
},
|
|
382
|
+
"roles": [
|
|
383
|
+
"admin"
|
|
384
|
+
],
|
|
385
|
+
"route": {
|
|
386
|
+
"verb": "GET",
|
|
387
|
+
"path": "/aPList"
|
|
388
|
+
},
|
|
389
|
+
"task": true
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"name": "aPBSSIDList",
|
|
393
|
+
"summary": "AP BSSID List",
|
|
394
|
+
"description": "URL: https://{{host}}/api/ap_bssid_list.xml\r\nXML Schema: amp_ap_bssid_list.xsd\r\nParameters: \r\n Optionally limit information returned to one or more APs by supplying AP IDs.\r\n Similarly, limit by AP folders, AP groups, and controllers by supplying their IDs.\r\nExample URL: https://{{host}}/api/ap_bssid_list.xml?id=79&id=3648&ap_folder_id=3&ap_group_id=1&controller_id=15",
|
|
395
|
+
"input": [],
|
|
396
|
+
"output": {
|
|
397
|
+
"name": "result",
|
|
398
|
+
"type": "object",
|
|
399
|
+
"description": "A JSON Object containing status, code and the result",
|
|
400
|
+
"schema": {
|
|
401
|
+
"title": "result",
|
|
402
|
+
"type": "object"
|
|
403
|
+
}
|
|
404
|
+
},
|
|
405
|
+
"roles": [
|
|
406
|
+
"admin"
|
|
407
|
+
],
|
|
408
|
+
"route": {
|
|
409
|
+
"verb": "GET",
|
|
410
|
+
"path": "/aPBSSIDList"
|
|
411
|
+
},
|
|
412
|
+
"task": true
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"name": "aPDetail",
|
|
416
|
+
"summary": "AP Detail",
|
|
417
|
+
"description": "URL: https://{{host}}/ap_detail.xml\r\nXML Schema: amp_ap_detail.xsd\r\nParameters: \r\n Optionally limit information returned to one or more APs by supplying AP IDs.\r\n Similarly, limit by AP folders, AP groups, and controllers by supplying their IDs.\r\nOptional Tags: \r\n include=ignored - neighbors that have been ignored through the AMP UI are not included in the list of neighbor APs by default.\r\n Append this to the URL to include ignored neighbors in the output.\r\nExample URL: https://{{host}}/ap_detai...(description truncated)",
|
|
418
|
+
"input": [
|
|
419
|
+
{
|
|
420
|
+
"name": "queryData",
|
|
421
|
+
"type": "object",
|
|
422
|
+
"info": "the query parameters to be put on the url (optional)",
|
|
423
|
+
"description": "the query parameters to be put on the url (optional)",
|
|
424
|
+
"schema": {
|
|
425
|
+
"title": "queryData",
|
|
426
|
+
"type": "object"
|
|
427
|
+
},
|
|
428
|
+
"required": false
|
|
429
|
+
}
|
|
430
|
+
],
|
|
431
|
+
"output": {
|
|
432
|
+
"name": "result",
|
|
433
|
+
"type": "object",
|
|
434
|
+
"description": "A JSON Object containing status, code and the result",
|
|
435
|
+
"schema": {
|
|
436
|
+
"title": "result",
|
|
437
|
+
"type": "object"
|
|
438
|
+
}
|
|
439
|
+
},
|
|
440
|
+
"roles": [
|
|
441
|
+
"admin"
|
|
442
|
+
],
|
|
443
|
+
"route": {
|
|
444
|
+
"verb": "GET",
|
|
445
|
+
"path": "/aPDetail"
|
|
446
|
+
},
|
|
447
|
+
"task": true
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
"name": "deleteDevice",
|
|
451
|
+
"summary": "Device delete",
|
|
452
|
+
"description": "Delete a device with device ID in AirWave",
|
|
453
|
+
"input": [
|
|
454
|
+
{
|
|
455
|
+
"name": "body",
|
|
456
|
+
"type": "object",
|
|
457
|
+
"info": "device id",
|
|
458
|
+
"description": "device id",
|
|
459
|
+
"schema": {
|
|
460
|
+
"title": "body",
|
|
461
|
+
"type": "object"
|
|
462
|
+
},
|
|
463
|
+
"required": true
|
|
464
|
+
}
|
|
465
|
+
],
|
|
466
|
+
"output": {
|
|
467
|
+
"name": "result",
|
|
468
|
+
"type": "object",
|
|
469
|
+
"description": "A JSON Object containing status, code and the result",
|
|
470
|
+
"schema": {
|
|
471
|
+
"title": "result",
|
|
472
|
+
"type": "object"
|
|
473
|
+
}
|
|
474
|
+
},
|
|
475
|
+
"roles": [
|
|
476
|
+
"admin"
|
|
477
|
+
],
|
|
478
|
+
"route": {
|
|
479
|
+
"verb": "DELETE",
|
|
480
|
+
"path": "/deleteDevice"
|
|
481
|
+
},
|
|
482
|
+
"task": true
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"name": "moveDeviceToFolder",
|
|
486
|
+
"summary": "Move device",
|
|
487
|
+
"description": "Move a device with device ID from one folder to another folder with folder ID in AirWave",
|
|
488
|
+
"input": [
|
|
489
|
+
{
|
|
490
|
+
"name": "body",
|
|
491
|
+
"type": "object",
|
|
492
|
+
"info": "device id",
|
|
493
|
+
"description": "device id and folder id",
|
|
494
|
+
"schema": {
|
|
495
|
+
"title": "body",
|
|
496
|
+
"type": "object"
|
|
497
|
+
},
|
|
498
|
+
"required": true
|
|
499
|
+
}
|
|
500
|
+
],
|
|
501
|
+
"output": {
|
|
502
|
+
"name": "result",
|
|
503
|
+
"type": "object",
|
|
504
|
+
"description": "A JSON Object containing status, code and the result",
|
|
505
|
+
"schema": {
|
|
506
|
+
"title": "result",
|
|
507
|
+
"type": "object"
|
|
508
|
+
}
|
|
509
|
+
},
|
|
510
|
+
"roles": [
|
|
511
|
+
"admin"
|
|
512
|
+
],
|
|
513
|
+
"route": {
|
|
514
|
+
"verb": "PUT",
|
|
515
|
+
"path": "/moveDeviceToFolder"
|
|
516
|
+
},
|
|
517
|
+
"task": true
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"name": "aPLog",
|
|
521
|
+
"summary": "AP Log",
|
|
522
|
+
"description": "URL: https://{{host}}/ap_log.xml\r\nXML Schema: amp_ap_log.xsd\r\nParameters: Must supply one or more AP IDs.\r\nOptional Tags: limit - (defaults to 20)\r\nExample URL: https://{{host}}/ap_log.xml?id=79&limit=5",
|
|
523
|
+
"input": [
|
|
524
|
+
{
|
|
525
|
+
"name": "id",
|
|
526
|
+
"type": "number",
|
|
527
|
+
"info": ": 123",
|
|
528
|
+
"required": true,
|
|
529
|
+
"schema": {
|
|
530
|
+
"title": "id",
|
|
531
|
+
"type": "number"
|
|
532
|
+
}
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
"name": "limit",
|
|
536
|
+
"type": "number",
|
|
537
|
+
"info": ": 123",
|
|
538
|
+
"required": true,
|
|
539
|
+
"schema": {
|
|
540
|
+
"title": "limit",
|
|
541
|
+
"type": "number"
|
|
542
|
+
}
|
|
543
|
+
}
|
|
544
|
+
],
|
|
545
|
+
"output": {
|
|
546
|
+
"name": "result",
|
|
547
|
+
"type": "object",
|
|
548
|
+
"description": "A JSON Object containing status, code and the result",
|
|
549
|
+
"schema": {
|
|
550
|
+
"title": "result",
|
|
551
|
+
"type": "object"
|
|
552
|
+
}
|
|
553
|
+
},
|
|
554
|
+
"roles": [
|
|
555
|
+
"admin"
|
|
556
|
+
],
|
|
557
|
+
"route": {
|
|
558
|
+
"verb": "POST",
|
|
559
|
+
"path": "/aPLog"
|
|
560
|
+
},
|
|
561
|
+
"task": true
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"name": "rogueDetail",
|
|
565
|
+
"summary": "Rogue Detail",
|
|
566
|
+
"description": "URL: https://{{host}}/rogue_detail.xml\r\nXML Schema: amp_rogue_detail.xsd\r\nParameters: Must supply one or more Rogue AP IDs. Rogue IDs are obtained from a neighbor_ap ID in the AP Detail API, when the neighbor_type is rogue.\r\nOptional Tags: limit - as explained above\r\nExample URL: https://{{host}}/rogue_detail.xml?id=267",
|
|
567
|
+
"input": [
|
|
568
|
+
{
|
|
569
|
+
"name": "id",
|
|
570
|
+
"type": "number",
|
|
571
|
+
"info": ": 123",
|
|
572
|
+
"required": true,
|
|
573
|
+
"schema": {
|
|
574
|
+
"title": "id",
|
|
575
|
+
"type": "number"
|
|
576
|
+
}
|
|
577
|
+
}
|
|
578
|
+
],
|
|
579
|
+
"output": {
|
|
580
|
+
"name": "result",
|
|
581
|
+
"type": "object",
|
|
582
|
+
"description": "A JSON Object containing status, code and the result",
|
|
583
|
+
"schema": {
|
|
584
|
+
"title": "result",
|
|
585
|
+
"type": "object"
|
|
586
|
+
}
|
|
587
|
+
},
|
|
588
|
+
"roles": [
|
|
589
|
+
"admin"
|
|
590
|
+
],
|
|
591
|
+
"route": {
|
|
592
|
+
"verb": "POST",
|
|
593
|
+
"path": "/rogueDetail"
|
|
594
|
+
},
|
|
595
|
+
"task": true
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"name": "clientDetail",
|
|
599
|
+
"summary": "Client Detail",
|
|
600
|
+
"description": "URL: https://{{host}}/client_detail.xml\r\nXML Schema: amp_client_detail.xsd\r\nParameters: Must supply one or more Client MAC Addresses.\r\nOptional Tags: limit - as explained above\r\nExample URL: https://{{host}}/client_detail.xml?mac=00:0E:35:52:8C:AB",
|
|
601
|
+
"input": [
|
|
602
|
+
{
|
|
603
|
+
"name": "mac",
|
|
604
|
+
"type": "string",
|
|
605
|
+
"info": ": string",
|
|
606
|
+
"required": true,
|
|
607
|
+
"schema": {
|
|
608
|
+
"title": "mac",
|
|
609
|
+
"type": "string"
|
|
610
|
+
}
|
|
611
|
+
}
|
|
612
|
+
],
|
|
613
|
+
"output": {
|
|
614
|
+
"name": "result",
|
|
615
|
+
"type": "object",
|
|
616
|
+
"description": "A JSON Object containing status, code and the result",
|
|
617
|
+
"schema": {
|
|
618
|
+
"title": "result",
|
|
619
|
+
"type": "object"
|
|
620
|
+
}
|
|
621
|
+
},
|
|
622
|
+
"roles": [
|
|
623
|
+
"admin"
|
|
624
|
+
],
|
|
625
|
+
"route": {
|
|
626
|
+
"verb": "POST",
|
|
627
|
+
"path": "/clientDetail"
|
|
628
|
+
},
|
|
629
|
+
"task": true
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
"name": "visualRFConfig",
|
|
633
|
+
"summary": "VisualRF Config",
|
|
634
|
+
"description": "URL: https://192.168.1.176/visualrf_config.xml\r\nXML Schema: amp_visualrf_config.xsd\r\nParameters: None.",
|
|
635
|
+
"input": [],
|
|
636
|
+
"output": {
|
|
637
|
+
"name": "result",
|
|
638
|
+
"type": "object",
|
|
639
|
+
"description": "A JSON Object containing status, code and the result",
|
|
640
|
+
"schema": {
|
|
641
|
+
"title": "result",
|
|
642
|
+
"type": "object"
|
|
643
|
+
}
|
|
644
|
+
},
|
|
645
|
+
"roles": [
|
|
646
|
+
"admin"
|
|
647
|
+
],
|
|
648
|
+
"route": {
|
|
649
|
+
"verb": "GET",
|
|
650
|
+
"path": "/visualRFConfig"
|
|
651
|
+
},
|
|
652
|
+
"task": true
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
"name": "userInfo",
|
|
656
|
+
"summary": "User Info",
|
|
657
|
+
"description": "URL: https://{{host}}/user_info.xml\r\nXML Schema: amp_user_info.xsd\r\nParameters: None.",
|
|
658
|
+
"input": [],
|
|
659
|
+
"output": {
|
|
660
|
+
"name": "result",
|
|
661
|
+
"type": "object",
|
|
662
|
+
"description": "A JSON Object containing status, code and the result",
|
|
663
|
+
"schema": {
|
|
664
|
+
"title": "result",
|
|
665
|
+
"type": "object"
|
|
666
|
+
}
|
|
667
|
+
},
|
|
668
|
+
"roles": [
|
|
669
|
+
"admin"
|
|
670
|
+
],
|
|
671
|
+
"route": {
|
|
672
|
+
"verb": "GET",
|
|
673
|
+
"path": "/userInfo"
|
|
674
|
+
},
|
|
675
|
+
"task": true
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"name": "deviceRRDInfo",
|
|
679
|
+
"summary": "Device RRD Info",
|
|
680
|
+
"description": "URL: https://{{host}}/device_rrd_info.xml\r\nParameters: None.\r\nNote: RRD = Round-Robin Database",
|
|
681
|
+
"input": [],
|
|
682
|
+
"output": {
|
|
683
|
+
"name": "result",
|
|
684
|
+
"type": "object",
|
|
685
|
+
"description": "A JSON Object containing status, code and the result",
|
|
686
|
+
"schema": {
|
|
687
|
+
"title": "result",
|
|
688
|
+
"type": "object"
|
|
689
|
+
}
|
|
690
|
+
},
|
|
691
|
+
"roles": [
|
|
692
|
+
"admin"
|
|
693
|
+
],
|
|
694
|
+
"route": {
|
|
695
|
+
"verb": "GET",
|
|
696
|
+
"path": "/deviceRRDInfo"
|
|
697
|
+
},
|
|
698
|
+
"task": true
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
"name": "clientRRDInfo",
|
|
702
|
+
"summary": "Client RRD Info",
|
|
703
|
+
"description": "URL: https://{{host}}/user_rrd_info.xml\r\nParameters: None.\r\nNote: RRD = Round-Robin Database",
|
|
704
|
+
"input": [],
|
|
705
|
+
"output": {
|
|
706
|
+
"name": "result",
|
|
707
|
+
"type": "object",
|
|
708
|
+
"description": "A JSON Object containing status, code and the result",
|
|
709
|
+
"schema": {
|
|
710
|
+
"title": "result",
|
|
711
|
+
"type": "object"
|
|
712
|
+
}
|
|
713
|
+
},
|
|
714
|
+
"roles": [
|
|
715
|
+
"admin"
|
|
716
|
+
],
|
|
717
|
+
"route": {
|
|
718
|
+
"verb": "GET",
|
|
719
|
+
"path": "/clientRRDInfo"
|
|
720
|
+
},
|
|
721
|
+
"task": true
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"name": "changeSet",
|
|
725
|
+
"summary": "Change Set",
|
|
726
|
+
"description": "URL: https://{{host}}/site_changes\r\nRequest XML Schema: amp_change_set.xsd\r\nParameters:\r\n site_id - unique identifier obtained from the Site List API\r\n site_name - existing or new name for the site\r\n changeset - XML document following the above schema\r\nResponse XML Schema: amp_redirect.xsd - Supplies a redirect to a change set confirm page, or one or more error messages",
|
|
727
|
+
"input": [
|
|
728
|
+
{
|
|
729
|
+
"name": "body",
|
|
730
|
+
"type": "object",
|
|
731
|
+
"info": ": {\"version\": 123, \"ap\": [{\"id\": 123, \"name\": \"string\", \"lan_ip\": \"string\", \"radio\": [{\"index\": 123, \"channel\": 123, \"transmit_power\": \"string\", \"antenna\": \"string\"}]}]}",
|
|
732
|
+
"required": true,
|
|
733
|
+
"schema": {
|
|
734
|
+
"title": "amp_ap_update",
|
|
735
|
+
"required": [
|
|
736
|
+
"version",
|
|
737
|
+
"ap"
|
|
738
|
+
],
|
|
739
|
+
"type": "object",
|
|
740
|
+
"properties": {
|
|
741
|
+
"version": {
|
|
742
|
+
"type": "integer",
|
|
743
|
+
"format": "int32",
|
|
744
|
+
"xml": {
|
|
745
|
+
"name": "version",
|
|
746
|
+
"attribute": true,
|
|
747
|
+
"wrapped": false
|
|
748
|
+
}
|
|
749
|
+
},
|
|
750
|
+
"ap": {
|
|
751
|
+
"type": "array",
|
|
752
|
+
"items": {
|
|
753
|
+
"title": "ap",
|
|
754
|
+
"required": [
|
|
755
|
+
"name",
|
|
756
|
+
"radio"
|
|
757
|
+
],
|
|
758
|
+
"type": "object",
|
|
759
|
+
"properties": {
|
|
760
|
+
"id": {
|
|
761
|
+
"type": "integer",
|
|
762
|
+
"format": "int32",
|
|
763
|
+
"xml": {
|
|
764
|
+
"name": "id",
|
|
765
|
+
"attribute": true,
|
|
766
|
+
"wrapped": false
|
|
767
|
+
}
|
|
768
|
+
},
|
|
769
|
+
"name": {
|
|
770
|
+
"type": "string",
|
|
771
|
+
"xml": {
|
|
772
|
+
"name": "name",
|
|
773
|
+
"namespace": "",
|
|
774
|
+
"attribute": false,
|
|
775
|
+
"wrapped": false
|
|
776
|
+
}
|
|
777
|
+
},
|
|
778
|
+
"lan_ip": {
|
|
779
|
+
"type": "string",
|
|
780
|
+
"xml": {
|
|
781
|
+
"name": "lan_ip",
|
|
782
|
+
"namespace": "",
|
|
783
|
+
"attribute": false,
|
|
784
|
+
"wrapped": false
|
|
785
|
+
}
|
|
786
|
+
},
|
|
787
|
+
"radio": {
|
|
788
|
+
"type": "array",
|
|
789
|
+
"items": {
|
|
790
|
+
"title": "radio",
|
|
791
|
+
"required": [
|
|
792
|
+
"channel",
|
|
793
|
+
"transmit_power"
|
|
794
|
+
],
|
|
795
|
+
"type": "object",
|
|
796
|
+
"properties": {
|
|
797
|
+
"index": {
|
|
798
|
+
"type": "integer",
|
|
799
|
+
"format": "int32",
|
|
800
|
+
"xml": {
|
|
801
|
+
"name": "index",
|
|
802
|
+
"attribute": true,
|
|
803
|
+
"wrapped": false
|
|
804
|
+
}
|
|
805
|
+
},
|
|
806
|
+
"channel": {
|
|
807
|
+
"type": "integer",
|
|
808
|
+
"format": "int32",
|
|
809
|
+
"xml": {
|
|
810
|
+
"name": "channel",
|
|
811
|
+
"namespace": "",
|
|
812
|
+
"attribute": false,
|
|
813
|
+
"wrapped": false
|
|
814
|
+
}
|
|
815
|
+
},
|
|
816
|
+
"transmit_power": {
|
|
817
|
+
"type": "string",
|
|
818
|
+
"xml": {
|
|
819
|
+
"name": "transmit_power",
|
|
820
|
+
"namespace": "",
|
|
821
|
+
"attribute": false,
|
|
822
|
+
"wrapped": false
|
|
823
|
+
}
|
|
824
|
+
},
|
|
825
|
+
"antenna": {
|
|
826
|
+
"type": "string",
|
|
827
|
+
"xml": {
|
|
828
|
+
"name": "antenna",
|
|
829
|
+
"namespace": "",
|
|
830
|
+
"attribute": false,
|
|
831
|
+
"wrapped": false
|
|
832
|
+
}
|
|
833
|
+
}
|
|
834
|
+
},
|
|
835
|
+
"xml": {
|
|
836
|
+
"name": "radio",
|
|
837
|
+
"namespace": "",
|
|
838
|
+
"attribute": false,
|
|
839
|
+
"wrapped": false
|
|
840
|
+
}
|
|
841
|
+
},
|
|
842
|
+
"description": "",
|
|
843
|
+
"xml": {
|
|
844
|
+
"namespace": "",
|
|
845
|
+
"attribute": false,
|
|
846
|
+
"wrapped": false
|
|
847
|
+
}
|
|
848
|
+
}
|
|
849
|
+
},
|
|
850
|
+
"xml": {
|
|
851
|
+
"name": "ap",
|
|
852
|
+
"namespace": "",
|
|
853
|
+
"attribute": false,
|
|
854
|
+
"wrapped": false
|
|
855
|
+
}
|
|
856
|
+
},
|
|
857
|
+
"description": "",
|
|
858
|
+
"xml": {
|
|
859
|
+
"namespace": "",
|
|
860
|
+
"attribute": false,
|
|
861
|
+
"wrapped": false
|
|
862
|
+
}
|
|
863
|
+
}
|
|
864
|
+
},
|
|
865
|
+
"xml": {
|
|
866
|
+
"name": "amp_ap_update",
|
|
867
|
+
"namespace": "",
|
|
868
|
+
"attribute": false,
|
|
869
|
+
"wrapped": false
|
|
870
|
+
}
|
|
871
|
+
}
|
|
872
|
+
}
|
|
873
|
+
],
|
|
874
|
+
"output": {
|
|
875
|
+
"name": "result",
|
|
876
|
+
"type": "object",
|
|
877
|
+
"description": "A JSON Object containing status, code and the result",
|
|
878
|
+
"schema": {
|
|
879
|
+
"title": "result",
|
|
880
|
+
"type": "object"
|
|
881
|
+
}
|
|
882
|
+
},
|
|
883
|
+
"roles": [
|
|
884
|
+
"admin"
|
|
885
|
+
],
|
|
886
|
+
"route": {
|
|
887
|
+
"verb": "POST",
|
|
888
|
+
"path": "/changeSet"
|
|
889
|
+
},
|
|
890
|
+
"task": true
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
"name": "guestUserCreateUser",
|
|
894
|
+
"summary": "Guest User: Create User",
|
|
895
|
+
"description": "URL: https://{{host}}/guest_user_api\r\nParameters: None.\r\nThe guest user API will accept either requests with a Content-Type of application/x-www-form-urlencoded or text/xml. Requests with Content-Type application/x-www-form-urlencoded must submit the url encoded XML data in a parameter named 'xml'.",
|
|
896
|
+
"input": [
|
|
897
|
+
{
|
|
898
|
+
"name": "bodyFormData",
|
|
899
|
+
"type": "string",
|
|
900
|
+
"info": ": string",
|
|
901
|
+
"required": true,
|
|
902
|
+
"schema": {
|
|
903
|
+
"title": "bodyFormData",
|
|
904
|
+
"type": "string"
|
|
905
|
+
}
|
|
906
|
+
}
|
|
907
|
+
],
|
|
908
|
+
"output": {
|
|
909
|
+
"name": "result",
|
|
910
|
+
"type": "object",
|
|
911
|
+
"description": "A JSON Object containing status, code and the result",
|
|
912
|
+
"schema": {
|
|
913
|
+
"title": "result",
|
|
914
|
+
"type": "object"
|
|
915
|
+
}
|
|
916
|
+
},
|
|
917
|
+
"roles": [
|
|
918
|
+
"admin"
|
|
919
|
+
],
|
|
920
|
+
"route": {
|
|
921
|
+
"verb": "POST",
|
|
922
|
+
"path": "/guestUserCreateUser"
|
|
923
|
+
},
|
|
924
|
+
"task": true
|
|
925
|
+
},
|
|
926
|
+
{
|
|
927
|
+
"name": "modifyTemplateVariables",
|
|
928
|
+
"summary": "Modify Template Variables",
|
|
929
|
+
"description": "URL: https://{{host}}/template_variable_api\r\nParameters: None.\r\nThe modify template variable API will accept either requests with a Content-Type of application/x-www-form-urlencoded or text/xml. Requests with Content-Type application/x-www-form-urlencoded must submit the url encoded XML data in a parameter named 'xml'.",
|
|
930
|
+
"input": [
|
|
931
|
+
{
|
|
932
|
+
"name": "body",
|
|
933
|
+
"type": "object",
|
|
934
|
+
"info": ": {\"version\": 123, \"ap\": [{\"id\": 123, \"custom_variable_9\": \"string\", \"swarm_radius_servers\": \"string\", \"prefer_master\": 123, \"custom_variable_1\": \"string\", \"pppoe_username\": \"string\", \"instant_networking_mode\": 123, \"zone_name\": \"string\"}]}",
|
|
935
|
+
"required": true,
|
|
936
|
+
"schema": {
|
|
937
|
+
"title": "amp_template_variable_update",
|
|
938
|
+
"required": [
|
|
939
|
+
"version",
|
|
940
|
+
"ap"
|
|
941
|
+
],
|
|
942
|
+
"type": "object",
|
|
943
|
+
"properties": {
|
|
944
|
+
"version": {
|
|
945
|
+
"type": "integer",
|
|
946
|
+
"format": "int32",
|
|
947
|
+
"xml": {
|
|
948
|
+
"name": "version",
|
|
949
|
+
"attribute": true,
|
|
950
|
+
"wrapped": false
|
|
951
|
+
}
|
|
952
|
+
},
|
|
953
|
+
"ap": {
|
|
954
|
+
"type": "array",
|
|
955
|
+
"items": {
|
|
956
|
+
"title": "ap1",
|
|
957
|
+
"required": [
|
|
958
|
+
"custom_variable_9",
|
|
959
|
+
"swarm_radius_servers",
|
|
960
|
+
"prefer_master",
|
|
961
|
+
"custom_variable_1",
|
|
962
|
+
"pppoe_username",
|
|
963
|
+
"instant_networking_mode",
|
|
964
|
+
"zone_name"
|
|
965
|
+
],
|
|
966
|
+
"type": "object",
|
|
967
|
+
"properties": {
|
|
968
|
+
"id": {
|
|
969
|
+
"type": "integer",
|
|
970
|
+
"format": "int32",
|
|
971
|
+
"xml": {
|
|
972
|
+
"name": "id",
|
|
973
|
+
"attribute": true,
|
|
974
|
+
"wrapped": false
|
|
975
|
+
}
|
|
976
|
+
},
|
|
977
|
+
"custom_variable_9": {
|
|
978
|
+
"type": "string",
|
|
979
|
+
"xml": {
|
|
980
|
+
"name": "custom_variable_9",
|
|
981
|
+
"namespace": "",
|
|
982
|
+
"attribute": false,
|
|
983
|
+
"wrapped": false
|
|
984
|
+
}
|
|
985
|
+
},
|
|
986
|
+
"swarm_radius_servers": {
|
|
987
|
+
"type": "string",
|
|
988
|
+
"xml": {
|
|
989
|
+
"name": "swarm_radius_servers",
|
|
990
|
+
"namespace": "",
|
|
991
|
+
"attribute": false,
|
|
992
|
+
"wrapped": false
|
|
993
|
+
}
|
|
994
|
+
},
|
|
995
|
+
"prefer_master": {
|
|
996
|
+
"type": "integer",
|
|
997
|
+
"format": "int32",
|
|
998
|
+
"xml": {
|
|
999
|
+
"name": "prefer_master",
|
|
1000
|
+
"namespace": "",
|
|
1001
|
+
"attribute": false,
|
|
1002
|
+
"wrapped": false
|
|
1003
|
+
}
|
|
1004
|
+
},
|
|
1005
|
+
"custom_variable_1": {
|
|
1006
|
+
"type": "string",
|
|
1007
|
+
"xml": {
|
|
1008
|
+
"name": "custom_variable_1",
|
|
1009
|
+
"namespace": "",
|
|
1010
|
+
"attribute": false,
|
|
1011
|
+
"wrapped": false
|
|
1012
|
+
}
|
|
1013
|
+
},
|
|
1014
|
+
"pppoe_username": {
|
|
1015
|
+
"type": "string",
|
|
1016
|
+
"xml": {
|
|
1017
|
+
"name": "pppoe_username",
|
|
1018
|
+
"namespace": "",
|
|
1019
|
+
"attribute": false,
|
|
1020
|
+
"wrapped": false
|
|
1021
|
+
}
|
|
1022
|
+
},
|
|
1023
|
+
"instant_networking_mode": {
|
|
1024
|
+
"type": "integer",
|
|
1025
|
+
"format": "int32",
|
|
1026
|
+
"xml": {
|
|
1027
|
+
"name": "instant_networking_mode",
|
|
1028
|
+
"namespace": "",
|
|
1029
|
+
"attribute": false,
|
|
1030
|
+
"wrapped": false
|
|
1031
|
+
}
|
|
1032
|
+
},
|
|
1033
|
+
"zone_name": {
|
|
1034
|
+
"type": "string",
|
|
1035
|
+
"xml": {
|
|
1036
|
+
"name": "zone_name",
|
|
1037
|
+
"namespace": "",
|
|
1038
|
+
"attribute": false,
|
|
1039
|
+
"wrapped": false
|
|
1040
|
+
}
|
|
1041
|
+
}
|
|
1042
|
+
},
|
|
1043
|
+
"xml": {
|
|
1044
|
+
"name": "ap",
|
|
1045
|
+
"namespace": "",
|
|
1046
|
+
"attribute": false,
|
|
1047
|
+
"wrapped": false
|
|
1048
|
+
}
|
|
1049
|
+
},
|
|
1050
|
+
"description": "",
|
|
1051
|
+
"xml": {
|
|
1052
|
+
"namespace": "",
|
|
1053
|
+
"attribute": false,
|
|
1054
|
+
"wrapped": false
|
|
1055
|
+
}
|
|
1056
|
+
}
|
|
1057
|
+
},
|
|
1058
|
+
"xml": {
|
|
1059
|
+
"name": "amp_template_variable_update",
|
|
1060
|
+
"namespace": "",
|
|
1061
|
+
"attribute": false,
|
|
1062
|
+
"wrapped": false
|
|
1063
|
+
}
|
|
1064
|
+
}
|
|
1065
|
+
}
|
|
1066
|
+
],
|
|
1067
|
+
"output": {
|
|
1068
|
+
"name": "result",
|
|
1069
|
+
"type": "object",
|
|
1070
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1071
|
+
"schema": {
|
|
1072
|
+
"title": "result",
|
|
1073
|
+
"type": "object"
|
|
1074
|
+
}
|
|
1075
|
+
},
|
|
1076
|
+
"roles": [
|
|
1077
|
+
"admin"
|
|
1078
|
+
],
|
|
1079
|
+
"route": {
|
|
1080
|
+
"verb": "POST",
|
|
1081
|
+
"path": "/modifyTemplateVariables"
|
|
1082
|
+
},
|
|
1083
|
+
"task": true
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
"name": "importAPWhitelist",
|
|
1087
|
+
"summary": "Import AP Whitelist",
|
|
1088
|
+
"description": "URL: https://{{host}}/api/ap_whitelist_upload\r\nParameters:\r\n csv - AP whitelist in csv format\r\n append_whitelist - 0: Replace the whole list 1: Update list without removing",
|
|
1089
|
+
"input": [
|
|
1090
|
+
{
|
|
1091
|
+
"name": "appendWhitelist",
|
|
1092
|
+
"type": "number",
|
|
1093
|
+
"info": ": 123",
|
|
1094
|
+
"required": true,
|
|
1095
|
+
"schema": {
|
|
1096
|
+
"title": "appendWhitelist",
|
|
1097
|
+
"type": "number"
|
|
1098
|
+
}
|
|
1099
|
+
},
|
|
1100
|
+
{
|
|
1101
|
+
"name": "body",
|
|
1102
|
+
"type": "string",
|
|
1103
|
+
"info": ": string",
|
|
1104
|
+
"required": true,
|
|
1105
|
+
"schema": {
|
|
1106
|
+
"type": "string",
|
|
1107
|
+
"xml": {
|
|
1108
|
+
"name": "Body",
|
|
1109
|
+
"attribute": false,
|
|
1110
|
+
"wrapped": false
|
|
1111
|
+
}
|
|
1112
|
+
}
|
|
1113
|
+
}
|
|
1114
|
+
],
|
|
1115
|
+
"output": {
|
|
1116
|
+
"name": "result",
|
|
1117
|
+
"type": "object",
|
|
1118
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1119
|
+
"schema": {
|
|
1120
|
+
"title": "result",
|
|
1121
|
+
"type": "object"
|
|
1122
|
+
}
|
|
1123
|
+
},
|
|
1124
|
+
"roles": [
|
|
1125
|
+
"admin"
|
|
1126
|
+
],
|
|
1127
|
+
"route": {
|
|
1128
|
+
"verb": "POST",
|
|
1129
|
+
"path": "/importAPWhitelist"
|
|
1130
|
+
},
|
|
1131
|
+
"task": true
|
|
1132
|
+
},
|
|
1133
|
+
{
|
|
1134
|
+
"name": "deauthenticateClient",
|
|
1135
|
+
"summary": "Deauthenticate Client",
|
|
1136
|
+
"description": "URL: https://{{host}}/deauthenticate_user.xml\r\nParameters: mac - client MAC address\r\nThe MAC addresses must correspond to clients who are connected to a device which supports this operation; the device must be in \"Manage Read/Write\" mode, and editable by the user making the request. \r\nExample URL: https://{{host}}/deauthenticate_user.xml?mac=88:88:B3:93:7D:0D&mac=88:88:B3:ED:FD:C3",
|
|
1137
|
+
"input": [
|
|
1138
|
+
{
|
|
1139
|
+
"name": "mac",
|
|
1140
|
+
"type": "string",
|
|
1141
|
+
"info": ": string",
|
|
1142
|
+
"required": true,
|
|
1143
|
+
"schema": {
|
|
1144
|
+
"title": "mac",
|
|
1145
|
+
"type": "string"
|
|
1146
|
+
}
|
|
1147
|
+
}
|
|
1148
|
+
],
|
|
1149
|
+
"output": {
|
|
1150
|
+
"name": "result",
|
|
1151
|
+
"type": "object",
|
|
1152
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1153
|
+
"schema": {
|
|
1154
|
+
"title": "result",
|
|
1155
|
+
"type": "object"
|
|
1156
|
+
}
|
|
1157
|
+
},
|
|
1158
|
+
"roles": [
|
|
1159
|
+
"admin"
|
|
1160
|
+
],
|
|
1161
|
+
"route": {
|
|
1162
|
+
"verb": "POST",
|
|
1163
|
+
"path": "/deauthenticateClient"
|
|
1164
|
+
},
|
|
1165
|
+
"task": true
|
|
1166
|
+
},
|
|
1167
|
+
{
|
|
1168
|
+
"name": "downStatusMessage",
|
|
1169
|
+
"summary": "Down Status Message",
|
|
1170
|
+
"description": "URL: https://{{host}}/down_status_message.xml\r\nParameters:\r\nAt least one of:\r\nap_id - the database ID of a Device.\r\nap_group_id - the database ID of an AP Group. All Devices in the specified AP Group will be updated.\r\nEither or both of:\r\ndown_status_message - the message to set on the specified devices.\r\nauto_clear_down_status_message - whether to automatically clear the Down Status Message when the Device comes back up. Send 1 or 0 to toggle this behavior on and off.\r\nThe specified devices must...(description truncated)",
|
|
1171
|
+
"input": [
|
|
1172
|
+
{
|
|
1173
|
+
"name": "apId",
|
|
1174
|
+
"type": "number",
|
|
1175
|
+
"info": ": 123",
|
|
1176
|
+
"required": true,
|
|
1177
|
+
"schema": {
|
|
1178
|
+
"title": "apId",
|
|
1179
|
+
"type": "number"
|
|
1180
|
+
}
|
|
1181
|
+
},
|
|
1182
|
+
{
|
|
1183
|
+
"name": "apGroupId",
|
|
1184
|
+
"type": "number",
|
|
1185
|
+
"info": ": 123",
|
|
1186
|
+
"required": true,
|
|
1187
|
+
"schema": {
|
|
1188
|
+
"title": "apGroupId",
|
|
1189
|
+
"type": "number"
|
|
1190
|
+
}
|
|
1191
|
+
},
|
|
1192
|
+
{
|
|
1193
|
+
"name": "downStatusMessage",
|
|
1194
|
+
"type": "string",
|
|
1195
|
+
"info": ": string",
|
|
1196
|
+
"required": true,
|
|
1197
|
+
"schema": {
|
|
1198
|
+
"title": "downStatusMessage",
|
|
1199
|
+
"type": "string"
|
|
1200
|
+
}
|
|
1201
|
+
},
|
|
1202
|
+
{
|
|
1203
|
+
"name": "autoClearDownStatusMessage",
|
|
1204
|
+
"type": "number",
|
|
1205
|
+
"info": ": 123",
|
|
1206
|
+
"required": true,
|
|
1207
|
+
"schema": {
|
|
1208
|
+
"title": "autoClearDownStatusMessage",
|
|
1209
|
+
"type": "number"
|
|
1210
|
+
}
|
|
1211
|
+
}
|
|
1212
|
+
],
|
|
1213
|
+
"output": {
|
|
1214
|
+
"name": "result",
|
|
1215
|
+
"type": "object",
|
|
1216
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1217
|
+
"schema": {
|
|
1218
|
+
"title": "result",
|
|
1219
|
+
"type": "object"
|
|
1220
|
+
}
|
|
1221
|
+
},
|
|
1222
|
+
"roles": [
|
|
1223
|
+
"admin"
|
|
1224
|
+
],
|
|
1225
|
+
"route": {
|
|
1226
|
+
"verb": "POST",
|
|
1227
|
+
"path": "/downStatusMessage"
|
|
1228
|
+
},
|
|
1229
|
+
"task": true
|
|
1230
|
+
},
|
|
1231
|
+
{
|
|
1232
|
+
"name": "aPSearch",
|
|
1233
|
+
"summary": "AP Search",
|
|
1234
|
+
"description": "URL: https://{{host}}/ap_search.xml\r\nParameters: query - search string\r\nExample URL: https://{{host}}/ap_search.xml?query=00:40:96",
|
|
1235
|
+
"input": [
|
|
1236
|
+
{
|
|
1237
|
+
"name": "query",
|
|
1238
|
+
"type": "string",
|
|
1239
|
+
"info": ": string",
|
|
1240
|
+
"required": true,
|
|
1241
|
+
"schema": {
|
|
1242
|
+
"title": "query",
|
|
1243
|
+
"type": "string"
|
|
1244
|
+
}
|
|
1245
|
+
}
|
|
1246
|
+
],
|
|
1247
|
+
"output": {
|
|
1248
|
+
"name": "result",
|
|
1249
|
+
"type": "object",
|
|
1250
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1251
|
+
"schema": {
|
|
1252
|
+
"title": "result",
|
|
1253
|
+
"type": "object"
|
|
1254
|
+
}
|
|
1255
|
+
},
|
|
1256
|
+
"roles": [
|
|
1257
|
+
"admin"
|
|
1258
|
+
],
|
|
1259
|
+
"route": {
|
|
1260
|
+
"verb": "POST",
|
|
1261
|
+
"path": "/aPSearch"
|
|
1262
|
+
},
|
|
1263
|
+
"task": true
|
|
1264
|
+
},
|
|
1265
|
+
{
|
|
1266
|
+
"name": "clientSearch",
|
|
1267
|
+
"summary": "Client Search",
|
|
1268
|
+
"description": "URL: https://{{host}}/client_search.xml\r\nParameters: query - search string\r\nExample URL: https://{{host}}/client_search.xml?query=8C:AB",
|
|
1269
|
+
"input": [
|
|
1270
|
+
{
|
|
1271
|
+
"name": "query",
|
|
1272
|
+
"type": "string",
|
|
1273
|
+
"info": ": string",
|
|
1274
|
+
"required": true,
|
|
1275
|
+
"schema": {
|
|
1276
|
+
"title": "query",
|
|
1277
|
+
"type": "string"
|
|
1278
|
+
}
|
|
1279
|
+
}
|
|
1280
|
+
],
|
|
1281
|
+
"output": {
|
|
1282
|
+
"name": "result",
|
|
1283
|
+
"type": "object",
|
|
1284
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1285
|
+
"schema": {
|
|
1286
|
+
"title": "result",
|
|
1287
|
+
"type": "object"
|
|
1288
|
+
}
|
|
1289
|
+
},
|
|
1290
|
+
"roles": [
|
|
1291
|
+
"admin"
|
|
1292
|
+
],
|
|
1293
|
+
"route": {
|
|
1294
|
+
"verb": "POST",
|
|
1295
|
+
"path": "/clientSearch"
|
|
1296
|
+
},
|
|
1297
|
+
"task": true
|
|
1298
|
+
},
|
|
1299
|
+
{
|
|
1300
|
+
"name": "vPNUserSearch",
|
|
1301
|
+
"summary": "VPN User Search",
|
|
1302
|
+
"description": "URL: https://{{host}}/vpn_user_search.xml\r\nParameters: query - search string\r\nExample URL: https://{{host}}/vpn_user_search.xml?query=lionizers",
|
|
1303
|
+
"input": [
|
|
1304
|
+
{
|
|
1305
|
+
"name": "query",
|
|
1306
|
+
"type": "string",
|
|
1307
|
+
"info": ": string",
|
|
1308
|
+
"required": true,
|
|
1309
|
+
"schema": {
|
|
1310
|
+
"title": "query",
|
|
1311
|
+
"type": "string"
|
|
1312
|
+
}
|
|
1313
|
+
}
|
|
1314
|
+
],
|
|
1315
|
+
"output": {
|
|
1316
|
+
"name": "result",
|
|
1317
|
+
"type": "object",
|
|
1318
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1319
|
+
"schema": {
|
|
1320
|
+
"title": "result",
|
|
1321
|
+
"type": "object"
|
|
1322
|
+
}
|
|
1323
|
+
},
|
|
1324
|
+
"roles": [
|
|
1325
|
+
"admin"
|
|
1326
|
+
],
|
|
1327
|
+
"route": {
|
|
1328
|
+
"verb": "POST",
|
|
1329
|
+
"path": "/vPNUserSearch"
|
|
1330
|
+
},
|
|
1331
|
+
"task": true
|
|
1332
|
+
},
|
|
1333
|
+
{
|
|
1334
|
+
"name": "latestReport",
|
|
1335
|
+
"summary": "Latest Report",
|
|
1336
|
+
"description": "URL: https://{{host}}/latest_report.xml\r\nParameters:\r\n report_definition_id - Get it from the URL of a Report Definition Edit Page, ex. https://{{host}}/reports_definition?definitions_edit=1&id=42",
|
|
1337
|
+
"input": [
|
|
1338
|
+
{
|
|
1339
|
+
"name": "definitionsEdit",
|
|
1340
|
+
"type": "number",
|
|
1341
|
+
"info": ": 123",
|
|
1342
|
+
"required": true,
|
|
1343
|
+
"schema": {
|
|
1344
|
+
"title": "definitionsEdit",
|
|
1345
|
+
"type": "number"
|
|
1346
|
+
}
|
|
1347
|
+
},
|
|
1348
|
+
{
|
|
1349
|
+
"name": "id",
|
|
1350
|
+
"type": "number",
|
|
1351
|
+
"info": ": 123",
|
|
1352
|
+
"required": true,
|
|
1353
|
+
"schema": {
|
|
1354
|
+
"title": "id",
|
|
1355
|
+
"type": "number"
|
|
1356
|
+
}
|
|
1357
|
+
}
|
|
1358
|
+
],
|
|
1359
|
+
"output": {
|
|
1360
|
+
"name": "result",
|
|
1361
|
+
"type": "object",
|
|
1362
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1363
|
+
"schema": {
|
|
1364
|
+
"title": "result",
|
|
1365
|
+
"type": "object"
|
|
1366
|
+
}
|
|
1367
|
+
},
|
|
1368
|
+
"roles": [
|
|
1369
|
+
"admin"
|
|
1370
|
+
],
|
|
1371
|
+
"route": {
|
|
1372
|
+
"verb": "POST",
|
|
1373
|
+
"path": "/latestReport"
|
|
1374
|
+
},
|
|
1375
|
+
"task": true
|
|
1376
|
+
},
|
|
1377
|
+
{
|
|
1378
|
+
"name": "batchExecuteAPCommand",
|
|
1379
|
+
"summary": "Batch Execute AP Command",
|
|
1380
|
+
"description": "URL: https://{{host}}/api/batch_command_execute\r\nParameters:\r\n cmds - Must provide the commands to execute. Multiple commands must be separated by enter or comma. \r\n cmd_type - Optional. Execute commands on ap type of selected. Valid value: thin_ap not_thin_ap (Other values or not provided is for all ap types). \r\n Optionally limit information returned to one or more APs by supplying AP IDs.\r\n Similarly, limit by AP folders, AP groups, and controllers by supplying their IDs.\r\nThe batch execute ap...(description truncated)",
|
|
1381
|
+
"input": [
|
|
1382
|
+
{
|
|
1383
|
+
"name": "body",
|
|
1384
|
+
"type": "object",
|
|
1385
|
+
"info": ": {\"version\": 123, \"cmds\": \"string\", \"cmd_type\": \"string\", \"ap\": [{\"id\": 123, \"controller_id\": 123, \"ap_group_id\": 123, \"ap_folder_id\": 123}]}",
|
|
1386
|
+
"required": true,
|
|
1387
|
+
"schema": {
|
|
1388
|
+
"title": "amp_batch_command_execute",
|
|
1389
|
+
"required": [
|
|
1390
|
+
"version",
|
|
1391
|
+
"cmds",
|
|
1392
|
+
"cmd_type",
|
|
1393
|
+
"ap"
|
|
1394
|
+
],
|
|
1395
|
+
"type": "object",
|
|
1396
|
+
"properties": {
|
|
1397
|
+
"version": {
|
|
1398
|
+
"type": "integer",
|
|
1399
|
+
"format": "int32",
|
|
1400
|
+
"xml": {
|
|
1401
|
+
"name": "version",
|
|
1402
|
+
"attribute": true,
|
|
1403
|
+
"wrapped": false
|
|
1404
|
+
}
|
|
1405
|
+
},
|
|
1406
|
+
"cmds": {
|
|
1407
|
+
"type": "string",
|
|
1408
|
+
"xml": {
|
|
1409
|
+
"name": "cmds",
|
|
1410
|
+
"attribute": true,
|
|
1411
|
+
"wrapped": false
|
|
1412
|
+
}
|
|
1413
|
+
},
|
|
1414
|
+
"cmd_type": {
|
|
1415
|
+
"type": "string",
|
|
1416
|
+
"xml": {
|
|
1417
|
+
"name": "cmd_type",
|
|
1418
|
+
"attribute": true,
|
|
1419
|
+
"wrapped": false
|
|
1420
|
+
}
|
|
1421
|
+
},
|
|
1422
|
+
"ap": {
|
|
1423
|
+
"type": "array",
|
|
1424
|
+
"items": {
|
|
1425
|
+
"title": "ap2",
|
|
1426
|
+
"required": [
|
|
1427
|
+
"id"
|
|
1428
|
+
],
|
|
1429
|
+
"type": "object",
|
|
1430
|
+
"properties": {
|
|
1431
|
+
"id": {
|
|
1432
|
+
"type": "integer",
|
|
1433
|
+
"format": "int32",
|
|
1434
|
+
"xml": {
|
|
1435
|
+
"name": "id",
|
|
1436
|
+
"attribute": true,
|
|
1437
|
+
"wrapped": false
|
|
1438
|
+
}
|
|
1439
|
+
},
|
|
1440
|
+
"controller_id": {
|
|
1441
|
+
"type": "integer",
|
|
1442
|
+
"format": "int32",
|
|
1443
|
+
"xml": {
|
|
1444
|
+
"name": "controller_id",
|
|
1445
|
+
"attribute": true,
|
|
1446
|
+
"wrapped": false
|
|
1447
|
+
}
|
|
1448
|
+
},
|
|
1449
|
+
"ap_group_id": {
|
|
1450
|
+
"type": "integer",
|
|
1451
|
+
"format": "int32",
|
|
1452
|
+
"xml": {
|
|
1453
|
+
"name": "ap_group_id",
|
|
1454
|
+
"attribute": true,
|
|
1455
|
+
"wrapped": false
|
|
1456
|
+
}
|
|
1457
|
+
},
|
|
1458
|
+
"ap_folder_id": {
|
|
1459
|
+
"type": "integer",
|
|
1460
|
+
"format": "int32",
|
|
1461
|
+
"xml": {
|
|
1462
|
+
"name": "ap_folder_id",
|
|
1463
|
+
"attribute": true,
|
|
1464
|
+
"wrapped": false
|
|
1465
|
+
}
|
|
1466
|
+
}
|
|
1467
|
+
},
|
|
1468
|
+
"xml": {
|
|
1469
|
+
"name": "ap",
|
|
1470
|
+
"namespace": "",
|
|
1471
|
+
"attribute": false,
|
|
1472
|
+
"wrapped": false
|
|
1473
|
+
}
|
|
1474
|
+
},
|
|
1475
|
+
"description": "",
|
|
1476
|
+
"xml": {
|
|
1477
|
+
"namespace": "",
|
|
1478
|
+
"attribute": false,
|
|
1479
|
+
"wrapped": false
|
|
1480
|
+
}
|
|
1481
|
+
}
|
|
1482
|
+
},
|
|
1483
|
+
"xml": {
|
|
1484
|
+
"name": "amp_batch_command_execute",
|
|
1485
|
+
"namespace": "",
|
|
1486
|
+
"attribute": false,
|
|
1487
|
+
"wrapped": false
|
|
1488
|
+
}
|
|
1489
|
+
}
|
|
1490
|
+
}
|
|
1491
|
+
],
|
|
1492
|
+
"output": {
|
|
1493
|
+
"name": "result",
|
|
1494
|
+
"type": "object",
|
|
1495
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1496
|
+
"schema": {
|
|
1497
|
+
"title": "result",
|
|
1498
|
+
"type": "object"
|
|
1499
|
+
}
|
|
1500
|
+
},
|
|
1501
|
+
"roles": [
|
|
1502
|
+
"admin"
|
|
1503
|
+
],
|
|
1504
|
+
"route": {
|
|
1505
|
+
"verb": "POST",
|
|
1506
|
+
"path": "/batchExecuteAPCommand"
|
|
1507
|
+
},
|
|
1508
|
+
"task": true
|
|
1509
|
+
},
|
|
1510
|
+
{
|
|
1511
|
+
"name": "batchExecuteAPCommandResult",
|
|
1512
|
+
"summary": "Batch Execute AP Command Result",
|
|
1513
|
+
"description": "URL: https://{{host}}/api/batch_command_execute_result\r\nParameters: None",
|
|
1514
|
+
"input": [],
|
|
1515
|
+
"output": {
|
|
1516
|
+
"name": "result",
|
|
1517
|
+
"type": "object",
|
|
1518
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1519
|
+
"schema": {
|
|
1520
|
+
"title": "result",
|
|
1521
|
+
"type": "object"
|
|
1522
|
+
}
|
|
1523
|
+
},
|
|
1524
|
+
"roles": [
|
|
1525
|
+
"admin"
|
|
1526
|
+
],
|
|
1527
|
+
"route": {
|
|
1528
|
+
"verb": "GET",
|
|
1529
|
+
"path": "/batchExecuteAPCommandResult"
|
|
1530
|
+
},
|
|
1531
|
+
"task": true
|
|
1532
|
+
},
|
|
1533
|
+
{
|
|
1534
|
+
"name": "aMPLogin",
|
|
1535
|
+
"summary": "AMP: Login",
|
|
1536
|
+
"description": "Login to Airwave Appliance",
|
|
1537
|
+
"input": [
|
|
1538
|
+
{
|
|
1539
|
+
"name": "credential0",
|
|
1540
|
+
"type": "string",
|
|
1541
|
+
"info": ": string",
|
|
1542
|
+
"required": false,
|
|
1543
|
+
"schema": {
|
|
1544
|
+
"title": "credential0",
|
|
1545
|
+
"type": "string"
|
|
1546
|
+
}
|
|
1547
|
+
},
|
|
1548
|
+
{
|
|
1549
|
+
"name": "credential1",
|
|
1550
|
+
"type": "string",
|
|
1551
|
+
"info": ": string",
|
|
1552
|
+
"required": false,
|
|
1553
|
+
"schema": {
|
|
1554
|
+
"title": "credential1",
|
|
1555
|
+
"type": "string"
|
|
1556
|
+
}
|
|
1557
|
+
},
|
|
1558
|
+
{
|
|
1559
|
+
"name": "destination",
|
|
1560
|
+
"type": "string",
|
|
1561
|
+
"info": ": string",
|
|
1562
|
+
"required": false,
|
|
1563
|
+
"schema": {
|
|
1564
|
+
"title": "destination",
|
|
1565
|
+
"type": "string"
|
|
1566
|
+
}
|
|
1567
|
+
}
|
|
1568
|
+
],
|
|
1569
|
+
"output": {
|
|
1570
|
+
"name": "result",
|
|
1571
|
+
"type": "object",
|
|
1572
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1573
|
+
"schema": {
|
|
1574
|
+
"title": "result",
|
|
1575
|
+
"type": "object"
|
|
1576
|
+
}
|
|
1577
|
+
},
|
|
1578
|
+
"roles": [
|
|
1579
|
+
"admin"
|
|
1580
|
+
],
|
|
1581
|
+
"route": {
|
|
1582
|
+
"verb": "POST",
|
|
1583
|
+
"path": "/aMPLogin"
|
|
1584
|
+
},
|
|
1585
|
+
"task": true
|
|
1586
|
+
}
|
|
1587
|
+
],
|
|
1588
|
+
"views": []
|
|
1589
|
+
}
|