@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,977 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "listADDomains",
5
+ "protocol": "REST",
6
+ "method": "GET",
7
+ "entitypath": "{base_path}/{version}/external/v1/ad-domains?{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": "bind",
26
+ "protocol": "REST",
27
+ "method": "POST",
28
+ "entitypath": "{base_path}/{version}/external/v1/ad-domains/action/bind?{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": "updateAuxiliaryAccounts",
46
+ "protocol": "REST",
47
+ "method": "POST",
48
+ "entitypath": "{base_path}/{version}/external/v1/ad-domains/action/update-auxiliary-accounts?{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": "addAuxiliaryAccounts",
66
+ "protocol": "REST",
67
+ "method": "POST",
68
+ "entitypath": "{base_path}/{version}/external/v1/ad-domains/{pathv1}/action/add-auxiliary-accounts?{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": "deleteAuxiliaryAccounts",
86
+ "protocol": "REST",
87
+ "method": "POST",
88
+ "entitypath": "{base_path}/{version}/external/v1/ad-domains/{pathv1}/action/delete-auxiliary-accounts?{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": "unbind",
106
+ "protocol": "REST",
107
+ "method": "POST",
108
+ "entitypath": "{base_path}/{version}/external/v1/ad-domains/{pathv1}/action/unbind?{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": "update",
126
+ "protocol": "REST",
127
+ "method": "POST",
128
+ "entitypath": "{base_path}/{version}/external/v1/ad-domains/{pathv1}/action/update?{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": "listADContainers",
146
+ "protocol": "REST",
147
+ "method": "GET",
148
+ "entitypath": "{base_path}/{version}/external/v1/ad-domains/{pathv1}/ad-containers?{query}",
149
+ "requestSchema": "schema.json",
150
+ "responseSchema": "schema.json",
151
+ "timeout": 0,
152
+ "sendEmpty": false,
153
+ "sendGetBody": false,
154
+ "requestDatatype": "JSON",
155
+ "responseDatatype": "JSON",
156
+ "headers": {},
157
+ "responseObjects": [
158
+ {
159
+ "type": "default",
160
+ "key": "",
161
+ "mockFile": ""
162
+ }
163
+ ]
164
+ },
165
+ {
166
+ "name": "getDefaultADContainer",
167
+ "protocol": "REST",
168
+ "method": "GET",
169
+ "entitypath": "{base_path}/{version}/external/v1/ad-domains/{pathv1}/ad-containers/default?{query}",
170
+ "requestSchema": "schema.json",
171
+ "responseSchema": "schema.json",
172
+ "timeout": 0,
173
+ "sendEmpty": false,
174
+ "sendGetBody": false,
175
+ "requestDatatype": "JSON",
176
+ "responseDatatype": "JSON",
177
+ "headers": {},
178
+ "responseObjects": [
179
+ {
180
+ "type": "default",
181
+ "key": "",
182
+ "mockFile": ""
183
+ }
184
+ ]
185
+ },
186
+ {
187
+ "name": "getADContainer",
188
+ "protocol": "REST",
189
+ "method": "GET",
190
+ "entitypath": "{base_path}/{version}/external/v1/ad-domains/{pathv1}/ad-containers/{pathv2}?{query}",
191
+ "requestSchema": "schema.json",
192
+ "responseSchema": "schema.json",
193
+ "timeout": 0,
194
+ "sendEmpty": false,
195
+ "sendGetBody": false,
196
+ "requestDatatype": "JSON",
197
+ "responseDatatype": "JSON",
198
+ "headers": {},
199
+ "responseObjects": [
200
+ {
201
+ "type": "default",
202
+ "key": "",
203
+ "mockFile": ""
204
+ }
205
+ ]
206
+ },
207
+ {
208
+ "name": "listADUserOrGroupSummary",
209
+ "protocol": "REST",
210
+ "method": "GET",
211
+ "entitypath": "{base_path}/{version}/external/v1/ad-users-or-groups?{query}",
212
+ "requestSchema": "schema.json",
213
+ "responseSchema": "schema.json",
214
+ "timeout": 0,
215
+ "sendEmpty": false,
216
+ "sendGetBody": false,
217
+ "requestDatatype": "JSON",
218
+ "responseDatatype": "JSON",
219
+ "headers": {},
220
+ "responseObjects": [
221
+ {
222
+ "type": "default",
223
+ "key": "",
224
+ "mockFile": ""
225
+ }
226
+ ]
227
+ },
228
+ {
229
+ "name": "changeUserPassword",
230
+ "protocol": "REST",
231
+ "method": "POST",
232
+ "entitypath": "{base_path}/{version}/external/v1/ad-users-or-groups/action/change-user-password?{query}",
233
+ "requestSchema": "schema.json",
234
+ "responseSchema": "schema.json",
235
+ "timeout": 0,
236
+ "sendEmpty": false,
237
+ "requestDatatype": "JSON",
238
+ "responseDatatype": "JSON",
239
+ "headers": {},
240
+ "responseObjects": [
241
+ {
242
+ "type": "default",
243
+ "key": "",
244
+ "mockFile": ""
245
+ }
246
+ ]
247
+ },
248
+ {
249
+ "name": "bulkHoldUserOrGroup",
250
+ "protocol": "REST",
251
+ "method": "POST",
252
+ "entitypath": "{base_path}/{version}/external/v1/ad-users-or-groups/action/hold?{query}",
253
+ "requestSchema": "schema.json",
254
+ "responseSchema": "schema.json",
255
+ "timeout": 0,
256
+ "sendEmpty": false,
257
+ "requestDatatype": "JSON",
258
+ "responseDatatype": "JSON",
259
+ "headers": {},
260
+ "responseObjects": [
261
+ {
262
+ "type": "default",
263
+ "key": "",
264
+ "mockFile": ""
265
+ }
266
+ ]
267
+ },
268
+ {
269
+ "name": "bulkReleaseHoldUserOrGroup",
270
+ "protocol": "REST",
271
+ "method": "POST",
272
+ "entitypath": "{base_path}/{version}/external/v1/ad-users-or-groups/action/release-hold?{query}",
273
+ "requestSchema": "schema.json",
274
+ "responseSchema": "schema.json",
275
+ "timeout": 0,
276
+ "sendEmpty": false,
277
+ "requestDatatype": "JSON",
278
+ "responseDatatype": "JSON",
279
+ "headers": {},
280
+ "responseObjects": [
281
+ {
282
+ "type": "default",
283
+ "key": "",
284
+ "mockFile": ""
285
+ }
286
+ ]
287
+ },
288
+ {
289
+ "name": "validateADUserEncryptedCredentials",
290
+ "protocol": "REST",
291
+ "method": "POST",
292
+ "entitypath": "{base_path}/{version}/external/v1/ad-users-or-groups/action/validate-user-encrypted-credentials?{query}",
293
+ "requestSchema": "schema.json",
294
+ "responseSchema": "schema.json",
295
+ "timeout": 0,
296
+ "sendEmpty": 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": "listHeldUsersOrGroups",
310
+ "protocol": "REST",
311
+ "method": "GET",
312
+ "entitypath": "{base_path}/{version}/external/v1/ad-users-or-groups/held-users-or-groups?{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": "getADUserOrGroupInfo",
331
+ "protocol": "REST",
332
+ "method": "GET",
333
+ "entitypath": "{base_path}/{version}/external/v1/ad-users-or-groups/{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": "listAuditEvents",
352
+ "protocol": "REST",
353
+ "method": "GET",
354
+ "entitypath": "{base_path}/{version}/external/v1/audit-events?{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": "getAgentUpgradeHistory",
373
+ "protocol": "REST",
374
+ "method": "GET",
375
+ "entitypath": "{base_path}/{version}/external/v1/audit-events/agent-upgrade-history?{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": "auditEventsExtendedAttributes",
394
+ "protocol": "REST",
395
+ "method": "GET",
396
+ "entitypath": "{base_path}/{version}/external/v1/audit-events/extended-attributes?{query}",
397
+ "requestSchema": "schema.json",
398
+ "responseSchema": "schema.json",
399
+ "timeout": 0,
400
+ "sendEmpty": false,
401
+ "sendGetBody": false,
402
+ "requestDatatype": "JSON",
403
+ "responseDatatype": "JSON",
404
+ "headers": {},
405
+ "responseObjects": [
406
+ {
407
+ "type": "default",
408
+ "key": "",
409
+ "mockFile": ""
410
+ }
411
+ ]
412
+ },
413
+ {
414
+ "name": "listBaseSnapshots",
415
+ "protocol": "REST",
416
+ "method": "GET",
417
+ "entitypath": "{base_path}/{version}/external/v1/base-snapshots?{query}",
418
+ "requestSchema": "schema.json",
419
+ "responseSchema": "schema.json",
420
+ "timeout": 0,
421
+ "sendEmpty": false,
422
+ "sendGetBody": false,
423
+ "requestDatatype": "JSON",
424
+ "responseDatatype": "JSON",
425
+ "headers": {},
426
+ "responseObjects": [
427
+ {
428
+ "type": "default",
429
+ "key": "",
430
+ "mockFile": ""
431
+ }
432
+ ]
433
+ },
434
+ {
435
+ "name": "listBaseVMs",
436
+ "protocol": "REST",
437
+ "method": "GET",
438
+ "entitypath": "{base_path}/{version}/external/v1/base-vms?{query}",
439
+ "requestSchema": "schema.json",
440
+ "responseSchema": "schema.json",
441
+ "timeout": 0,
442
+ "sendEmpty": false,
443
+ "sendGetBody": false,
444
+ "requestDatatype": "JSON",
445
+ "responseDatatype": "JSON",
446
+ "headers": {},
447
+ "responseObjects": [
448
+ {
449
+ "type": "default",
450
+ "key": "",
451
+ "mockFile": ""
452
+ }
453
+ ]
454
+ },
455
+ {
456
+ "name": "listCustomizationSpecs",
457
+ "protocol": "REST",
458
+ "method": "GET",
459
+ "entitypath": "{base_path}/{version}/external/v1/customization-specifications?{query}",
460
+ "requestSchema": "schema.json",
461
+ "responseSchema": "schema.json",
462
+ "timeout": 0,
463
+ "sendEmpty": false,
464
+ "sendGetBody": false,
465
+ "requestDatatype": "JSON",
466
+ "responseDatatype": "JSON",
467
+ "headers": {},
468
+ "responseObjects": [
469
+ {
470
+ "type": "default",
471
+ "key": "",
472
+ "mockFile": ""
473
+ }
474
+ ]
475
+ },
476
+ {
477
+ "name": "listDatacenters",
478
+ "protocol": "REST",
479
+ "method": "GET",
480
+ "entitypath": "{base_path}/{version}/external/v1/datacenters?{query}",
481
+ "requestSchema": "schema.json",
482
+ "responseSchema": "schema.json",
483
+ "timeout": 0,
484
+ "sendEmpty": false,
485
+ "sendGetBody": false,
486
+ "requestDatatype": "JSON",
487
+ "responseDatatype": "JSON",
488
+ "headers": {},
489
+ "responseObjects": [
490
+ {
491
+ "type": "default",
492
+ "key": "",
493
+ "mockFile": ""
494
+ }
495
+ ]
496
+ },
497
+ {
498
+ "name": "listDatastoreClusters",
499
+ "protocol": "REST",
500
+ "method": "GET",
501
+ "entitypath": "{base_path}/{version}/external/v1/datastore-clusters?{query}",
502
+ "requestSchema": "schema.json",
503
+ "responseSchema": "schema.json",
504
+ "timeout": 0,
505
+ "sendEmpty": false,
506
+ "sendGetBody": false,
507
+ "requestDatatype": "JSON",
508
+ "responseDatatype": "JSON",
509
+ "headers": {},
510
+ "responseObjects": [
511
+ {
512
+ "type": "default",
513
+ "key": "",
514
+ "mockFile": ""
515
+ }
516
+ ]
517
+ },
518
+ {
519
+ "name": "listDatastorePaths",
520
+ "protocol": "REST",
521
+ "method": "GET",
522
+ "entitypath": "{base_path}/{version}/external/v1/datastore-paths?{query}",
523
+ "requestSchema": "schema.json",
524
+ "responseSchema": "schema.json",
525
+ "timeout": 0,
526
+ "sendEmpty": false,
527
+ "sendGetBody": false,
528
+ "requestDatatype": "JSON",
529
+ "responseDatatype": "JSON",
530
+ "headers": {},
531
+ "responseObjects": [
532
+ {
533
+ "type": "default",
534
+ "key": "",
535
+ "mockFile": ""
536
+ }
537
+ ]
538
+ },
539
+ {
540
+ "name": "listdatastores",
541
+ "protocol": "REST",
542
+ "method": "GET",
543
+ "entitypath": "{base_path}/{version}/external/v1/datastores?{query}",
544
+ "requestSchema": "schema.json",
545
+ "responseSchema": "schema.json",
546
+ "timeout": 0,
547
+ "sendEmpty": false,
548
+ "sendGetBody": false,
549
+ "requestDatatype": "JSON",
550
+ "responseDatatype": "JSON",
551
+ "headers": {},
552
+ "responseObjects": [
553
+ {
554
+ "type": "default",
555
+ "key": "",
556
+ "mockFile": ""
557
+ }
558
+ ]
559
+ },
560
+ {
561
+ "name": "computeSpaceRequirements",
562
+ "protocol": "REST",
563
+ "method": "POST",
564
+ "entitypath": "{base_path}/{version}/external/v1/datastores/action/compute-requirements?{query}",
565
+ "requestSchema": "schema.json",
566
+ "responseSchema": "schema.json",
567
+ "timeout": 0,
568
+ "sendEmpty": false,
569
+ "requestDatatype": "JSON",
570
+ "responseDatatype": "JSON",
571
+ "headers": {},
572
+ "responseObjects": [
573
+ {
574
+ "type": "default",
575
+ "key": "",
576
+ "mockFile": ""
577
+ }
578
+ ]
579
+ },
580
+ {
581
+ "name": "computeVsanCost",
582
+ "protocol": "REST",
583
+ "method": "POST",
584
+ "entitypath": "{base_path}/{version}/external/v1/datastores/action/compute-vsan-cost?{query}",
585
+ "requestSchema": "schema.json",
586
+ "responseSchema": "schema.json",
587
+ "timeout": 0,
588
+ "sendEmpty": false,
589
+ "requestDatatype": "JSON",
590
+ "responseDatatype": "JSON",
591
+ "headers": {},
592
+ "responseObjects": [
593
+ {
594
+ "type": "default",
595
+ "key": "",
596
+ "mockFile": ""
597
+ }
598
+ ]
599
+ },
600
+ {
601
+ "name": "listDomains",
602
+ "protocol": "REST",
603
+ "method": "GET",
604
+ "entitypath": "{base_path}/{version}/external/v1/domains?{query}",
605
+ "requestSchema": "schema.json",
606
+ "responseSchema": "schema.json",
607
+ "timeout": 0,
608
+ "sendEmpty": false,
609
+ "sendGetBody": false,
610
+ "requestDatatype": "JSON",
611
+ "responseDatatype": "JSON",
612
+ "headers": {},
613
+ "responseObjects": [
614
+ {
615
+ "type": "default",
616
+ "key": "",
617
+ "mockFile": ""
618
+ }
619
+ ]
620
+ },
621
+ {
622
+ "name": "listHostsOrClusters",
623
+ "protocol": "REST",
624
+ "method": "GET",
625
+ "entitypath": "{base_path}/{version}/external/v1/hosts-or-clusters?{query}",
626
+ "requestSchema": "schema.json",
627
+ "responseSchema": "schema.json",
628
+ "timeout": 0,
629
+ "sendEmpty": false,
630
+ "sendGetBody": false,
631
+ "requestDatatype": "JSON",
632
+ "responseDatatype": "JSON",
633
+ "headers": {},
634
+ "responseObjects": [
635
+ {
636
+ "type": "default",
637
+ "key": "",
638
+ "mockFile": ""
639
+ }
640
+ ]
641
+ },
642
+ {
643
+ "name": "listNetworkInterfaceCards",
644
+ "protocol": "REST",
645
+ "method": "GET",
646
+ "entitypath": "{base_path}/{version}/external/v1/network-interface-cards?{query}",
647
+ "requestSchema": "schema.json",
648
+ "responseSchema": "schema.json",
649
+ "timeout": 0,
650
+ "sendEmpty": false,
651
+ "sendGetBody": false,
652
+ "requestDatatype": "JSON",
653
+ "responseDatatype": "JSON",
654
+ "headers": {},
655
+ "responseObjects": [
656
+ {
657
+ "type": "default",
658
+ "key": "",
659
+ "mockFile": ""
660
+ }
661
+ ]
662
+ },
663
+ {
664
+ "name": "listNetworkLabels",
665
+ "protocol": "REST",
666
+ "method": "GET",
667
+ "entitypath": "{base_path}/{version}/external/v1/network-labels?{query}",
668
+ "requestSchema": "schema.json",
669
+ "responseSchema": "schema.json",
670
+ "timeout": 0,
671
+ "sendEmpty": false,
672
+ "sendGetBody": false,
673
+ "requestDatatype": "JSON",
674
+ "responseDatatype": "JSON",
675
+ "headers": {},
676
+ "responseObjects": [
677
+ {
678
+ "type": "default",
679
+ "key": "",
680
+ "mockFile": ""
681
+ }
682
+ ]
683
+ },
684
+ {
685
+ "name": "listResourcePools",
686
+ "protocol": "REST",
687
+ "method": "GET",
688
+ "entitypath": "{base_path}/{version}/external/v1/resource-pools?{query}",
689
+ "requestSchema": "schema.json",
690
+ "responseSchema": "schema.json",
691
+ "timeout": 0,
692
+ "sendEmpty": false,
693
+ "sendGetBody": false,
694
+ "requestDatatype": "JSON",
695
+ "responseDatatype": "JSON",
696
+ "headers": {},
697
+ "responseObjects": [
698
+ {
699
+ "type": "default",
700
+ "key": "",
701
+ "mockFile": ""
702
+ }
703
+ ]
704
+ },
705
+ {
706
+ "name": "listVirtualDisks",
707
+ "protocol": "REST",
708
+ "method": "GET",
709
+ "entitypath": "{base_path}/{version}/external/v1/virtual-disks?{query}",
710
+ "requestSchema": "schema.json",
711
+ "responseSchema": "schema.json",
712
+ "timeout": 0,
713
+ "sendEmpty": false,
714
+ "sendGetBody": false,
715
+ "requestDatatype": "JSON",
716
+ "responseDatatype": "JSON",
717
+ "headers": {},
718
+ "responseObjects": [
719
+ {
720
+ "type": "default",
721
+ "key": "",
722
+ "mockFile": ""
723
+ }
724
+ ]
725
+ },
726
+ {
727
+ "name": "listVirtualMachines",
728
+ "protocol": "REST",
729
+ "method": "GET",
730
+ "entitypath": "{base_path}/{version}/external/v1/virtual-machines?{query}",
731
+ "requestSchema": "schema.json",
732
+ "responseSchema": "schema.json",
733
+ "timeout": 0,
734
+ "sendEmpty": false,
735
+ "sendGetBody": false,
736
+ "requestDatatype": "JSON",
737
+ "responseDatatype": "JSON",
738
+ "headers": {},
739
+ "responseObjects": [
740
+ {
741
+ "type": "default",
742
+ "key": "",
743
+ "mockFile": ""
744
+ }
745
+ ]
746
+ },
747
+ {
748
+ "name": "listVMFolders",
749
+ "protocol": "REST",
750
+ "method": "GET",
751
+ "entitypath": "{base_path}/{version}/external/v1/vm-folders?{query}",
752
+ "requestSchema": "schema.json",
753
+ "responseSchema": "schema.json",
754
+ "timeout": 0,
755
+ "sendEmpty": false,
756
+ "sendGetBody": false,
757
+ "requestDatatype": "JSON",
758
+ "responseDatatype": "JSON",
759
+ "headers": {},
760
+ "responseObjects": [
761
+ {
762
+ "type": "default",
763
+ "key": "",
764
+ "mockFile": ""
765
+ }
766
+ ]
767
+ },
768
+ {
769
+ "name": "listVMTemplates",
770
+ "protocol": "REST",
771
+ "method": "GET",
772
+ "entitypath": "{base_path}/{version}/external/v1/vm-templates?{query}",
773
+ "requestSchema": "schema.json",
774
+ "responseSchema": "schema.json",
775
+ "timeout": 0,
776
+ "sendEmpty": false,
777
+ "sendGetBody": false,
778
+ "requestDatatype": "JSON",
779
+ "responseDatatype": "JSON",
780
+ "headers": {},
781
+ "responseObjects": [
782
+ {
783
+ "type": "default",
784
+ "key": "",
785
+ "mockFile": ""
786
+ }
787
+ ]
788
+ },
789
+ {
790
+ "name": "listADDomainsV2",
791
+ "protocol": "REST",
792
+ "method": "GET",
793
+ "entitypath": "{base_path}/{version}/external/v2/ad-domains?{query}",
794
+ "requestSchema": "schema.json",
795
+ "responseSchema": "schema.json",
796
+ "timeout": 0,
797
+ "sendEmpty": false,
798
+ "sendGetBody": false,
799
+ "requestDatatype": "JSON",
800
+ "responseDatatype": "JSON",
801
+ "headers": {},
802
+ "responseObjects": [
803
+ {
804
+ "type": "default",
805
+ "key": "",
806
+ "mockFile": ""
807
+ }
808
+ ]
809
+ },
810
+ {
811
+ "name": "bulkHoldUserOrGroupV2",
812
+ "protocol": "REST",
813
+ "method": "POST",
814
+ "entitypath": "{base_path}/{version}/external/v2/ad-users-or-groups/action/hold?{query}",
815
+ "requestSchema": "schema.json",
816
+ "responseSchema": "schema.json",
817
+ "timeout": 0,
818
+ "sendEmpty": false,
819
+ "requestDatatype": "JSON",
820
+ "responseDatatype": "JSON",
821
+ "headers": {},
822
+ "responseObjects": [
823
+ {
824
+ "type": "default",
825
+ "key": "",
826
+ "mockFile": ""
827
+ }
828
+ ]
829
+ },
830
+ {
831
+ "name": "bulkReleaseHoldUserOrGroupV2",
832
+ "protocol": "REST",
833
+ "method": "POST",
834
+ "entitypath": "{base_path}/{version}/external/v2/ad-users-or-groups/action/release-hold?{query}",
835
+ "requestSchema": "schema.json",
836
+ "responseSchema": "schema.json",
837
+ "timeout": 0,
838
+ "sendEmpty": false,
839
+ "requestDatatype": "JSON",
840
+ "responseDatatype": "JSON",
841
+ "headers": {},
842
+ "responseObjects": [
843
+ {
844
+ "type": "default",
845
+ "key": "",
846
+ "mockFile": ""
847
+ }
848
+ ]
849
+ },
850
+ {
851
+ "name": "listAuditEventsV2",
852
+ "protocol": "REST",
853
+ "method": "GET",
854
+ "entitypath": "{base_path}/{version}/external/v2/audit-events?{query}",
855
+ "requestSchema": "schema.json",
856
+ "responseSchema": "schema.json",
857
+ "timeout": 0,
858
+ "sendEmpty": false,
859
+ "sendGetBody": false,
860
+ "requestDatatype": "JSON",
861
+ "responseDatatype": "JSON",
862
+ "headers": {},
863
+ "responseObjects": [
864
+ {
865
+ "type": "default",
866
+ "key": "",
867
+ "mockFile": ""
868
+ }
869
+ ]
870
+ },
871
+ {
872
+ "name": "listBaseSnapshotsV2",
873
+ "protocol": "REST",
874
+ "method": "GET",
875
+ "entitypath": "{base_path}/{version}/external/v2/base-snapshots?{query}",
876
+ "requestSchema": "schema.json",
877
+ "responseSchema": "schema.json",
878
+ "timeout": 0,
879
+ "sendEmpty": false,
880
+ "sendGetBody": false,
881
+ "requestDatatype": "JSON",
882
+ "responseDatatype": "JSON",
883
+ "headers": {},
884
+ "responseObjects": [
885
+ {
886
+ "type": "default",
887
+ "key": "",
888
+ "mockFile": ""
889
+ }
890
+ ]
891
+ },
892
+ {
893
+ "name": "listBaseVMsV2",
894
+ "protocol": "REST",
895
+ "method": "GET",
896
+ "entitypath": "{base_path}/{version}/external/v2/base-vms?{query}",
897
+ "requestSchema": "schema.json",
898
+ "responseSchema": "schema.json",
899
+ "timeout": 0,
900
+ "sendEmpty": false,
901
+ "sendGetBody": false,
902
+ "requestDatatype": "JSON",
903
+ "responseDatatype": "JSON",
904
+ "headers": {},
905
+ "responseObjects": [
906
+ {
907
+ "type": "default",
908
+ "key": "",
909
+ "mockFile": ""
910
+ }
911
+ ]
912
+ },
913
+ {
914
+ "name": "getBaseVMsV2",
915
+ "protocol": "REST",
916
+ "method": "GET",
917
+ "entitypath": "{base_path}/{version}/external/v2/base-vms/{pathv1}?{query}",
918
+ "requestSchema": "schema.json",
919
+ "responseSchema": "schema.json",
920
+ "timeout": 0,
921
+ "sendEmpty": false,
922
+ "sendGetBody": false,
923
+ "requestDatatype": "JSON",
924
+ "responseDatatype": "JSON",
925
+ "headers": {},
926
+ "responseObjects": [
927
+ {
928
+ "type": "default",
929
+ "key": "",
930
+ "mockFile": ""
931
+ }
932
+ ]
933
+ },
934
+ {
935
+ "name": "listNetworkInterfaceCardsV2",
936
+ "protocol": "REST",
937
+ "method": "GET",
938
+ "entitypath": "{base_path}/{version}/external/v2/network-interface-cards?{query}",
939
+ "requestSchema": "schema.json",
940
+ "responseSchema": "schema.json",
941
+ "timeout": 0,
942
+ "sendEmpty": false,
943
+ "sendGetBody": false,
944
+ "requestDatatype": "JSON",
945
+ "responseDatatype": "JSON",
946
+ "headers": {},
947
+ "responseObjects": [
948
+ {
949
+ "type": "default",
950
+ "key": "",
951
+ "mockFile": ""
952
+ }
953
+ ]
954
+ },
955
+ {
956
+ "name": "listADDomainsV3",
957
+ "protocol": "REST",
958
+ "method": "GET",
959
+ "entitypath": "{base_path}/{version}/external/v3/ad-domains?{query}",
960
+ "requestSchema": "schema.json",
961
+ "responseSchema": "schema.json",
962
+ "timeout": 0,
963
+ "sendEmpty": false,
964
+ "sendGetBody": false,
965
+ "requestDatatype": "JSON",
966
+ "responseDatatype": "JSON",
967
+ "headers": {},
968
+ "responseObjects": [
969
+ {
970
+ "type": "default",
971
+ "key": "",
972
+ "mockFile": ""
973
+ }
974
+ ]
975
+ }
976
+ ]
977
+ }