@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,4682 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "listAgentInstallerPackages",
5
+ "protocol": "REST",
6
+ "method": "GET",
7
+ "entitypath": "{base_path}/{version}/inventory/v1/agent-installer-packages?{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": "registerAgentInstallerPackage",
26
+ "protocol": "REST",
27
+ "method": "POST",
28
+ "entitypath": "{base_path}/{version}/inventory/v1/agent-installer-packages/action/register?{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": "getAgentInstallerPackage",
46
+ "protocol": "REST",
47
+ "method": "GET",
48
+ "entitypath": "{base_path}/{version}/inventory/v1/agent-installer-packages/{pathv1}?{query}",
49
+ "requestSchema": "schema.json",
50
+ "responseSchema": "schema.json",
51
+ "timeout": 0,
52
+ "sendEmpty": false,
53
+ "sendGetBody": false,
54
+ "requestDatatype": "JSON",
55
+ "responseDatatype": "JSON",
56
+ "headers": {},
57
+ "responseObjects": [
58
+ {
59
+ "type": "default",
60
+ "key": "",
61
+ "mockFile": ""
62
+ }
63
+ ]
64
+ },
65
+ {
66
+ "name": "unregisterAgentInstallerPackage",
67
+ "protocol": "REST",
68
+ "method": "POST",
69
+ "entitypath": "{base_path}/{version}/inventory/v1/agent-installer-packages/{pathv1}/action/unregister?{query}",
70
+ "requestSchema": "schema.json",
71
+ "responseSchema": "schema.json",
72
+ "timeout": 0,
73
+ "sendEmpty": false,
74
+ "requestDatatype": "JSON",
75
+ "responseDatatype": "JSON",
76
+ "headers": {},
77
+ "responseObjects": [
78
+ {
79
+ "type": "default",
80
+ "key": "",
81
+ "mockFile": ""
82
+ }
83
+ ]
84
+ },
85
+ {
86
+ "name": "listApplicationIcons",
87
+ "protocol": "REST",
88
+ "method": "GET",
89
+ "entitypath": "{base_path}/{version}/inventory/v1/application-icons?{query}",
90
+ "requestSchema": "schema.json",
91
+ "responseSchema": "schema.json",
92
+ "timeout": 0,
93
+ "sendEmpty": false,
94
+ "sendGetBody": false,
95
+ "requestDatatype": "JSON",
96
+ "responseDatatype": "JSON",
97
+ "headers": {},
98
+ "responseObjects": [
99
+ {
100
+ "type": "default",
101
+ "key": "",
102
+ "mockFile": ""
103
+ }
104
+ ]
105
+ },
106
+ {
107
+ "name": "createApplicationIcon",
108
+ "protocol": "REST",
109
+ "method": "POST",
110
+ "entitypath": "{base_path}/{version}/inventory/v1/application-icons?{query}",
111
+ "requestSchema": "schema.json",
112
+ "responseSchema": "schema.json",
113
+ "timeout": 0,
114
+ "sendEmpty": false,
115
+ "requestDatatype": "JSON",
116
+ "responseDatatype": "JSON",
117
+ "headers": {},
118
+ "responseObjects": [
119
+ {
120
+ "type": "default",
121
+ "key": "",
122
+ "mockFile": ""
123
+ }
124
+ ]
125
+ },
126
+ {
127
+ "name": "listCustomApplicationIcons",
128
+ "protocol": "REST",
129
+ "method": "GET",
130
+ "entitypath": "{base_path}/{version}/inventory/v1/application-icons/custom-icons?{query}",
131
+ "requestSchema": "schema.json",
132
+ "responseSchema": "schema.json",
133
+ "timeout": 0,
134
+ "sendEmpty": false,
135
+ "sendGetBody": false,
136
+ "requestDatatype": "JSON",
137
+ "responseDatatype": "JSON",
138
+ "headers": {},
139
+ "responseObjects": [
140
+ {
141
+ "type": "default",
142
+ "key": "",
143
+ "mockFile": ""
144
+ }
145
+ ]
146
+ },
147
+ {
148
+ "name": "deleteApplicationIcon",
149
+ "protocol": "REST",
150
+ "method": "DELETE",
151
+ "entitypath": "{base_path}/{version}/inventory/v1/application-icons/{pathv1}?{query}",
152
+ "requestSchema": "schema.json",
153
+ "responseSchema": "schema.json",
154
+ "timeout": 0,
155
+ "sendEmpty": false,
156
+ "requestDatatype": "JSON",
157
+ "responseDatatype": "JSON",
158
+ "headers": {},
159
+ "responseObjects": [
160
+ {
161
+ "type": "default",
162
+ "key": "",
163
+ "mockFile": ""
164
+ }
165
+ ]
166
+ },
167
+ {
168
+ "name": "getApplicationIcon",
169
+ "protocol": "REST",
170
+ "method": "GET",
171
+ "entitypath": "{base_path}/{version}/inventory/v1/application-icons/{pathv1}?{query}",
172
+ "requestSchema": "schema.json",
173
+ "responseSchema": "schema.json",
174
+ "timeout": 0,
175
+ "sendEmpty": false,
176
+ "sendGetBody": false,
177
+ "requestDatatype": "JSON",
178
+ "responseDatatype": "JSON",
179
+ "headers": {},
180
+ "responseObjects": [
181
+ {
182
+ "type": "default",
183
+ "key": "",
184
+ "mockFile": ""
185
+ }
186
+ ]
187
+ },
188
+ {
189
+ "name": "listApplicationPools",
190
+ "protocol": "REST",
191
+ "method": "GET",
192
+ "entitypath": "{base_path}/{version}/inventory/v1/application-pools?{query}",
193
+ "requestSchema": "schema.json",
194
+ "responseSchema": "schema.json",
195
+ "timeout": 0,
196
+ "sendEmpty": false,
197
+ "sendGetBody": false,
198
+ "requestDatatype": "JSON",
199
+ "responseDatatype": "JSON",
200
+ "headers": {},
201
+ "responseObjects": [
202
+ {
203
+ "type": "default",
204
+ "key": "",
205
+ "mockFile": ""
206
+ }
207
+ ]
208
+ },
209
+ {
210
+ "name": "createApplicationPool",
211
+ "protocol": "REST",
212
+ "method": "POST",
213
+ "entitypath": "{base_path}/{version}/inventory/v1/application-pools?{query}",
214
+ "requestSchema": "schema.json",
215
+ "responseSchema": "schema.json",
216
+ "timeout": 0,
217
+ "sendEmpty": false,
218
+ "requestDatatype": "JSON",
219
+ "responseDatatype": "JSON",
220
+ "headers": {},
221
+ "responseObjects": [
222
+ {
223
+ "type": "default",
224
+ "key": "",
225
+ "mockFile": ""
226
+ }
227
+ ]
228
+ },
229
+ {
230
+ "name": "applicationIconBulkAssociate",
231
+ "protocol": "REST",
232
+ "method": "POST",
233
+ "entitypath": "{base_path}/{version}/inventory/v1/application-pools/action/associate?{query}",
234
+ "requestSchema": "schema.json",
235
+ "responseSchema": "schema.json",
236
+ "timeout": 0,
237
+ "sendEmpty": false,
238
+ "requestDatatype": "JSON",
239
+ "responseDatatype": "JSON",
240
+ "headers": {},
241
+ "responseObjects": [
242
+ {
243
+ "type": "default",
244
+ "key": "",
245
+ "mockFile": ""
246
+ }
247
+ ]
248
+ },
249
+ {
250
+ "name": "checkApplicationPoolNameAvailability",
251
+ "protocol": "REST",
252
+ "method": "POST",
253
+ "entitypath": "{base_path}/{version}/inventory/v1/application-pools/action/check-name-availability?{query}",
254
+ "requestSchema": "schema.json",
255
+ "responseSchema": "schema.json",
256
+ "timeout": 0,
257
+ "sendEmpty": false,
258
+ "requestDatatype": "JSON",
259
+ "responseDatatype": "JSON",
260
+ "headers": {},
261
+ "responseObjects": [
262
+ {
263
+ "type": "default",
264
+ "key": "",
265
+ "mockFile": ""
266
+ }
267
+ ]
268
+ },
269
+ {
270
+ "name": "disableApplicationPools",
271
+ "protocol": "REST",
272
+ "method": "POST",
273
+ "entitypath": "{base_path}/{version}/inventory/v1/application-pools/action/disable?{query}",
274
+ "requestSchema": "schema.json",
275
+ "responseSchema": "schema.json",
276
+ "timeout": 0,
277
+ "sendEmpty": false,
278
+ "requestDatatype": "JSON",
279
+ "responseDatatype": "JSON",
280
+ "headers": {},
281
+ "responseObjects": [
282
+ {
283
+ "type": "default",
284
+ "key": "",
285
+ "mockFile": ""
286
+ }
287
+ ]
288
+ },
289
+ {
290
+ "name": "enableApplicationPools",
291
+ "protocol": "REST",
292
+ "method": "POST",
293
+ "entitypath": "{base_path}/{version}/inventory/v1/application-pools/action/enable?{query}",
294
+ "requestSchema": "schema.json",
295
+ "responseSchema": "schema.json",
296
+ "timeout": 0,
297
+ "sendEmpty": false,
298
+ "requestDatatype": "JSON",
299
+ "responseDatatype": "JSON",
300
+ "headers": {},
301
+ "responseObjects": [
302
+ {
303
+ "type": "default",
304
+ "key": "",
305
+ "mockFile": ""
306
+ }
307
+ ]
308
+ },
309
+ {
310
+ "name": "applicationIconBulkRemoveAssociation",
311
+ "protocol": "REST",
312
+ "method": "POST",
313
+ "entitypath": "{base_path}/{version}/inventory/v1/application-pools/action/remove-association?{query}",
314
+ "requestSchema": "schema.json",
315
+ "responseSchema": "schema.json",
316
+ "timeout": 0,
317
+ "sendEmpty": 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": "deleteApplicationPool",
331
+ "protocol": "REST",
332
+ "method": "DELETE",
333
+ "entitypath": "{base_path}/{version}/inventory/v1/application-pools/{pathv1}?{query}",
334
+ "requestSchema": "schema.json",
335
+ "responseSchema": "schema.json",
336
+ "timeout": 0,
337
+ "sendEmpty": false,
338
+ "requestDatatype": "JSON",
339
+ "responseDatatype": "JSON",
340
+ "headers": {},
341
+ "responseObjects": [
342
+ {
343
+ "type": "default",
344
+ "key": "",
345
+ "mockFile": ""
346
+ }
347
+ ]
348
+ },
349
+ {
350
+ "name": "getApplicationPool",
351
+ "protocol": "REST",
352
+ "method": "GET",
353
+ "entitypath": "{base_path}/{version}/inventory/v1/application-pools/{pathv1}?{query}",
354
+ "requestSchema": "schema.json",
355
+ "responseSchema": "schema.json",
356
+ "timeout": 0,
357
+ "sendEmpty": false,
358
+ "sendGetBody": false,
359
+ "requestDatatype": "JSON",
360
+ "responseDatatype": "JSON",
361
+ "headers": {},
362
+ "responseObjects": [
363
+ {
364
+ "type": "default",
365
+ "key": "",
366
+ "mockFile": ""
367
+ }
368
+ ]
369
+ },
370
+ {
371
+ "name": "updateApplicationPool",
372
+ "protocol": "REST",
373
+ "method": "PUT",
374
+ "entitypath": "{base_path}/{version}/inventory/v1/application-pools/{pathv1}?{query}",
375
+ "requestSchema": "schema.json",
376
+ "responseSchema": "schema.json",
377
+ "timeout": 0,
378
+ "sendEmpty": false,
379
+ "requestDatatype": "JSON",
380
+ "responseDatatype": "JSON",
381
+ "headers": {},
382
+ "responseObjects": [
383
+ {
384
+ "type": "default",
385
+ "key": "",
386
+ "mockFile": ""
387
+ }
388
+ ]
389
+ },
390
+ {
391
+ "name": "addCustomIcon",
392
+ "protocol": "REST",
393
+ "method": "POST",
394
+ "entitypath": "{base_path}/{version}/inventory/v1/application-pools/{pathv1}/action/add-custom-icon?{query}",
395
+ "requestSchema": "schema.json",
396
+ "responseSchema": "schema.json",
397
+ "timeout": 0,
398
+ "sendEmpty": false,
399
+ "requestDatatype": "JSON",
400
+ "responseDatatype": "JSON",
401
+ "headers": {},
402
+ "responseObjects": [
403
+ {
404
+ "type": "default",
405
+ "key": "",
406
+ "mockFile": ""
407
+ }
408
+ ]
409
+ },
410
+ {
411
+ "name": "removeCustomIcon",
412
+ "protocol": "REST",
413
+ "method": "POST",
414
+ "entitypath": "{base_path}/{version}/inventory/v1/application-pools/{pathv1}/action/remove-custom-icon?{query}",
415
+ "requestSchema": "schema.json",
416
+ "responseSchema": "schema.json",
417
+ "timeout": 0,
418
+ "sendEmpty": false,
419
+ "requestDatatype": "JSON",
420
+ "responseDatatype": "JSON",
421
+ "headers": {},
422
+ "responseObjects": [
423
+ {
424
+ "type": "default",
425
+ "key": "",
426
+ "mockFile": ""
427
+ }
428
+ ]
429
+ },
430
+ {
431
+ "name": "listCategoryFolders",
432
+ "protocol": "REST",
433
+ "method": "GET",
434
+ "entitypath": "{base_path}/{version}/inventory/v1/category-folders?{query}",
435
+ "requestSchema": "schema.json",
436
+ "responseSchema": "schema.json",
437
+ "timeout": 0,
438
+ "sendEmpty": false,
439
+ "sendGetBody": false,
440
+ "requestDatatype": "JSON",
441
+ "responseDatatype": "JSON",
442
+ "headers": {},
443
+ "responseObjects": [
444
+ {
445
+ "type": "default",
446
+ "key": "",
447
+ "mockFile": ""
448
+ }
449
+ ]
450
+ },
451
+ {
452
+ "name": "listDesktopPools",
453
+ "protocol": "REST",
454
+ "method": "GET",
455
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools?{query}",
456
+ "requestSchema": "schema.json",
457
+ "responseSchema": "schema.json",
458
+ "timeout": 0,
459
+ "sendEmpty": false,
460
+ "sendGetBody": false,
461
+ "requestDatatype": "JSON",
462
+ "responseDatatype": "JSON",
463
+ "headers": {},
464
+ "responseObjects": [
465
+ {
466
+ "type": "default",
467
+ "key": "",
468
+ "mockFile": ""
469
+ }
470
+ ]
471
+ },
472
+ {
473
+ "name": "createDesktopPool",
474
+ "protocol": "REST",
475
+ "method": "POST",
476
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools?{query}",
477
+ "requestSchema": "schema.json",
478
+ "responseSchema": "schema.json",
479
+ "timeout": 0,
480
+ "sendEmpty": false,
481
+ "requestDatatype": "JSON",
482
+ "responseDatatype": "JSON",
483
+ "headers": {},
484
+ "responseObjects": [
485
+ {
486
+ "type": "default",
487
+ "key": "",
488
+ "mockFile": ""
489
+ }
490
+ ]
491
+ },
492
+ {
493
+ "name": "checkDesktopPoolNameAvailability",
494
+ "protocol": "REST",
495
+ "method": "POST",
496
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/action/check-name-availability?{query}",
497
+ "requestSchema": "schema.json",
498
+ "responseSchema": "schema.json",
499
+ "timeout": 0,
500
+ "sendEmpty": false,
501
+ "requestDatatype": "JSON",
502
+ "responseDatatype": "JSON",
503
+ "headers": {},
504
+ "responseObjects": [
505
+ {
506
+ "type": "default",
507
+ "key": "",
508
+ "mockFile": ""
509
+ }
510
+ ]
511
+ },
512
+ {
513
+ "name": "disableDesktopPools",
514
+ "protocol": "REST",
515
+ "method": "POST",
516
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/action/disable?{query}",
517
+ "requestSchema": "schema.json",
518
+ "responseSchema": "schema.json",
519
+ "timeout": 0,
520
+ "sendEmpty": false,
521
+ "requestDatatype": "JSON",
522
+ "responseDatatype": "JSON",
523
+ "headers": {},
524
+ "responseObjects": [
525
+ {
526
+ "type": "default",
527
+ "key": "",
528
+ "mockFile": ""
529
+ }
530
+ ]
531
+ },
532
+ {
533
+ "name": "disableProvisioningForDesktopPools",
534
+ "protocol": "REST",
535
+ "method": "POST",
536
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/action/disable-provisioning?{query}",
537
+ "requestSchema": "schema.json",
538
+ "responseSchema": "schema.json",
539
+ "timeout": 0,
540
+ "sendEmpty": false,
541
+ "requestDatatype": "JSON",
542
+ "responseDatatype": "JSON",
543
+ "headers": {},
544
+ "responseObjects": [
545
+ {
546
+ "type": "default",
547
+ "key": "",
548
+ "mockFile": ""
549
+ }
550
+ ]
551
+ },
552
+ {
553
+ "name": "enableDesktopPools",
554
+ "protocol": "REST",
555
+ "method": "POST",
556
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/action/enable?{query}",
557
+ "requestSchema": "schema.json",
558
+ "responseSchema": "schema.json",
559
+ "timeout": 0,
560
+ "sendEmpty": false,
561
+ "requestDatatype": "JSON",
562
+ "responseDatatype": "JSON",
563
+ "headers": {},
564
+ "responseObjects": [
565
+ {
566
+ "type": "default",
567
+ "key": "",
568
+ "mockFile": ""
569
+ }
570
+ ]
571
+ },
572
+ {
573
+ "name": "enableProvisioningForDesktopPools",
574
+ "protocol": "REST",
575
+ "method": "POST",
576
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/action/enable-provisioning?{query}",
577
+ "requestSchema": "schema.json",
578
+ "responseSchema": "schema.json",
579
+ "timeout": 0,
580
+ "sendEmpty": false,
581
+ "requestDatatype": "JSON",
582
+ "responseDatatype": "JSON",
583
+ "headers": {},
584
+ "responseObjects": [
585
+ {
586
+ "type": "default",
587
+ "key": "",
588
+ "mockFile": ""
589
+ }
590
+ ]
591
+ },
592
+ {
593
+ "name": "validateSpecifiedNames",
594
+ "protocol": "REST",
595
+ "method": "POST",
596
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/action/validate-specified-names?{query}",
597
+ "requestSchema": "schema.json",
598
+ "responseSchema": "schema.json",
599
+ "timeout": 0,
600
+ "sendEmpty": false,
601
+ "requestDatatype": "JSON",
602
+ "responseDatatype": "JSON",
603
+ "headers": {},
604
+ "responseObjects": [
605
+ {
606
+ "type": "default",
607
+ "key": "",
608
+ "mockFile": ""
609
+ }
610
+ ]
611
+ },
612
+ {
613
+ "name": "listUserPoliciesOverrides",
614
+ "protocol": "REST",
615
+ "method": "GET",
616
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/policies/overrides?{query}",
617
+ "requestSchema": "schema.json",
618
+ "responseSchema": "schema.json",
619
+ "timeout": 0,
620
+ "sendEmpty": false,
621
+ "sendGetBody": false,
622
+ "requestDatatype": "JSON",
623
+ "responseDatatype": "JSON",
624
+ "headers": {},
625
+ "responseObjects": [
626
+ {
627
+ "type": "default",
628
+ "key": "",
629
+ "mockFile": ""
630
+ }
631
+ ]
632
+ },
633
+ {
634
+ "name": "deleteDesktopPool",
635
+ "protocol": "REST",
636
+ "method": "DELETE",
637
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/{pathv1}?{query}",
638
+ "requestSchema": "schema.json",
639
+ "responseSchema": "schema.json",
640
+ "timeout": 0,
641
+ "sendEmpty": false,
642
+ "requestDatatype": "JSON",
643
+ "responseDatatype": "JSON",
644
+ "headers": {},
645
+ "responseObjects": [
646
+ {
647
+ "type": "default",
648
+ "key": "",
649
+ "mockFile": ""
650
+ }
651
+ ]
652
+ },
653
+ {
654
+ "name": "getDesktopPool",
655
+ "protocol": "REST",
656
+ "method": "GET",
657
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/{pathv1}?{query}",
658
+ "requestSchema": "schema.json",
659
+ "responseSchema": "schema.json",
660
+ "timeout": 0,
661
+ "sendEmpty": false,
662
+ "sendGetBody": false,
663
+ "requestDatatype": "JSON",
664
+ "responseDatatype": "JSON",
665
+ "headers": {},
666
+ "responseObjects": [
667
+ {
668
+ "type": "default",
669
+ "key": "",
670
+ "mockFile": ""
671
+ }
672
+ ]
673
+ },
674
+ {
675
+ "name": "updateDesktopPool",
676
+ "protocol": "REST",
677
+ "method": "PUT",
678
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/{pathv1}?{query}",
679
+ "requestSchema": "schema.json",
680
+ "responseSchema": "schema.json",
681
+ "timeout": 0,
682
+ "sendEmpty": false,
683
+ "requestDatatype": "JSON",
684
+ "responseDatatype": "JSON",
685
+ "headers": {},
686
+ "responseObjects": [
687
+ {
688
+ "type": "default",
689
+ "key": "",
690
+ "mockFile": ""
691
+ }
692
+ ]
693
+ },
694
+ {
695
+ "name": "addMachines",
696
+ "protocol": "REST",
697
+ "method": "POST",
698
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/{pathv1}/action/add-machines?{query}",
699
+ "requestSchema": "schema.json",
700
+ "responseSchema": "schema.json",
701
+ "timeout": 0,
702
+ "sendEmpty": false,
703
+ "requestDatatype": "JSON",
704
+ "responseDatatype": "JSON",
705
+ "headers": {},
706
+ "responseObjects": [
707
+ {
708
+ "type": "default",
709
+ "key": "",
710
+ "mockFile": ""
711
+ }
712
+ ]
713
+ },
714
+ {
715
+ "name": "addMachinesByName",
716
+ "protocol": "REST",
717
+ "method": "POST",
718
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/{pathv1}/action/add-machines-by-name?{query}",
719
+ "requestSchema": "schema.json",
720
+ "responseSchema": "schema.json",
721
+ "timeout": 0,
722
+ "sendEmpty": false,
723
+ "requestDatatype": "JSON",
724
+ "responseDatatype": "JSON",
725
+ "headers": {},
726
+ "responseObjects": [
727
+ {
728
+ "type": "default",
729
+ "key": "",
730
+ "mockFile": ""
731
+ }
732
+ ]
733
+ },
734
+ {
735
+ "name": "desktopPoolApplyImage",
736
+ "protocol": "REST",
737
+ "method": "POST",
738
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/{pathv1}/action/apply-image?{query}",
739
+ "requestSchema": "schema.json",
740
+ "responseSchema": "schema.json",
741
+ "timeout": 0,
742
+ "sendEmpty": false,
743
+ "requestDatatype": "JSON",
744
+ "responseDatatype": "JSON",
745
+ "headers": {},
746
+ "responseObjects": [
747
+ {
748
+ "type": "default",
749
+ "key": "",
750
+ "mockFile": ""
751
+ }
752
+ ]
753
+ },
754
+ {
755
+ "name": "cancelScheduledPushImage",
756
+ "protocol": "REST",
757
+ "method": "POST",
758
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/{pathv1}/action/cancel-scheduled-push-image?{query}",
759
+ "requestSchema": "schema.json",
760
+ "responseSchema": "schema.json",
761
+ "timeout": 0,
762
+ "sendEmpty": false,
763
+ "requestDatatype": "JSON",
764
+ "responseDatatype": "JSON",
765
+ "headers": {},
766
+ "responseObjects": [
767
+ {
768
+ "type": "default",
769
+ "key": "",
770
+ "mockFile": ""
771
+ }
772
+ ]
773
+ },
774
+ {
775
+ "name": "desktopPoolPromotePendingImage",
776
+ "protocol": "REST",
777
+ "method": "POST",
778
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/{pathv1}/action/promote-pending-image?{query}",
779
+ "requestSchema": "schema.json",
780
+ "responseSchema": "schema.json",
781
+ "timeout": 0,
782
+ "sendEmpty": false,
783
+ "requestDatatype": "JSON",
784
+ "responseDatatype": "JSON",
785
+ "headers": {},
786
+ "responseObjects": [
787
+ {
788
+ "type": "default",
789
+ "key": "",
790
+ "mockFile": ""
791
+ }
792
+ ]
793
+ },
794
+ {
795
+ "name": "removeMachines",
796
+ "protocol": "REST",
797
+ "method": "POST",
798
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/{pathv1}/action/remove-machines?{query}",
799
+ "requestSchema": "schema.json",
800
+ "responseSchema": "schema.json",
801
+ "timeout": 0,
802
+ "sendEmpty": false,
803
+ "requestDatatype": "JSON",
804
+ "responseDatatype": "JSON",
805
+ "headers": {},
806
+ "responseObjects": [
807
+ {
808
+ "type": "default",
809
+ "key": "",
810
+ "mockFile": ""
811
+ }
812
+ ]
813
+ },
814
+ {
815
+ "name": "schedulePushImage",
816
+ "protocol": "REST",
817
+ "method": "POST",
818
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/{pathv1}/action/schedule-push-image?{query}",
819
+ "requestSchema": "schema.json",
820
+ "responseSchema": "schema.json",
821
+ "timeout": 0,
822
+ "sendEmpty": false,
823
+ "requestDatatype": "JSON",
824
+ "responseDatatype": "JSON",
825
+ "headers": {},
826
+ "responseObjects": [
827
+ {
828
+ "type": "default",
829
+ "key": "",
830
+ "mockFile": ""
831
+ }
832
+ ]
833
+ },
834
+ {
835
+ "name": "validateInstalledApplicationsOnDesktopPool",
836
+ "protocol": "REST",
837
+ "method": "POST",
838
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/{pathv1}/action/validate-installed-applications?{query}",
839
+ "requestSchema": "schema.json",
840
+ "responseSchema": "schema.json",
841
+ "timeout": 0,
842
+ "sendEmpty": false,
843
+ "requestDatatype": "JSON",
844
+ "responseDatatype": "JSON",
845
+ "headers": {},
846
+ "responseObjects": [
847
+ {
848
+ "type": "default",
849
+ "key": "",
850
+ "mockFile": ""
851
+ }
852
+ ]
853
+ },
854
+ {
855
+ "name": "listInstalledApplicationsOnDesktopPool",
856
+ "protocol": "REST",
857
+ "method": "GET",
858
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/{pathv1}/installed-applications?{query}",
859
+ "requestSchema": "schema.json",
860
+ "responseSchema": "schema.json",
861
+ "timeout": 0,
862
+ "sendEmpty": false,
863
+ "sendGetBody": false,
864
+ "requestDatatype": "JSON",
865
+ "responseDatatype": "JSON",
866
+ "headers": {},
867
+ "responseObjects": [
868
+ {
869
+ "type": "default",
870
+ "key": "",
871
+ "mockFile": ""
872
+ }
873
+ ]
874
+ },
875
+ {
876
+ "name": "listPoliciesOnDesktopPool",
877
+ "protocol": "REST",
878
+ "method": "GET",
879
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/{pathv1}/policies?{query}",
880
+ "requestSchema": "schema.json",
881
+ "responseSchema": "schema.json",
882
+ "timeout": 0,
883
+ "sendEmpty": false,
884
+ "sendGetBody": false,
885
+ "requestDatatype": "JSON",
886
+ "responseDatatype": "JSON",
887
+ "headers": {},
888
+ "responseObjects": [
889
+ {
890
+ "type": "default",
891
+ "key": "",
892
+ "mockFile": ""
893
+ }
894
+ ]
895
+ },
896
+ {
897
+ "name": "updatesPoliciesOnDesktopPool",
898
+ "protocol": "REST",
899
+ "method": "PUT",
900
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/{pathv1}/policies?{query}",
901
+ "requestSchema": "schema.json",
902
+ "responseSchema": "schema.json",
903
+ "timeout": 0,
904
+ "sendEmpty": false,
905
+ "requestDatatype": "JSON",
906
+ "responseDatatype": "JSON",
907
+ "headers": {},
908
+ "responseObjects": [
909
+ {
910
+ "type": "default",
911
+ "key": "",
912
+ "mockFile": ""
913
+ }
914
+ ]
915
+ },
916
+ {
917
+ "name": "deletePolicyOverridesForUsers",
918
+ "protocol": "REST",
919
+ "method": "DELETE",
920
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/{pathv1}/policies/overrides?{query}",
921
+ "requestSchema": "schema.json",
922
+ "responseSchema": "schema.json",
923
+ "timeout": 0,
924
+ "sendEmpty": false,
925
+ "requestDatatype": "JSON",
926
+ "responseDatatype": "JSON",
927
+ "headers": {},
928
+ "responseObjects": [
929
+ {
930
+ "type": "default",
931
+ "key": "",
932
+ "mockFile": ""
933
+ }
934
+ ]
935
+ },
936
+ {
937
+ "name": "createPolicyOverridesForUsers",
938
+ "protocol": "REST",
939
+ "method": "POST",
940
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/{pathv1}/policies/overrides?{query}",
941
+ "requestSchema": "schema.json",
942
+ "responseSchema": "schema.json",
943
+ "timeout": 0,
944
+ "sendEmpty": false,
945
+ "requestDatatype": "JSON",
946
+ "responseDatatype": "JSON",
947
+ "headers": {},
948
+ "responseObjects": [
949
+ {
950
+ "type": "default",
951
+ "key": "",
952
+ "mockFile": ""
953
+ }
954
+ ]
955
+ },
956
+ {
957
+ "name": "updatePolicyOverridesForUsers",
958
+ "protocol": "REST",
959
+ "method": "PUT",
960
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/{pathv1}/policies/overrides?{query}",
961
+ "requestSchema": "schema.json",
962
+ "responseSchema": "schema.json",
963
+ "timeout": 0,
964
+ "sendEmpty": false,
965
+ "requestDatatype": "JSON",
966
+ "responseDatatype": "JSON",
967
+ "headers": {},
968
+ "responseObjects": [
969
+ {
970
+ "type": "default",
971
+ "key": "",
972
+ "mockFile": ""
973
+ }
974
+ ]
975
+ },
976
+ {
977
+ "name": "listDesktopPoolTasks",
978
+ "protocol": "REST",
979
+ "method": "GET",
980
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/{pathv1}/tasks?{query}",
981
+ "requestSchema": "schema.json",
982
+ "responseSchema": "schema.json",
983
+ "timeout": 0,
984
+ "sendEmpty": false,
985
+ "sendGetBody": false,
986
+ "requestDatatype": "JSON",
987
+ "responseDatatype": "JSON",
988
+ "headers": {},
989
+ "responseObjects": [
990
+ {
991
+ "type": "default",
992
+ "key": "",
993
+ "mockFile": ""
994
+ }
995
+ ]
996
+ },
997
+ {
998
+ "name": "getDesktopPoolTask",
999
+ "protocol": "REST",
1000
+ "method": "GET",
1001
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/{pathv1}/tasks/{pathv2}?{query}",
1002
+ "requestSchema": "schema.json",
1003
+ "responseSchema": "schema.json",
1004
+ "timeout": 0,
1005
+ "sendEmpty": false,
1006
+ "sendGetBody": false,
1007
+ "requestDatatype": "JSON",
1008
+ "responseDatatype": "JSON",
1009
+ "headers": {},
1010
+ "responseObjects": [
1011
+ {
1012
+ "type": "default",
1013
+ "key": "",
1014
+ "mockFile": ""
1015
+ }
1016
+ ]
1017
+ },
1018
+ {
1019
+ "name": "cancelDesktopPoolTask",
1020
+ "protocol": "REST",
1021
+ "method": "POST",
1022
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/{pathv1}/tasks/{pathv2}/action/cancel?{query}",
1023
+ "requestSchema": "schema.json",
1024
+ "responseSchema": "schema.json",
1025
+ "timeout": 0,
1026
+ "sendEmpty": false,
1027
+ "requestDatatype": "JSON",
1028
+ "responseDatatype": "JSON",
1029
+ "headers": {},
1030
+ "responseObjects": [
1031
+ {
1032
+ "type": "default",
1033
+ "key": "",
1034
+ "mockFile": ""
1035
+ }
1036
+ ]
1037
+ },
1038
+ {
1039
+ "name": "pauseDesktopPoolTask",
1040
+ "protocol": "REST",
1041
+ "method": "POST",
1042
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/{pathv1}/tasks/{pathv2}/action/pause?{query}",
1043
+ "requestSchema": "schema.json",
1044
+ "responseSchema": "schema.json",
1045
+ "timeout": 0,
1046
+ "sendEmpty": false,
1047
+ "requestDatatype": "JSON",
1048
+ "responseDatatype": "JSON",
1049
+ "headers": {},
1050
+ "responseObjects": [
1051
+ {
1052
+ "type": "default",
1053
+ "key": "",
1054
+ "mockFile": ""
1055
+ }
1056
+ ]
1057
+ },
1058
+ {
1059
+ "name": "resumeDesktopPoolTask",
1060
+ "protocol": "REST",
1061
+ "method": "POST",
1062
+ "entitypath": "{base_path}/{version}/inventory/v1/desktop-pools/{pathv1}/tasks/{pathv2}/action/resume?{query}",
1063
+ "requestSchema": "schema.json",
1064
+ "responseSchema": "schema.json",
1065
+ "timeout": 0,
1066
+ "sendEmpty": false,
1067
+ "requestDatatype": "JSON",
1068
+ "responseDatatype": "JSON",
1069
+ "headers": {},
1070
+ "responseObjects": [
1071
+ {
1072
+ "type": "default",
1073
+ "key": "",
1074
+ "mockFile": ""
1075
+ }
1076
+ ]
1077
+ },
1078
+ {
1079
+ "name": "listFarms",
1080
+ "protocol": "REST",
1081
+ "method": "GET",
1082
+ "entitypath": "{base_path}/{version}/inventory/v1/farms?{query}",
1083
+ "requestSchema": "schema.json",
1084
+ "responseSchema": "schema.json",
1085
+ "timeout": 0,
1086
+ "sendEmpty": false,
1087
+ "sendGetBody": false,
1088
+ "requestDatatype": "JSON",
1089
+ "responseDatatype": "JSON",
1090
+ "headers": {},
1091
+ "responseObjects": [
1092
+ {
1093
+ "type": "default",
1094
+ "key": "",
1095
+ "mockFile": ""
1096
+ }
1097
+ ]
1098
+ },
1099
+ {
1100
+ "name": "createFarm",
1101
+ "protocol": "REST",
1102
+ "method": "POST",
1103
+ "entitypath": "{base_path}/{version}/inventory/v1/farms?{query}",
1104
+ "requestSchema": "schema.json",
1105
+ "responseSchema": "schema.json",
1106
+ "timeout": 0,
1107
+ "sendEmpty": false,
1108
+ "requestDatatype": "JSON",
1109
+ "responseDatatype": "JSON",
1110
+ "headers": {},
1111
+ "responseObjects": [
1112
+ {
1113
+ "type": "default",
1114
+ "key": "",
1115
+ "mockFile": ""
1116
+ }
1117
+ ]
1118
+ },
1119
+ {
1120
+ "name": "checkFarmNameAvailability",
1121
+ "protocol": "REST",
1122
+ "method": "POST",
1123
+ "entitypath": "{base_path}/{version}/inventory/v1/farms/action/check-name-availability?{query}",
1124
+ "requestSchema": "schema.json",
1125
+ "responseSchema": "schema.json",
1126
+ "timeout": 0,
1127
+ "sendEmpty": false,
1128
+ "requestDatatype": "JSON",
1129
+ "responseDatatype": "JSON",
1130
+ "headers": {},
1131
+ "responseObjects": [
1132
+ {
1133
+ "type": "default",
1134
+ "key": "",
1135
+ "mockFile": ""
1136
+ }
1137
+ ]
1138
+ },
1139
+ {
1140
+ "name": "deleteFarm",
1141
+ "protocol": "REST",
1142
+ "method": "DELETE",
1143
+ "entitypath": "{base_path}/{version}/inventory/v1/farms/{pathv1}?{query}",
1144
+ "requestSchema": "schema.json",
1145
+ "responseSchema": "schema.json",
1146
+ "timeout": 0,
1147
+ "sendEmpty": false,
1148
+ "requestDatatype": "JSON",
1149
+ "responseDatatype": "JSON",
1150
+ "headers": {},
1151
+ "responseObjects": [
1152
+ {
1153
+ "type": "default",
1154
+ "key": "",
1155
+ "mockFile": ""
1156
+ }
1157
+ ]
1158
+ },
1159
+ {
1160
+ "name": "getFarm",
1161
+ "protocol": "REST",
1162
+ "method": "GET",
1163
+ "entitypath": "{base_path}/{version}/inventory/v1/farms/{pathv1}?{query}",
1164
+ "requestSchema": "schema.json",
1165
+ "responseSchema": "schema.json",
1166
+ "timeout": 0,
1167
+ "sendEmpty": false,
1168
+ "sendGetBody": false,
1169
+ "requestDatatype": "JSON",
1170
+ "responseDatatype": "JSON",
1171
+ "headers": {},
1172
+ "responseObjects": [
1173
+ {
1174
+ "type": "default",
1175
+ "key": "",
1176
+ "mockFile": ""
1177
+ }
1178
+ ]
1179
+ },
1180
+ {
1181
+ "name": "updateFarm",
1182
+ "protocol": "REST",
1183
+ "method": "PUT",
1184
+ "entitypath": "{base_path}/{version}/inventory/v1/farms/{pathv1}?{query}",
1185
+ "requestSchema": "schema.json",
1186
+ "responseSchema": "schema.json",
1187
+ "timeout": 0,
1188
+ "sendEmpty": false,
1189
+ "requestDatatype": "JSON",
1190
+ "responseDatatype": "JSON",
1191
+ "headers": {},
1192
+ "responseObjects": [
1193
+ {
1194
+ "type": "default",
1195
+ "key": "",
1196
+ "mockFile": ""
1197
+ }
1198
+ ]
1199
+ },
1200
+ {
1201
+ "name": "addRdsServers",
1202
+ "protocol": "REST",
1203
+ "method": "POST",
1204
+ "entitypath": "{base_path}/{version}/inventory/v1/farms/{pathv1}/action/add-rds-servers?{query}",
1205
+ "requestSchema": "schema.json",
1206
+ "responseSchema": "schema.json",
1207
+ "timeout": 0,
1208
+ "sendEmpty": false,
1209
+ "requestDatatype": "JSON",
1210
+ "responseDatatype": "JSON",
1211
+ "headers": {},
1212
+ "responseObjects": [
1213
+ {
1214
+ "type": "default",
1215
+ "key": "",
1216
+ "mockFile": ""
1217
+ }
1218
+ ]
1219
+ },
1220
+ {
1221
+ "name": "farmApplyImage",
1222
+ "protocol": "REST",
1223
+ "method": "POST",
1224
+ "entitypath": "{base_path}/{version}/inventory/v1/farms/{pathv1}/action/apply-image?{query}",
1225
+ "requestSchema": "schema.json",
1226
+ "responseSchema": "schema.json",
1227
+ "timeout": 0,
1228
+ "sendEmpty": false,
1229
+ "requestDatatype": "JSON",
1230
+ "responseDatatype": "JSON",
1231
+ "headers": {},
1232
+ "responseObjects": [
1233
+ {
1234
+ "type": "default",
1235
+ "key": "",
1236
+ "mockFile": ""
1237
+ }
1238
+ ]
1239
+ },
1240
+ {
1241
+ "name": "cancelScheduledMaintenance",
1242
+ "protocol": "REST",
1243
+ "method": "POST",
1244
+ "entitypath": "{base_path}/{version}/inventory/v1/farms/{pathv1}/action/cancel-scheduled-maintenance?{query}",
1245
+ "requestSchema": "schema.json",
1246
+ "responseSchema": "schema.json",
1247
+ "timeout": 0,
1248
+ "sendEmpty": false,
1249
+ "requestDatatype": "JSON",
1250
+ "responseDatatype": "JSON",
1251
+ "headers": {},
1252
+ "responseObjects": [
1253
+ {
1254
+ "type": "default",
1255
+ "key": "",
1256
+ "mockFile": ""
1257
+ }
1258
+ ]
1259
+ },
1260
+ {
1261
+ "name": "farmPromotePendingImage",
1262
+ "protocol": "REST",
1263
+ "method": "POST",
1264
+ "entitypath": "{base_path}/{version}/inventory/v1/farms/{pathv1}/action/promote-pending-image?{query}",
1265
+ "requestSchema": "schema.json",
1266
+ "responseSchema": "schema.json",
1267
+ "timeout": 0,
1268
+ "sendEmpty": false,
1269
+ "requestDatatype": "JSON",
1270
+ "responseDatatype": "JSON",
1271
+ "headers": {},
1272
+ "responseObjects": [
1273
+ {
1274
+ "type": "default",
1275
+ "key": "",
1276
+ "mockFile": ""
1277
+ }
1278
+ ]
1279
+ },
1280
+ {
1281
+ "name": "removeRdsServers",
1282
+ "protocol": "REST",
1283
+ "method": "POST",
1284
+ "entitypath": "{base_path}/{version}/inventory/v1/farms/{pathv1}/action/remove-rds-servers?{query}",
1285
+ "requestSchema": "schema.json",
1286
+ "responseSchema": "schema.json",
1287
+ "timeout": 0,
1288
+ "sendEmpty": false,
1289
+ "requestDatatype": "JSON",
1290
+ "responseDatatype": "JSON",
1291
+ "headers": {},
1292
+ "responseObjects": [
1293
+ {
1294
+ "type": "default",
1295
+ "key": "",
1296
+ "mockFile": ""
1297
+ }
1298
+ ]
1299
+ },
1300
+ {
1301
+ "name": "scheduleMaintenance",
1302
+ "protocol": "REST",
1303
+ "method": "POST",
1304
+ "entitypath": "{base_path}/{version}/inventory/v1/farms/{pathv1}/action/schedule-maintenance?{query}",
1305
+ "requestSchema": "schema.json",
1306
+ "responseSchema": "schema.json",
1307
+ "timeout": 0,
1308
+ "sendEmpty": false,
1309
+ "requestDatatype": "JSON",
1310
+ "responseDatatype": "JSON",
1311
+ "headers": {},
1312
+ "responseObjects": [
1313
+ {
1314
+ "type": "default",
1315
+ "key": "",
1316
+ "mockFile": ""
1317
+ }
1318
+ ]
1319
+ },
1320
+ {
1321
+ "name": "validateInstalledApplicationsOnFarm",
1322
+ "protocol": "REST",
1323
+ "method": "POST",
1324
+ "entitypath": "{base_path}/{version}/inventory/v1/farms/{pathv1}/action/validate-installed-applications?{query}",
1325
+ "requestSchema": "schema.json",
1326
+ "responseSchema": "schema.json",
1327
+ "timeout": 0,
1328
+ "sendEmpty": false,
1329
+ "requestDatatype": "JSON",
1330
+ "responseDatatype": "JSON",
1331
+ "headers": {},
1332
+ "responseObjects": [
1333
+ {
1334
+ "type": "default",
1335
+ "key": "",
1336
+ "mockFile": ""
1337
+ }
1338
+ ]
1339
+ },
1340
+ {
1341
+ "name": "listAppVolumesApplicationsOnFarm",
1342
+ "protocol": "REST",
1343
+ "method": "GET",
1344
+ "entitypath": "{base_path}/{version}/inventory/v1/farms/{pathv1}/app-volumes-applications?{query}",
1345
+ "requestSchema": "schema.json",
1346
+ "responseSchema": "schema.json",
1347
+ "timeout": 0,
1348
+ "sendEmpty": false,
1349
+ "sendGetBody": false,
1350
+ "requestDatatype": "JSON",
1351
+ "responseDatatype": "JSON",
1352
+ "headers": {},
1353
+ "responseObjects": [
1354
+ {
1355
+ "type": "default",
1356
+ "key": "",
1357
+ "mockFile": ""
1358
+ }
1359
+ ]
1360
+ },
1361
+ {
1362
+ "name": "listInstalledApplicationsOnFarm",
1363
+ "protocol": "REST",
1364
+ "method": "GET",
1365
+ "entitypath": "{base_path}/{version}/inventory/v1/farms/{pathv1}/installed-applications?{query}",
1366
+ "requestSchema": "schema.json",
1367
+ "responseSchema": "schema.json",
1368
+ "timeout": 0,
1369
+ "sendEmpty": false,
1370
+ "sendGetBody": false,
1371
+ "requestDatatype": "JSON",
1372
+ "responseDatatype": "JSON",
1373
+ "headers": {},
1374
+ "responseObjects": [
1375
+ {
1376
+ "type": "default",
1377
+ "key": "",
1378
+ "mockFile": ""
1379
+ }
1380
+ ]
1381
+ },
1382
+ {
1383
+ "name": "listGlobalApplicationEntitlements",
1384
+ "protocol": "REST",
1385
+ "method": "GET",
1386
+ "entitypath": "{base_path}/{version}/inventory/v1/global-application-entitlements?{query}",
1387
+ "requestSchema": "schema.json",
1388
+ "responseSchema": "schema.json",
1389
+ "timeout": 0,
1390
+ "sendEmpty": false,
1391
+ "sendGetBody": false,
1392
+ "requestDatatype": "JSON",
1393
+ "responseDatatype": "JSON",
1394
+ "headers": {},
1395
+ "responseObjects": [
1396
+ {
1397
+ "type": "default",
1398
+ "key": "",
1399
+ "mockFile": ""
1400
+ }
1401
+ ]
1402
+ },
1403
+ {
1404
+ "name": "createGlobalApplicationEntitlement",
1405
+ "protocol": "REST",
1406
+ "method": "POST",
1407
+ "entitypath": "{base_path}/{version}/inventory/v1/global-application-entitlements?{query}",
1408
+ "requestSchema": "schema.json",
1409
+ "responseSchema": "schema.json",
1410
+ "timeout": 0,
1411
+ "sendEmpty": false,
1412
+ "requestDatatype": "JSON",
1413
+ "responseDatatype": "JSON",
1414
+ "headers": {},
1415
+ "responseObjects": [
1416
+ {
1417
+ "type": "default",
1418
+ "key": "",
1419
+ "mockFile": ""
1420
+ }
1421
+ ]
1422
+ },
1423
+ {
1424
+ "name": "deleteGlobalApplicationEntitlement",
1425
+ "protocol": "REST",
1426
+ "method": "DELETE",
1427
+ "entitypath": "{base_path}/{version}/inventory/v1/global-application-entitlements/{pathv1}?{query}",
1428
+ "requestSchema": "schema.json",
1429
+ "responseSchema": "schema.json",
1430
+ "timeout": 0,
1431
+ "sendEmpty": false,
1432
+ "requestDatatype": "JSON",
1433
+ "responseDatatype": "JSON",
1434
+ "headers": {},
1435
+ "responseObjects": [
1436
+ {
1437
+ "type": "default",
1438
+ "key": "",
1439
+ "mockFile": ""
1440
+ }
1441
+ ]
1442
+ },
1443
+ {
1444
+ "name": "getGlobalApplicationEntitlement",
1445
+ "protocol": "REST",
1446
+ "method": "GET",
1447
+ "entitypath": "{base_path}/{version}/inventory/v1/global-application-entitlements/{pathv1}?{query}",
1448
+ "requestSchema": "schema.json",
1449
+ "responseSchema": "schema.json",
1450
+ "timeout": 0,
1451
+ "sendEmpty": false,
1452
+ "sendGetBody": false,
1453
+ "requestDatatype": "JSON",
1454
+ "responseDatatype": "JSON",
1455
+ "headers": {},
1456
+ "responseObjects": [
1457
+ {
1458
+ "type": "default",
1459
+ "key": "",
1460
+ "mockFile": ""
1461
+ }
1462
+ ]
1463
+ },
1464
+ {
1465
+ "name": "updateGlobalApplicationEntitlement",
1466
+ "protocol": "REST",
1467
+ "method": "PUT",
1468
+ "entitypath": "{base_path}/{version}/inventory/v1/global-application-entitlements/{pathv1}?{query}",
1469
+ "requestSchema": "schema.json",
1470
+ "responseSchema": "schema.json",
1471
+ "timeout": 0,
1472
+ "sendEmpty": false,
1473
+ "requestDatatype": "JSON",
1474
+ "responseDatatype": "JSON",
1475
+ "headers": {},
1476
+ "responseObjects": [
1477
+ {
1478
+ "type": "default",
1479
+ "key": "",
1480
+ "mockFile": ""
1481
+ }
1482
+ ]
1483
+ },
1484
+ {
1485
+ "name": "listCompatibleBackupGAEs",
1486
+ "protocol": "REST",
1487
+ "method": "GET",
1488
+ "entitypath": "{base_path}/{version}/inventory/v1/global-application-entitlements/{pathv1}/compatible-backup-global-application-entitlements?{query}",
1489
+ "requestSchema": "schema.json",
1490
+ "responseSchema": "schema.json",
1491
+ "timeout": 0,
1492
+ "sendEmpty": false,
1493
+ "sendGetBody": false,
1494
+ "requestDatatype": "JSON",
1495
+ "responseDatatype": "JSON",
1496
+ "headers": {},
1497
+ "responseObjects": [
1498
+ {
1499
+ "type": "default",
1500
+ "key": "",
1501
+ "mockFile": ""
1502
+ }
1503
+ ]
1504
+ },
1505
+ {
1506
+ "name": "listCompatibleLocalApplicationPools",
1507
+ "protocol": "REST",
1508
+ "method": "GET",
1509
+ "entitypath": "{base_path}/{version}/inventory/v1/global-application-entitlements/{pathv1}/compatible-local-application-pools?{query}",
1510
+ "requestSchema": "schema.json",
1511
+ "responseSchema": "schema.json",
1512
+ "timeout": 0,
1513
+ "sendEmpty": false,
1514
+ "sendGetBody": false,
1515
+ "requestDatatype": "JSON",
1516
+ "responseDatatype": "JSON",
1517
+ "headers": {},
1518
+ "responseObjects": [
1519
+ {
1520
+ "type": "default",
1521
+ "key": "",
1522
+ "mockFile": ""
1523
+ }
1524
+ ]
1525
+ },
1526
+ {
1527
+ "name": "removeLocalApplicationPoolsFromGAE",
1528
+ "protocol": "REST",
1529
+ "method": "DELETE",
1530
+ "entitypath": "{base_path}/{version}/inventory/v1/global-application-entitlements/{pathv1}/local-application-pools?{query}",
1531
+ "requestSchema": "schema.json",
1532
+ "responseSchema": "schema.json",
1533
+ "timeout": 0,
1534
+ "sendEmpty": false,
1535
+ "requestDatatype": "JSON",
1536
+ "responseDatatype": "JSON",
1537
+ "headers": {},
1538
+ "responseObjects": [
1539
+ {
1540
+ "type": "default",
1541
+ "key": "",
1542
+ "mockFile": ""
1543
+ }
1544
+ ]
1545
+ },
1546
+ {
1547
+ "name": "listLocalApplicationPools",
1548
+ "protocol": "REST",
1549
+ "method": "GET",
1550
+ "entitypath": "{base_path}/{version}/inventory/v1/global-application-entitlements/{pathv1}/local-application-pools?{query}",
1551
+ "requestSchema": "schema.json",
1552
+ "responseSchema": "schema.json",
1553
+ "timeout": 0,
1554
+ "sendEmpty": false,
1555
+ "sendGetBody": false,
1556
+ "requestDatatype": "JSON",
1557
+ "responseDatatype": "JSON",
1558
+ "headers": {},
1559
+ "responseObjects": [
1560
+ {
1561
+ "type": "default",
1562
+ "key": "",
1563
+ "mockFile": ""
1564
+ }
1565
+ ]
1566
+ },
1567
+ {
1568
+ "name": "addLocalApplicationPoolsToGAE",
1569
+ "protocol": "REST",
1570
+ "method": "POST",
1571
+ "entitypath": "{base_path}/{version}/inventory/v1/global-application-entitlements/{pathv1}/local-application-pools?{query}",
1572
+ "requestSchema": "schema.json",
1573
+ "responseSchema": "schema.json",
1574
+ "timeout": 0,
1575
+ "sendEmpty": false,
1576
+ "requestDatatype": "JSON",
1577
+ "responseDatatype": "JSON",
1578
+ "headers": {},
1579
+ "responseObjects": [
1580
+ {
1581
+ "type": "default",
1582
+ "key": "",
1583
+ "mockFile": ""
1584
+ }
1585
+ ]
1586
+ },
1587
+ {
1588
+ "name": "listGlobalDesktopEntitlements",
1589
+ "protocol": "REST",
1590
+ "method": "GET",
1591
+ "entitypath": "{base_path}/{version}/inventory/v1/global-desktop-entitlements?{query}",
1592
+ "requestSchema": "schema.json",
1593
+ "responseSchema": "schema.json",
1594
+ "timeout": 0,
1595
+ "sendEmpty": false,
1596
+ "sendGetBody": false,
1597
+ "requestDatatype": "JSON",
1598
+ "responseDatatype": "JSON",
1599
+ "headers": {},
1600
+ "responseObjects": [
1601
+ {
1602
+ "type": "default",
1603
+ "key": "",
1604
+ "mockFile": ""
1605
+ }
1606
+ ]
1607
+ },
1608
+ {
1609
+ "name": "createGlobalDesktopEntitlement",
1610
+ "protocol": "REST",
1611
+ "method": "POST",
1612
+ "entitypath": "{base_path}/{version}/inventory/v1/global-desktop-entitlements?{query}",
1613
+ "requestSchema": "schema.json",
1614
+ "responseSchema": "schema.json",
1615
+ "timeout": 0,
1616
+ "sendEmpty": false,
1617
+ "requestDatatype": "JSON",
1618
+ "responseDatatype": "JSON",
1619
+ "headers": {},
1620
+ "responseObjects": [
1621
+ {
1622
+ "type": "default",
1623
+ "key": "",
1624
+ "mockFile": ""
1625
+ }
1626
+ ]
1627
+ },
1628
+ {
1629
+ "name": "deleteGlobalDesktopEntitlement",
1630
+ "protocol": "REST",
1631
+ "method": "DELETE",
1632
+ "entitypath": "{base_path}/{version}/inventory/v1/global-desktop-entitlements/{pathv1}?{query}",
1633
+ "requestSchema": "schema.json",
1634
+ "responseSchema": "schema.json",
1635
+ "timeout": 0,
1636
+ "sendEmpty": false,
1637
+ "requestDatatype": "JSON",
1638
+ "responseDatatype": "JSON",
1639
+ "headers": {},
1640
+ "responseObjects": [
1641
+ {
1642
+ "type": "default",
1643
+ "key": "",
1644
+ "mockFile": ""
1645
+ }
1646
+ ]
1647
+ },
1648
+ {
1649
+ "name": "getGlobalDesktopEntitlement",
1650
+ "protocol": "REST",
1651
+ "method": "GET",
1652
+ "entitypath": "{base_path}/{version}/inventory/v1/global-desktop-entitlements/{pathv1}?{query}",
1653
+ "requestSchema": "schema.json",
1654
+ "responseSchema": "schema.json",
1655
+ "timeout": 0,
1656
+ "sendEmpty": false,
1657
+ "sendGetBody": false,
1658
+ "requestDatatype": "JSON",
1659
+ "responseDatatype": "JSON",
1660
+ "headers": {},
1661
+ "responseObjects": [
1662
+ {
1663
+ "type": "default",
1664
+ "key": "",
1665
+ "mockFile": ""
1666
+ }
1667
+ ]
1668
+ },
1669
+ {
1670
+ "name": "updateGlobalDesktopEntitlement",
1671
+ "protocol": "REST",
1672
+ "method": "PUT",
1673
+ "entitypath": "{base_path}/{version}/inventory/v1/global-desktop-entitlements/{pathv1}?{query}",
1674
+ "requestSchema": "schema.json",
1675
+ "responseSchema": "schema.json",
1676
+ "timeout": 0,
1677
+ "sendEmpty": false,
1678
+ "requestDatatype": "JSON",
1679
+ "responseDatatype": "JSON",
1680
+ "headers": {},
1681
+ "responseObjects": [
1682
+ {
1683
+ "type": "default",
1684
+ "key": "",
1685
+ "mockFile": ""
1686
+ }
1687
+ ]
1688
+ },
1689
+ {
1690
+ "name": "listCompatibleBackupGDEs",
1691
+ "protocol": "REST",
1692
+ "method": "GET",
1693
+ "entitypath": "{base_path}/{version}/inventory/v1/global-desktop-entitlements/{pathv1}/compatible-backup-global-desktop-entitlements?{query}",
1694
+ "requestSchema": "schema.json",
1695
+ "responseSchema": "schema.json",
1696
+ "timeout": 0,
1697
+ "sendEmpty": false,
1698
+ "sendGetBody": false,
1699
+ "requestDatatype": "JSON",
1700
+ "responseDatatype": "JSON",
1701
+ "headers": {},
1702
+ "responseObjects": [
1703
+ {
1704
+ "type": "default",
1705
+ "key": "",
1706
+ "mockFile": ""
1707
+ }
1708
+ ]
1709
+ },
1710
+ {
1711
+ "name": "listCompatibleLocalDesktopPools",
1712
+ "protocol": "REST",
1713
+ "method": "GET",
1714
+ "entitypath": "{base_path}/{version}/inventory/v1/global-desktop-entitlements/{pathv1}/compatible-local-desktop-pools?{query}",
1715
+ "requestSchema": "schema.json",
1716
+ "responseSchema": "schema.json",
1717
+ "timeout": 0,
1718
+ "sendEmpty": false,
1719
+ "sendGetBody": false,
1720
+ "requestDatatype": "JSON",
1721
+ "responseDatatype": "JSON",
1722
+ "headers": {},
1723
+ "responseObjects": [
1724
+ {
1725
+ "type": "default",
1726
+ "key": "",
1727
+ "mockFile": ""
1728
+ }
1729
+ ]
1730
+ },
1731
+ {
1732
+ "name": "removeLocalDesktopPoolsFromGDE",
1733
+ "protocol": "REST",
1734
+ "method": "DELETE",
1735
+ "entitypath": "{base_path}/{version}/inventory/v1/global-desktop-entitlements/{pathv1}/local-desktop-pools?{query}",
1736
+ "requestSchema": "schema.json",
1737
+ "responseSchema": "schema.json",
1738
+ "timeout": 0,
1739
+ "sendEmpty": false,
1740
+ "requestDatatype": "JSON",
1741
+ "responseDatatype": "JSON",
1742
+ "headers": {},
1743
+ "responseObjects": [
1744
+ {
1745
+ "type": "default",
1746
+ "key": "",
1747
+ "mockFile": ""
1748
+ }
1749
+ ]
1750
+ },
1751
+ {
1752
+ "name": "listLocalDesktopPools",
1753
+ "protocol": "REST",
1754
+ "method": "GET",
1755
+ "entitypath": "{base_path}/{version}/inventory/v1/global-desktop-entitlements/{pathv1}/local-desktop-pools?{query}",
1756
+ "requestSchema": "schema.json",
1757
+ "responseSchema": "schema.json",
1758
+ "timeout": 0,
1759
+ "sendEmpty": false,
1760
+ "sendGetBody": false,
1761
+ "requestDatatype": "JSON",
1762
+ "responseDatatype": "JSON",
1763
+ "headers": {},
1764
+ "responseObjects": [
1765
+ {
1766
+ "type": "default",
1767
+ "key": "",
1768
+ "mockFile": ""
1769
+ }
1770
+ ]
1771
+ },
1772
+ {
1773
+ "name": "addLocalDesktopPoolsToGDE",
1774
+ "protocol": "REST",
1775
+ "method": "POST",
1776
+ "entitypath": "{base_path}/{version}/inventory/v1/global-desktop-entitlements/{pathv1}/local-desktop-pools?{query}",
1777
+ "requestSchema": "schema.json",
1778
+ "responseSchema": "schema.json",
1779
+ "timeout": 0,
1780
+ "sendEmpty": false,
1781
+ "requestDatatype": "JSON",
1782
+ "responseDatatype": "JSON",
1783
+ "headers": {},
1784
+ "responseObjects": [
1785
+ {
1786
+ "type": "default",
1787
+ "key": "",
1788
+ "mockFile": ""
1789
+ }
1790
+ ]
1791
+ },
1792
+ {
1793
+ "name": "queryGlobalSessions",
1794
+ "protocol": "REST",
1795
+ "method": "GET",
1796
+ "entitypath": "{base_path}/{version}/inventory/v1/global-sessions?{query}",
1797
+ "requestSchema": "schema.json",
1798
+ "responseSchema": "schema.json",
1799
+ "timeout": 0,
1800
+ "sendEmpty": false,
1801
+ "sendGetBody": false,
1802
+ "requestDatatype": "JSON",
1803
+ "responseDatatype": "JSON",
1804
+ "headers": {},
1805
+ "responseObjects": [
1806
+ {
1807
+ "type": "default",
1808
+ "key": "",
1809
+ "mockFile": ""
1810
+ }
1811
+ ]
1812
+ },
1813
+ {
1814
+ "name": "disconnectGlobalSessions",
1815
+ "protocol": "REST",
1816
+ "method": "POST",
1817
+ "entitypath": "{base_path}/{version}/inventory/v1/global-sessions/action/disconnect?{query}",
1818
+ "requestSchema": "schema.json",
1819
+ "responseSchema": "schema.json",
1820
+ "timeout": 0,
1821
+ "sendEmpty": false,
1822
+ "requestDatatype": "JSON",
1823
+ "responseDatatype": "JSON",
1824
+ "headers": {},
1825
+ "responseObjects": [
1826
+ {
1827
+ "type": "default",
1828
+ "key": "",
1829
+ "mockFile": ""
1830
+ }
1831
+ ]
1832
+ },
1833
+ {
1834
+ "name": "logOffGlobalSessions",
1835
+ "protocol": "REST",
1836
+ "method": "POST",
1837
+ "entitypath": "{base_path}/{version}/inventory/v1/global-sessions/action/logoff?{query}",
1838
+ "requestSchema": "schema.json",
1839
+ "responseSchema": "schema.json",
1840
+ "timeout": 0,
1841
+ "sendEmpty": false,
1842
+ "requestDatatype": "JSON",
1843
+ "responseDatatype": "JSON",
1844
+ "headers": {},
1845
+ "responseObjects": [
1846
+ {
1847
+ "type": "default",
1848
+ "key": "",
1849
+ "mockFile": ""
1850
+ }
1851
+ ]
1852
+ },
1853
+ {
1854
+ "name": "resetGlobalSessions",
1855
+ "protocol": "REST",
1856
+ "method": "POST",
1857
+ "entitypath": "{base_path}/{version}/inventory/v1/global-sessions/action/reset?{query}",
1858
+ "requestSchema": "schema.json",
1859
+ "responseSchema": "schema.json",
1860
+ "timeout": 0,
1861
+ "sendEmpty": false,
1862
+ "requestDatatype": "JSON",
1863
+ "responseDatatype": "JSON",
1864
+ "headers": {},
1865
+ "responseObjects": [
1866
+ {
1867
+ "type": "default",
1868
+ "key": "",
1869
+ "mockFile": ""
1870
+ }
1871
+ ]
1872
+ },
1873
+ {
1874
+ "name": "restartGlobalSessions",
1875
+ "protocol": "REST",
1876
+ "method": "POST",
1877
+ "entitypath": "{base_path}/{version}/inventory/v1/global-sessions/action/restart?{query}",
1878
+ "requestSchema": "schema.json",
1879
+ "responseSchema": "schema.json",
1880
+ "timeout": 0,
1881
+ "sendEmpty": false,
1882
+ "requestDatatype": "JSON",
1883
+ "responseDatatype": "JSON",
1884
+ "headers": {},
1885
+ "responseObjects": [
1886
+ {
1887
+ "type": "default",
1888
+ "key": "",
1889
+ "mockFile": ""
1890
+ }
1891
+ ]
1892
+ },
1893
+ {
1894
+ "name": "sendMessageToGlobalSessions",
1895
+ "protocol": "REST",
1896
+ "method": "POST",
1897
+ "entitypath": "{base_path}/{version}/inventory/v1/global-sessions/action/send-message?{query}",
1898
+ "requestSchema": "schema.json",
1899
+ "responseSchema": "schema.json",
1900
+ "timeout": 0,
1901
+ "sendEmpty": false,
1902
+ "requestDatatype": "JSON",
1903
+ "responseDatatype": "JSON",
1904
+ "headers": {},
1905
+ "responseObjects": [
1906
+ {
1907
+ "type": "default",
1908
+ "key": "",
1909
+ "mockFile": ""
1910
+ }
1911
+ ]
1912
+ },
1913
+ {
1914
+ "name": "deleteMachines",
1915
+ "protocol": "REST",
1916
+ "method": "DELETE",
1917
+ "entitypath": "{base_path}/{version}/inventory/v1/machines?{query}",
1918
+ "requestSchema": "schema.json",
1919
+ "responseSchema": "schema.json",
1920
+ "timeout": 0,
1921
+ "sendEmpty": false,
1922
+ "requestDatatype": "JSON",
1923
+ "responseDatatype": "JSON",
1924
+ "headers": {},
1925
+ "responseObjects": [
1926
+ {
1927
+ "type": "default",
1928
+ "key": "",
1929
+ "mockFile": ""
1930
+ }
1931
+ ]
1932
+ },
1933
+ {
1934
+ "name": "listMachines",
1935
+ "protocol": "REST",
1936
+ "method": "GET",
1937
+ "entitypath": "{base_path}/{version}/inventory/v1/machines?{query}",
1938
+ "requestSchema": "schema.json",
1939
+ "responseSchema": "schema.json",
1940
+ "timeout": 0,
1941
+ "sendEmpty": false,
1942
+ "sendGetBody": false,
1943
+ "requestDatatype": "JSON",
1944
+ "responseDatatype": "JSON",
1945
+ "headers": {},
1946
+ "responseObjects": [
1947
+ {
1948
+ "type": "default",
1949
+ "key": "",
1950
+ "mockFile": ""
1951
+ }
1952
+ ]
1953
+ },
1954
+ {
1955
+ "name": "archiveMachines",
1956
+ "protocol": "REST",
1957
+ "method": "POST",
1958
+ "entitypath": "{base_path}/{version}/inventory/v1/machines/action/archive?{query}",
1959
+ "requestSchema": "schema.json",
1960
+ "responseSchema": "schema.json",
1961
+ "timeout": 0,
1962
+ "sendEmpty": false,
1963
+ "requestDatatype": "JSON",
1964
+ "responseDatatype": "JSON",
1965
+ "headers": {},
1966
+ "responseObjects": [
1967
+ {
1968
+ "type": "default",
1969
+ "key": "",
1970
+ "mockFile": ""
1971
+ }
1972
+ ]
1973
+ },
1974
+ {
1975
+ "name": "cancelAgentUpgrades",
1976
+ "protocol": "REST",
1977
+ "method": "POST",
1978
+ "entitypath": "{base_path}/{version}/inventory/v1/machines/action/cancel-agent-upgrade?{query}",
1979
+ "requestSchema": "schema.json",
1980
+ "responseSchema": "schema.json",
1981
+ "timeout": 0,
1982
+ "sendEmpty": false,
1983
+ "requestDatatype": "JSON",
1984
+ "responseDatatype": "JSON",
1985
+ "headers": {},
1986
+ "responseObjects": [
1987
+ {
1988
+ "type": "default",
1989
+ "key": "",
1990
+ "mockFile": ""
1991
+ }
1992
+ ]
1993
+ },
1994
+ {
1995
+ "name": "checkMachinePrefixAvailability",
1996
+ "protocol": "REST",
1997
+ "method": "POST",
1998
+ "entitypath": "{base_path}/{version}/inventory/v1/machines/action/check-name-availability?{query}",
1999
+ "requestSchema": "schema.json",
2000
+ "responseSchema": "schema.json",
2001
+ "timeout": 0,
2002
+ "sendEmpty": false,
2003
+ "requestDatatype": "JSON",
2004
+ "responseDatatype": "JSON",
2005
+ "headers": {},
2006
+ "responseObjects": [
2007
+ {
2008
+ "type": "default",
2009
+ "key": "",
2010
+ "mockFile": ""
2011
+ }
2012
+ ]
2013
+ },
2014
+ {
2015
+ "name": "enterMaintenance",
2016
+ "protocol": "REST",
2017
+ "method": "POST",
2018
+ "entitypath": "{base_path}/{version}/inventory/v1/machines/action/enter-maintenance?{query}",
2019
+ "requestSchema": "schema.json",
2020
+ "responseSchema": "schema.json",
2021
+ "timeout": 0,
2022
+ "sendEmpty": false,
2023
+ "requestDatatype": "JSON",
2024
+ "responseDatatype": "JSON",
2025
+ "headers": {},
2026
+ "responseObjects": [
2027
+ {
2028
+ "type": "default",
2029
+ "key": "",
2030
+ "mockFile": ""
2031
+ }
2032
+ ]
2033
+ },
2034
+ {
2035
+ "name": "exitMaintenance",
2036
+ "protocol": "REST",
2037
+ "method": "POST",
2038
+ "entitypath": "{base_path}/{version}/inventory/v1/machines/action/exit-maintenance?{query}",
2039
+ "requestSchema": "schema.json",
2040
+ "responseSchema": "schema.json",
2041
+ "timeout": 0,
2042
+ "sendEmpty": false,
2043
+ "requestDatatype": "JSON",
2044
+ "responseDatatype": "JSON",
2045
+ "headers": {},
2046
+ "responseObjects": [
2047
+ {
2048
+ "type": "default",
2049
+ "key": "",
2050
+ "mockFile": ""
2051
+ }
2052
+ ]
2053
+ },
2054
+ {
2055
+ "name": "rebuildMachines",
2056
+ "protocol": "REST",
2057
+ "method": "POST",
2058
+ "entitypath": "{base_path}/{version}/inventory/v1/machines/action/rebuild?{query}",
2059
+ "requestSchema": "schema.json",
2060
+ "responseSchema": "schema.json",
2061
+ "timeout": 0,
2062
+ "sendEmpty": false,
2063
+ "requestDatatype": "JSON",
2064
+ "responseDatatype": "JSON",
2065
+ "headers": {},
2066
+ "responseObjects": [
2067
+ {
2068
+ "type": "default",
2069
+ "key": "",
2070
+ "mockFile": ""
2071
+ }
2072
+ ]
2073
+ },
2074
+ {
2075
+ "name": "recoverMachines",
2076
+ "protocol": "REST",
2077
+ "method": "POST",
2078
+ "entitypath": "{base_path}/{version}/inventory/v1/machines/action/recover?{query}",
2079
+ "requestSchema": "schema.json",
2080
+ "responseSchema": "schema.json",
2081
+ "timeout": 0,
2082
+ "sendEmpty": false,
2083
+ "requestDatatype": "JSON",
2084
+ "responseDatatype": "JSON",
2085
+ "headers": {},
2086
+ "responseObjects": [
2087
+ {
2088
+ "type": "default",
2089
+ "key": "",
2090
+ "mockFile": ""
2091
+ }
2092
+ ]
2093
+ },
2094
+ {
2095
+ "name": "recreateFromPersistentDisk",
2096
+ "protocol": "REST",
2097
+ "method": "POST",
2098
+ "entitypath": "{base_path}/{version}/inventory/v1/machines/action/recreate-from-persistent-disk?{query}",
2099
+ "requestSchema": "schema.json",
2100
+ "responseSchema": "schema.json",
2101
+ "timeout": 0,
2102
+ "sendEmpty": false,
2103
+ "requestDatatype": "JSON",
2104
+ "responseDatatype": "JSON",
2105
+ "headers": {},
2106
+ "responseObjects": [
2107
+ {
2108
+ "type": "default",
2109
+ "key": "",
2110
+ "mockFile": ""
2111
+ }
2112
+ ]
2113
+ },
2114
+ {
2115
+ "name": "resetMachines",
2116
+ "protocol": "REST",
2117
+ "method": "POST",
2118
+ "entitypath": "{base_path}/{version}/inventory/v1/machines/action/reset?{query}",
2119
+ "requestSchema": "schema.json",
2120
+ "responseSchema": "schema.json",
2121
+ "timeout": 0,
2122
+ "sendEmpty": false,
2123
+ "requestDatatype": "JSON",
2124
+ "responseDatatype": "JSON",
2125
+ "headers": {},
2126
+ "responseObjects": [
2127
+ {
2128
+ "type": "default",
2129
+ "key": "",
2130
+ "mockFile": ""
2131
+ }
2132
+ ]
2133
+ },
2134
+ {
2135
+ "name": "restartMachines",
2136
+ "protocol": "REST",
2137
+ "method": "POST",
2138
+ "entitypath": "{base_path}/{version}/inventory/v1/machines/action/restart?{query}",
2139
+ "requestSchema": "schema.json",
2140
+ "responseSchema": "schema.json",
2141
+ "timeout": 0,
2142
+ "sendEmpty": false,
2143
+ "requestDatatype": "JSON",
2144
+ "responseDatatype": "JSON",
2145
+ "headers": {},
2146
+ "responseObjects": [
2147
+ {
2148
+ "type": "default",
2149
+ "key": "",
2150
+ "mockFile": ""
2151
+ }
2152
+ ]
2153
+ },
2154
+ {
2155
+ "name": "scheduleAgentForUpgrade",
2156
+ "protocol": "REST",
2157
+ "method": "POST",
2158
+ "entitypath": "{base_path}/{version}/inventory/v1/machines/action/schedule-agent-upgrade?{query}",
2159
+ "requestSchema": "schema.json",
2160
+ "responseSchema": "schema.json",
2161
+ "timeout": 0,
2162
+ "sendEmpty": false,
2163
+ "requestDatatype": "JSON",
2164
+ "responseDatatype": "JSON",
2165
+ "headers": {},
2166
+ "responseObjects": [
2167
+ {
2168
+ "type": "default",
2169
+ "key": "",
2170
+ "mockFile": ""
2171
+ }
2172
+ ]
2173
+ },
2174
+ {
2175
+ "name": "listAgentUpgradeTasks",
2176
+ "protocol": "REST",
2177
+ "method": "GET",
2178
+ "entitypath": "{base_path}/{version}/inventory/v1/machines/agent-upgrade-tasks?{query}",
2179
+ "requestSchema": "schema.json",
2180
+ "responseSchema": "schema.json",
2181
+ "timeout": 0,
2182
+ "sendEmpty": false,
2183
+ "sendGetBody": false,
2184
+ "requestDatatype": "JSON",
2185
+ "responseDatatype": "JSON",
2186
+ "headers": {},
2187
+ "responseObjects": [
2188
+ {
2189
+ "type": "default",
2190
+ "key": "",
2191
+ "mockFile": ""
2192
+ }
2193
+ ]
2194
+ },
2195
+ {
2196
+ "name": "getAgentUpgradeTask",
2197
+ "protocol": "REST",
2198
+ "method": "GET",
2199
+ "entitypath": "{base_path}/{version}/inventory/v1/machines/agent-upgrade-tasks/{pathv1}?{query}",
2200
+ "requestSchema": "schema.json",
2201
+ "responseSchema": "schema.json",
2202
+ "timeout": 0,
2203
+ "sendEmpty": false,
2204
+ "sendGetBody": false,
2205
+ "requestDatatype": "JSON",
2206
+ "responseDatatype": "JSON",
2207
+ "headers": {},
2208
+ "responseObjects": [
2209
+ {
2210
+ "type": "default",
2211
+ "key": "",
2212
+ "mockFile": ""
2213
+ }
2214
+ ]
2215
+ },
2216
+ {
2217
+ "name": "listUnentitledMachines",
2218
+ "protocol": "REST",
2219
+ "method": "GET",
2220
+ "entitypath": "{base_path}/{version}/inventory/v1/machines/unentitled?{query}",
2221
+ "requestSchema": "schema.json",
2222
+ "responseSchema": "schema.json",
2223
+ "timeout": 0,
2224
+ "sendEmpty": false,
2225
+ "sendGetBody": false,
2226
+ "requestDatatype": "JSON",
2227
+ "responseDatatype": "JSON",
2228
+ "headers": {},
2229
+ "responseObjects": [
2230
+ {
2231
+ "type": "default",
2232
+ "key": "",
2233
+ "mockFile": ""
2234
+ }
2235
+ ]
2236
+ },
2237
+ {
2238
+ "name": "deleteMachine",
2239
+ "protocol": "REST",
2240
+ "method": "DELETE",
2241
+ "entitypath": "{base_path}/{version}/inventory/v1/machines/{pathv1}?{query}",
2242
+ "requestSchema": "schema.json",
2243
+ "responseSchema": "schema.json",
2244
+ "timeout": 0,
2245
+ "sendEmpty": false,
2246
+ "requestDatatype": "JSON",
2247
+ "responseDatatype": "JSON",
2248
+ "headers": {},
2249
+ "responseObjects": [
2250
+ {
2251
+ "type": "default",
2252
+ "key": "",
2253
+ "mockFile": ""
2254
+ }
2255
+ ]
2256
+ },
2257
+ {
2258
+ "name": "getMachine",
2259
+ "protocol": "REST",
2260
+ "method": "GET",
2261
+ "entitypath": "{base_path}/{version}/inventory/v1/machines/{pathv1}?{query}",
2262
+ "requestSchema": "schema.json",
2263
+ "responseSchema": "schema.json",
2264
+ "timeout": 0,
2265
+ "sendEmpty": false,
2266
+ "sendGetBody": false,
2267
+ "requestDatatype": "JSON",
2268
+ "responseDatatype": "JSON",
2269
+ "headers": {},
2270
+ "responseObjects": [
2271
+ {
2272
+ "type": "default",
2273
+ "key": "",
2274
+ "mockFile": ""
2275
+ }
2276
+ ]
2277
+ },
2278
+ {
2279
+ "name": "assignMachineAliases",
2280
+ "protocol": "REST",
2281
+ "method": "POST",
2282
+ "entitypath": "{base_path}/{version}/inventory/v1/machines/{pathv1}/action/assign-aliases?{query}",
2283
+ "requestSchema": "schema.json",
2284
+ "responseSchema": "schema.json",
2285
+ "timeout": 0,
2286
+ "sendEmpty": false,
2287
+ "requestDatatype": "JSON",
2288
+ "responseDatatype": "JSON",
2289
+ "headers": {},
2290
+ "responseObjects": [
2291
+ {
2292
+ "type": "default",
2293
+ "key": "",
2294
+ "mockFile": ""
2295
+ }
2296
+ ]
2297
+ },
2298
+ {
2299
+ "name": "assignUsers",
2300
+ "protocol": "REST",
2301
+ "method": "POST",
2302
+ "entitypath": "{base_path}/{version}/inventory/v1/machines/{pathv1}/action/assign-users?{query}",
2303
+ "requestSchema": "schema.json",
2304
+ "responseSchema": "schema.json",
2305
+ "timeout": 0,
2306
+ "sendEmpty": false,
2307
+ "requestDatatype": "JSON",
2308
+ "responseDatatype": "JSON",
2309
+ "headers": {},
2310
+ "responseObjects": [
2311
+ {
2312
+ "type": "default",
2313
+ "key": "",
2314
+ "mockFile": ""
2315
+ }
2316
+ ]
2317
+ },
2318
+ {
2319
+ "name": "attachPersistentDisk",
2320
+ "protocol": "REST",
2321
+ "method": "POST",
2322
+ "entitypath": "{base_path}/{version}/inventory/v1/machines/{pathv1}/action/attach-persistent-disk?{query}",
2323
+ "requestSchema": "schema.json",
2324
+ "responseSchema": "schema.json",
2325
+ "timeout": 0,
2326
+ "sendEmpty": false,
2327
+ "requestDatatype": "JSON",
2328
+ "responseDatatype": "JSON",
2329
+ "headers": {},
2330
+ "responseObjects": [
2331
+ {
2332
+ "type": "default",
2333
+ "key": "",
2334
+ "mockFile": ""
2335
+ }
2336
+ ]
2337
+ },
2338
+ {
2339
+ "name": "detachPersistentDisk",
2340
+ "protocol": "REST",
2341
+ "method": "POST",
2342
+ "entitypath": "{base_path}/{version}/inventory/v1/machines/{pathv1}/action/detach-persistent-disk?{query}",
2343
+ "requestSchema": "schema.json",
2344
+ "responseSchema": "schema.json",
2345
+ "timeout": 0,
2346
+ "sendEmpty": false,
2347
+ "requestDatatype": "JSON",
2348
+ "responseDatatype": "JSON",
2349
+ "headers": {},
2350
+ "responseObjects": [
2351
+ {
2352
+ "type": "default",
2353
+ "key": "",
2354
+ "mockFile": ""
2355
+ }
2356
+ ]
2357
+ },
2358
+ {
2359
+ "name": "unassignMachineAliases",
2360
+ "protocol": "REST",
2361
+ "method": "POST",
2362
+ "entitypath": "{base_path}/{version}/inventory/v1/machines/{pathv1}/action/unassign-aliases?{query}",
2363
+ "requestSchema": "schema.json",
2364
+ "responseSchema": "schema.json",
2365
+ "timeout": 0,
2366
+ "sendEmpty": false,
2367
+ "requestDatatype": "JSON",
2368
+ "responseDatatype": "JSON",
2369
+ "headers": {},
2370
+ "responseObjects": [
2371
+ {
2372
+ "type": "default",
2373
+ "key": "",
2374
+ "mockFile": ""
2375
+ }
2376
+ ]
2377
+ },
2378
+ {
2379
+ "name": "unassignUsers",
2380
+ "protocol": "REST",
2381
+ "method": "POST",
2382
+ "entitypath": "{base_path}/{version}/inventory/v1/machines/{pathv1}/action/unassign-users?{query}",
2383
+ "requestSchema": "schema.json",
2384
+ "responseSchema": "schema.json",
2385
+ "timeout": 0,
2386
+ "sendEmpty": false,
2387
+ "requestDatatype": "JSON",
2388
+ "responseDatatype": "JSON",
2389
+ "headers": {},
2390
+ "responseObjects": [
2391
+ {
2392
+ "type": "default",
2393
+ "key": "",
2394
+ "mockFile": ""
2395
+ }
2396
+ ]
2397
+ },
2398
+ {
2399
+ "name": "listPersistentDisks",
2400
+ "protocol": "REST",
2401
+ "method": "GET",
2402
+ "entitypath": "{base_path}/{version}/inventory/v1/persistent-disks?{query}",
2403
+ "requestSchema": "schema.json",
2404
+ "responseSchema": "schema.json",
2405
+ "timeout": 0,
2406
+ "sendEmpty": false,
2407
+ "sendGetBody": false,
2408
+ "requestDatatype": "JSON",
2409
+ "responseDatatype": "JSON",
2410
+ "headers": {},
2411
+ "responseObjects": [
2412
+ {
2413
+ "type": "default",
2414
+ "key": "",
2415
+ "mockFile": ""
2416
+ }
2417
+ ]
2418
+ },
2419
+ {
2420
+ "name": "createPersistentDisk",
2421
+ "protocol": "REST",
2422
+ "method": "POST",
2423
+ "entitypath": "{base_path}/{version}/inventory/v1/persistent-disks?{query}",
2424
+ "requestSchema": "schema.json",
2425
+ "responseSchema": "schema.json",
2426
+ "timeout": 0,
2427
+ "sendEmpty": false,
2428
+ "requestDatatype": "JSON",
2429
+ "responseDatatype": "JSON",
2430
+ "headers": {},
2431
+ "responseObjects": [
2432
+ {
2433
+ "type": "default",
2434
+ "key": "",
2435
+ "mockFile": ""
2436
+ }
2437
+ ]
2438
+ },
2439
+ {
2440
+ "name": "deletePersistentDisk",
2441
+ "protocol": "REST",
2442
+ "method": "DELETE",
2443
+ "entitypath": "{base_path}/{version}/inventory/v1/persistent-disks/{pathv1}?{query}",
2444
+ "requestSchema": "schema.json",
2445
+ "responseSchema": "schema.json",
2446
+ "timeout": 0,
2447
+ "sendEmpty": false,
2448
+ "requestDatatype": "JSON",
2449
+ "responseDatatype": "JSON",
2450
+ "headers": {},
2451
+ "responseObjects": [
2452
+ {
2453
+ "type": "default",
2454
+ "key": "",
2455
+ "mockFile": ""
2456
+ }
2457
+ ]
2458
+ },
2459
+ {
2460
+ "name": "getPersistentDisk",
2461
+ "protocol": "REST",
2462
+ "method": "GET",
2463
+ "entitypath": "{base_path}/{version}/inventory/v1/persistent-disks/{pathv1}?{query}",
2464
+ "requestSchema": "schema.json",
2465
+ "responseSchema": "schema.json",
2466
+ "timeout": 0,
2467
+ "sendEmpty": false,
2468
+ "sendGetBody": false,
2469
+ "requestDatatype": "JSON",
2470
+ "responseDatatype": "JSON",
2471
+ "headers": {},
2472
+ "responseObjects": [
2473
+ {
2474
+ "type": "default",
2475
+ "key": "",
2476
+ "mockFile": ""
2477
+ }
2478
+ ]
2479
+ },
2480
+ {
2481
+ "name": "updatePersistentDisk",
2482
+ "protocol": "REST",
2483
+ "method": "PUT",
2484
+ "entitypath": "{base_path}/{version}/inventory/v1/persistent-disks/{pathv1}?{query}",
2485
+ "requestSchema": "schema.json",
2486
+ "responseSchema": "schema.json",
2487
+ "timeout": 0,
2488
+ "sendEmpty": false,
2489
+ "requestDatatype": "JSON",
2490
+ "responseDatatype": "JSON",
2491
+ "headers": {},
2492
+ "responseObjects": [
2493
+ {
2494
+ "type": "default",
2495
+ "key": "",
2496
+ "mockFile": ""
2497
+ }
2498
+ ]
2499
+ },
2500
+ {
2501
+ "name": "listAttachableMachines",
2502
+ "protocol": "REST",
2503
+ "method": "GET",
2504
+ "entitypath": "{base_path}/{version}/inventory/v1/persistent-disks/{pathv1}/attachable-machines?{query}",
2505
+ "requestSchema": "schema.json",
2506
+ "responseSchema": "schema.json",
2507
+ "timeout": 0,
2508
+ "sendEmpty": false,
2509
+ "sendGetBody": false,
2510
+ "requestDatatype": "JSON",
2511
+ "responseDatatype": "JSON",
2512
+ "headers": {},
2513
+ "responseObjects": [
2514
+ {
2515
+ "type": "default",
2516
+ "key": "",
2517
+ "mockFile": ""
2518
+ }
2519
+ ]
2520
+ },
2521
+ {
2522
+ "name": "listPhysicalMachines",
2523
+ "protocol": "REST",
2524
+ "method": "GET",
2525
+ "entitypath": "{base_path}/{version}/inventory/v1/physical-machines?{query}",
2526
+ "requestSchema": "schema.json",
2527
+ "responseSchema": "schema.json",
2528
+ "timeout": 0,
2529
+ "sendEmpty": false,
2530
+ "sendGetBody": false,
2531
+ "requestDatatype": "JSON",
2532
+ "responseDatatype": "JSON",
2533
+ "headers": {},
2534
+ "responseObjects": [
2535
+ {
2536
+ "type": "default",
2537
+ "key": "",
2538
+ "mockFile": ""
2539
+ }
2540
+ ]
2541
+ },
2542
+ {
2543
+ "name": "registerPhysicalMachine",
2544
+ "protocol": "REST",
2545
+ "method": "POST",
2546
+ "entitypath": "{base_path}/{version}/inventory/v1/physical-machines/action/register?{query}",
2547
+ "requestSchema": "schema.json",
2548
+ "responseSchema": "schema.json",
2549
+ "timeout": 0,
2550
+ "sendEmpty": false,
2551
+ "requestDatatype": "JSON",
2552
+ "responseDatatype": "JSON",
2553
+ "headers": {},
2554
+ "responseObjects": [
2555
+ {
2556
+ "type": "default",
2557
+ "key": "",
2558
+ "mockFile": ""
2559
+ }
2560
+ ]
2561
+ },
2562
+ {
2563
+ "name": "deletePhysicalMachine",
2564
+ "protocol": "REST",
2565
+ "method": "DELETE",
2566
+ "entitypath": "{base_path}/{version}/inventory/v1/physical-machines/{pathv1}?{query}",
2567
+ "requestSchema": "schema.json",
2568
+ "responseSchema": "schema.json",
2569
+ "timeout": 0,
2570
+ "sendEmpty": false,
2571
+ "requestDatatype": "JSON",
2572
+ "responseDatatype": "JSON",
2573
+ "headers": {},
2574
+ "responseObjects": [
2575
+ {
2576
+ "type": "default",
2577
+ "key": "",
2578
+ "mockFile": ""
2579
+ }
2580
+ ]
2581
+ },
2582
+ {
2583
+ "name": "getPhysicalMachine",
2584
+ "protocol": "REST",
2585
+ "method": "GET",
2586
+ "entitypath": "{base_path}/{version}/inventory/v1/physical-machines/{pathv1}?{query}",
2587
+ "requestSchema": "schema.json",
2588
+ "responseSchema": "schema.json",
2589
+ "timeout": 0,
2590
+ "sendEmpty": false,
2591
+ "sendGetBody": false,
2592
+ "requestDatatype": "JSON",
2593
+ "responseDatatype": "JSON",
2594
+ "headers": {},
2595
+ "responseObjects": [
2596
+ {
2597
+ "type": "default",
2598
+ "key": "",
2599
+ "mockFile": ""
2600
+ }
2601
+ ]
2602
+ },
2603
+ {
2604
+ "name": "listRDSServers",
2605
+ "protocol": "REST",
2606
+ "method": "GET",
2607
+ "entitypath": "{base_path}/{version}/inventory/v1/rds-servers?{query}",
2608
+ "requestSchema": "schema.json",
2609
+ "responseSchema": "schema.json",
2610
+ "timeout": 0,
2611
+ "sendEmpty": false,
2612
+ "sendGetBody": false,
2613
+ "requestDatatype": "JSON",
2614
+ "responseDatatype": "JSON",
2615
+ "headers": {},
2616
+ "responseObjects": [
2617
+ {
2618
+ "type": "default",
2619
+ "key": "",
2620
+ "mockFile": ""
2621
+ }
2622
+ ]
2623
+ },
2624
+ {
2625
+ "name": "cancelRdsServerAgentUpgrades",
2626
+ "protocol": "REST",
2627
+ "method": "POST",
2628
+ "entitypath": "{base_path}/{version}/inventory/v1/rds-servers/action/cancel-agent-upgrade?{query}",
2629
+ "requestSchema": "schema.json",
2630
+ "responseSchema": "schema.json",
2631
+ "timeout": 0,
2632
+ "sendEmpty": false,
2633
+ "requestDatatype": "JSON",
2634
+ "responseDatatype": "JSON",
2635
+ "headers": {},
2636
+ "responseObjects": [
2637
+ {
2638
+ "type": "default",
2639
+ "key": "",
2640
+ "mockFile": ""
2641
+ }
2642
+ ]
2643
+ },
2644
+ {
2645
+ "name": "checkRDSServerPrefixAvailability",
2646
+ "protocol": "REST",
2647
+ "method": "POST",
2648
+ "entitypath": "{base_path}/{version}/inventory/v1/rds-servers/action/check-name-availability?{query}",
2649
+ "requestSchema": "schema.json",
2650
+ "responseSchema": "schema.json",
2651
+ "timeout": 0,
2652
+ "sendEmpty": false,
2653
+ "requestDatatype": "JSON",
2654
+ "responseDatatype": "JSON",
2655
+ "headers": {},
2656
+ "responseObjects": [
2657
+ {
2658
+ "type": "default",
2659
+ "key": "",
2660
+ "mockFile": ""
2661
+ }
2662
+ ]
2663
+ },
2664
+ {
2665
+ "name": "recoverRDSServers",
2666
+ "protocol": "REST",
2667
+ "method": "POST",
2668
+ "entitypath": "{base_path}/{version}/inventory/v1/rds-servers/action/recover?{query}",
2669
+ "requestSchema": "schema.json",
2670
+ "responseSchema": "schema.json",
2671
+ "timeout": 0,
2672
+ "sendEmpty": false,
2673
+ "requestDatatype": "JSON",
2674
+ "responseDatatype": "JSON",
2675
+ "headers": {},
2676
+ "responseObjects": [
2677
+ {
2678
+ "type": "default",
2679
+ "key": "",
2680
+ "mockFile": ""
2681
+ }
2682
+ ]
2683
+ },
2684
+ {
2685
+ "name": "registerRDSServer",
2686
+ "protocol": "REST",
2687
+ "method": "POST",
2688
+ "entitypath": "{base_path}/{version}/inventory/v1/rds-servers/action/register?{query}",
2689
+ "requestSchema": "schema.json",
2690
+ "responseSchema": "schema.json",
2691
+ "timeout": 0,
2692
+ "sendEmpty": false,
2693
+ "requestDatatype": "JSON",
2694
+ "responseDatatype": "JSON",
2695
+ "headers": {},
2696
+ "responseObjects": [
2697
+ {
2698
+ "type": "default",
2699
+ "key": "",
2700
+ "mockFile": ""
2701
+ }
2702
+ ]
2703
+ },
2704
+ {
2705
+ "name": "scheduleAgentForUpgradeRdsServer",
2706
+ "protocol": "REST",
2707
+ "method": "POST",
2708
+ "entitypath": "{base_path}/{version}/inventory/v1/rds-servers/action/schedule-agent-upgrade?{query}",
2709
+ "requestSchema": "schema.json",
2710
+ "responseSchema": "schema.json",
2711
+ "timeout": 0,
2712
+ "sendEmpty": false,
2713
+ "requestDatatype": "JSON",
2714
+ "responseDatatype": "JSON",
2715
+ "headers": {},
2716
+ "responseObjects": [
2717
+ {
2718
+ "type": "default",
2719
+ "key": "",
2720
+ "mockFile": ""
2721
+ }
2722
+ ]
2723
+ },
2724
+ {
2725
+ "name": "listRdsServerAgentUpgradeTasks",
2726
+ "protocol": "REST",
2727
+ "method": "GET",
2728
+ "entitypath": "{base_path}/{version}/inventory/v1/rds-servers/agent-upgrade-tasks?{query}",
2729
+ "requestSchema": "schema.json",
2730
+ "responseSchema": "schema.json",
2731
+ "timeout": 0,
2732
+ "sendEmpty": false,
2733
+ "sendGetBody": false,
2734
+ "requestDatatype": "JSON",
2735
+ "responseDatatype": "JSON",
2736
+ "headers": {},
2737
+ "responseObjects": [
2738
+ {
2739
+ "type": "default",
2740
+ "key": "",
2741
+ "mockFile": ""
2742
+ }
2743
+ ]
2744
+ },
2745
+ {
2746
+ "name": "getRdsServerAgentUpgradeTask",
2747
+ "protocol": "REST",
2748
+ "method": "GET",
2749
+ "entitypath": "{base_path}/{version}/inventory/v1/rds-servers/agent-upgrade-tasks/{pathv1}?{query}",
2750
+ "requestSchema": "schema.json",
2751
+ "responseSchema": "schema.json",
2752
+ "timeout": 0,
2753
+ "sendEmpty": false,
2754
+ "sendGetBody": false,
2755
+ "requestDatatype": "JSON",
2756
+ "responseDatatype": "JSON",
2757
+ "headers": {},
2758
+ "responseObjects": [
2759
+ {
2760
+ "type": "default",
2761
+ "key": "",
2762
+ "mockFile": ""
2763
+ }
2764
+ ]
2765
+ },
2766
+ {
2767
+ "name": "deleteRDSServer",
2768
+ "protocol": "REST",
2769
+ "method": "DELETE",
2770
+ "entitypath": "{base_path}/{version}/inventory/v1/rds-servers/{pathv1}?{query}",
2771
+ "requestSchema": "schema.json",
2772
+ "responseSchema": "schema.json",
2773
+ "timeout": 0,
2774
+ "sendEmpty": false,
2775
+ "requestDatatype": "JSON",
2776
+ "responseDatatype": "JSON",
2777
+ "headers": {},
2778
+ "responseObjects": [
2779
+ {
2780
+ "type": "default",
2781
+ "key": "",
2782
+ "mockFile": ""
2783
+ }
2784
+ ]
2785
+ },
2786
+ {
2787
+ "name": "getRDSServer",
2788
+ "protocol": "REST",
2789
+ "method": "GET",
2790
+ "entitypath": "{base_path}/{version}/inventory/v1/rds-servers/{pathv1}?{query}",
2791
+ "requestSchema": "schema.json",
2792
+ "responseSchema": "schema.json",
2793
+ "timeout": 0,
2794
+ "sendEmpty": false,
2795
+ "sendGetBody": false,
2796
+ "requestDatatype": "JSON",
2797
+ "responseDatatype": "JSON",
2798
+ "headers": {},
2799
+ "responseObjects": [
2800
+ {
2801
+ "type": "default",
2802
+ "key": "",
2803
+ "mockFile": ""
2804
+ }
2805
+ ]
2806
+ },
2807
+ {
2808
+ "name": "updateRDSServer",
2809
+ "protocol": "REST",
2810
+ "method": "PUT",
2811
+ "entitypath": "{base_path}/{version}/inventory/v1/rds-servers/{pathv1}?{query}",
2812
+ "requestSchema": "schema.json",
2813
+ "responseSchema": "schema.json",
2814
+ "timeout": 0,
2815
+ "sendEmpty": false,
2816
+ "requestDatatype": "JSON",
2817
+ "responseDatatype": "JSON",
2818
+ "headers": {},
2819
+ "responseObjects": [
2820
+ {
2821
+ "type": "default",
2822
+ "key": "",
2823
+ "mockFile": ""
2824
+ }
2825
+ ]
2826
+ },
2827
+ {
2828
+ "name": "listSessionInfo",
2829
+ "protocol": "REST",
2830
+ "method": "GET",
2831
+ "entitypath": "{base_path}/{version}/inventory/v1/sessions?{query}",
2832
+ "requestSchema": "schema.json",
2833
+ "responseSchema": "schema.json",
2834
+ "timeout": 0,
2835
+ "sendEmpty": false,
2836
+ "sendGetBody": false,
2837
+ "requestDatatype": "JSON",
2838
+ "responseDatatype": "JSON",
2839
+ "headers": {},
2840
+ "responseObjects": [
2841
+ {
2842
+ "type": "default",
2843
+ "key": "",
2844
+ "mockFile": ""
2845
+ }
2846
+ ]
2847
+ },
2848
+ {
2849
+ "name": "disconnectSessions",
2850
+ "protocol": "REST",
2851
+ "method": "POST",
2852
+ "entitypath": "{base_path}/{version}/inventory/v1/sessions/action/disconnect?{query}",
2853
+ "requestSchema": "schema.json",
2854
+ "responseSchema": "schema.json",
2855
+ "timeout": 0,
2856
+ "sendEmpty": false,
2857
+ "requestDatatype": "JSON",
2858
+ "responseDatatype": "JSON",
2859
+ "headers": {},
2860
+ "responseObjects": [
2861
+ {
2862
+ "type": "default",
2863
+ "key": "",
2864
+ "mockFile": ""
2865
+ }
2866
+ ]
2867
+ },
2868
+ {
2869
+ "name": "logOffSessions",
2870
+ "protocol": "REST",
2871
+ "method": "POST",
2872
+ "entitypath": "{base_path}/{version}/inventory/v1/sessions/action/logoff?{query}",
2873
+ "requestSchema": "schema.json",
2874
+ "responseSchema": "schema.json",
2875
+ "timeout": 0,
2876
+ "sendEmpty": false,
2877
+ "requestDatatype": "JSON",
2878
+ "responseDatatype": "JSON",
2879
+ "headers": {},
2880
+ "responseObjects": [
2881
+ {
2882
+ "type": "default",
2883
+ "key": "",
2884
+ "mockFile": ""
2885
+ }
2886
+ ]
2887
+ },
2888
+ {
2889
+ "name": "resetSessions",
2890
+ "protocol": "REST",
2891
+ "method": "POST",
2892
+ "entitypath": "{base_path}/{version}/inventory/v1/sessions/action/reset?{query}",
2893
+ "requestSchema": "schema.json",
2894
+ "responseSchema": "schema.json",
2895
+ "timeout": 0,
2896
+ "sendEmpty": false,
2897
+ "requestDatatype": "JSON",
2898
+ "responseDatatype": "JSON",
2899
+ "headers": {},
2900
+ "responseObjects": [
2901
+ {
2902
+ "type": "default",
2903
+ "key": "",
2904
+ "mockFile": ""
2905
+ }
2906
+ ]
2907
+ },
2908
+ {
2909
+ "name": "restartSessions",
2910
+ "protocol": "REST",
2911
+ "method": "POST",
2912
+ "entitypath": "{base_path}/{version}/inventory/v1/sessions/action/restart?{query}",
2913
+ "requestSchema": "schema.json",
2914
+ "responseSchema": "schema.json",
2915
+ "timeout": 0,
2916
+ "sendEmpty": false,
2917
+ "requestDatatype": "JSON",
2918
+ "responseDatatype": "JSON",
2919
+ "headers": {},
2920
+ "responseObjects": [
2921
+ {
2922
+ "type": "default",
2923
+ "key": "",
2924
+ "mockFile": ""
2925
+ }
2926
+ ]
2927
+ },
2928
+ {
2929
+ "name": "sendMessageToSessions",
2930
+ "protocol": "REST",
2931
+ "method": "POST",
2932
+ "entitypath": "{base_path}/{version}/inventory/v1/sessions/action/send-message?{query}",
2933
+ "requestSchema": "schema.json",
2934
+ "responseSchema": "schema.json",
2935
+ "timeout": 0,
2936
+ "sendEmpty": false,
2937
+ "requestDatatype": "JSON",
2938
+ "responseDatatype": "JSON",
2939
+ "headers": {},
2940
+ "responseObjects": [
2941
+ {
2942
+ "type": "default",
2943
+ "key": "",
2944
+ "mockFile": ""
2945
+ }
2946
+ ]
2947
+ },
2948
+ {
2949
+ "name": "getSessionInfo",
2950
+ "protocol": "REST",
2951
+ "method": "GET",
2952
+ "entitypath": "{base_path}/{version}/inventory/v1/sessions/{pathv1}?{query}",
2953
+ "requestSchema": "schema.json",
2954
+ "responseSchema": "schema.json",
2955
+ "timeout": 0,
2956
+ "sendEmpty": false,
2957
+ "sendGetBody": false,
2958
+ "requestDatatype": "JSON",
2959
+ "responseDatatype": "JSON",
2960
+ "headers": {},
2961
+ "responseObjects": [
2962
+ {
2963
+ "type": "default",
2964
+ "key": "",
2965
+ "mockFile": ""
2966
+ }
2967
+ ]
2968
+ },
2969
+ {
2970
+ "name": "listApplicationPoolsV2",
2971
+ "protocol": "REST",
2972
+ "method": "GET",
2973
+ "entitypath": "{base_path}/{version}/inventory/v2/application-pools?{query}",
2974
+ "requestSchema": "schema.json",
2975
+ "responseSchema": "schema.json",
2976
+ "timeout": 0,
2977
+ "sendEmpty": false,
2978
+ "sendGetBody": false,
2979
+ "requestDatatype": "JSON",
2980
+ "responseDatatype": "JSON",
2981
+ "headers": {},
2982
+ "responseObjects": [
2983
+ {
2984
+ "type": "default",
2985
+ "key": "",
2986
+ "mockFile": ""
2987
+ }
2988
+ ]
2989
+ },
2990
+ {
2991
+ "name": "createApplicationPoolV2",
2992
+ "protocol": "REST",
2993
+ "method": "POST",
2994
+ "entitypath": "{base_path}/{version}/inventory/v2/application-pools?{query}",
2995
+ "requestSchema": "schema.json",
2996
+ "responseSchema": "schema.json",
2997
+ "timeout": 0,
2998
+ "sendEmpty": false,
2999
+ "requestDatatype": "JSON",
3000
+ "responseDatatype": "JSON",
3001
+ "headers": {},
3002
+ "responseObjects": [
3003
+ {
3004
+ "type": "default",
3005
+ "key": "",
3006
+ "mockFile": ""
3007
+ }
3008
+ ]
3009
+ },
3010
+ {
3011
+ "name": "getApplicationPoolV2",
3012
+ "protocol": "REST",
3013
+ "method": "GET",
3014
+ "entitypath": "{base_path}/{version}/inventory/v2/application-pools/{pathv1}?{query}",
3015
+ "requestSchema": "schema.json",
3016
+ "responseSchema": "schema.json",
3017
+ "timeout": 0,
3018
+ "sendEmpty": false,
3019
+ "sendGetBody": false,
3020
+ "requestDatatype": "JSON",
3021
+ "responseDatatype": "JSON",
3022
+ "headers": {},
3023
+ "responseObjects": [
3024
+ {
3025
+ "type": "default",
3026
+ "key": "",
3027
+ "mockFile": ""
3028
+ }
3029
+ ]
3030
+ },
3031
+ {
3032
+ "name": "updateApplicationPoolV2",
3033
+ "protocol": "REST",
3034
+ "method": "PUT",
3035
+ "entitypath": "{base_path}/{version}/inventory/v2/application-pools/{pathv1}?{query}",
3036
+ "requestSchema": "schema.json",
3037
+ "responseSchema": "schema.json",
3038
+ "timeout": 0,
3039
+ "sendEmpty": false,
3040
+ "requestDatatype": "JSON",
3041
+ "responseDatatype": "JSON",
3042
+ "headers": {},
3043
+ "responseObjects": [
3044
+ {
3045
+ "type": "default",
3046
+ "key": "",
3047
+ "mockFile": ""
3048
+ }
3049
+ ]
3050
+ },
3051
+ {
3052
+ "name": "listDesktopPoolsV2",
3053
+ "protocol": "REST",
3054
+ "method": "GET",
3055
+ "entitypath": "{base_path}/{version}/inventory/v2/desktop-pools?{query}",
3056
+ "requestSchema": "schema.json",
3057
+ "responseSchema": "schema.json",
3058
+ "timeout": 0,
3059
+ "sendEmpty": false,
3060
+ "sendGetBody": false,
3061
+ "requestDatatype": "JSON",
3062
+ "responseDatatype": "JSON",
3063
+ "headers": {},
3064
+ "responseObjects": [
3065
+ {
3066
+ "type": "default",
3067
+ "key": "",
3068
+ "mockFile": ""
3069
+ }
3070
+ ]
3071
+ },
3072
+ {
3073
+ "name": "createDesktopPoolV2",
3074
+ "protocol": "REST",
3075
+ "method": "POST",
3076
+ "entitypath": "{base_path}/{version}/inventory/v2/desktop-pools?{query}",
3077
+ "requestSchema": "schema.json",
3078
+ "responseSchema": "schema.json",
3079
+ "timeout": 0,
3080
+ "sendEmpty": false,
3081
+ "requestDatatype": "JSON",
3082
+ "responseDatatype": "JSON",
3083
+ "headers": {},
3084
+ "responseObjects": [
3085
+ {
3086
+ "type": "default",
3087
+ "key": "",
3088
+ "mockFile": ""
3089
+ }
3090
+ ]
3091
+ },
3092
+ {
3093
+ "name": "getDesktopPoolV2",
3094
+ "protocol": "REST",
3095
+ "method": "GET",
3096
+ "entitypath": "{base_path}/{version}/inventory/v2/desktop-pools/{pathv1}?{query}",
3097
+ "requestSchema": "schema.json",
3098
+ "responseSchema": "schema.json",
3099
+ "timeout": 0,
3100
+ "sendEmpty": false,
3101
+ "sendGetBody": false,
3102
+ "requestDatatype": "JSON",
3103
+ "responseDatatype": "JSON",
3104
+ "headers": {},
3105
+ "responseObjects": [
3106
+ {
3107
+ "type": "default",
3108
+ "key": "",
3109
+ "mockFile": ""
3110
+ }
3111
+ ]
3112
+ },
3113
+ {
3114
+ "name": "schedulePushImageV2",
3115
+ "protocol": "REST",
3116
+ "method": "POST",
3117
+ "entitypath": "{base_path}/{version}/inventory/v2/desktop-pools/{pathv1}/action/schedule-push-image?{query}",
3118
+ "requestSchema": "schema.json",
3119
+ "responseSchema": "schema.json",
3120
+ "timeout": 0,
3121
+ "sendEmpty": false,
3122
+ "requestDatatype": "JSON",
3123
+ "responseDatatype": "JSON",
3124
+ "headers": {},
3125
+ "responseObjects": [
3126
+ {
3127
+ "type": "default",
3128
+ "key": "",
3129
+ "mockFile": ""
3130
+ }
3131
+ ]
3132
+ },
3133
+ {
3134
+ "name": "listFarmsV2",
3135
+ "protocol": "REST",
3136
+ "method": "GET",
3137
+ "entitypath": "{base_path}/{version}/inventory/v2/farms?{query}",
3138
+ "requestSchema": "schema.json",
3139
+ "responseSchema": "schema.json",
3140
+ "timeout": 0,
3141
+ "sendEmpty": false,
3142
+ "sendGetBody": false,
3143
+ "requestDatatype": "JSON",
3144
+ "responseDatatype": "JSON",
3145
+ "headers": {},
3146
+ "responseObjects": [
3147
+ {
3148
+ "type": "default",
3149
+ "key": "",
3150
+ "mockFile": ""
3151
+ }
3152
+ ]
3153
+ },
3154
+ {
3155
+ "name": "createFarmV2",
3156
+ "protocol": "REST",
3157
+ "method": "POST",
3158
+ "entitypath": "{base_path}/{version}/inventory/v2/farms?{query}",
3159
+ "requestSchema": "schema.json",
3160
+ "responseSchema": "schema.json",
3161
+ "timeout": 0,
3162
+ "sendEmpty": false,
3163
+ "requestDatatype": "JSON",
3164
+ "responseDatatype": "JSON",
3165
+ "headers": {},
3166
+ "responseObjects": [
3167
+ {
3168
+ "type": "default",
3169
+ "key": "",
3170
+ "mockFile": ""
3171
+ }
3172
+ ]
3173
+ },
3174
+ {
3175
+ "name": "getFarmV2",
3176
+ "protocol": "REST",
3177
+ "method": "GET",
3178
+ "entitypath": "{base_path}/{version}/inventory/v2/farms/{pathv1}?{query}",
3179
+ "requestSchema": "schema.json",
3180
+ "responseSchema": "schema.json",
3181
+ "timeout": 0,
3182
+ "sendEmpty": false,
3183
+ "sendGetBody": false,
3184
+ "requestDatatype": "JSON",
3185
+ "responseDatatype": "JSON",
3186
+ "headers": {},
3187
+ "responseObjects": [
3188
+ {
3189
+ "type": "default",
3190
+ "key": "",
3191
+ "mockFile": ""
3192
+ }
3193
+ ]
3194
+ },
3195
+ {
3196
+ "name": "updateFarmV2",
3197
+ "protocol": "REST",
3198
+ "method": "PUT",
3199
+ "entitypath": "{base_path}/{version}/inventory/v2/farms/{pathv1}?{query}",
3200
+ "requestSchema": "schema.json",
3201
+ "responseSchema": "schema.json",
3202
+ "timeout": 0,
3203
+ "sendEmpty": false,
3204
+ "requestDatatype": "JSON",
3205
+ "responseDatatype": "JSON",
3206
+ "headers": {},
3207
+ "responseObjects": [
3208
+ {
3209
+ "type": "default",
3210
+ "key": "",
3211
+ "mockFile": ""
3212
+ }
3213
+ ]
3214
+ },
3215
+ {
3216
+ "name": "scheduleMaintenanceV2",
3217
+ "protocol": "REST",
3218
+ "method": "POST",
3219
+ "entitypath": "{base_path}/{version}/inventory/v2/farms/{pathv1}/action/schedule-maintenance?{query}",
3220
+ "requestSchema": "schema.json",
3221
+ "responseSchema": "schema.json",
3222
+ "timeout": 0,
3223
+ "sendEmpty": false,
3224
+ "requestDatatype": "JSON",
3225
+ "responseDatatype": "JSON",
3226
+ "headers": {},
3227
+ "responseObjects": [
3228
+ {
3229
+ "type": "default",
3230
+ "key": "",
3231
+ "mockFile": ""
3232
+ }
3233
+ ]
3234
+ },
3235
+ {
3236
+ "name": "listGlobalApplicationEntitlementsV2",
3237
+ "protocol": "REST",
3238
+ "method": "GET",
3239
+ "entitypath": "{base_path}/{version}/inventory/v2/global-application-entitlements?{query}",
3240
+ "requestSchema": "schema.json",
3241
+ "responseSchema": "schema.json",
3242
+ "timeout": 0,
3243
+ "sendEmpty": false,
3244
+ "sendGetBody": false,
3245
+ "requestDatatype": "JSON",
3246
+ "responseDatatype": "JSON",
3247
+ "headers": {},
3248
+ "responseObjects": [
3249
+ {
3250
+ "type": "default",
3251
+ "key": "",
3252
+ "mockFile": ""
3253
+ }
3254
+ ]
3255
+ },
3256
+ {
3257
+ "name": "getGlobalApplicationEntitlementV2",
3258
+ "protocol": "REST",
3259
+ "method": "GET",
3260
+ "entitypath": "{base_path}/{version}/inventory/v2/global-application-entitlements/{pathv1}?{query}",
3261
+ "requestSchema": "schema.json",
3262
+ "responseSchema": "schema.json",
3263
+ "timeout": 0,
3264
+ "sendEmpty": false,
3265
+ "sendGetBody": false,
3266
+ "requestDatatype": "JSON",
3267
+ "responseDatatype": "JSON",
3268
+ "headers": {},
3269
+ "responseObjects": [
3270
+ {
3271
+ "type": "default",
3272
+ "key": "",
3273
+ "mockFile": ""
3274
+ }
3275
+ ]
3276
+ },
3277
+ {
3278
+ "name": "listGlobalDesktopEntitlementsV2",
3279
+ "protocol": "REST",
3280
+ "method": "GET",
3281
+ "entitypath": "{base_path}/{version}/inventory/v2/global-desktop-entitlements?{query}",
3282
+ "requestSchema": "schema.json",
3283
+ "responseSchema": "schema.json",
3284
+ "timeout": 0,
3285
+ "sendEmpty": false,
3286
+ "sendGetBody": false,
3287
+ "requestDatatype": "JSON",
3288
+ "responseDatatype": "JSON",
3289
+ "headers": {},
3290
+ "responseObjects": [
3291
+ {
3292
+ "type": "default",
3293
+ "key": "",
3294
+ "mockFile": ""
3295
+ }
3296
+ ]
3297
+ },
3298
+ {
3299
+ "name": "createGlobalDesktopEntitlementV2",
3300
+ "protocol": "REST",
3301
+ "method": "POST",
3302
+ "entitypath": "{base_path}/{version}/inventory/v2/global-desktop-entitlements?{query}",
3303
+ "requestSchema": "schema.json",
3304
+ "responseSchema": "schema.json",
3305
+ "timeout": 0,
3306
+ "sendEmpty": false,
3307
+ "requestDatatype": "JSON",
3308
+ "responseDatatype": "JSON",
3309
+ "headers": {},
3310
+ "responseObjects": [
3311
+ {
3312
+ "type": "default",
3313
+ "key": "",
3314
+ "mockFile": ""
3315
+ }
3316
+ ]
3317
+ },
3318
+ {
3319
+ "name": "getGlobalDesktopEntitlementV2",
3320
+ "protocol": "REST",
3321
+ "method": "GET",
3322
+ "entitypath": "{base_path}/{version}/inventory/v2/global-desktop-entitlements/{pathv1}?{query}",
3323
+ "requestSchema": "schema.json",
3324
+ "responseSchema": "schema.json",
3325
+ "timeout": 0,
3326
+ "sendEmpty": false,
3327
+ "sendGetBody": false,
3328
+ "requestDatatype": "JSON",
3329
+ "responseDatatype": "JSON",
3330
+ "headers": {},
3331
+ "responseObjects": [
3332
+ {
3333
+ "type": "default",
3334
+ "key": "",
3335
+ "mockFile": ""
3336
+ }
3337
+ ]
3338
+ },
3339
+ {
3340
+ "name": "listMachinesV2",
3341
+ "protocol": "REST",
3342
+ "method": "GET",
3343
+ "entitypath": "{base_path}/{version}/inventory/v2/machines?{query}",
3344
+ "requestSchema": "schema.json",
3345
+ "responseSchema": "schema.json",
3346
+ "timeout": 0,
3347
+ "sendEmpty": false,
3348
+ "sendGetBody": false,
3349
+ "requestDatatype": "JSON",
3350
+ "responseDatatype": "JSON",
3351
+ "headers": {},
3352
+ "responseObjects": [
3353
+ {
3354
+ "type": "default",
3355
+ "key": "",
3356
+ "mockFile": ""
3357
+ }
3358
+ ]
3359
+ },
3360
+ {
3361
+ "name": "scheduleAgentForUpgradeV2",
3362
+ "protocol": "REST",
3363
+ "method": "POST",
3364
+ "entitypath": "{base_path}/{version}/inventory/v2/machines/action/schedule-agent-upgrade?{query}",
3365
+ "requestSchema": "schema.json",
3366
+ "responseSchema": "schema.json",
3367
+ "timeout": 0,
3368
+ "sendEmpty": false,
3369
+ "requestDatatype": "JSON",
3370
+ "responseDatatype": "JSON",
3371
+ "headers": {},
3372
+ "responseObjects": [
3373
+ {
3374
+ "type": "default",
3375
+ "key": "",
3376
+ "mockFile": ""
3377
+ }
3378
+ ]
3379
+ },
3380
+ {
3381
+ "name": "listAgentUpgradeTasksV2",
3382
+ "protocol": "REST",
3383
+ "method": "GET",
3384
+ "entitypath": "{base_path}/{version}/inventory/v2/machines/agent-upgrade-tasks?{query}",
3385
+ "requestSchema": "schema.json",
3386
+ "responseSchema": "schema.json",
3387
+ "timeout": 0,
3388
+ "sendEmpty": false,
3389
+ "sendGetBody": false,
3390
+ "requestDatatype": "JSON",
3391
+ "responseDatatype": "JSON",
3392
+ "headers": {},
3393
+ "responseObjects": [
3394
+ {
3395
+ "type": "default",
3396
+ "key": "",
3397
+ "mockFile": ""
3398
+ }
3399
+ ]
3400
+ },
3401
+ {
3402
+ "name": "getAgentUpgradeTaskV2",
3403
+ "protocol": "REST",
3404
+ "method": "GET",
3405
+ "entitypath": "{base_path}/{version}/inventory/v2/machines/agent-upgrade-tasks/{pathv1}?{query}",
3406
+ "requestSchema": "schema.json",
3407
+ "responseSchema": "schema.json",
3408
+ "timeout": 0,
3409
+ "sendEmpty": false,
3410
+ "sendGetBody": false,
3411
+ "requestDatatype": "JSON",
3412
+ "responseDatatype": "JSON",
3413
+ "headers": {},
3414
+ "responseObjects": [
3415
+ {
3416
+ "type": "default",
3417
+ "key": "",
3418
+ "mockFile": ""
3419
+ }
3420
+ ]
3421
+ },
3422
+ {
3423
+ "name": "getMachineV2",
3424
+ "protocol": "REST",
3425
+ "method": "GET",
3426
+ "entitypath": "{base_path}/{version}/inventory/v2/machines/{pathv1}?{query}",
3427
+ "requestSchema": "schema.json",
3428
+ "responseSchema": "schema.json",
3429
+ "timeout": 0,
3430
+ "sendEmpty": false,
3431
+ "sendGetBody": false,
3432
+ "requestDatatype": "JSON",
3433
+ "responseDatatype": "JSON",
3434
+ "headers": {},
3435
+ "responseObjects": [
3436
+ {
3437
+ "type": "default",
3438
+ "key": "",
3439
+ "mockFile": ""
3440
+ }
3441
+ ]
3442
+ },
3443
+ {
3444
+ "name": "listPhysicalMachinesV2",
3445
+ "protocol": "REST",
3446
+ "method": "GET",
3447
+ "entitypath": "{base_path}/{version}/inventory/v2/physical-machines?{query}",
3448
+ "requestSchema": "schema.json",
3449
+ "responseSchema": "schema.json",
3450
+ "timeout": 0,
3451
+ "sendEmpty": false,
3452
+ "sendGetBody": false,
3453
+ "requestDatatype": "JSON",
3454
+ "responseDatatype": "JSON",
3455
+ "headers": {},
3456
+ "responseObjects": [
3457
+ {
3458
+ "type": "default",
3459
+ "key": "",
3460
+ "mockFile": ""
3461
+ }
3462
+ ]
3463
+ },
3464
+ {
3465
+ "name": "getPhysicalMachineV2",
3466
+ "protocol": "REST",
3467
+ "method": "GET",
3468
+ "entitypath": "{base_path}/{version}/inventory/v2/physical-machines/{pathv1}?{query}",
3469
+ "requestSchema": "schema.json",
3470
+ "responseSchema": "schema.json",
3471
+ "timeout": 0,
3472
+ "sendEmpty": false,
3473
+ "sendGetBody": false,
3474
+ "requestDatatype": "JSON",
3475
+ "responseDatatype": "JSON",
3476
+ "headers": {},
3477
+ "responseObjects": [
3478
+ {
3479
+ "type": "default",
3480
+ "key": "",
3481
+ "mockFile": ""
3482
+ }
3483
+ ]
3484
+ },
3485
+ {
3486
+ "name": "listRDSServersV2",
3487
+ "protocol": "REST",
3488
+ "method": "GET",
3489
+ "entitypath": "{base_path}/{version}/inventory/v2/rds-servers?{query}",
3490
+ "requestSchema": "schema.json",
3491
+ "responseSchema": "schema.json",
3492
+ "timeout": 0,
3493
+ "sendEmpty": false,
3494
+ "sendGetBody": false,
3495
+ "requestDatatype": "JSON",
3496
+ "responseDatatype": "JSON",
3497
+ "headers": {},
3498
+ "responseObjects": [
3499
+ {
3500
+ "type": "default",
3501
+ "key": "",
3502
+ "mockFile": ""
3503
+ }
3504
+ ]
3505
+ },
3506
+ {
3507
+ "name": "deleteRDSServerV2",
3508
+ "protocol": "REST",
3509
+ "method": "DELETE",
3510
+ "entitypath": "{base_path}/{version}/inventory/v2/rds-servers/{pathv1}?{query}",
3511
+ "requestSchema": "schema.json",
3512
+ "responseSchema": "schema.json",
3513
+ "timeout": 0,
3514
+ "sendEmpty": false,
3515
+ "requestDatatype": "JSON",
3516
+ "responseDatatype": "JSON",
3517
+ "headers": {},
3518
+ "responseObjects": [
3519
+ {
3520
+ "type": "default",
3521
+ "key": "",
3522
+ "mockFile": ""
3523
+ }
3524
+ ]
3525
+ },
3526
+ {
3527
+ "name": "getRDSServerV2",
3528
+ "protocol": "REST",
3529
+ "method": "GET",
3530
+ "entitypath": "{base_path}/{version}/inventory/v2/rds-servers/{pathv1}?{query}",
3531
+ "requestSchema": "schema.json",
3532
+ "responseSchema": "schema.json",
3533
+ "timeout": 0,
3534
+ "sendEmpty": false,
3535
+ "sendGetBody": false,
3536
+ "requestDatatype": "JSON",
3537
+ "responseDatatype": "JSON",
3538
+ "headers": {},
3539
+ "responseObjects": [
3540
+ {
3541
+ "type": "default",
3542
+ "key": "",
3543
+ "mockFile": ""
3544
+ }
3545
+ ]
3546
+ },
3547
+ {
3548
+ "name": "updateRDSServerV2",
3549
+ "protocol": "REST",
3550
+ "method": "PUT",
3551
+ "entitypath": "{base_path}/{version}/inventory/v2/rds-servers/{pathv1}?{query}",
3552
+ "requestSchema": "schema.json",
3553
+ "responseSchema": "schema.json",
3554
+ "timeout": 0,
3555
+ "sendEmpty": false,
3556
+ "requestDatatype": "JSON",
3557
+ "responseDatatype": "JSON",
3558
+ "headers": {},
3559
+ "responseObjects": [
3560
+ {
3561
+ "type": "default",
3562
+ "key": "",
3563
+ "mockFile": ""
3564
+ }
3565
+ ]
3566
+ },
3567
+ {
3568
+ "name": "listApplicationPoolsV3",
3569
+ "protocol": "REST",
3570
+ "method": "GET",
3571
+ "entitypath": "{base_path}/{version}/inventory/v3/application-pools?{query}",
3572
+ "requestSchema": "schema.json",
3573
+ "responseSchema": "schema.json",
3574
+ "timeout": 0,
3575
+ "sendEmpty": false,
3576
+ "sendGetBody": false,
3577
+ "requestDatatype": "JSON",
3578
+ "responseDatatype": "JSON",
3579
+ "headers": {},
3580
+ "responseObjects": [
3581
+ {
3582
+ "type": "default",
3583
+ "key": "",
3584
+ "mockFile": ""
3585
+ }
3586
+ ]
3587
+ },
3588
+ {
3589
+ "name": "createApplicationPoolV3",
3590
+ "protocol": "REST",
3591
+ "method": "POST",
3592
+ "entitypath": "{base_path}/{version}/inventory/v3/application-pools?{query}",
3593
+ "requestSchema": "schema.json",
3594
+ "responseSchema": "schema.json",
3595
+ "timeout": 0,
3596
+ "sendEmpty": false,
3597
+ "requestDatatype": "JSON",
3598
+ "responseDatatype": "JSON",
3599
+ "headers": {},
3600
+ "responseObjects": [
3601
+ {
3602
+ "type": "default",
3603
+ "key": "",
3604
+ "mockFile": ""
3605
+ }
3606
+ ]
3607
+ },
3608
+ {
3609
+ "name": "getApplicationPoolV3",
3610
+ "protocol": "REST",
3611
+ "method": "GET",
3612
+ "entitypath": "{base_path}/{version}/inventory/v3/application-pools/{pathv1}?{query}",
3613
+ "requestSchema": "schema.json",
3614
+ "responseSchema": "schema.json",
3615
+ "timeout": 0,
3616
+ "sendEmpty": false,
3617
+ "sendGetBody": false,
3618
+ "requestDatatype": "JSON",
3619
+ "responseDatatype": "JSON",
3620
+ "headers": {},
3621
+ "responseObjects": [
3622
+ {
3623
+ "type": "default",
3624
+ "key": "",
3625
+ "mockFile": ""
3626
+ }
3627
+ ]
3628
+ },
3629
+ {
3630
+ "name": "updateApplicationPoolV3",
3631
+ "protocol": "REST",
3632
+ "method": "PUT",
3633
+ "entitypath": "{base_path}/{version}/inventory/v3/application-pools/{pathv1}?{query}",
3634
+ "requestSchema": "schema.json",
3635
+ "responseSchema": "schema.json",
3636
+ "timeout": 0,
3637
+ "sendEmpty": false,
3638
+ "requestDatatype": "JSON",
3639
+ "responseDatatype": "JSON",
3640
+ "headers": {},
3641
+ "responseObjects": [
3642
+ {
3643
+ "type": "default",
3644
+ "key": "",
3645
+ "mockFile": ""
3646
+ }
3647
+ ]
3648
+ },
3649
+ {
3650
+ "name": "listDesktopPoolsV3",
3651
+ "protocol": "REST",
3652
+ "method": "GET",
3653
+ "entitypath": "{base_path}/{version}/inventory/v3/desktop-pools?{query}",
3654
+ "requestSchema": "schema.json",
3655
+ "responseSchema": "schema.json",
3656
+ "timeout": 0,
3657
+ "sendEmpty": false,
3658
+ "sendGetBody": false,
3659
+ "requestDatatype": "JSON",
3660
+ "responseDatatype": "JSON",
3661
+ "headers": {},
3662
+ "responseObjects": [
3663
+ {
3664
+ "type": "default",
3665
+ "key": "",
3666
+ "mockFile": ""
3667
+ }
3668
+ ]
3669
+ },
3670
+ {
3671
+ "name": "getDesktopPoolV3",
3672
+ "protocol": "REST",
3673
+ "method": "GET",
3674
+ "entitypath": "{base_path}/{version}/inventory/v3/desktop-pools/{pathv1}?{query}",
3675
+ "requestSchema": "schema.json",
3676
+ "responseSchema": "schema.json",
3677
+ "timeout": 0,
3678
+ "sendEmpty": false,
3679
+ "sendGetBody": false,
3680
+ "requestDatatype": "JSON",
3681
+ "responseDatatype": "JSON",
3682
+ "headers": {},
3683
+ "responseObjects": [
3684
+ {
3685
+ "type": "default",
3686
+ "key": "",
3687
+ "mockFile": ""
3688
+ }
3689
+ ]
3690
+ },
3691
+ {
3692
+ "name": "listFarmsV3",
3693
+ "protocol": "REST",
3694
+ "method": "GET",
3695
+ "entitypath": "{base_path}/{version}/inventory/v3/farms?{query}",
3696
+ "requestSchema": "schema.json",
3697
+ "responseSchema": "schema.json",
3698
+ "timeout": 0,
3699
+ "sendEmpty": false,
3700
+ "sendGetBody": false,
3701
+ "requestDatatype": "JSON",
3702
+ "responseDatatype": "JSON",
3703
+ "headers": {},
3704
+ "responseObjects": [
3705
+ {
3706
+ "type": "default",
3707
+ "key": "",
3708
+ "mockFile": ""
3709
+ }
3710
+ ]
3711
+ },
3712
+ {
3713
+ "name": "createFarmV3",
3714
+ "protocol": "REST",
3715
+ "method": "POST",
3716
+ "entitypath": "{base_path}/{version}/inventory/v3/farms?{query}",
3717
+ "requestSchema": "schema.json",
3718
+ "responseSchema": "schema.json",
3719
+ "timeout": 0,
3720
+ "sendEmpty": false,
3721
+ "requestDatatype": "JSON",
3722
+ "responseDatatype": "JSON",
3723
+ "headers": {},
3724
+ "responseObjects": [
3725
+ {
3726
+ "type": "default",
3727
+ "key": "",
3728
+ "mockFile": ""
3729
+ }
3730
+ ]
3731
+ },
3732
+ {
3733
+ "name": "getFarmV3",
3734
+ "protocol": "REST",
3735
+ "method": "GET",
3736
+ "entitypath": "{base_path}/{version}/inventory/v3/farms/{pathv1}?{query}",
3737
+ "requestSchema": "schema.json",
3738
+ "responseSchema": "schema.json",
3739
+ "timeout": 0,
3740
+ "sendEmpty": false,
3741
+ "sendGetBody": false,
3742
+ "requestDatatype": "JSON",
3743
+ "responseDatatype": "JSON",
3744
+ "headers": {},
3745
+ "responseObjects": [
3746
+ {
3747
+ "type": "default",
3748
+ "key": "",
3749
+ "mockFile": ""
3750
+ }
3751
+ ]
3752
+ },
3753
+ {
3754
+ "name": "updateFarmV3",
3755
+ "protocol": "REST",
3756
+ "method": "PUT",
3757
+ "entitypath": "{base_path}/{version}/inventory/v3/farms/{pathv1}?{query}",
3758
+ "requestSchema": "schema.json",
3759
+ "responseSchema": "schema.json",
3760
+ "timeout": 0,
3761
+ "sendEmpty": false,
3762
+ "requestDatatype": "JSON",
3763
+ "responseDatatype": "JSON",
3764
+ "headers": {},
3765
+ "responseObjects": [
3766
+ {
3767
+ "type": "default",
3768
+ "key": "",
3769
+ "mockFile": ""
3770
+ }
3771
+ ]
3772
+ },
3773
+ {
3774
+ "name": "listGlobalApplicationEntitlementsV3",
3775
+ "protocol": "REST",
3776
+ "method": "GET",
3777
+ "entitypath": "{base_path}/{version}/inventory/v3/global-application-entitlements?{query}",
3778
+ "requestSchema": "schema.json",
3779
+ "responseSchema": "schema.json",
3780
+ "timeout": 0,
3781
+ "sendEmpty": false,
3782
+ "sendGetBody": false,
3783
+ "requestDatatype": "JSON",
3784
+ "responseDatatype": "JSON",
3785
+ "headers": {},
3786
+ "responseObjects": [
3787
+ {
3788
+ "type": "default",
3789
+ "key": "",
3790
+ "mockFile": ""
3791
+ }
3792
+ ]
3793
+ },
3794
+ {
3795
+ "name": "createGlobalApplicationEntitlementV3",
3796
+ "protocol": "REST",
3797
+ "method": "POST",
3798
+ "entitypath": "{base_path}/{version}/inventory/v3/global-application-entitlements?{query}",
3799
+ "requestSchema": "schema.json",
3800
+ "responseSchema": "schema.json",
3801
+ "timeout": 0,
3802
+ "sendEmpty": false,
3803
+ "requestDatatype": "JSON",
3804
+ "responseDatatype": "JSON",
3805
+ "headers": {},
3806
+ "responseObjects": [
3807
+ {
3808
+ "type": "default",
3809
+ "key": "",
3810
+ "mockFile": ""
3811
+ }
3812
+ ]
3813
+ },
3814
+ {
3815
+ "name": "deleteGlobalApplicationEntitlementV3",
3816
+ "protocol": "REST",
3817
+ "method": "DELETE",
3818
+ "entitypath": "{base_path}/{version}/inventory/v3/global-application-entitlements/{pathv1}?{query}",
3819
+ "requestSchema": "schema.json",
3820
+ "responseSchema": "schema.json",
3821
+ "timeout": 0,
3822
+ "sendEmpty": false,
3823
+ "requestDatatype": "JSON",
3824
+ "responseDatatype": "JSON",
3825
+ "headers": {},
3826
+ "responseObjects": [
3827
+ {
3828
+ "type": "default",
3829
+ "key": "",
3830
+ "mockFile": ""
3831
+ }
3832
+ ]
3833
+ },
3834
+ {
3835
+ "name": "getGlobalApplicationEntitlementV3",
3836
+ "protocol": "REST",
3837
+ "method": "GET",
3838
+ "entitypath": "{base_path}/{version}/inventory/v3/global-application-entitlements/{pathv1}?{query}",
3839
+ "requestSchema": "schema.json",
3840
+ "responseSchema": "schema.json",
3841
+ "timeout": 0,
3842
+ "sendEmpty": false,
3843
+ "sendGetBody": false,
3844
+ "requestDatatype": "JSON",
3845
+ "responseDatatype": "JSON",
3846
+ "headers": {},
3847
+ "responseObjects": [
3848
+ {
3849
+ "type": "default",
3850
+ "key": "",
3851
+ "mockFile": ""
3852
+ }
3853
+ ]
3854
+ },
3855
+ {
3856
+ "name": "updateGlobalApplicationEntitlementV3",
3857
+ "protocol": "REST",
3858
+ "method": "PUT",
3859
+ "entitypath": "{base_path}/{version}/inventory/v3/global-application-entitlements/{pathv1}?{query}",
3860
+ "requestSchema": "schema.json",
3861
+ "responseSchema": "schema.json",
3862
+ "timeout": 0,
3863
+ "sendEmpty": false,
3864
+ "requestDatatype": "JSON",
3865
+ "responseDatatype": "JSON",
3866
+ "headers": {},
3867
+ "responseObjects": [
3868
+ {
3869
+ "type": "default",
3870
+ "key": "",
3871
+ "mockFile": ""
3872
+ }
3873
+ ]
3874
+ },
3875
+ {
3876
+ "name": "listGlobalDesktopEntitlementsV3",
3877
+ "protocol": "REST",
3878
+ "method": "GET",
3879
+ "entitypath": "{base_path}/{version}/inventory/v3/global-desktop-entitlements?{query}",
3880
+ "requestSchema": "schema.json",
3881
+ "responseSchema": "schema.json",
3882
+ "timeout": 0,
3883
+ "sendEmpty": false,
3884
+ "sendGetBody": false,
3885
+ "requestDatatype": "JSON",
3886
+ "responseDatatype": "JSON",
3887
+ "headers": {},
3888
+ "responseObjects": [
3889
+ {
3890
+ "type": "default",
3891
+ "key": "",
3892
+ "mockFile": ""
3893
+ }
3894
+ ]
3895
+ },
3896
+ {
3897
+ "name": "createGlobalDesktopEntitlementV3",
3898
+ "protocol": "REST",
3899
+ "method": "POST",
3900
+ "entitypath": "{base_path}/{version}/inventory/v3/global-desktop-entitlements?{query}",
3901
+ "requestSchema": "schema.json",
3902
+ "responseSchema": "schema.json",
3903
+ "timeout": 0,
3904
+ "sendEmpty": false,
3905
+ "requestDatatype": "JSON",
3906
+ "responseDatatype": "JSON",
3907
+ "headers": {},
3908
+ "responseObjects": [
3909
+ {
3910
+ "type": "default",
3911
+ "key": "",
3912
+ "mockFile": ""
3913
+ }
3914
+ ]
3915
+ },
3916
+ {
3917
+ "name": "deleteGlobalDesktopEntitlementV3",
3918
+ "protocol": "REST",
3919
+ "method": "DELETE",
3920
+ "entitypath": "{base_path}/{version}/inventory/v3/global-desktop-entitlements/{pathv1}?{query}",
3921
+ "requestSchema": "schema.json",
3922
+ "responseSchema": "schema.json",
3923
+ "timeout": 0,
3924
+ "sendEmpty": false,
3925
+ "requestDatatype": "JSON",
3926
+ "responseDatatype": "JSON",
3927
+ "headers": {},
3928
+ "responseObjects": [
3929
+ {
3930
+ "type": "default",
3931
+ "key": "",
3932
+ "mockFile": ""
3933
+ }
3934
+ ]
3935
+ },
3936
+ {
3937
+ "name": "getGlobalDesktopEntitlementV3",
3938
+ "protocol": "REST",
3939
+ "method": "GET",
3940
+ "entitypath": "{base_path}/{version}/inventory/v3/global-desktop-entitlements/{pathv1}?{query}",
3941
+ "requestSchema": "schema.json",
3942
+ "responseSchema": "schema.json",
3943
+ "timeout": 0,
3944
+ "sendEmpty": false,
3945
+ "sendGetBody": false,
3946
+ "requestDatatype": "JSON",
3947
+ "responseDatatype": "JSON",
3948
+ "headers": {},
3949
+ "responseObjects": [
3950
+ {
3951
+ "type": "default",
3952
+ "key": "",
3953
+ "mockFile": ""
3954
+ }
3955
+ ]
3956
+ },
3957
+ {
3958
+ "name": "updateGlobalDesktopEntitlementV3",
3959
+ "protocol": "REST",
3960
+ "method": "PUT",
3961
+ "entitypath": "{base_path}/{version}/inventory/v3/global-desktop-entitlements/{pathv1}?{query}",
3962
+ "requestSchema": "schema.json",
3963
+ "responseSchema": "schema.json",
3964
+ "timeout": 0,
3965
+ "sendEmpty": false,
3966
+ "requestDatatype": "JSON",
3967
+ "responseDatatype": "JSON",
3968
+ "headers": {},
3969
+ "responseObjects": [
3970
+ {
3971
+ "type": "default",
3972
+ "key": "",
3973
+ "mockFile": ""
3974
+ }
3975
+ ]
3976
+ },
3977
+ {
3978
+ "name": "listMachinesV3",
3979
+ "protocol": "REST",
3980
+ "method": "GET",
3981
+ "entitypath": "{base_path}/{version}/inventory/v3/machines?{query}",
3982
+ "requestSchema": "schema.json",
3983
+ "responseSchema": "schema.json",
3984
+ "timeout": 0,
3985
+ "sendEmpty": false,
3986
+ "sendGetBody": false,
3987
+ "requestDatatype": "JSON",
3988
+ "responseDatatype": "JSON",
3989
+ "headers": {},
3990
+ "responseObjects": [
3991
+ {
3992
+ "type": "default",
3993
+ "key": "",
3994
+ "mockFile": ""
3995
+ }
3996
+ ]
3997
+ },
3998
+ {
3999
+ "name": "getMachineV3",
4000
+ "protocol": "REST",
4001
+ "method": "GET",
4002
+ "entitypath": "{base_path}/{version}/inventory/v3/machines/{pathv1}?{query}",
4003
+ "requestSchema": "schema.json",
4004
+ "responseSchema": "schema.json",
4005
+ "timeout": 0,
4006
+ "sendEmpty": false,
4007
+ "sendGetBody": false,
4008
+ "requestDatatype": "JSON",
4009
+ "responseDatatype": "JSON",
4010
+ "headers": {},
4011
+ "responseObjects": [
4012
+ {
4013
+ "type": "default",
4014
+ "key": "",
4015
+ "mockFile": ""
4016
+ }
4017
+ ]
4018
+ },
4019
+ {
4020
+ "name": "deleteApplicationPools",
4021
+ "protocol": "REST",
4022
+ "method": "DELETE",
4023
+ "entitypath": "{base_path}/{version}/inventory/v4/application-pools?{query}",
4024
+ "requestSchema": "schema.json",
4025
+ "responseSchema": "schema.json",
4026
+ "timeout": 0,
4027
+ "sendEmpty": false,
4028
+ "requestDatatype": "JSON",
4029
+ "responseDatatype": "JSON",
4030
+ "headers": {},
4031
+ "responseObjects": [
4032
+ {
4033
+ "type": "default",
4034
+ "key": "",
4035
+ "mockFile": ""
4036
+ }
4037
+ ]
4038
+ },
4039
+ {
4040
+ "name": "listApplicationPoolsV4",
4041
+ "protocol": "REST",
4042
+ "method": "GET",
4043
+ "entitypath": "{base_path}/{version}/inventory/v4/application-pools?{query}",
4044
+ "requestSchema": "schema.json",
4045
+ "responseSchema": "schema.json",
4046
+ "timeout": 0,
4047
+ "sendEmpty": false,
4048
+ "sendGetBody": false,
4049
+ "requestDatatype": "JSON",
4050
+ "responseDatatype": "JSON",
4051
+ "headers": {},
4052
+ "responseObjects": [
4053
+ {
4054
+ "type": "default",
4055
+ "key": "",
4056
+ "mockFile": ""
4057
+ }
4058
+ ]
4059
+ },
4060
+ {
4061
+ "name": "getApplicationPoolV4",
4062
+ "protocol": "REST",
4063
+ "method": "GET",
4064
+ "entitypath": "{base_path}/{version}/inventory/v4/application-pools/{pathv1}?{query}",
4065
+ "requestSchema": "schema.json",
4066
+ "responseSchema": "schema.json",
4067
+ "timeout": 0,
4068
+ "sendEmpty": false,
4069
+ "sendGetBody": false,
4070
+ "requestDatatype": "JSON",
4071
+ "responseDatatype": "JSON",
4072
+ "headers": {},
4073
+ "responseObjects": [
4074
+ {
4075
+ "type": "default",
4076
+ "key": "",
4077
+ "mockFile": ""
4078
+ }
4079
+ ]
4080
+ },
4081
+ {
4082
+ "name": "listDesktopPoolsV4",
4083
+ "protocol": "REST",
4084
+ "method": "GET",
4085
+ "entitypath": "{base_path}/{version}/inventory/v4/desktop-pools?{query}",
4086
+ "requestSchema": "schema.json",
4087
+ "responseSchema": "schema.json",
4088
+ "timeout": 0,
4089
+ "sendEmpty": false,
4090
+ "sendGetBody": false,
4091
+ "requestDatatype": "JSON",
4092
+ "responseDatatype": "JSON",
4093
+ "headers": {},
4094
+ "responseObjects": [
4095
+ {
4096
+ "type": "default",
4097
+ "key": "",
4098
+ "mockFile": ""
4099
+ }
4100
+ ]
4101
+ },
4102
+ {
4103
+ "name": "getDesktopPoolV4",
4104
+ "protocol": "REST",
4105
+ "method": "GET",
4106
+ "entitypath": "{base_path}/{version}/inventory/v4/desktop-pools/{pathv1}?{query}",
4107
+ "requestSchema": "schema.json",
4108
+ "responseSchema": "schema.json",
4109
+ "timeout": 0,
4110
+ "sendEmpty": false,
4111
+ "sendGetBody": false,
4112
+ "requestDatatype": "JSON",
4113
+ "responseDatatype": "JSON",
4114
+ "headers": {},
4115
+ "responseObjects": [
4116
+ {
4117
+ "type": "default",
4118
+ "key": "",
4119
+ "mockFile": ""
4120
+ }
4121
+ ]
4122
+ },
4123
+ {
4124
+ "name": "listFarmsV4",
4125
+ "protocol": "REST",
4126
+ "method": "GET",
4127
+ "entitypath": "{base_path}/{version}/inventory/v4/farms?{query}",
4128
+ "requestSchema": "schema.json",
4129
+ "responseSchema": "schema.json",
4130
+ "timeout": 0,
4131
+ "sendEmpty": false,
4132
+ "sendGetBody": false,
4133
+ "requestDatatype": "JSON",
4134
+ "responseDatatype": "JSON",
4135
+ "headers": {},
4136
+ "responseObjects": [
4137
+ {
4138
+ "type": "default",
4139
+ "key": "",
4140
+ "mockFile": ""
4141
+ }
4142
+ ]
4143
+ },
4144
+ {
4145
+ "name": "getFarmV4",
4146
+ "protocol": "REST",
4147
+ "method": "GET",
4148
+ "entitypath": "{base_path}/{version}/inventory/v4/farms/{pathv1}?{query}",
4149
+ "requestSchema": "schema.json",
4150
+ "responseSchema": "schema.json",
4151
+ "timeout": 0,
4152
+ "sendEmpty": false,
4153
+ "sendGetBody": false,
4154
+ "requestDatatype": "JSON",
4155
+ "responseDatatype": "JSON",
4156
+ "headers": {},
4157
+ "responseObjects": [
4158
+ {
4159
+ "type": "default",
4160
+ "key": "",
4161
+ "mockFile": ""
4162
+ }
4163
+ ]
4164
+ },
4165
+ {
4166
+ "name": "listMachinesV4",
4167
+ "protocol": "REST",
4168
+ "method": "GET",
4169
+ "entitypath": "{base_path}/{version}/inventory/v4/machines?{query}",
4170
+ "requestSchema": "schema.json",
4171
+ "responseSchema": "schema.json",
4172
+ "timeout": 0,
4173
+ "sendEmpty": false,
4174
+ "sendGetBody": false,
4175
+ "requestDatatype": "JSON",
4176
+ "responseDatatype": "JSON",
4177
+ "headers": {},
4178
+ "responseObjects": [
4179
+ {
4180
+ "type": "default",
4181
+ "key": "",
4182
+ "mockFile": ""
4183
+ }
4184
+ ]
4185
+ },
4186
+ {
4187
+ "name": "getMachineV4",
4188
+ "protocol": "REST",
4189
+ "method": "GET",
4190
+ "entitypath": "{base_path}/{version}/inventory/v4/machines/{pathv1}?{query}",
4191
+ "requestSchema": "schema.json",
4192
+ "responseSchema": "schema.json",
4193
+ "timeout": 0,
4194
+ "sendEmpty": false,
4195
+ "sendGetBody": false,
4196
+ "requestDatatype": "JSON",
4197
+ "responseDatatype": "JSON",
4198
+ "headers": {},
4199
+ "responseObjects": [
4200
+ {
4201
+ "type": "default",
4202
+ "key": "",
4203
+ "mockFile": ""
4204
+ }
4205
+ ]
4206
+ },
4207
+ {
4208
+ "name": "deleteApplicationPoolsV5",
4209
+ "protocol": "REST",
4210
+ "method": "DELETE",
4211
+ "entitypath": "{base_path}/{version}/inventory/v5/application-pools?{query}",
4212
+ "requestSchema": "schema.json",
4213
+ "responseSchema": "schema.json",
4214
+ "timeout": 0,
4215
+ "sendEmpty": false,
4216
+ "requestDatatype": "JSON",
4217
+ "responseDatatype": "JSON",
4218
+ "headers": {},
4219
+ "responseObjects": [
4220
+ {
4221
+ "type": "default",
4222
+ "key": "",
4223
+ "mockFile": ""
4224
+ }
4225
+ ]
4226
+ },
4227
+ {
4228
+ "name": "listApplicationPoolsV5",
4229
+ "protocol": "REST",
4230
+ "method": "GET",
4231
+ "entitypath": "{base_path}/{version}/inventory/v5/application-pools?{query}",
4232
+ "requestSchema": "schema.json",
4233
+ "responseSchema": "schema.json",
4234
+ "timeout": 0,
4235
+ "sendEmpty": false,
4236
+ "sendGetBody": false,
4237
+ "requestDatatype": "JSON",
4238
+ "responseDatatype": "JSON",
4239
+ "headers": {},
4240
+ "responseObjects": [
4241
+ {
4242
+ "type": "default",
4243
+ "key": "",
4244
+ "mockFile": ""
4245
+ }
4246
+ ]
4247
+ },
4248
+ {
4249
+ "name": "createApplicationPoolV5",
4250
+ "protocol": "REST",
4251
+ "method": "POST",
4252
+ "entitypath": "{base_path}/{version}/inventory/v5/application-pools?{query}",
4253
+ "requestSchema": "schema.json",
4254
+ "responseSchema": "schema.json",
4255
+ "timeout": 0,
4256
+ "sendEmpty": false,
4257
+ "requestDatatype": "JSON",
4258
+ "responseDatatype": "JSON",
4259
+ "headers": {},
4260
+ "responseObjects": [
4261
+ {
4262
+ "type": "default",
4263
+ "key": "",
4264
+ "mockFile": ""
4265
+ }
4266
+ ]
4267
+ },
4268
+ {
4269
+ "name": "getApplicationPoolV5",
4270
+ "protocol": "REST",
4271
+ "method": "GET",
4272
+ "entitypath": "{base_path}/{version}/inventory/v5/application-pools/{pathv1}?{query}",
4273
+ "requestSchema": "schema.json",
4274
+ "responseSchema": "schema.json",
4275
+ "timeout": 0,
4276
+ "sendEmpty": false,
4277
+ "sendGetBody": false,
4278
+ "requestDatatype": "JSON",
4279
+ "responseDatatype": "JSON",
4280
+ "headers": {},
4281
+ "responseObjects": [
4282
+ {
4283
+ "type": "default",
4284
+ "key": "",
4285
+ "mockFile": ""
4286
+ }
4287
+ ]
4288
+ },
4289
+ {
4290
+ "name": "updateApplicationPoolV5",
4291
+ "protocol": "REST",
4292
+ "method": "PUT",
4293
+ "entitypath": "{base_path}/{version}/inventory/v5/application-pools/{pathv1}?{query}",
4294
+ "requestSchema": "schema.json",
4295
+ "responseSchema": "schema.json",
4296
+ "timeout": 0,
4297
+ "sendEmpty": false,
4298
+ "requestDatatype": "JSON",
4299
+ "responseDatatype": "JSON",
4300
+ "headers": {},
4301
+ "responseObjects": [
4302
+ {
4303
+ "type": "default",
4304
+ "key": "",
4305
+ "mockFile": ""
4306
+ }
4307
+ ]
4308
+ },
4309
+ {
4310
+ "name": "listDesktopPoolsV5",
4311
+ "protocol": "REST",
4312
+ "method": "GET",
4313
+ "entitypath": "{base_path}/{version}/inventory/v5/desktop-pools?{query}",
4314
+ "requestSchema": "schema.json",
4315
+ "responseSchema": "schema.json",
4316
+ "timeout": 0,
4317
+ "sendEmpty": false,
4318
+ "sendGetBody": false,
4319
+ "requestDatatype": "JSON",
4320
+ "responseDatatype": "JSON",
4321
+ "headers": {},
4322
+ "responseObjects": [
4323
+ {
4324
+ "type": "default",
4325
+ "key": "",
4326
+ "mockFile": ""
4327
+ }
4328
+ ]
4329
+ },
4330
+ {
4331
+ "name": "getDesktopPoolV5",
4332
+ "protocol": "REST",
4333
+ "method": "GET",
4334
+ "entitypath": "{base_path}/{version}/inventory/v5/desktop-pools/{pathv1}?{query}",
4335
+ "requestSchema": "schema.json",
4336
+ "responseSchema": "schema.json",
4337
+ "timeout": 0,
4338
+ "sendEmpty": false,
4339
+ "sendGetBody": false,
4340
+ "requestDatatype": "JSON",
4341
+ "responseDatatype": "JSON",
4342
+ "headers": {},
4343
+ "responseObjects": [
4344
+ {
4345
+ "type": "default",
4346
+ "key": "",
4347
+ "mockFile": ""
4348
+ }
4349
+ ]
4350
+ },
4351
+ {
4352
+ "name": "listFarmsV5",
4353
+ "protocol": "REST",
4354
+ "method": "GET",
4355
+ "entitypath": "{base_path}/{version}/inventory/v5/farms?{query}",
4356
+ "requestSchema": "schema.json",
4357
+ "responseSchema": "schema.json",
4358
+ "timeout": 0,
4359
+ "sendEmpty": false,
4360
+ "sendGetBody": false,
4361
+ "requestDatatype": "JSON",
4362
+ "responseDatatype": "JSON",
4363
+ "headers": {},
4364
+ "responseObjects": [
4365
+ {
4366
+ "type": "default",
4367
+ "key": "",
4368
+ "mockFile": ""
4369
+ }
4370
+ ]
4371
+ },
4372
+ {
4373
+ "name": "getFarmV5",
4374
+ "protocol": "REST",
4375
+ "method": "GET",
4376
+ "entitypath": "{base_path}/{version}/inventory/v5/farms/{pathv1}?{query}",
4377
+ "requestSchema": "schema.json",
4378
+ "responseSchema": "schema.json",
4379
+ "timeout": 0,
4380
+ "sendEmpty": false,
4381
+ "sendGetBody": false,
4382
+ "requestDatatype": "JSON",
4383
+ "responseDatatype": "JSON",
4384
+ "headers": {},
4385
+ "responseObjects": [
4386
+ {
4387
+ "type": "default",
4388
+ "key": "",
4389
+ "mockFile": ""
4390
+ }
4391
+ ]
4392
+ },
4393
+ {
4394
+ "name": "listMachinesV5",
4395
+ "protocol": "REST",
4396
+ "method": "GET",
4397
+ "entitypath": "{base_path}/{version}/inventory/v5/machines?{query}",
4398
+ "requestSchema": "schema.json",
4399
+ "responseSchema": "schema.json",
4400
+ "timeout": 0,
4401
+ "sendEmpty": false,
4402
+ "sendGetBody": false,
4403
+ "requestDatatype": "JSON",
4404
+ "responseDatatype": "JSON",
4405
+ "headers": {},
4406
+ "responseObjects": [
4407
+ {
4408
+ "type": "default",
4409
+ "key": "",
4410
+ "mockFile": ""
4411
+ }
4412
+ ]
4413
+ },
4414
+ {
4415
+ "name": "getMachineV5",
4416
+ "protocol": "REST",
4417
+ "method": "GET",
4418
+ "entitypath": "{base_path}/{version}/inventory/v5/machines/{pathv1}?{query}",
4419
+ "requestSchema": "schema.json",
4420
+ "responseSchema": "schema.json",
4421
+ "timeout": 0,
4422
+ "sendEmpty": false,
4423
+ "sendGetBody": false,
4424
+ "requestDatatype": "JSON",
4425
+ "responseDatatype": "JSON",
4426
+ "headers": {},
4427
+ "responseObjects": [
4428
+ {
4429
+ "type": "default",
4430
+ "key": "",
4431
+ "mockFile": ""
4432
+ }
4433
+ ]
4434
+ },
4435
+ {
4436
+ "name": "listDesktopPoolsV6",
4437
+ "protocol": "REST",
4438
+ "method": "GET",
4439
+ "entitypath": "{base_path}/{version}/inventory/v6/desktop-pools?{query}",
4440
+ "requestSchema": "schema.json",
4441
+ "responseSchema": "schema.json",
4442
+ "timeout": 0,
4443
+ "sendEmpty": false,
4444
+ "sendGetBody": false,
4445
+ "requestDatatype": "JSON",
4446
+ "responseDatatype": "JSON",
4447
+ "headers": {},
4448
+ "responseObjects": [
4449
+ {
4450
+ "type": "default",
4451
+ "key": "",
4452
+ "mockFile": ""
4453
+ }
4454
+ ]
4455
+ },
4456
+ {
4457
+ "name": "getDesktopPoolV6",
4458
+ "protocol": "REST",
4459
+ "method": "GET",
4460
+ "entitypath": "{base_path}/{version}/inventory/v6/desktop-pools/{pathv1}?{query}",
4461
+ "requestSchema": "schema.json",
4462
+ "responseSchema": "schema.json",
4463
+ "timeout": 0,
4464
+ "sendEmpty": false,
4465
+ "sendGetBody": false,
4466
+ "requestDatatype": "JSON",
4467
+ "responseDatatype": "JSON",
4468
+ "headers": {},
4469
+ "responseObjects": [
4470
+ {
4471
+ "type": "default",
4472
+ "key": "",
4473
+ "mockFile": ""
4474
+ }
4475
+ ]
4476
+ },
4477
+ {
4478
+ "name": "listFarmsV6",
4479
+ "protocol": "REST",
4480
+ "method": "GET",
4481
+ "entitypath": "{base_path}/{version}/inventory/v6/farms?{query}",
4482
+ "requestSchema": "schema.json",
4483
+ "responseSchema": "schema.json",
4484
+ "timeout": 0,
4485
+ "sendEmpty": false,
4486
+ "sendGetBody": false,
4487
+ "requestDatatype": "JSON",
4488
+ "responseDatatype": "JSON",
4489
+ "headers": {},
4490
+ "responseObjects": [
4491
+ {
4492
+ "type": "default",
4493
+ "key": "",
4494
+ "mockFile": ""
4495
+ }
4496
+ ]
4497
+ },
4498
+ {
4499
+ "name": "createFarmV6",
4500
+ "protocol": "REST",
4501
+ "method": "POST",
4502
+ "entitypath": "{base_path}/{version}/inventory/v6/farms?{query}",
4503
+ "requestSchema": "schema.json",
4504
+ "responseSchema": "schema.json",
4505
+ "timeout": 0,
4506
+ "sendEmpty": false,
4507
+ "requestDatatype": "JSON",
4508
+ "responseDatatype": "JSON",
4509
+ "headers": {},
4510
+ "responseObjects": [
4511
+ {
4512
+ "type": "default",
4513
+ "key": "",
4514
+ "mockFile": ""
4515
+ }
4516
+ ]
4517
+ },
4518
+ {
4519
+ "name": "deleteFarmV6",
4520
+ "protocol": "REST",
4521
+ "method": "DELETE",
4522
+ "entitypath": "{base_path}/{version}/inventory/v6/farms/{pathv1}?{query}",
4523
+ "requestSchema": "schema.json",
4524
+ "responseSchema": "schema.json",
4525
+ "timeout": 0,
4526
+ "sendEmpty": false,
4527
+ "requestDatatype": "JSON",
4528
+ "responseDatatype": "JSON",
4529
+ "headers": {},
4530
+ "responseObjects": [
4531
+ {
4532
+ "type": "default",
4533
+ "key": "",
4534
+ "mockFile": ""
4535
+ }
4536
+ ]
4537
+ },
4538
+ {
4539
+ "name": "getFarmV6",
4540
+ "protocol": "REST",
4541
+ "method": "GET",
4542
+ "entitypath": "{base_path}/{version}/inventory/v6/farms/{pathv1}?{query}",
4543
+ "requestSchema": "schema.json",
4544
+ "responseSchema": "schema.json",
4545
+ "timeout": 0,
4546
+ "sendEmpty": false,
4547
+ "sendGetBody": false,
4548
+ "requestDatatype": "JSON",
4549
+ "responseDatatype": "JSON",
4550
+ "headers": {},
4551
+ "responseObjects": [
4552
+ {
4553
+ "type": "default",
4554
+ "key": "",
4555
+ "mockFile": ""
4556
+ }
4557
+ ]
4558
+ },
4559
+ {
4560
+ "name": "updateFarmV6",
4561
+ "protocol": "REST",
4562
+ "method": "PUT",
4563
+ "entitypath": "{base_path}/{version}/inventory/v6/farms/{pathv1}?{query}",
4564
+ "requestSchema": "schema.json",
4565
+ "responseSchema": "schema.json",
4566
+ "timeout": 0,
4567
+ "sendEmpty": false,
4568
+ "requestDatatype": "JSON",
4569
+ "responseDatatype": "JSON",
4570
+ "headers": {},
4571
+ "responseObjects": [
4572
+ {
4573
+ "type": "default",
4574
+ "key": "",
4575
+ "mockFile": ""
4576
+ }
4577
+ ]
4578
+ },
4579
+ {
4580
+ "name": "listDesktopPoolsV7",
4581
+ "protocol": "REST",
4582
+ "method": "GET",
4583
+ "entitypath": "{base_path}/{version}/inventory/v7/desktop-pools?{query}",
4584
+ "requestSchema": "schema.json",
4585
+ "responseSchema": "schema.json",
4586
+ "timeout": 0,
4587
+ "sendEmpty": false,
4588
+ "sendGetBody": false,
4589
+ "requestDatatype": "JSON",
4590
+ "responseDatatype": "JSON",
4591
+ "headers": {},
4592
+ "responseObjects": [
4593
+ {
4594
+ "type": "default",
4595
+ "key": "",
4596
+ "mockFile": ""
4597
+ }
4598
+ ]
4599
+ },
4600
+ {
4601
+ "name": "createDesktopPoolV7",
4602
+ "protocol": "REST",
4603
+ "method": "POST",
4604
+ "entitypath": "{base_path}/{version}/inventory/v7/desktop-pools?{query}",
4605
+ "requestSchema": "schema.json",
4606
+ "responseSchema": "schema.json",
4607
+ "timeout": 0,
4608
+ "sendEmpty": false,
4609
+ "requestDatatype": "JSON",
4610
+ "responseDatatype": "JSON",
4611
+ "headers": {},
4612
+ "responseObjects": [
4613
+ {
4614
+ "type": "default",
4615
+ "key": "",
4616
+ "mockFile": ""
4617
+ }
4618
+ ]
4619
+ },
4620
+ {
4621
+ "name": "deleteDesktopPoolV7",
4622
+ "protocol": "REST",
4623
+ "method": "DELETE",
4624
+ "entitypath": "{base_path}/{version}/inventory/v7/desktop-pools/{pathv1}?{query}",
4625
+ "requestSchema": "schema.json",
4626
+ "responseSchema": "schema.json",
4627
+ "timeout": 0,
4628
+ "sendEmpty": false,
4629
+ "requestDatatype": "JSON",
4630
+ "responseDatatype": "JSON",
4631
+ "headers": {},
4632
+ "responseObjects": [
4633
+ {
4634
+ "type": "default",
4635
+ "key": "",
4636
+ "mockFile": ""
4637
+ }
4638
+ ]
4639
+ },
4640
+ {
4641
+ "name": "getDesktopPoolV7",
4642
+ "protocol": "REST",
4643
+ "method": "GET",
4644
+ "entitypath": "{base_path}/{version}/inventory/v7/desktop-pools/{pathv1}?{query}",
4645
+ "requestSchema": "schema.json",
4646
+ "responseSchema": "schema.json",
4647
+ "timeout": 0,
4648
+ "sendEmpty": false,
4649
+ "sendGetBody": false,
4650
+ "requestDatatype": "JSON",
4651
+ "responseDatatype": "JSON",
4652
+ "headers": {},
4653
+ "responseObjects": [
4654
+ {
4655
+ "type": "default",
4656
+ "key": "",
4657
+ "mockFile": ""
4658
+ }
4659
+ ]
4660
+ },
4661
+ {
4662
+ "name": "updateDesktopPoolv7",
4663
+ "protocol": "REST",
4664
+ "method": "PUT",
4665
+ "entitypath": "{base_path}/{version}/inventory/v7/desktop-pools/{pathv1}?{query}",
4666
+ "requestSchema": "schema.json",
4667
+ "responseSchema": "schema.json",
4668
+ "timeout": 0,
4669
+ "sendEmpty": false,
4670
+ "requestDatatype": "JSON",
4671
+ "responseDatatype": "JSON",
4672
+ "headers": {},
4673
+ "responseObjects": [
4674
+ {
4675
+ "type": "default",
4676
+ "key": "",
4677
+ "mockFile": ""
4678
+ }
4679
+ ]
4680
+ }
4681
+ ]
4682
+ }