@itentialopensource/adapter-vmware_horizon_server 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. package/.eslintignore +5 -0
  2. package/.eslintrc.js +18 -0
  3. package/.jshintrc +3 -0
  4. package/AUTH.md +46 -0
  5. package/BROKER.md +211 -0
  6. package/CALLS.md +3807 -0
  7. package/CHANGELOG.md +9 -0
  8. package/CODE_OF_CONDUCT.md +43 -0
  9. package/CONTRIBUTING.md +13 -0
  10. package/ENHANCE.md +69 -0
  11. package/LICENSE +201 -0
  12. package/PROPERTIES.md +646 -0
  13. package/README.md +343 -0
  14. package/SUMMARY.md +9 -0
  15. package/SYSTEMINFO.md +20 -0
  16. package/TAB1.md +11 -0
  17. package/TAB2.md +318 -0
  18. package/TROUBLESHOOT.md +47 -0
  19. package/adapter.js +62670 -0
  20. package/adapterBase.js +1452 -0
  21. package/changelogs/CHANGELOG.md +0 -0
  22. package/entities/.generic/action.json +214 -0
  23. package/entities/.generic/schema.json +28 -0
  24. package/entities/.system/action.json +50 -0
  25. package/entities/.system/mockdatafiles/getToken-default.json +3 -0
  26. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  27. package/entities/.system/schema.json +19 -0
  28. package/entities/.system/schemaTokenReq.json +53 -0
  29. package/entities/.system/schemaTokenResp.json +53 -0
  30. package/entities/Auth/action.json +105 -0
  31. package/entities/Auth/schema.json +34 -0
  32. package/entities/Config/action.json +4587 -0
  33. package/entities/Config/schema.json +374 -0
  34. package/entities/Entitlements/action.json +332 -0
  35. package/entities/Entitlements/schema.json +34 -0
  36. package/entities/External/action.json +977 -0
  37. package/entities/External/schema.json +274 -0
  38. package/entities/Federation/action.json +557 -0
  39. package/entities/Federation/schema.json +45 -0
  40. package/entities/HelpDesk/action.json +88 -0
  41. package/entities/HelpDesk/schema.json +55 -0
  42. package/entities/Inventory/action.json +4682 -0
  43. package/entities/Inventory/schema.json +368 -0
  44. package/entities/Monitor/action.json +1012 -0
  45. package/entities/Monitor/schema.json +99 -0
  46. package/error.json +190 -0
  47. package/metadata.json +88 -0
  48. package/package.json +81 -0
  49. package/pronghorn.json +30327 -0
  50. package/propertiesDecorators.json +14 -0
  51. package/propertiesSchema.json +1574 -0
  52. package/refs?service=git-upload-pack +0 -0
  53. package/report/adapter-openapi.json +84438 -0
  54. package/report/adapter-openapi.yaml +78549 -0
  55. package/report/adapterInfo.json +10 -0
  56. package/report/auto-adapter-openapi.json +24916 -0
  57. package/report/creationReport.json +3315 -0
  58. package/report/horizon api.json +84438 -0
  59. package/sampleProperties.json +259 -0
  60. package/test/integration/adapterTestBasicGet.js +83 -0
  61. package/test/integration/adapterTestConnectivity.js +118 -0
  62. package/test/integration/adapterTestIntegration.js +15865 -0
  63. package/test/unit/adapterBaseTestUnit.js +1024 -0
  64. package/test/unit/adapterTestUnit.js +17459 -0
  65. package/utils/adapterInfo.js +206 -0
  66. package/utils/addAuth.js +94 -0
  67. package/utils/artifactize.js +146 -0
  68. package/utils/basicGet.js +50 -0
  69. package/utils/checkMigrate.js +63 -0
  70. package/utils/entitiesToDB.js +179 -0
  71. package/utils/findPath.js +74 -0
  72. package/utils/methodDocumentor.js +273 -0
  73. package/utils/modify.js +152 -0
  74. package/utils/packModificationScript.js +35 -0
  75. package/utils/patches2bundledDeps.js +90 -0
  76. package/utils/pre-commit.sh +32 -0
  77. package/utils/removeHooks.js +20 -0
  78. package/utils/setup.js +33 -0
  79. package/utils/taskMover.js +309 -0
  80. package/utils/tbScript.js +239 -0
  81. package/utils/tbUtils.js +489 -0
  82. package/utils/testRunner.js +298 -0
  83. package/utils/troubleshootingAdapter.js +193 -0
@@ -0,0 +1,557 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "getPodFederation",
5
+ "protocol": "REST",
6
+ "method": "GET",
7
+ "entitypath": "{base_path}/{version}/federation/v1/cpa?{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": "updatePodFederation",
26
+ "protocol": "REST",
27
+ "method": "PUT",
28
+ "entitypath": "{base_path}/{version}/federation/v1/cpa?{query}",
29
+ "requestSchema": "schema.json",
30
+ "responseSchema": "schema.json",
31
+ "timeout": 0,
32
+ "sendEmpty": false,
33
+ "requestDatatype": "JSON",
34
+ "responseDatatype": "JSON",
35
+ "headers": {},
36
+ "responseObjects": [
37
+ {
38
+ "type": "default",
39
+ "key": "",
40
+ "mockFile": ""
41
+ }
42
+ ]
43
+ },
44
+ {
45
+ "name": "ejectPod",
46
+ "protocol": "REST",
47
+ "method": "POST",
48
+ "entitypath": "{base_path}/{version}/federation/v1/cpa/action/eject?{query}",
49
+ "requestSchema": "schema.json",
50
+ "responseSchema": "schema.json",
51
+ "timeout": 0,
52
+ "sendEmpty": false,
53
+ "requestDatatype": "JSON",
54
+ "responseDatatype": "JSON",
55
+ "headers": {},
56
+ "responseObjects": [
57
+ {
58
+ "type": "default",
59
+ "key": "",
60
+ "mockFile": ""
61
+ }
62
+ ]
63
+ },
64
+ {
65
+ "name": "initializeCPA",
66
+ "protocol": "REST",
67
+ "method": "POST",
68
+ "entitypath": "{base_path}/{version}/federation/v1/cpa/action/initialize?{query}",
69
+ "requestSchema": "schema.json",
70
+ "responseSchema": "schema.json",
71
+ "timeout": 0,
72
+ "sendEmpty": false,
73
+ "requestDatatype": "JSON",
74
+ "responseDatatype": "JSON",
75
+ "headers": {},
76
+ "responseObjects": [
77
+ {
78
+ "type": "default",
79
+ "key": "",
80
+ "mockFile": ""
81
+ }
82
+ ]
83
+ },
84
+ {
85
+ "name": "joinCPA",
86
+ "protocol": "REST",
87
+ "method": "POST",
88
+ "entitypath": "{base_path}/{version}/federation/v1/cpa/action/join?{query}",
89
+ "requestSchema": "schema.json",
90
+ "responseSchema": "schema.json",
91
+ "timeout": 0,
92
+ "sendEmpty": false,
93
+ "requestDatatype": "JSON",
94
+ "responseDatatype": "JSON",
95
+ "headers": {},
96
+ "responseObjects": [
97
+ {
98
+ "type": "default",
99
+ "key": "",
100
+ "mockFile": ""
101
+ }
102
+ ]
103
+ },
104
+ {
105
+ "name": "rotateKeyPair",
106
+ "protocol": "REST",
107
+ "method": "POST",
108
+ "entitypath": "{base_path}/{version}/federation/v1/cpa/action/rotate-keypair?{query}",
109
+ "requestSchema": "schema.json",
110
+ "responseSchema": "schema.json",
111
+ "timeout": 0,
112
+ "sendEmpty": false,
113
+ "requestDatatype": "JSON",
114
+ "responseDatatype": "JSON",
115
+ "headers": {},
116
+ "responseObjects": [
117
+ {
118
+ "type": "default",
119
+ "key": "",
120
+ "mockFile": ""
121
+ }
122
+ ]
123
+ },
124
+ {
125
+ "name": "uninitializeCPA",
126
+ "protocol": "REST",
127
+ "method": "POST",
128
+ "entitypath": "{base_path}/{version}/federation/v1/cpa/action/uninitialize?{query}",
129
+ "requestSchema": "schema.json",
130
+ "responseSchema": "schema.json",
131
+ "timeout": 0,
132
+ "sendEmpty": false,
133
+ "requestDatatype": "JSON",
134
+ "responseDatatype": "JSON",
135
+ "headers": {},
136
+ "responseObjects": [
137
+ {
138
+ "type": "default",
139
+ "key": "",
140
+ "mockFile": ""
141
+ }
142
+ ]
143
+ },
144
+ {
145
+ "name": "unjoinCPA",
146
+ "protocol": "REST",
147
+ "method": "POST",
148
+ "entitypath": "{base_path}/{version}/federation/v1/cpa/action/unjoin?{query}",
149
+ "requestSchema": "schema.json",
150
+ "responseSchema": "schema.json",
151
+ "timeout": 0,
152
+ "sendEmpty": false,
153
+ "requestDatatype": "JSON",
154
+ "responseDatatype": "JSON",
155
+ "headers": {},
156
+ "responseObjects": [
157
+ {
158
+ "type": "default",
159
+ "key": "",
160
+ "mockFile": ""
161
+ }
162
+ ]
163
+ },
164
+ {
165
+ "name": "listTasks",
166
+ "protocol": "REST",
167
+ "method": "GET",
168
+ "entitypath": "{base_path}/{version}/federation/v1/cpa/tasks?{query}",
169
+ "requestSchema": "schema.json",
170
+ "responseSchema": "schema.json",
171
+ "timeout": 0,
172
+ "sendEmpty": false,
173
+ "sendGetBody": false,
174
+ "requestDatatype": "JSON",
175
+ "responseDatatype": "JSON",
176
+ "headers": {},
177
+ "responseObjects": [
178
+ {
179
+ "type": "default",
180
+ "key": "",
181
+ "mockFile": ""
182
+ }
183
+ ]
184
+ },
185
+ {
186
+ "name": "getTask",
187
+ "protocol": "REST",
188
+ "method": "GET",
189
+ "entitypath": "{base_path}/{version}/federation/v1/cpa/tasks/{pathv1}?{query}",
190
+ "requestSchema": "schema.json",
191
+ "responseSchema": "schema.json",
192
+ "timeout": 0,
193
+ "sendEmpty": false,
194
+ "sendGetBody": false,
195
+ "requestDatatype": "JSON",
196
+ "responseDatatype": "JSON",
197
+ "headers": {},
198
+ "responseObjects": [
199
+ {
200
+ "type": "default",
201
+ "key": "",
202
+ "mockFile": ""
203
+ }
204
+ ]
205
+ },
206
+ {
207
+ "name": "deleteHomeSites",
208
+ "protocol": "REST",
209
+ "method": "DELETE",
210
+ "entitypath": "{base_path}/{version}/federation/v1/home-sites?{query}",
211
+ "requestSchema": "schema.json",
212
+ "responseSchema": "schema.json",
213
+ "timeout": 0,
214
+ "sendEmpty": false,
215
+ "requestDatatype": "JSON",
216
+ "responseDatatype": "JSON",
217
+ "headers": {},
218
+ "responseObjects": [
219
+ {
220
+ "type": "default",
221
+ "key": "",
222
+ "mockFile": ""
223
+ }
224
+ ]
225
+ },
226
+ {
227
+ "name": "listHomeSites",
228
+ "protocol": "REST",
229
+ "method": "GET",
230
+ "entitypath": "{base_path}/{version}/federation/v1/home-sites?{query}",
231
+ "requestSchema": "schema.json",
232
+ "responseSchema": "schema.json",
233
+ "timeout": 0,
234
+ "sendEmpty": false,
235
+ "sendGetBody": false,
236
+ "requestDatatype": "JSON",
237
+ "responseDatatype": "JSON",
238
+ "headers": {},
239
+ "responseObjects": [
240
+ {
241
+ "type": "default",
242
+ "key": "",
243
+ "mockFile": ""
244
+ }
245
+ ]
246
+ },
247
+ {
248
+ "name": "createHomeSites",
249
+ "protocol": "REST",
250
+ "method": "POST",
251
+ "entitypath": "{base_path}/{version}/federation/v1/home-sites?{query}",
252
+ "requestSchema": "schema.json",
253
+ "responseSchema": "schema.json",
254
+ "timeout": 0,
255
+ "sendEmpty": false,
256
+ "requestDatatype": "JSON",
257
+ "responseDatatype": "JSON",
258
+ "headers": {},
259
+ "responseObjects": [
260
+ {
261
+ "type": "default",
262
+ "key": "",
263
+ "mockFile": ""
264
+ }
265
+ ]
266
+ },
267
+ {
268
+ "name": "resolveHomeSites",
269
+ "protocol": "REST",
270
+ "method": "POST",
271
+ "entitypath": "{base_path}/{version}/federation/v1/home-sites/action/resolve?{query}",
272
+ "requestSchema": "schema.json",
273
+ "responseSchema": "schema.json",
274
+ "timeout": 0,
275
+ "sendEmpty": false,
276
+ "requestDatatype": "JSON",
277
+ "responseDatatype": "JSON",
278
+ "headers": {},
279
+ "responseObjects": [
280
+ {
281
+ "type": "default",
282
+ "key": "",
283
+ "mockFile": ""
284
+ }
285
+ ]
286
+ },
287
+ {
288
+ "name": "getHomeSite",
289
+ "protocol": "REST",
290
+ "method": "GET",
291
+ "entitypath": "{base_path}/{version}/federation/v1/home-sites/{pathv1}?{query}",
292
+ "requestSchema": "schema.json",
293
+ "responseSchema": "schema.json",
294
+ "timeout": 0,
295
+ "sendEmpty": false,
296
+ "sendGetBody": false,
297
+ "requestDatatype": "JSON",
298
+ "responseDatatype": "JSON",
299
+ "headers": {},
300
+ "responseObjects": [
301
+ {
302
+ "type": "default",
303
+ "key": "",
304
+ "mockFile": ""
305
+ }
306
+ ]
307
+ },
308
+ {
309
+ "name": "listPodAssignments",
310
+ "protocol": "REST",
311
+ "method": "GET",
312
+ "entitypath": "{base_path}/{version}/federation/v1/pod-assignments?{query}",
313
+ "requestSchema": "schema.json",
314
+ "responseSchema": "schema.json",
315
+ "timeout": 0,
316
+ "sendEmpty": false,
317
+ "sendGetBody": false,
318
+ "requestDatatype": "JSON",
319
+ "responseDatatype": "JSON",
320
+ "headers": {},
321
+ "responseObjects": [
322
+ {
323
+ "type": "default",
324
+ "key": "",
325
+ "mockFile": ""
326
+ }
327
+ ]
328
+ },
329
+ {
330
+ "name": "getPodAssignment",
331
+ "protocol": "REST",
332
+ "method": "GET",
333
+ "entitypath": "{base_path}/{version}/federation/v1/pod-assignments/{pathv1}?{query}",
334
+ "requestSchema": "schema.json",
335
+ "responseSchema": "schema.json",
336
+ "timeout": 0,
337
+ "sendEmpty": false,
338
+ "sendGetBody": false,
339
+ "requestDatatype": "JSON",
340
+ "responseDatatype": "JSON",
341
+ "headers": {},
342
+ "responseObjects": [
343
+ {
344
+ "type": "default",
345
+ "key": "",
346
+ "mockFile": ""
347
+ }
348
+ ]
349
+ },
350
+ {
351
+ "name": "listPods",
352
+ "protocol": "REST",
353
+ "method": "GET",
354
+ "entitypath": "{base_path}/{version}/federation/v1/pods?{query}",
355
+ "requestSchema": "schema.json",
356
+ "responseSchema": "schema.json",
357
+ "timeout": 0,
358
+ "sendEmpty": false,
359
+ "sendGetBody": false,
360
+ "requestDatatype": "JSON",
361
+ "responseDatatype": "JSON",
362
+ "headers": {},
363
+ "responseObjects": [
364
+ {
365
+ "type": "default",
366
+ "key": "",
367
+ "mockFile": ""
368
+ }
369
+ ]
370
+ },
371
+ {
372
+ "name": "getPod",
373
+ "protocol": "REST",
374
+ "method": "GET",
375
+ "entitypath": "{base_path}/{version}/federation/v1/pods/{pathv1}?{query}",
376
+ "requestSchema": "schema.json",
377
+ "responseSchema": "schema.json",
378
+ "timeout": 0,
379
+ "sendEmpty": false,
380
+ "sendGetBody": false,
381
+ "requestDatatype": "JSON",
382
+ "responseDatatype": "JSON",
383
+ "headers": {},
384
+ "responseObjects": [
385
+ {
386
+ "type": "default",
387
+ "key": "",
388
+ "mockFile": ""
389
+ }
390
+ ]
391
+ },
392
+ {
393
+ "name": "updatePod",
394
+ "protocol": "REST",
395
+ "method": "PUT",
396
+ "entitypath": "{base_path}/{version}/federation/v1/pods/{pathv1}?{query}",
397
+ "requestSchema": "schema.json",
398
+ "responseSchema": "schema.json",
399
+ "timeout": 0,
400
+ "sendEmpty": false,
401
+ "requestDatatype": "JSON",
402
+ "responseDatatype": "JSON",
403
+ "headers": {},
404
+ "responseObjects": [
405
+ {
406
+ "type": "default",
407
+ "key": "",
408
+ "mockFile": ""
409
+ }
410
+ ]
411
+ },
412
+ {
413
+ "name": "listPodEndpoint",
414
+ "protocol": "REST",
415
+ "method": "GET",
416
+ "entitypath": "{base_path}/{version}/federation/v1/pods/{pathv1}/endpoints?{query}",
417
+ "requestSchema": "schema.json",
418
+ "responseSchema": "schema.json",
419
+ "timeout": 0,
420
+ "sendEmpty": false,
421
+ "sendGetBody": false,
422
+ "requestDatatype": "JSON",
423
+ "responseDatatype": "JSON",
424
+ "headers": {},
425
+ "responseObjects": [
426
+ {
427
+ "type": "default",
428
+ "key": "",
429
+ "mockFile": ""
430
+ }
431
+ ]
432
+ },
433
+ {
434
+ "name": "getPodEndpoint",
435
+ "protocol": "REST",
436
+ "method": "GET",
437
+ "entitypath": "{base_path}/{version}/federation/v1/pods/{pathv1}/endpoints/{pathv2}?{query}",
438
+ "requestSchema": "schema.json",
439
+ "responseSchema": "schema.json",
440
+ "timeout": 0,
441
+ "sendEmpty": false,
442
+ "sendGetBody": false,
443
+ "requestDatatype": "JSON",
444
+ "responseDatatype": "JSON",
445
+ "headers": {},
446
+ "responseObjects": [
447
+ {
448
+ "type": "default",
449
+ "key": "",
450
+ "mockFile": ""
451
+ }
452
+ ]
453
+ },
454
+ {
455
+ "name": "listSites",
456
+ "protocol": "REST",
457
+ "method": "GET",
458
+ "entitypath": "{base_path}/{version}/federation/v1/sites?{query}",
459
+ "requestSchema": "schema.json",
460
+ "responseSchema": "schema.json",
461
+ "timeout": 0,
462
+ "sendEmpty": false,
463
+ "sendGetBody": false,
464
+ "requestDatatype": "JSON",
465
+ "responseDatatype": "JSON",
466
+ "headers": {},
467
+ "responseObjects": [
468
+ {
469
+ "type": "default",
470
+ "key": "",
471
+ "mockFile": ""
472
+ }
473
+ ]
474
+ },
475
+ {
476
+ "name": "createSite",
477
+ "protocol": "REST",
478
+ "method": "POST",
479
+ "entitypath": "{base_path}/{version}/federation/v1/sites?{query}",
480
+ "requestSchema": "schema.json",
481
+ "responseSchema": "schema.json",
482
+ "timeout": 0,
483
+ "sendEmpty": false,
484
+ "requestDatatype": "JSON",
485
+ "responseDatatype": "JSON",
486
+ "headers": {},
487
+ "responseObjects": [
488
+ {
489
+ "type": "default",
490
+ "key": "",
491
+ "mockFile": ""
492
+ }
493
+ ]
494
+ },
495
+ {
496
+ "name": "deleteSite",
497
+ "protocol": "REST",
498
+ "method": "DELETE",
499
+ "entitypath": "{base_path}/{version}/federation/v1/sites/{pathv1}?{query}",
500
+ "requestSchema": "schema.json",
501
+ "responseSchema": "schema.json",
502
+ "timeout": 0,
503
+ "sendEmpty": false,
504
+ "requestDatatype": "JSON",
505
+ "responseDatatype": "JSON",
506
+ "headers": {},
507
+ "responseObjects": [
508
+ {
509
+ "type": "default",
510
+ "key": "",
511
+ "mockFile": ""
512
+ }
513
+ ]
514
+ },
515
+ {
516
+ "name": "getSite",
517
+ "protocol": "REST",
518
+ "method": "GET",
519
+ "entitypath": "{base_path}/{version}/federation/v1/sites/{pathv1}?{query}",
520
+ "requestSchema": "schema.json",
521
+ "responseSchema": "schema.json",
522
+ "timeout": 0,
523
+ "sendEmpty": false,
524
+ "sendGetBody": false,
525
+ "requestDatatype": "JSON",
526
+ "responseDatatype": "JSON",
527
+ "headers": {},
528
+ "responseObjects": [
529
+ {
530
+ "type": "default",
531
+ "key": "",
532
+ "mockFile": ""
533
+ }
534
+ ]
535
+ },
536
+ {
537
+ "name": "updateSite",
538
+ "protocol": "REST",
539
+ "method": "PUT",
540
+ "entitypath": "{base_path}/{version}/federation/v1/sites/{pathv1}?{query}",
541
+ "requestSchema": "schema.json",
542
+ "responseSchema": "schema.json",
543
+ "timeout": 0,
544
+ "sendEmpty": false,
545
+ "requestDatatype": "JSON",
546
+ "responseDatatype": "JSON",
547
+ "headers": {},
548
+ "responseObjects": [
549
+ {
550
+ "type": "default",
551
+ "key": "",
552
+ "mockFile": ""
553
+ }
554
+ ]
555
+ }
556
+ ]
557
+ }
@@ -0,0 +1,45 @@
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": "getPodFederation",
12
+ "enum": [
13
+ "getPodFederation",
14
+ "updatePodFederation",
15
+ "ejectPod",
16
+ "initializeCPA",
17
+ "joinCPA",
18
+ "rotateKeyPair",
19
+ "uninitializeCPA",
20
+ "unjoinCPA",
21
+ "listTasks",
22
+ "getTask",
23
+ "deleteHomeSites",
24
+ "listHomeSites",
25
+ "createHomeSites",
26
+ "resolveHomeSites",
27
+ "getHomeSite",
28
+ "listPodAssignments",
29
+ "getPodAssignment",
30
+ "listPods",
31
+ "getPod",
32
+ "updatePod",
33
+ "listPodEndpoint",
34
+ "getPodEndpoint",
35
+ "listSites",
36
+ "createSite",
37
+ "deleteSite",
38
+ "getSite",
39
+ "updateSite"
40
+ ],
41
+ "external_name": "ph_request_type"
42
+ }
43
+ },
44
+ "definitions": {}
45
+ }
@@ -0,0 +1,88 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "getLogonSegmentInfo",
5
+ "protocol": "REST",
6
+ "method": "GET",
7
+ "entitypath": "{base_path}/{version}/helpdesk/v1/logon-timing/logon-segment?{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": "getDisplayProtocolPerformanceInfo",
26
+ "protocol": "REST",
27
+ "method": "GET",
28
+ "entitypath": "{base_path}/{version}/helpdesk/v1/performance/display-protocol?{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": "listProcessPerformanceInfo",
47
+ "protocol": "REST",
48
+ "method": "GET",
49
+ "entitypath": "{base_path}/{version}/helpdesk/v1/performance/process?{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": "listRemoteApplicationPerformanceInfo",
68
+ "protocol": "REST",
69
+ "method": "GET",
70
+ "entitypath": "{base_path}/{version}/helpdesk/v1/performance/remote-application?{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
+ }