@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,374 @@
1
+ {
2
+ "$id": "schema.json",
3
+ "type": "object",
4
+ "schema": "http://json-schema.org/draft-07/schema#",
5
+ "translate": true,
6
+ "dynamicfields": true,
7
+ "properties": {
8
+ "ph_request_type": {
9
+ "type": "string",
10
+ "description": "type of request (internal to adapter)",
11
+ "default": "getAdminUsersOrGroupsPermissions",
12
+ "enum": [
13
+ "getAdminUsersOrGroupsPermissions",
14
+ "getPreferences",
15
+ "updatePreferences",
16
+ "listAppVolumesManagers",
17
+ "addAppVolumesManager",
18
+ "unassignFarms",
19
+ "validateAVMCertificate",
20
+ "deleteAppVolumesManager",
21
+ "getAppVolumesManager",
22
+ "updateAppVolumesManager",
23
+ "assignFarms",
24
+ "overrideCertificate",
25
+ "pushCertificates",
26
+ "getCEIPInfo",
27
+ "updateCEIPInfo",
28
+ "listConnectionServers",
29
+ "deleteCertificate",
30
+ "disableConnectionServers",
31
+ "enableConnectionServers",
32
+ "exportCertificate",
33
+ "generateCSR",
34
+ "importCertificate",
35
+ "recoverCertificates",
36
+ "listCertificateInfos",
37
+ "getSecurityConfigurationInfo",
38
+ "getConnectionServer",
39
+ "updateConnectionServer",
40
+ "getEnvironment",
41
+ "getEventDatabase",
42
+ "updateEventDatabase",
43
+ "clearEventDatabase",
44
+ "listFederationAccessGroups",
45
+ "createFederationAccessGroup",
46
+ "deleteFederationAccessGroup",
47
+ "getFederationAccessGroup",
48
+ "deleteGatewayAccessUserOrGroup",
49
+ "listGatewayAccessUserOrGroup",
50
+ "createGatewayAccessUserOrGroup",
51
+ "listGateways",
52
+ "registerGateway",
53
+ "unregisterGateway",
54
+ "getGateway",
55
+ "getGlobalPolicies",
56
+ "updateGlobalPolicies",
57
+ "listGSSAPIAuthenticators",
58
+ "createGSSAPIAuthenticator",
59
+ "deleteGSSAPIAuthenticator",
60
+ "getGSSAPIAuthenticator",
61
+ "updateGSSAPIAuthenticator",
62
+ "listICDomainAccounts",
63
+ "createICDomainAccount",
64
+ "deleteICDomainAccount",
65
+ "getICDomainAccount",
66
+ "updateICDomainAccount",
67
+ "getADSitesInfo",
68
+ "listIMAssets",
69
+ "createIMAsset",
70
+ "createIMAssets",
71
+ "deleteIMAsset",
72
+ "getIMAsset",
73
+ "updateIMAsset",
74
+ "listIMStreams",
75
+ "createIMStream",
76
+ "createIMStreams",
77
+ "deleteIMStream",
78
+ "getIMStream",
79
+ "updateIMStream",
80
+ "listIMTags",
81
+ "createIMTag",
82
+ "createIMTags",
83
+ "deleteIMTag",
84
+ "getIMTag",
85
+ "updateIMTag",
86
+ "listIMVersions",
87
+ "createIMVersion",
88
+ "createIMVersions",
89
+ "deleteIMVersion",
90
+ "getIMVersion",
91
+ "updateIMVersion",
92
+ "listJWTAuthenticators",
93
+ "createJWTAuthenticator",
94
+ "deleteJWTAuthenticator",
95
+ "getJWTAuthenticator",
96
+ "updateJWTAuthenticator",
97
+ "listLicenses",
98
+ "resetHighestUsageMetrics",
99
+ "resetNamedUserMetrics",
100
+ "setLicenseMode",
101
+ "listLocalAccessGroups",
102
+ "createLocalAccessGroup",
103
+ "deleteLocalAccessGroup",
104
+ "getLocalAccessGroup",
105
+ "collect",
106
+ "listLogCollectorTasks",
107
+ "clean",
108
+ "purge",
109
+ "listMessageClients",
110
+ "createMessageClient",
111
+ "deleteMessageClient",
112
+ "getMessageClient",
113
+ "updateMessageClient",
114
+ "deletePermissions",
115
+ "listPermissions",
116
+ "createPermissions",
117
+ "getPermission",
118
+ "getPreLogonSettings",
119
+ "listSelectablePrivileges",
120
+ "listRADIUSAuthenticators",
121
+ "createRADIUSAuthenticator",
122
+ "deleteRADIUSAuthenticator",
123
+ "getRADIUSAuthenticator",
124
+ "updateRADIUSAuthenticator",
125
+ "registerRCXClient",
126
+ "unregisterRCXClient",
127
+ "updateRCXClient",
128
+ "listRCXServers",
129
+ "listRoles",
130
+ "createRole",
131
+ "deleteRole",
132
+ "getRole",
133
+ "updateRole",
134
+ "listSAMLAuthenticators",
135
+ "createSAMLAuthenticator",
136
+ "validateSAMLCertificate",
137
+ "deleteSAMLAuthenticator",
138
+ "getSAMLAuthenticator",
139
+ "updateSAMLAuthenticator",
140
+ "listSecondaryCredentials",
141
+ "createSecondaryCredential",
142
+ "deleteSecondaryCredential",
143
+ "getSecondaryCredentials",
144
+ "updatepassword",
145
+ "getSettings",
146
+ "updateSettings",
147
+ "getAgentRestrictionSettings",
148
+ "updateAgentRestrictionSettings",
149
+ "getClientSettings",
150
+ "updateClientSettings",
151
+ "getFeatureSettings",
152
+ "updateFeatureSettings",
153
+ "getGeneralSettings",
154
+ "updateGeneralSettings",
155
+ "getSecuritySettings",
156
+ "updateSecuritySettings",
157
+ "getSyslog",
158
+ "updateSyslog",
159
+ "listTrueSSOConnectors",
160
+ "createTrueSSOConnector",
161
+ "listEnrollmentServers",
162
+ "getEnrollmentServer",
163
+ "deleteTrueSSOConnector",
164
+ "getTrueSSOConnector",
165
+ "updateTrueSSOConnector",
166
+ "listUnauthenticatedAccessUsers",
167
+ "createUnauthenticatedAccessUser",
168
+ "deleteUnauthenticatedAccessUser",
169
+ "getUnauthenticatedAccessUser",
170
+ "listUsersOrGroupsGlobalSummary",
171
+ "getUsersOrGroupsGlobalSummary",
172
+ "listUsersOrGroupsLocalSummary",
173
+ "getStorageDetails",
174
+ "listVCInfo",
175
+ "validateVirtualCenterCertificate",
176
+ "markDatastoresForArchival",
177
+ "getPreferencesV2",
178
+ "updatePreferencesV2",
179
+ "listAppVolumesManagersV2",
180
+ "addAppVolumesManagerV2",
181
+ "deleteAppVolumesManagerV2",
182
+ "getAppVolumesManagerV2",
183
+ "updateAppVolumesManagerV2",
184
+ "listConnectionServersV2",
185
+ "listCertificateInfosV2",
186
+ "getConnectionServerV2",
187
+ "updateConnectionServerV2",
188
+ "getEnvironmentV2",
189
+ "listFederationAccessGroupsV2",
190
+ "getFederationAccessGroupV2",
191
+ "listLicensesV2",
192
+ "setLicenseKey",
193
+ "listLocalAccessGroupsV2",
194
+ "getLocalAccessGroupV2",
195
+ "deletePermissionsV2",
196
+ "listPermissionsV2",
197
+ "createPermissionsV2",
198
+ "getPermissionV2",
199
+ "getSettingsV2",
200
+ "updateSettingsV2",
201
+ "getGeneralSettingsV2",
202
+ "updateGeneralSettingsV2",
203
+ "getSecuritySettingsV2",
204
+ "listUsersOrGroupsLocalSummaryV2",
205
+ "getUsersOrGroupLocalSummaryV2",
206
+ "listVCInfoV2",
207
+ "getSettingsV3",
208
+ "updateSettingsV3",
209
+ "getGeneralSettingsV3",
210
+ "updateGeneralSettingsV3",
211
+ "getSecuritySettingsV3",
212
+ "updateSecuritySettingsV3",
213
+ "listUsersOrGroupsLocalSummaryV3",
214
+ "getUsersOrGroupLocalSummaryV3",
215
+ "listVCInfoV3",
216
+ "createVirtualCenter",
217
+ "removeVirtualCenter",
218
+ "getVirtualCenter",
219
+ "updateVirtualCenter",
220
+ "getSettingsV4",
221
+ "updateSettingsV4",
222
+ "getGeneralSettingsV4",
223
+ "updateGeneralSettingsV4",
224
+ "getSecuritySettingsV4",
225
+ "updateSecuritySettingsV4",
226
+ "listVCInfoV4",
227
+ "createVirtualCenterV4",
228
+ "getVirtualCenterV4",
229
+ "updateVirtualCenterV4",
230
+ "getSettingsV5",
231
+ "updateSettingsV5",
232
+ "listVCInfoV5",
233
+ "createVirtualCenterV5",
234
+ "removeVirtualCenterV5",
235
+ "getVirtualCenterV5",
236
+ "updateVirtualCenterV5"
237
+ ],
238
+ "external_name": "ph_request_type"
239
+ },
240
+ "adUserOrGroupId": {
241
+ "type": "string",
242
+ "description": "ID of the admin user or group",
243
+ "parse": false,
244
+ "encode": false,
245
+ "encrypt": {
246
+ "type": "AES",
247
+ "key": ""
248
+ },
249
+ "external_name": "ad_user_or_group_id"
250
+ },
251
+ "deletePermanently": {
252
+ "type": "boolean",
253
+ "description": "Indicates whether to permanently delete the certificate.\n If passed as \"true\", then certificates will be permanently deleted.\n If passed as \"false\", then certificates wil...(description truncated)",
254
+ "parse": false,
255
+ "encode": false,
256
+ "encrypt": {
257
+ "type": "AES",
258
+ "key": ""
259
+ },
260
+ "external_name": "delete_permanently"
261
+ },
262
+ "sortBy": {
263
+ "type": "string",
264
+ "description": "Field that would be used to sort the results.",
265
+ "parse": false,
266
+ "encode": false,
267
+ "encrypt": {
268
+ "type": "AES",
269
+ "key": ""
270
+ },
271
+ "external_name": "sort_by"
272
+ },
273
+ "orderBy": {
274
+ "type": "string",
275
+ "description": "Determines the ordering of results.",
276
+ "parse": false,
277
+ "encode": false,
278
+ "encrypt": {
279
+ "type": "AES",
280
+ "key": ""
281
+ },
282
+ "external_name": "order_by"
283
+ },
284
+ "imVersionId": {
285
+ "type": "string",
286
+ "description": "Image management version ID",
287
+ "parse": false,
288
+ "encode": false,
289
+ "encrypt": {
290
+ "type": "AES",
291
+ "key": ""
292
+ },
293
+ "external_name": "im_version_id"
294
+ },
295
+ "vcenterId": {
296
+ "type": "string",
297
+ "description": "Virtual Center ID",
298
+ "parse": false,
299
+ "encode": false,
300
+ "encrypt": {
301
+ "type": "AES",
302
+ "key": ""
303
+ },
304
+ "external_name": "vcenter_id"
305
+ },
306
+ "cloneType": {
307
+ "type": "string",
308
+ "description": "Clone Type.",
309
+ "parse": false,
310
+ "encode": false,
311
+ "encrypt": {
312
+ "type": "AES",
313
+ "key": ""
314
+ },
315
+ "external_name": "clone_type"
316
+ },
317
+ "imageType": {
318
+ "type": "string",
319
+ "description": "Image Type.",
320
+ "parse": false,
321
+ "encode": false,
322
+ "encrypt": {
323
+ "type": "AES",
324
+ "key": ""
325
+ },
326
+ "external_name": "image_type"
327
+ },
328
+ "imStreamId": {
329
+ "type": "string",
330
+ "description": "Image management stream ID",
331
+ "parse": false,
332
+ "encode": false,
333
+ "encrypt": {
334
+ "type": "AES",
335
+ "key": ""
336
+ },
337
+ "external_name": "im_stream_id"
338
+ },
339
+ "ownerId": {
340
+ "type": "string",
341
+ "description": "The user sid of the owner of the secondary credential.",
342
+ "parse": false,
343
+ "encode": false,
344
+ "encrypt": {
345
+ "type": "AES",
346
+ "key": ""
347
+ },
348
+ "external_name": "owner_id"
349
+ },
350
+ "entitledOnly": {
351
+ "type": "boolean",
352
+ "description": "Whether or not the list should contain info only for user or group with atleast one entitlement.",
353
+ "parse": false,
354
+ "encode": false,
355
+ "encrypt": {
356
+ "type": "AES",
357
+ "key": ""
358
+ },
359
+ "external_name": "entitled_only"
360
+ },
361
+ "hostOrClusterId": {
362
+ "type": "string",
363
+ "description": "Host or Cluster ID",
364
+ "parse": false,
365
+ "encode": false,
366
+ "encrypt": {
367
+ "type": "AES",
368
+ "key": ""
369
+ },
370
+ "external_name": "host_or_cluster_id"
371
+ }
372
+ },
373
+ "definitions": {}
374
+ }
@@ -0,0 +1,332 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "bulkDeleteApplicationPoolEntitlements",
5
+ "protocol": "REST",
6
+ "method": "DELETE",
7
+ "entitypath": "{base_path}/{version}/entitlements/v1/application-pools?{query}",
8
+ "requestSchema": "schema.json",
9
+ "responseSchema": "schema.json",
10
+ "timeout": 0,
11
+ "sendEmpty": false,
12
+ "requestDatatype": "JSON",
13
+ "responseDatatype": "JSON",
14
+ "headers": {},
15
+ "responseObjects": [
16
+ {
17
+ "type": "default",
18
+ "key": "",
19
+ "mockFile": ""
20
+ }
21
+ ]
22
+ },
23
+ {
24
+ "name": "listApplicationPoolEntitlements",
25
+ "protocol": "REST",
26
+ "method": "GET",
27
+ "entitypath": "{base_path}/{version}/entitlements/v1/application-pools?{query}",
28
+ "requestSchema": "schema.json",
29
+ "responseSchema": "schema.json",
30
+ "timeout": 0,
31
+ "sendEmpty": false,
32
+ "sendGetBody": 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": "bulkCreateApplicationPoolEntitlements",
46
+ "protocol": "REST",
47
+ "method": "POST",
48
+ "entitypath": "{base_path}/{version}/entitlements/v1/application-pools?{query}",
49
+ "requestSchema": "schema.json",
50
+ "responseSchema": "schema.json",
51
+ "timeout": 0,
52
+ "sendEmpty": false,
53
+ "requestDatatype": "JSON",
54
+ "responseDatatype": "JSON",
55
+ "headers": {},
56
+ "responseObjects": [
57
+ {
58
+ "type": "default",
59
+ "key": "",
60
+ "mockFile": ""
61
+ }
62
+ ]
63
+ },
64
+ {
65
+ "name": "getApplicationPoolEntitlements",
66
+ "protocol": "REST",
67
+ "method": "GET",
68
+ "entitypath": "{base_path}/{version}/entitlements/v1/application-pools/{pathv1}?{query}",
69
+ "requestSchema": "schema.json",
70
+ "responseSchema": "schema.json",
71
+ "timeout": 0,
72
+ "sendEmpty": false,
73
+ "sendGetBody": 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": "bulkDeleteDesktopPoolEntitlements",
87
+ "protocol": "REST",
88
+ "method": "DELETE",
89
+ "entitypath": "{base_path}/{version}/entitlements/v1/desktop-pools?{query}",
90
+ "requestSchema": "schema.json",
91
+ "responseSchema": "schema.json",
92
+ "timeout": 0,
93
+ "sendEmpty": false,
94
+ "requestDatatype": "JSON",
95
+ "responseDatatype": "JSON",
96
+ "headers": {},
97
+ "responseObjects": [
98
+ {
99
+ "type": "default",
100
+ "key": "",
101
+ "mockFile": ""
102
+ }
103
+ ]
104
+ },
105
+ {
106
+ "name": "listDesktopPoolEntitlements",
107
+ "protocol": "REST",
108
+ "method": "GET",
109
+ "entitypath": "{base_path}/{version}/entitlements/v1/desktop-pools?{query}",
110
+ "requestSchema": "schema.json",
111
+ "responseSchema": "schema.json",
112
+ "timeout": 0,
113
+ "sendEmpty": false,
114
+ "sendGetBody": 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": "bulkCreateDesktopPoolEntitlements",
128
+ "protocol": "REST",
129
+ "method": "POST",
130
+ "entitypath": "{base_path}/{version}/entitlements/v1/desktop-pools?{query}",
131
+ "requestSchema": "schema.json",
132
+ "responseSchema": "schema.json",
133
+ "timeout": 0,
134
+ "sendEmpty": false,
135
+ "requestDatatype": "JSON",
136
+ "responseDatatype": "JSON",
137
+ "headers": {},
138
+ "responseObjects": [
139
+ {
140
+ "type": "default",
141
+ "key": "",
142
+ "mockFile": ""
143
+ }
144
+ ]
145
+ },
146
+ {
147
+ "name": "getDesktopPoolEntitlements",
148
+ "protocol": "REST",
149
+ "method": "GET",
150
+ "entitypath": "{base_path}/{version}/entitlements/v1/desktop-pools/{pathv1}?{query}",
151
+ "requestSchema": "schema.json",
152
+ "responseSchema": "schema.json",
153
+ "timeout": 0,
154
+ "sendEmpty": false,
155
+ "sendGetBody": 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": "bulkDeleteGAEEntitlements",
169
+ "protocol": "REST",
170
+ "method": "DELETE",
171
+ "entitypath": "{base_path}/{version}/entitlements/v1/global-application-entitlements?{query}",
172
+ "requestSchema": "schema.json",
173
+ "responseSchema": "schema.json",
174
+ "timeout": 0,
175
+ "sendEmpty": false,
176
+ "requestDatatype": "JSON",
177
+ "responseDatatype": "JSON",
178
+ "headers": {},
179
+ "responseObjects": [
180
+ {
181
+ "type": "default",
182
+ "key": "",
183
+ "mockFile": ""
184
+ }
185
+ ]
186
+ },
187
+ {
188
+ "name": "listGAEEntitlements",
189
+ "protocol": "REST",
190
+ "method": "GET",
191
+ "entitypath": "{base_path}/{version}/entitlements/v1/global-application-entitlements?{query}",
192
+ "requestSchema": "schema.json",
193
+ "responseSchema": "schema.json",
194
+ "timeout": 0,
195
+ "sendEmpty": false,
196
+ "sendGetBody": false,
197
+ "requestDatatype": "JSON",
198
+ "responseDatatype": "JSON",
199
+ "headers": {},
200
+ "responseObjects": [
201
+ {
202
+ "type": "default",
203
+ "key": "",
204
+ "mockFile": ""
205
+ }
206
+ ]
207
+ },
208
+ {
209
+ "name": "bulkCreateGAEEntitlements",
210
+ "protocol": "REST",
211
+ "method": "POST",
212
+ "entitypath": "{base_path}/{version}/entitlements/v1/global-application-entitlements?{query}",
213
+ "requestSchema": "schema.json",
214
+ "responseSchema": "schema.json",
215
+ "timeout": 0,
216
+ "sendEmpty": false,
217
+ "requestDatatype": "JSON",
218
+ "responseDatatype": "JSON",
219
+ "headers": {},
220
+ "responseObjects": [
221
+ {
222
+ "type": "default",
223
+ "key": "",
224
+ "mockFile": ""
225
+ }
226
+ ]
227
+ },
228
+ {
229
+ "name": "getGAEEntitlement",
230
+ "protocol": "REST",
231
+ "method": "GET",
232
+ "entitypath": "{base_path}/{version}/entitlements/v1/global-application-entitlements/{pathv1}?{query}",
233
+ "requestSchema": "schema.json",
234
+ "responseSchema": "schema.json",
235
+ "timeout": 0,
236
+ "sendEmpty": false,
237
+ "sendGetBody": 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": "bulkDeleteGDEEntitlements",
251
+ "protocol": "REST",
252
+ "method": "DELETE",
253
+ "entitypath": "{base_path}/{version}/entitlements/v1/global-desktop-entitlements?{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": "listGDEEntitlements",
271
+ "protocol": "REST",
272
+ "method": "GET",
273
+ "entitypath": "{base_path}/{version}/entitlements/v1/global-desktop-entitlements?{query}",
274
+ "requestSchema": "schema.json",
275
+ "responseSchema": "schema.json",
276
+ "timeout": 0,
277
+ "sendEmpty": false,
278
+ "sendGetBody": false,
279
+ "requestDatatype": "JSON",
280
+ "responseDatatype": "JSON",
281
+ "headers": {},
282
+ "responseObjects": [
283
+ {
284
+ "type": "default",
285
+ "key": "",
286
+ "mockFile": ""
287
+ }
288
+ ]
289
+ },
290
+ {
291
+ "name": "bulkCreateGDEEntitlements",
292
+ "protocol": "REST",
293
+ "method": "POST",
294
+ "entitypath": "{base_path}/{version}/entitlements/v1/global-desktop-entitlements?{query}",
295
+ "requestSchema": "schema.json",
296
+ "responseSchema": "schema.json",
297
+ "timeout": 0,
298
+ "sendEmpty": false,
299
+ "requestDatatype": "JSON",
300
+ "responseDatatype": "JSON",
301
+ "headers": {},
302
+ "responseObjects": [
303
+ {
304
+ "type": "default",
305
+ "key": "",
306
+ "mockFile": ""
307
+ }
308
+ ]
309
+ },
310
+ {
311
+ "name": "getGDEEntitlement",
312
+ "protocol": "REST",
313
+ "method": "GET",
314
+ "entitypath": "{base_path}/{version}/entitlements/v1/global-desktop-entitlements/{pathv1}?{query}",
315
+ "requestSchema": "schema.json",
316
+ "responseSchema": "schema.json",
317
+ "timeout": 0,
318
+ "sendEmpty": false,
319
+ "sendGetBody": false,
320
+ "requestDatatype": "JSON",
321
+ "responseDatatype": "JSON",
322
+ "headers": {},
323
+ "responseObjects": [
324
+ {
325
+ "type": "default",
326
+ "key": "",
327
+ "mockFile": ""
328
+ }
329
+ ]
330
+ }
331
+ ]
332
+ }