@itentialopensource/adapter-paragon_pathfinder 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 (98) hide show
  1. package/.eslintignore +6 -0
  2. package/.eslintrc.js +18 -0
  3. package/.gitlab/.gitkeep +0 -0
  4. package/.gitlab/issue_templates/.gitkeep +0 -0
  5. package/.gitlab/issue_templates/Default.md +17 -0
  6. package/.gitlab/issue_templates/bugReportTemplate.md +76 -0
  7. package/.gitlab/issue_templates/featureRequestTemplate.md +14 -0
  8. package/.jshintrc +0 -0
  9. package/AUTH.md +39 -0
  10. package/BROKER.md +199 -0
  11. package/CALLS.md +2982 -0
  12. package/CHANGELOG.md +9 -0
  13. package/CODE_OF_CONDUCT.md +43 -0
  14. package/CONTRIBUTING.md +172 -0
  15. package/ENHANCE.md +69 -0
  16. package/LICENSE +201 -0
  17. package/PROPERTIES.md +641 -0
  18. package/README.md +337 -0
  19. package/SUMMARY.md +9 -0
  20. package/SYSTEMINFO.md +11 -0
  21. package/TROUBLESHOOT.md +47 -0
  22. package/adapter.js +40341 -0
  23. package/adapterBase.js +1787 -0
  24. package/entities/.generic/action.json +214 -0
  25. package/entities/.generic/schema.json +28 -0
  26. package/entities/.system/action.json +50 -0
  27. package/entities/.system/mockdatafiles/getToken-default.json +49 -0
  28. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  29. package/entities/.system/schema.json +19 -0
  30. package/entities/.system/schemaTokenReq.json +94 -0
  31. package/entities/.system/schemaTokenResp.json +65 -0
  32. package/entities/Authentication/action.json +45 -0
  33. package/entities/Authentication/schema.json +20 -0
  34. package/entities/Authorization/action.json +105 -0
  35. package/entities/Authorization/schema.json +23 -0
  36. package/entities/CommandService/action.json +44 -0
  37. package/entities/CommandService/schema.json +20 -0
  38. package/entities/ConfigOperationService/action.json +184 -0
  39. package/entities/ConfigOperationService/schema.json +27 -0
  40. package/entities/ConfigResourceService/action.json +964 -0
  41. package/entities/ConfigResourceService/schema.json +66 -0
  42. package/entities/ConfigTemplateService/action.json +345 -0
  43. package/entities/ConfigTemplateService/schema.json +266 -0
  44. package/entities/DeviceLCMService/action.json +44 -0
  45. package/entities/DeviceLCMService/schema.json +20 -0
  46. package/entities/DeviceOnboardingService/action.json +105 -0
  47. package/entities/DeviceOnboardingService/schema.json +23 -0
  48. package/entities/DevicemanagerService/action.json +1770 -0
  49. package/entities/DevicemanagerService/schema.json +402 -0
  50. package/entities/DevicemodelService/action.json +2114 -0
  51. package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportComponent-default.json +49 -0
  52. package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportDevice-default.json +29 -0
  53. package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportDeviceView-default.json +53 -0
  54. package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportInterface-default.json +21 -0
  55. package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportLicense-default.json +45 -0
  56. package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportLicenseFeature-default.json +41 -0
  57. package/entities/DevicemodelService/schema.json +419 -0
  58. package/entities/IamRPCService/action.json +872 -0
  59. package/entities/IamRPCService/schema.json +325 -0
  60. package/entities/IamService/action.json +2740 -0
  61. package/entities/IamService/mockdatafiles/iamServiceExportUserView-default.json +53 -0
  62. package/entities/IamService/schema.json +670 -0
  63. package/entities/InventoryService/action.json +164 -0
  64. package/entities/InventoryService/schema.json +26 -0
  65. package/error.json +190 -0
  66. package/package.json +87 -0
  67. package/pronghorn.json +100351 -0
  68. package/propertiesDecorators.json +14 -0
  69. package/propertiesSchema.json +1246 -0
  70. package/refs?service=git-upload-pack +0 -0
  71. package/report/adapterInfo.json +10 -0
  72. package/report/creationReport.json +2690 -0
  73. package/report/output.swagger.json +69945 -0
  74. package/sampleProperties.json +203 -0
  75. package/test/integration/adapterTestBasicGet.js +83 -0
  76. package/test/integration/adapterTestConnectivity.js +93 -0
  77. package/test/integration/adapterTestIntegration.js +35598 -0
  78. package/test/unit/adapterBaseTestUnit.js +949 -0
  79. package/test/unit/adapterTestUnit.js +14616 -0
  80. package/utils/adapterInfo.js +206 -0
  81. package/utils/addAuth.js +94 -0
  82. package/utils/artifactize.js +146 -0
  83. package/utils/basicGet.js +50 -0
  84. package/utils/checkMigrate.js +63 -0
  85. package/utils/entitiesToDB.js +178 -0
  86. package/utils/findPath.js +74 -0
  87. package/utils/methodDocumentor.js +225 -0
  88. package/utils/modify.js +154 -0
  89. package/utils/packModificationScript.js +35 -0
  90. package/utils/patches2bundledDeps.js +90 -0
  91. package/utils/pre-commit.sh +32 -0
  92. package/utils/removeHooks.js +20 -0
  93. package/utils/setup.js +33 -0
  94. package/utils/tbScript.js +246 -0
  95. package/utils/tbUtils.js +490 -0
  96. package/utils/testRunner.js +298 -0
  97. package/utils/troubleshootingAdapter.js +195 -0
  98. package/workflows/README.md +3 -0
@@ -0,0 +1,2740 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "iamServiceBulkListIdentityProvider",
5
+ "protocol": "REST",
6
+ "method": "POST",
7
+ "entitypath": "{base_path}/{version}/iam/bulk-list-identity-provider?{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": "iamServiceSync",
25
+ "protocol": "REST",
26
+ "method": "POST",
27
+ "entitypath": "{base_path}/{version}/iam/sync?{query}",
28
+ "requestSchema": "schema.json",
29
+ "responseSchema": "schema.json",
30
+ "timeout": 0,
31
+ "sendEmpty": false,
32
+ "requestDatatype": "JSON",
33
+ "responseDatatype": "JSON",
34
+ "headers": {},
35
+ "responseObjects": [
36
+ {
37
+ "type": "default",
38
+ "key": "",
39
+ "mockFile": ""
40
+ }
41
+ ]
42
+ },
43
+ {
44
+ "name": "iamServiceUpdateSMTPServer",
45
+ "protocol": "REST",
46
+ "method": "PUT",
47
+ "entitypath": "{base_path}/{version}/iam/smtp-server/{pathv1}?{query}",
48
+ "requestSchema": "schema.json",
49
+ "responseSchema": "schema.json",
50
+ "timeout": 0,
51
+ "sendEmpty": false,
52
+ "requestDatatype": "JSON",
53
+ "responseDatatype": "JSON",
54
+ "headers": {},
55
+ "responseObjects": [
56
+ {
57
+ "type": "default",
58
+ "key": "",
59
+ "mockFile": ""
60
+ }
61
+ ]
62
+ },
63
+ {
64
+ "name": "iamServiceGetSMTPServer",
65
+ "protocol": "REST",
66
+ "method": "GET",
67
+ "entitypath": "{base_path}/{version}/iam/smtp-server/{pathv1}?{query}",
68
+ "requestSchema": "schema.json",
69
+ "responseSchema": "schema.json",
70
+ "timeout": 0,
71
+ "sendEmpty": false,
72
+ "sendGetBody": false,
73
+ "requestDatatype": "JSON",
74
+ "responseDatatype": "JSON",
75
+ "headers": {},
76
+ "responseObjects": [
77
+ {
78
+ "type": "default",
79
+ "key": "",
80
+ "mockFile": ""
81
+ }
82
+ ]
83
+ },
84
+ {
85
+ "name": "iamServiceDeleteSMTPServer",
86
+ "protocol": "REST",
87
+ "method": "DELETE",
88
+ "entitypath": "{base_path}/{version}/iam/smtp-server/{pathv1}?{query}",
89
+ "requestSchema": "schema.json",
90
+ "responseSchema": "schema.json",
91
+ "timeout": 0,
92
+ "sendEmpty": false,
93
+ "requestDatatype": "JSON",
94
+ "responseDatatype": "JSON",
95
+ "headers": {},
96
+ "responseObjects": [
97
+ {
98
+ "type": "default",
99
+ "key": "",
100
+ "mockFile": ""
101
+ }
102
+ ]
103
+ },
104
+ {
105
+ "name": "iamServiceBulkListOidcSetting",
106
+ "protocol": "REST",
107
+ "method": "POST",
108
+ "entitypath": "{base_path}/{version}/iam/bulk-list-oidc-setting?{query}",
109
+ "requestSchema": "schema.json",
110
+ "responseSchema": "schema.json",
111
+ "timeout": 0,
112
+ "sendEmpty": false,
113
+ "requestDatatype": "JSON",
114
+ "responseDatatype": "JSON",
115
+ "headers": {},
116
+ "responseObjects": [
117
+ {
118
+ "type": "default",
119
+ "key": "",
120
+ "mockFile": ""
121
+ }
122
+ ]
123
+ },
124
+ {
125
+ "name": "iamServiceCreateRoleassignmentUserDetailRef",
126
+ "protocol": "REST",
127
+ "method": "POST",
128
+ "entitypath": "{base_path}/{version}/iam/roleassignment-user-detail?{query}",
129
+ "requestSchema": "schema.json",
130
+ "responseSchema": "schema.json",
131
+ "timeout": 0,
132
+ "sendEmpty": false,
133
+ "requestDatatype": "JSON",
134
+ "responseDatatype": "JSON",
135
+ "headers": {},
136
+ "responseObjects": [
137
+ {
138
+ "type": "default",
139
+ "key": "",
140
+ "mockFile": ""
141
+ }
142
+ ]
143
+ },
144
+ {
145
+ "name": "iamServiceBulkListRoleassignment",
146
+ "protocol": "REST",
147
+ "method": "POST",
148
+ "entitypath": "{base_path}/{version}/iam/bulk-list-roleassignment?{query}",
149
+ "requestSchema": "schema.json",
150
+ "responseSchema": "schema.json",
151
+ "timeout": 0,
152
+ "sendEmpty": false,
153
+ "requestDatatype": "JSON",
154
+ "responseDatatype": "JSON",
155
+ "headers": {},
156
+ "responseObjects": [
157
+ {
158
+ "type": "default",
159
+ "key": "",
160
+ "mockFile": ""
161
+ }
162
+ ]
163
+ },
164
+ {
165
+ "name": "iamServiceDeleteRoleassignmentUserGroupRef",
166
+ "protocol": "REST",
167
+ "method": "DELETE",
168
+ "entitypath": "{base_path}/{version}/iam/roleassignment-user-group/{pathv1}?{query}",
169
+ "requestSchema": "schema.json",
170
+ "responseSchema": "schema.json",
171
+ "timeout": 0,
172
+ "sendEmpty": false,
173
+ "requestDatatype": "JSON",
174
+ "responseDatatype": "JSON",
175
+ "headers": {},
176
+ "responseObjects": [
177
+ {
178
+ "type": "default",
179
+ "key": "",
180
+ "mockFile": ""
181
+ }
182
+ ]
183
+ },
184
+ {
185
+ "name": "iamServiceUpdateRole",
186
+ "protocol": "REST",
187
+ "method": "PUT",
188
+ "entitypath": "{base_path}/{version}/iam/role/{pathv1}?{query}",
189
+ "requestSchema": "schema.json",
190
+ "responseSchema": "schema.json",
191
+ "timeout": 0,
192
+ "sendEmpty": false,
193
+ "requestDatatype": "JSON",
194
+ "responseDatatype": "JSON",
195
+ "headers": {},
196
+ "responseObjects": [
197
+ {
198
+ "type": "default",
199
+ "key": "",
200
+ "mockFile": ""
201
+ }
202
+ ]
203
+ },
204
+ {
205
+ "name": "iamServiceGetRole",
206
+ "protocol": "REST",
207
+ "method": "GET",
208
+ "entitypath": "{base_path}/{version}/iam/role/{pathv1}?{query}",
209
+ "requestSchema": "schema.json",
210
+ "responseSchema": "schema.json",
211
+ "timeout": 0,
212
+ "sendEmpty": false,
213
+ "sendGetBody": false,
214
+ "requestDatatype": "JSON",
215
+ "responseDatatype": "JSON",
216
+ "headers": {},
217
+ "responseObjects": [
218
+ {
219
+ "type": "default",
220
+ "key": "",
221
+ "mockFile": ""
222
+ }
223
+ ]
224
+ },
225
+ {
226
+ "name": "iamServiceDeleteRole",
227
+ "protocol": "REST",
228
+ "method": "DELETE",
229
+ "entitypath": "{base_path}/{version}/iam/role/{pathv1}?{query}",
230
+ "requestSchema": "schema.json",
231
+ "responseSchema": "schema.json",
232
+ "timeout": 0,
233
+ "sendEmpty": false,
234
+ "requestDatatype": "JSON",
235
+ "responseDatatype": "JSON",
236
+ "headers": {},
237
+ "responseObjects": [
238
+ {
239
+ "type": "default",
240
+ "key": "",
241
+ "mockFile": ""
242
+ }
243
+ ]
244
+ },
245
+ {
246
+ "name": "iamServiceRefUpdate",
247
+ "protocol": "REST",
248
+ "method": "POST",
249
+ "entitypath": "{base_path}/{version}/iam/ref-update?{query}",
250
+ "requestSchema": "schema.json",
251
+ "responseSchema": "schema.json",
252
+ "timeout": 0,
253
+ "sendEmpty": false,
254
+ "requestDatatype": "JSON",
255
+ "responseDatatype": "JSON",
256
+ "headers": {},
257
+ "responseObjects": [
258
+ {
259
+ "type": "default",
260
+ "key": "",
261
+ "mockFile": ""
262
+ }
263
+ ]
264
+ },
265
+ {
266
+ "name": "iamServiceCreateRoleassignmentUserRef",
267
+ "protocol": "REST",
268
+ "method": "POST",
269
+ "entitypath": "{base_path}/{version}/iam/roleassignment-user?{query}",
270
+ "requestSchema": "schema.json",
271
+ "responseSchema": "schema.json",
272
+ "timeout": 0,
273
+ "sendEmpty": false,
274
+ "requestDatatype": "JSON",
275
+ "responseDatatype": "JSON",
276
+ "headers": {},
277
+ "responseObjects": [
278
+ {
279
+ "type": "default",
280
+ "key": "",
281
+ "mockFile": ""
282
+ }
283
+ ]
284
+ },
285
+ {
286
+ "name": "iamServiceUpdateRoleassignment",
287
+ "protocol": "REST",
288
+ "method": "PUT",
289
+ "entitypath": "{base_path}/{version}/iam/roleassignment/{pathv1}?{query}",
290
+ "requestSchema": "schema.json",
291
+ "responseSchema": "schema.json",
292
+ "timeout": 0,
293
+ "sendEmpty": false,
294
+ "requestDatatype": "JSON",
295
+ "responseDatatype": "JSON",
296
+ "headers": {},
297
+ "responseObjects": [
298
+ {
299
+ "type": "default",
300
+ "key": "",
301
+ "mockFile": ""
302
+ }
303
+ ]
304
+ },
305
+ {
306
+ "name": "iamServiceGetRoleassignment",
307
+ "protocol": "REST",
308
+ "method": "GET",
309
+ "entitypath": "{base_path}/{version}/iam/roleassignment/{pathv1}?{query}",
310
+ "requestSchema": "schema.json",
311
+ "responseSchema": "schema.json",
312
+ "timeout": 0,
313
+ "sendEmpty": false,
314
+ "sendGetBody": false,
315
+ "requestDatatype": "JSON",
316
+ "responseDatatype": "JSON",
317
+ "headers": {},
318
+ "responseObjects": [
319
+ {
320
+ "type": "default",
321
+ "key": "",
322
+ "mockFile": ""
323
+ }
324
+ ]
325
+ },
326
+ {
327
+ "name": "iamServiceDeleteRoleassignment",
328
+ "protocol": "REST",
329
+ "method": "DELETE",
330
+ "entitypath": "{base_path}/{version}/iam/roleassignment/{pathv1}?{query}",
331
+ "requestSchema": "schema.json",
332
+ "responseSchema": "schema.json",
333
+ "timeout": 0,
334
+ "sendEmpty": false,
335
+ "requestDatatype": "JSON",
336
+ "responseDatatype": "JSON",
337
+ "headers": {},
338
+ "responseObjects": [
339
+ {
340
+ "type": "default",
341
+ "key": "",
342
+ "mockFile": ""
343
+ }
344
+ ]
345
+ },
346
+ {
347
+ "name": "iamServiceUpdateEmailTemplate",
348
+ "protocol": "REST",
349
+ "method": "PUT",
350
+ "entitypath": "{base_path}/{version}/iam/email-template/{pathv1}?{query}",
351
+ "requestSchema": "schema.json",
352
+ "responseSchema": "schema.json",
353
+ "timeout": 0,
354
+ "sendEmpty": false,
355
+ "requestDatatype": "JSON",
356
+ "responseDatatype": "JSON",
357
+ "headers": {},
358
+ "responseObjects": [
359
+ {
360
+ "type": "default",
361
+ "key": "",
362
+ "mockFile": ""
363
+ }
364
+ ]
365
+ },
366
+ {
367
+ "name": "iamServiceGetEmailTemplate",
368
+ "protocol": "REST",
369
+ "method": "GET",
370
+ "entitypath": "{base_path}/{version}/iam/email-template/{pathv1}?{query}",
371
+ "requestSchema": "schema.json",
372
+ "responseSchema": "schema.json",
373
+ "timeout": 0,
374
+ "sendEmpty": false,
375
+ "sendGetBody": false,
376
+ "requestDatatype": "JSON",
377
+ "responseDatatype": "JSON",
378
+ "headers": {},
379
+ "responseObjects": [
380
+ {
381
+ "type": "default",
382
+ "key": "",
383
+ "mockFile": ""
384
+ }
385
+ ]
386
+ },
387
+ {
388
+ "name": "iamServiceDeleteEmailTemplate",
389
+ "protocol": "REST",
390
+ "method": "DELETE",
391
+ "entitypath": "{base_path}/{version}/iam/email-template/{pathv1}?{query}",
392
+ "requestSchema": "schema.json",
393
+ "responseSchema": "schema.json",
394
+ "timeout": 0,
395
+ "sendEmpty": false,
396
+ "requestDatatype": "JSON",
397
+ "responseDatatype": "JSON",
398
+ "headers": {},
399
+ "responseObjects": [
400
+ {
401
+ "type": "default",
402
+ "key": "",
403
+ "mockFile": ""
404
+ }
405
+ ]
406
+ },
407
+ {
408
+ "name": "iamServiceUpdateScope",
409
+ "protocol": "REST",
410
+ "method": "PUT",
411
+ "entitypath": "{base_path}/{version}/iam/scope/{pathv1}?{query}",
412
+ "requestSchema": "schema.json",
413
+ "responseSchema": "schema.json",
414
+ "timeout": 0,
415
+ "sendEmpty": false,
416
+ "requestDatatype": "JSON",
417
+ "responseDatatype": "JSON",
418
+ "headers": {},
419
+ "responseObjects": [
420
+ {
421
+ "type": "default",
422
+ "key": "",
423
+ "mockFile": ""
424
+ }
425
+ ]
426
+ },
427
+ {
428
+ "name": "iamServiceGetScope",
429
+ "protocol": "REST",
430
+ "method": "GET",
431
+ "entitypath": "{base_path}/{version}/iam/scope/{pathv1}?{query}",
432
+ "requestSchema": "schema.json",
433
+ "responseSchema": "schema.json",
434
+ "timeout": 0,
435
+ "sendEmpty": false,
436
+ "sendGetBody": false,
437
+ "requestDatatype": "JSON",
438
+ "responseDatatype": "JSON",
439
+ "headers": {},
440
+ "responseObjects": [
441
+ {
442
+ "type": "default",
443
+ "key": "",
444
+ "mockFile": ""
445
+ }
446
+ ]
447
+ },
448
+ {
449
+ "name": "iamServiceDeleteScope",
450
+ "protocol": "REST",
451
+ "method": "DELETE",
452
+ "entitypath": "{base_path}/{version}/iam/scope/{pathv1}?{query}",
453
+ "requestSchema": "schema.json",
454
+ "responseSchema": "schema.json",
455
+ "timeout": 0,
456
+ "sendEmpty": false,
457
+ "requestDatatype": "JSON",
458
+ "responseDatatype": "JSON",
459
+ "headers": {},
460
+ "responseObjects": [
461
+ {
462
+ "type": "default",
463
+ "key": "",
464
+ "mockFile": ""
465
+ }
466
+ ]
467
+ },
468
+ {
469
+ "name": "iamServiceUpdateRevokeEvent",
470
+ "protocol": "REST",
471
+ "method": "PUT",
472
+ "entitypath": "{base_path}/{version}/iam/revoke-event/{pathv1}?{query}",
473
+ "requestSchema": "schema.json",
474
+ "responseSchema": "schema.json",
475
+ "timeout": 0,
476
+ "sendEmpty": false,
477
+ "requestDatatype": "JSON",
478
+ "responseDatatype": "JSON",
479
+ "headers": {},
480
+ "responseObjects": [
481
+ {
482
+ "type": "default",
483
+ "key": "",
484
+ "mockFile": ""
485
+ }
486
+ ]
487
+ },
488
+ {
489
+ "name": "iamServiceGetRevokeEvent",
490
+ "protocol": "REST",
491
+ "method": "GET",
492
+ "entitypath": "{base_path}/{version}/iam/revoke-event/{pathv1}?{query}",
493
+ "requestSchema": "schema.json",
494
+ "responseSchema": "schema.json",
495
+ "timeout": 0,
496
+ "sendEmpty": false,
497
+ "sendGetBody": false,
498
+ "requestDatatype": "JSON",
499
+ "responseDatatype": "JSON",
500
+ "headers": {},
501
+ "responseObjects": [
502
+ {
503
+ "type": "default",
504
+ "key": "",
505
+ "mockFile": ""
506
+ }
507
+ ]
508
+ },
509
+ {
510
+ "name": "iamServiceDeleteRevokeEvent",
511
+ "protocol": "REST",
512
+ "method": "DELETE",
513
+ "entitypath": "{base_path}/{version}/iam/revoke-event/{pathv1}?{query}",
514
+ "requestSchema": "schema.json",
515
+ "responseSchema": "schema.json",
516
+ "timeout": 0,
517
+ "sendEmpty": false,
518
+ "requestDatatype": "JSON",
519
+ "responseDatatype": "JSON",
520
+ "headers": {},
521
+ "responseObjects": [
522
+ {
523
+ "type": "default",
524
+ "key": "",
525
+ "mockFile": ""
526
+ }
527
+ ]
528
+ },
529
+ {
530
+ "name": "iamServiceCreateOidcSetting",
531
+ "protocol": "REST",
532
+ "method": "POST",
533
+ "entitypath": "{base_path}/{version}/iam/oidc-setting?{query}",
534
+ "requestSchema": "schema.json",
535
+ "responseSchema": "schema.json",
536
+ "timeout": 0,
537
+ "sendEmpty": false,
538
+ "requestDatatype": "JSON",
539
+ "responseDatatype": "JSON",
540
+ "headers": {},
541
+ "responseObjects": [
542
+ {
543
+ "type": "default",
544
+ "key": "",
545
+ "mockFile": ""
546
+ }
547
+ ]
548
+ },
549
+ {
550
+ "name": "iamServiceListOidcSetting",
551
+ "protocol": "REST",
552
+ "method": "GET",
553
+ "entitypath": "{base_path}/{version}/iam/oidc-setting?{query}",
554
+ "requestSchema": "schema.json",
555
+ "responseSchema": "schema.json",
556
+ "timeout": 0,
557
+ "sendEmpty": false,
558
+ "sendGetBody": false,
559
+ "requestDatatype": "JSON",
560
+ "responseDatatype": "JSON",
561
+ "headers": {},
562
+ "responseObjects": [
563
+ {
564
+ "type": "default",
565
+ "key": "",
566
+ "mockFile": ""
567
+ }
568
+ ]
569
+ },
570
+ {
571
+ "name": "iamServiceListUserView",
572
+ "protocol": "REST",
573
+ "method": "GET",
574
+ "entitypath": "{base_path}/{version}/iam/user-view?{query}",
575
+ "requestSchema": "schema.json",
576
+ "responseSchema": "schema.json",
577
+ "timeout": 0,
578
+ "sendEmpty": false,
579
+ "sendGetBody": false,
580
+ "requestDatatype": "JSON",
581
+ "responseDatatype": "JSON",
582
+ "headers": {},
583
+ "responseObjects": [
584
+ {
585
+ "type": "default",
586
+ "key": "",
587
+ "mockFile": ""
588
+ }
589
+ ]
590
+ },
591
+ {
592
+ "name": "iamServiceDeleteOidcSettingRoleRef",
593
+ "protocol": "REST",
594
+ "method": "DELETE",
595
+ "entitypath": "{base_path}/{version}/iam/oidc-setting-role/{pathv1}?{query}",
596
+ "requestSchema": "schema.json",
597
+ "responseSchema": "schema.json",
598
+ "timeout": 0,
599
+ "sendEmpty": false,
600
+ "requestDatatype": "JSON",
601
+ "responseDatatype": "JSON",
602
+ "headers": {},
603
+ "responseObjects": [
604
+ {
605
+ "type": "default",
606
+ "key": "",
607
+ "mockFile": ""
608
+ }
609
+ ]
610
+ },
611
+ {
612
+ "name": "iamServiceBulkListRevokeEvent",
613
+ "protocol": "REST",
614
+ "method": "POST",
615
+ "entitypath": "{base_path}/{version}/iam/bulk-list-revoke-event?{query}",
616
+ "requestSchema": "schema.json",
617
+ "responseSchema": "schema.json",
618
+ "timeout": 0,
619
+ "sendEmpty": false,
620
+ "requestDatatype": "JSON",
621
+ "responseDatatype": "JSON",
622
+ "headers": {},
623
+ "responseObjects": [
624
+ {
625
+ "type": "default",
626
+ "key": "",
627
+ "mockFile": ""
628
+ }
629
+ ]
630
+ },
631
+ {
632
+ "name": "iamServiceGetUserView",
633
+ "protocol": "REST",
634
+ "method": "GET",
635
+ "entitypath": "{base_path}/{version}/iam/user-view/{pathv1}?{query}",
636
+ "requestSchema": "schema.json",
637
+ "responseSchema": "schema.json",
638
+ "timeout": 0,
639
+ "sendEmpty": false,
640
+ "sendGetBody": false,
641
+ "requestDatatype": "JSON",
642
+ "responseDatatype": "JSON",
643
+ "headers": {},
644
+ "responseObjects": [
645
+ {
646
+ "type": "default",
647
+ "key": "",
648
+ "mockFile": ""
649
+ }
650
+ ]
651
+ },
652
+ {
653
+ "name": "iamServiceUpdateScopeGroup",
654
+ "protocol": "REST",
655
+ "method": "PUT",
656
+ "entitypath": "{base_path}/{version}/iam/scope-group/{pathv1}?{query}",
657
+ "requestSchema": "schema.json",
658
+ "responseSchema": "schema.json",
659
+ "timeout": 0,
660
+ "sendEmpty": false,
661
+ "requestDatatype": "JSON",
662
+ "responseDatatype": "JSON",
663
+ "headers": {},
664
+ "responseObjects": [
665
+ {
666
+ "type": "default",
667
+ "key": "",
668
+ "mockFile": ""
669
+ }
670
+ ]
671
+ },
672
+ {
673
+ "name": "iamServiceGetScopeGroup",
674
+ "protocol": "REST",
675
+ "method": "GET",
676
+ "entitypath": "{base_path}/{version}/iam/scope-group/{pathv1}?{query}",
677
+ "requestSchema": "schema.json",
678
+ "responseSchema": "schema.json",
679
+ "timeout": 0,
680
+ "sendEmpty": false,
681
+ "sendGetBody": false,
682
+ "requestDatatype": "JSON",
683
+ "responseDatatype": "JSON",
684
+ "headers": {},
685
+ "responseObjects": [
686
+ {
687
+ "type": "default",
688
+ "key": "",
689
+ "mockFile": ""
690
+ }
691
+ ]
692
+ },
693
+ {
694
+ "name": "iamServiceDeleteScopeGroup",
695
+ "protocol": "REST",
696
+ "method": "DELETE",
697
+ "entitypath": "{base_path}/{version}/iam/scope-group/{pathv1}?{query}",
698
+ "requestSchema": "schema.json",
699
+ "responseSchema": "schema.json",
700
+ "timeout": 0,
701
+ "sendEmpty": false,
702
+ "requestDatatype": "JSON",
703
+ "responseDatatype": "JSON",
704
+ "headers": {},
705
+ "responseObjects": [
706
+ {
707
+ "type": "default",
708
+ "key": "",
709
+ "mockFile": ""
710
+ }
711
+ ]
712
+ },
713
+ {
714
+ "name": "iamServiceBulkListDeletedResource",
715
+ "protocol": "REST",
716
+ "method": "POST",
717
+ "entitypath": "{base_path}/{version}/iam/bulk-list-deleted-resource?{query}",
718
+ "requestSchema": "schema.json",
719
+ "responseSchema": "schema.json",
720
+ "timeout": 0,
721
+ "sendEmpty": false,
722
+ "requestDatatype": "JSON",
723
+ "responseDatatype": "JSON",
724
+ "headers": {},
725
+ "responseObjects": [
726
+ {
727
+ "type": "default",
728
+ "key": "",
729
+ "mockFile": ""
730
+ }
731
+ ]
732
+ },
733
+ {
734
+ "name": "iamServiceBulkListSaml",
735
+ "protocol": "REST",
736
+ "method": "POST",
737
+ "entitypath": "{base_path}/{version}/iam/bulk-list-saml?{query}",
738
+ "requestSchema": "schema.json",
739
+ "responseSchema": "schema.json",
740
+ "timeout": 0,
741
+ "sendEmpty": false,
742
+ "requestDatatype": "JSON",
743
+ "responseDatatype": "JSON",
744
+ "headers": {},
745
+ "responseObjects": [
746
+ {
747
+ "type": "default",
748
+ "key": "",
749
+ "mockFile": ""
750
+ }
751
+ ]
752
+ },
753
+ {
754
+ "name": "iamServiceDeleteRoleassignmentUserRef",
755
+ "protocol": "REST",
756
+ "method": "DELETE",
757
+ "entitypath": "{base_path}/{version}/iam/roleassignment-user/{pathv1}?{query}",
758
+ "requestSchema": "schema.json",
759
+ "responseSchema": "schema.json",
760
+ "timeout": 0,
761
+ "sendEmpty": false,
762
+ "requestDatatype": "JSON",
763
+ "responseDatatype": "JSON",
764
+ "headers": {},
765
+ "responseObjects": [
766
+ {
767
+ "type": "default",
768
+ "key": "",
769
+ "mockFile": ""
770
+ }
771
+ ]
772
+ },
773
+ {
774
+ "name": "iamServiceBulkListSMTPServer",
775
+ "protocol": "REST",
776
+ "method": "POST",
777
+ "entitypath": "{base_path}/{version}/iam/bulk-list-smtp-server?{query}",
778
+ "requestSchema": "schema.json",
779
+ "responseSchema": "schema.json",
780
+ "timeout": 0,
781
+ "sendEmpty": false,
782
+ "requestDatatype": "JSON",
783
+ "responseDatatype": "JSON",
784
+ "headers": {},
785
+ "responseObjects": [
786
+ {
787
+ "type": "default",
788
+ "key": "",
789
+ "mockFile": ""
790
+ }
791
+ ]
792
+ },
793
+ {
794
+ "name": "iamServiceCreateRoleassignmentScopeRef",
795
+ "protocol": "REST",
796
+ "method": "POST",
797
+ "entitypath": "{base_path}/{version}/iam/roleassignment-scope?{query}",
798
+ "requestSchema": "schema.json",
799
+ "responseSchema": "schema.json",
800
+ "timeout": 0,
801
+ "sendEmpty": false,
802
+ "requestDatatype": "JSON",
803
+ "responseDatatype": "JSON",
804
+ "headers": {},
805
+ "responseObjects": [
806
+ {
807
+ "type": "default",
808
+ "key": "",
809
+ "mockFile": ""
810
+ }
811
+ ]
812
+ },
813
+ {
814
+ "name": "iamServiceCreateEmailTemplate",
815
+ "protocol": "REST",
816
+ "method": "POST",
817
+ "entitypath": "{base_path}/{version}/iam/email-template?{query}",
818
+ "requestSchema": "schema.json",
819
+ "responseSchema": "schema.json",
820
+ "timeout": 0,
821
+ "sendEmpty": false,
822
+ "requestDatatype": "JSON",
823
+ "responseDatatype": "JSON",
824
+ "headers": {},
825
+ "responseObjects": [
826
+ {
827
+ "type": "default",
828
+ "key": "",
829
+ "mockFile": ""
830
+ }
831
+ ]
832
+ },
833
+ {
834
+ "name": "iamServiceListEmailTemplate",
835
+ "protocol": "REST",
836
+ "method": "GET",
837
+ "entitypath": "{base_path}/{version}/iam/email-template?{query}",
838
+ "requestSchema": "schema.json",
839
+ "responseSchema": "schema.json",
840
+ "timeout": 0,
841
+ "sendEmpty": false,
842
+ "sendGetBody": 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": "iamServiceCreateUserGroup",
856
+ "protocol": "REST",
857
+ "method": "POST",
858
+ "entitypath": "{base_path}/{version}/iam/user-group?{query}",
859
+ "requestSchema": "schema.json",
860
+ "responseSchema": "schema.json",
861
+ "timeout": 0,
862
+ "sendEmpty": false,
863
+ "requestDatatype": "JSON",
864
+ "responseDatatype": "JSON",
865
+ "headers": {},
866
+ "responseObjects": [
867
+ {
868
+ "type": "default",
869
+ "key": "",
870
+ "mockFile": ""
871
+ }
872
+ ]
873
+ },
874
+ {
875
+ "name": "iamServiceListUserGroup",
876
+ "protocol": "REST",
877
+ "method": "GET",
878
+ "entitypath": "{base_path}/{version}/iam/user-group?{query}",
879
+ "requestSchema": "schema.json",
880
+ "responseSchema": "schema.json",
881
+ "timeout": 0,
882
+ "sendEmpty": false,
883
+ "sendGetBody": false,
884
+ "requestDatatype": "JSON",
885
+ "responseDatatype": "JSON",
886
+ "headers": {},
887
+ "responseObjects": [
888
+ {
889
+ "type": "default",
890
+ "key": "",
891
+ "mockFile": ""
892
+ }
893
+ ]
894
+ },
895
+ {
896
+ "name": "iamServiceUpdateActivationCode",
897
+ "protocol": "REST",
898
+ "method": "PUT",
899
+ "entitypath": "{base_path}/{version}/iam/activation-code/{pathv1}?{query}",
900
+ "requestSchema": "schema.json",
901
+ "responseSchema": "schema.json",
902
+ "timeout": 0,
903
+ "sendEmpty": false,
904
+ "requestDatatype": "JSON",
905
+ "responseDatatype": "JSON",
906
+ "headers": {},
907
+ "responseObjects": [
908
+ {
909
+ "type": "default",
910
+ "key": "",
911
+ "mockFile": ""
912
+ }
913
+ ]
914
+ },
915
+ {
916
+ "name": "iamServiceGetActivationCode",
917
+ "protocol": "REST",
918
+ "method": "GET",
919
+ "entitypath": "{base_path}/{version}/iam/activation-code/{pathv1}?{query}",
920
+ "requestSchema": "schema.json",
921
+ "responseSchema": "schema.json",
922
+ "timeout": 0,
923
+ "sendEmpty": false,
924
+ "sendGetBody": 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": "iamServiceDeleteActivationCode",
938
+ "protocol": "REST",
939
+ "method": "DELETE",
940
+ "entitypath": "{base_path}/{version}/iam/activation-code/{pathv1}?{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": "iamServiceExportUserView",
958
+ "protocol": "REST",
959
+ "method": "POST",
960
+ "entitypath": "{base_path}/{version}/iam/user-view/export?{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": "mockdatafiles/iamServiceExportUserView-default.json"
973
+ }
974
+ ]
975
+ },
976
+ {
977
+ "name": "iamServiceDeleteRoleassignmentScopeGroupRef",
978
+ "protocol": "REST",
979
+ "method": "DELETE",
980
+ "entitypath": "{base_path}/{version}/iam/roleassignment-scope-group/{pathv1}?{query}",
981
+ "requestSchema": "schema.json",
982
+ "responseSchema": "schema.json",
983
+ "timeout": 0,
984
+ "sendEmpty": false,
985
+ "requestDatatype": "JSON",
986
+ "responseDatatype": "JSON",
987
+ "headers": {},
988
+ "responseObjects": [
989
+ {
990
+ "type": "default",
991
+ "key": "",
992
+ "mockFile": ""
993
+ }
994
+ ]
995
+ },
996
+ {
997
+ "name": "iamServiceCreateRoleassignmentRoleRef",
998
+ "protocol": "REST",
999
+ "method": "POST",
1000
+ "entitypath": "{base_path}/{version}/iam/roleassignment-role?{query}",
1001
+ "requestSchema": "schema.json",
1002
+ "responseSchema": "schema.json",
1003
+ "timeout": 0,
1004
+ "sendEmpty": false,
1005
+ "requestDatatype": "JSON",
1006
+ "responseDatatype": "JSON",
1007
+ "headers": {},
1008
+ "responseObjects": [
1009
+ {
1010
+ "type": "default",
1011
+ "key": "",
1012
+ "mockFile": ""
1013
+ }
1014
+ ]
1015
+ },
1016
+ {
1017
+ "name": "iamServiceDeleteRoleassignmentRoleRef",
1018
+ "protocol": "REST",
1019
+ "method": "DELETE",
1020
+ "entitypath": "{base_path}/{version}/iam/roleassignment-role/{pathv1}?{query}",
1021
+ "requestSchema": "schema.json",
1022
+ "responseSchema": "schema.json",
1023
+ "timeout": 0,
1024
+ "sendEmpty": false,
1025
+ "requestDatatype": "JSON",
1026
+ "responseDatatype": "JSON",
1027
+ "headers": {},
1028
+ "responseObjects": [
1029
+ {
1030
+ "type": "default",
1031
+ "key": "",
1032
+ "mockFile": ""
1033
+ }
1034
+ ]
1035
+ },
1036
+ {
1037
+ "name": "iamServiceCreateSamlRoleRef",
1038
+ "protocol": "REST",
1039
+ "method": "POST",
1040
+ "entitypath": "{base_path}/{version}/iam/saml-role?{query}",
1041
+ "requestSchema": "schema.json",
1042
+ "responseSchema": "schema.json",
1043
+ "timeout": 0,
1044
+ "sendEmpty": false,
1045
+ "requestDatatype": "JSON",
1046
+ "responseDatatype": "JSON",
1047
+ "headers": {},
1048
+ "responseObjects": [
1049
+ {
1050
+ "type": "default",
1051
+ "key": "",
1052
+ "mockFile": ""
1053
+ }
1054
+ ]
1055
+ },
1056
+ {
1057
+ "name": "iamServiceCreateLdapServer",
1058
+ "protocol": "REST",
1059
+ "method": "POST",
1060
+ "entitypath": "{base_path}/{version}/iam/ldap-server?{query}",
1061
+ "requestSchema": "schema.json",
1062
+ "responseSchema": "schema.json",
1063
+ "timeout": 0,
1064
+ "sendEmpty": false,
1065
+ "requestDatatype": "JSON",
1066
+ "responseDatatype": "JSON",
1067
+ "headers": {},
1068
+ "responseObjects": [
1069
+ {
1070
+ "type": "default",
1071
+ "key": "",
1072
+ "mockFile": ""
1073
+ }
1074
+ ]
1075
+ },
1076
+ {
1077
+ "name": "iamServiceListLdapServer",
1078
+ "protocol": "REST",
1079
+ "method": "GET",
1080
+ "entitypath": "{base_path}/{version}/iam/ldap-server?{query}",
1081
+ "requestSchema": "schema.json",
1082
+ "responseSchema": "schema.json",
1083
+ "timeout": 0,
1084
+ "sendEmpty": false,
1085
+ "sendGetBody": false,
1086
+ "requestDatatype": "JSON",
1087
+ "responseDatatype": "JSON",
1088
+ "headers": {},
1089
+ "responseObjects": [
1090
+ {
1091
+ "type": "default",
1092
+ "key": "",
1093
+ "mockFile": ""
1094
+ }
1095
+ ]
1096
+ },
1097
+ {
1098
+ "name": "iamServiceBulkRefUpdate",
1099
+ "protocol": "REST",
1100
+ "method": "POST",
1101
+ "entitypath": "{base_path}/{version}/iam/bulk-ref-update?{query}",
1102
+ "requestSchema": "schema.json",
1103
+ "responseSchema": "schema.json",
1104
+ "timeout": 0,
1105
+ "sendEmpty": false,
1106
+ "requestDatatype": "JSON",
1107
+ "responseDatatype": "JSON",
1108
+ "headers": {},
1109
+ "responseObjects": [
1110
+ {
1111
+ "type": "default",
1112
+ "key": "",
1113
+ "mockFile": ""
1114
+ }
1115
+ ]
1116
+ },
1117
+ {
1118
+ "name": "iamServiceUpdateSaml",
1119
+ "protocol": "REST",
1120
+ "method": "PUT",
1121
+ "entitypath": "{base_path}/{version}/iam/saml/{pathv1}?{query}",
1122
+ "requestSchema": "schema.json",
1123
+ "responseSchema": "schema.json",
1124
+ "timeout": 0,
1125
+ "sendEmpty": false,
1126
+ "requestDatatype": "JSON",
1127
+ "responseDatatype": "JSON",
1128
+ "headers": {},
1129
+ "responseObjects": [
1130
+ {
1131
+ "type": "default",
1132
+ "key": "",
1133
+ "mockFile": ""
1134
+ }
1135
+ ]
1136
+ },
1137
+ {
1138
+ "name": "iamServiceGetSaml",
1139
+ "protocol": "REST",
1140
+ "method": "GET",
1141
+ "entitypath": "{base_path}/{version}/iam/saml/{pathv1}?{query}",
1142
+ "requestSchema": "schema.json",
1143
+ "responseSchema": "schema.json",
1144
+ "timeout": 0,
1145
+ "sendEmpty": false,
1146
+ "sendGetBody": false,
1147
+ "requestDatatype": "JSON",
1148
+ "responseDatatype": "JSON",
1149
+ "headers": {},
1150
+ "responseObjects": [
1151
+ {
1152
+ "type": "default",
1153
+ "key": "",
1154
+ "mockFile": ""
1155
+ }
1156
+ ]
1157
+ },
1158
+ {
1159
+ "name": "iamServiceDeleteSaml",
1160
+ "protocol": "REST",
1161
+ "method": "DELETE",
1162
+ "entitypath": "{base_path}/{version}/iam/saml/{pathv1}?{query}",
1163
+ "requestSchema": "schema.json",
1164
+ "responseSchema": "schema.json",
1165
+ "timeout": 0,
1166
+ "sendEmpty": false,
1167
+ "requestDatatype": "JSON",
1168
+ "responseDatatype": "JSON",
1169
+ "headers": {},
1170
+ "responseObjects": [
1171
+ {
1172
+ "type": "default",
1173
+ "key": "",
1174
+ "mockFile": ""
1175
+ }
1176
+ ]
1177
+ },
1178
+ {
1179
+ "name": "iamServiceCreateUserGroupUserRef",
1180
+ "protocol": "REST",
1181
+ "method": "POST",
1182
+ "entitypath": "{base_path}/{version}/iam/user-group-user?{query}",
1183
+ "requestSchema": "schema.json",
1184
+ "responseSchema": "schema.json",
1185
+ "timeout": 0,
1186
+ "sendEmpty": false,
1187
+ "requestDatatype": "JSON",
1188
+ "responseDatatype": "JSON",
1189
+ "headers": {},
1190
+ "responseObjects": [
1191
+ {
1192
+ "type": "default",
1193
+ "key": "",
1194
+ "mockFile": ""
1195
+ }
1196
+ ]
1197
+ },
1198
+ {
1199
+ "name": "iamServiceBulkListEmailTemplate",
1200
+ "protocol": "REST",
1201
+ "method": "POST",
1202
+ "entitypath": "{base_path}/{version}/iam/bulk-list-email-template?{query}",
1203
+ "requestSchema": "schema.json",
1204
+ "responseSchema": "schema.json",
1205
+ "timeout": 0,
1206
+ "sendEmpty": false,
1207
+ "requestDatatype": "JSON",
1208
+ "responseDatatype": "JSON",
1209
+ "headers": {},
1210
+ "responseObjects": [
1211
+ {
1212
+ "type": "default",
1213
+ "key": "",
1214
+ "mockFile": ""
1215
+ }
1216
+ ]
1217
+ },
1218
+ {
1219
+ "name": "iamServiceDeleteScopeGroupScopeRef",
1220
+ "protocol": "REST",
1221
+ "method": "DELETE",
1222
+ "entitypath": "{base_path}/{version}/iam/scope-group-scope/{pathv1}?{query}",
1223
+ "requestSchema": "schema.json",
1224
+ "responseSchema": "schema.json",
1225
+ "timeout": 0,
1226
+ "sendEmpty": false,
1227
+ "requestDatatype": "JSON",
1228
+ "responseDatatype": "JSON",
1229
+ "headers": {},
1230
+ "responseObjects": [
1231
+ {
1232
+ "type": "default",
1233
+ "key": "",
1234
+ "mockFile": ""
1235
+ }
1236
+ ]
1237
+ },
1238
+ {
1239
+ "name": "iamServiceBulkListScope",
1240
+ "protocol": "REST",
1241
+ "method": "POST",
1242
+ "entitypath": "{base_path}/{version}/iam/bulk-list-scope?{query}",
1243
+ "requestSchema": "schema.json",
1244
+ "responseSchema": "schema.json",
1245
+ "timeout": 0,
1246
+ "sendEmpty": false,
1247
+ "requestDatatype": "JSON",
1248
+ "responseDatatype": "JSON",
1249
+ "headers": {},
1250
+ "responseObjects": [
1251
+ {
1252
+ "type": "default",
1253
+ "key": "",
1254
+ "mockFile": ""
1255
+ }
1256
+ ]
1257
+ },
1258
+ {
1259
+ "name": "iamServiceUpdateLdapServer",
1260
+ "protocol": "REST",
1261
+ "method": "PUT",
1262
+ "entitypath": "{base_path}/{version}/iam/ldap-server/{pathv1}?{query}",
1263
+ "requestSchema": "schema.json",
1264
+ "responseSchema": "schema.json",
1265
+ "timeout": 0,
1266
+ "sendEmpty": false,
1267
+ "requestDatatype": "JSON",
1268
+ "responseDatatype": "JSON",
1269
+ "headers": {},
1270
+ "responseObjects": [
1271
+ {
1272
+ "type": "default",
1273
+ "key": "",
1274
+ "mockFile": ""
1275
+ }
1276
+ ]
1277
+ },
1278
+ {
1279
+ "name": "iamServiceGetLdapServer",
1280
+ "protocol": "REST",
1281
+ "method": "GET",
1282
+ "entitypath": "{base_path}/{version}/iam/ldap-server/{pathv1}?{query}",
1283
+ "requestSchema": "schema.json",
1284
+ "responseSchema": "schema.json",
1285
+ "timeout": 0,
1286
+ "sendEmpty": false,
1287
+ "sendGetBody": false,
1288
+ "requestDatatype": "JSON",
1289
+ "responseDatatype": "JSON",
1290
+ "headers": {},
1291
+ "responseObjects": [
1292
+ {
1293
+ "type": "default",
1294
+ "key": "",
1295
+ "mockFile": ""
1296
+ }
1297
+ ]
1298
+ },
1299
+ {
1300
+ "name": "iamServiceDeleteLdapServer",
1301
+ "protocol": "REST",
1302
+ "method": "DELETE",
1303
+ "entitypath": "{base_path}/{version}/iam/ldap-server/{pathv1}?{query}",
1304
+ "requestSchema": "schema.json",
1305
+ "responseSchema": "schema.json",
1306
+ "timeout": 0,
1307
+ "sendEmpty": false,
1308
+ "requestDatatype": "JSON",
1309
+ "responseDatatype": "JSON",
1310
+ "headers": {},
1311
+ "responseObjects": [
1312
+ {
1313
+ "type": "default",
1314
+ "key": "",
1315
+ "mockFile": ""
1316
+ }
1317
+ ]
1318
+ },
1319
+ {
1320
+ "name": "iamServiceUpdateUser",
1321
+ "protocol": "REST",
1322
+ "method": "PUT",
1323
+ "entitypath": "{base_path}/{version}/iam/user/{pathv1}?{query}",
1324
+ "requestSchema": "schema.json",
1325
+ "responseSchema": "schema.json",
1326
+ "timeout": 0,
1327
+ "sendEmpty": false,
1328
+ "requestDatatype": "JSON",
1329
+ "responseDatatype": "JSON",
1330
+ "headers": {},
1331
+ "responseObjects": [
1332
+ {
1333
+ "type": "default",
1334
+ "key": "",
1335
+ "mockFile": ""
1336
+ }
1337
+ ]
1338
+ },
1339
+ {
1340
+ "name": "iamServiceGetUser",
1341
+ "protocol": "REST",
1342
+ "method": "GET",
1343
+ "entitypath": "{base_path}/{version}/iam/user/{pathv1}?{query}",
1344
+ "requestSchema": "schema.json",
1345
+ "responseSchema": "schema.json",
1346
+ "timeout": 0,
1347
+ "sendEmpty": false,
1348
+ "sendGetBody": false,
1349
+ "requestDatatype": "JSON",
1350
+ "responseDatatype": "JSON",
1351
+ "headers": {},
1352
+ "responseObjects": [
1353
+ {
1354
+ "type": "default",
1355
+ "key": "",
1356
+ "mockFile": ""
1357
+ }
1358
+ ]
1359
+ },
1360
+ {
1361
+ "name": "iamServiceDeleteUser",
1362
+ "protocol": "REST",
1363
+ "method": "DELETE",
1364
+ "entitypath": "{base_path}/{version}/iam/user/{pathv1}?{query}",
1365
+ "requestSchema": "schema.json",
1366
+ "responseSchema": "schema.json",
1367
+ "timeout": 0,
1368
+ "sendEmpty": false,
1369
+ "requestDatatype": "JSON",
1370
+ "responseDatatype": "JSON",
1371
+ "headers": {},
1372
+ "responseObjects": [
1373
+ {
1374
+ "type": "default",
1375
+ "key": "",
1376
+ "mockFile": ""
1377
+ }
1378
+ ]
1379
+ },
1380
+ {
1381
+ "name": "iamServiceCreateScopeGroupScopeRef",
1382
+ "protocol": "REST",
1383
+ "method": "POST",
1384
+ "entitypath": "{base_path}/{version}/iam/scope-group-scope?{query}",
1385
+ "requestSchema": "schema.json",
1386
+ "responseSchema": "schema.json",
1387
+ "timeout": 0,
1388
+ "sendEmpty": false,
1389
+ "requestDatatype": "JSON",
1390
+ "responseDatatype": "JSON",
1391
+ "headers": {},
1392
+ "responseObjects": [
1393
+ {
1394
+ "type": "default",
1395
+ "key": "",
1396
+ "mockFile": ""
1397
+ }
1398
+ ]
1399
+ },
1400
+ {
1401
+ "name": "iamServiceBulkListScopeGroup",
1402
+ "protocol": "REST",
1403
+ "method": "POST",
1404
+ "entitypath": "{base_path}/{version}/iam/bulk-list-scope-group?{query}",
1405
+ "requestSchema": "schema.json",
1406
+ "responseSchema": "schema.json",
1407
+ "timeout": 0,
1408
+ "sendEmpty": false,
1409
+ "requestDatatype": "JSON",
1410
+ "responseDatatype": "JSON",
1411
+ "headers": {},
1412
+ "responseObjects": [
1413
+ {
1414
+ "type": "default",
1415
+ "key": "",
1416
+ "mockFile": ""
1417
+ }
1418
+ ]
1419
+ },
1420
+ {
1421
+ "name": "iamServiceCreateIdentityProvider",
1422
+ "protocol": "REST",
1423
+ "method": "POST",
1424
+ "entitypath": "{base_path}/{version}/iam/identity-provider?{query}",
1425
+ "requestSchema": "schema.json",
1426
+ "responseSchema": "schema.json",
1427
+ "timeout": 0,
1428
+ "sendEmpty": false,
1429
+ "requestDatatype": "JSON",
1430
+ "responseDatatype": "JSON",
1431
+ "headers": {},
1432
+ "responseObjects": [
1433
+ {
1434
+ "type": "default",
1435
+ "key": "",
1436
+ "mockFile": ""
1437
+ }
1438
+ ]
1439
+ },
1440
+ {
1441
+ "name": "iamServiceListIdentityProvider",
1442
+ "protocol": "REST",
1443
+ "method": "GET",
1444
+ "entitypath": "{base_path}/{version}/iam/identity-provider?{query}",
1445
+ "requestSchema": "schema.json",
1446
+ "responseSchema": "schema.json",
1447
+ "timeout": 0,
1448
+ "sendEmpty": false,
1449
+ "sendGetBody": false,
1450
+ "requestDatatype": "JSON",
1451
+ "responseDatatype": "JSON",
1452
+ "headers": {},
1453
+ "responseObjects": [
1454
+ {
1455
+ "type": "default",
1456
+ "key": "",
1457
+ "mockFile": ""
1458
+ }
1459
+ ]
1460
+ },
1461
+ {
1462
+ "name": "iamServiceDeleteSamlRoleRef",
1463
+ "protocol": "REST",
1464
+ "method": "DELETE",
1465
+ "entitypath": "{base_path}/{version}/iam/saml-role/{pathv1}?{query}",
1466
+ "requestSchema": "schema.json",
1467
+ "responseSchema": "schema.json",
1468
+ "timeout": 0,
1469
+ "sendEmpty": false,
1470
+ "requestDatatype": "JSON",
1471
+ "responseDatatype": "JSON",
1472
+ "headers": {},
1473
+ "responseObjects": [
1474
+ {
1475
+ "type": "default",
1476
+ "key": "",
1477
+ "mockFile": ""
1478
+ }
1479
+ ]
1480
+ },
1481
+ {
1482
+ "name": "iamServiceUpdateUserGroup",
1483
+ "protocol": "REST",
1484
+ "method": "PUT",
1485
+ "entitypath": "{base_path}/{version}/iam/user-group/{pathv1}?{query}",
1486
+ "requestSchema": "schema.json",
1487
+ "responseSchema": "schema.json",
1488
+ "timeout": 0,
1489
+ "sendEmpty": false,
1490
+ "requestDatatype": "JSON",
1491
+ "responseDatatype": "JSON",
1492
+ "headers": {},
1493
+ "responseObjects": [
1494
+ {
1495
+ "type": "default",
1496
+ "key": "",
1497
+ "mockFile": ""
1498
+ }
1499
+ ]
1500
+ },
1501
+ {
1502
+ "name": "iamServiceGetUserGroup",
1503
+ "protocol": "REST",
1504
+ "method": "GET",
1505
+ "entitypath": "{base_path}/{version}/iam/user-group/{pathv1}?{query}",
1506
+ "requestSchema": "schema.json",
1507
+ "responseSchema": "schema.json",
1508
+ "timeout": 0,
1509
+ "sendEmpty": false,
1510
+ "sendGetBody": false,
1511
+ "requestDatatype": "JSON",
1512
+ "responseDatatype": "JSON",
1513
+ "headers": {},
1514
+ "responseObjects": [
1515
+ {
1516
+ "type": "default",
1517
+ "key": "",
1518
+ "mockFile": ""
1519
+ }
1520
+ ]
1521
+ },
1522
+ {
1523
+ "name": "iamServiceDeleteUserGroup",
1524
+ "protocol": "REST",
1525
+ "method": "DELETE",
1526
+ "entitypath": "{base_path}/{version}/iam/user-group/{pathv1}?{query}",
1527
+ "requestSchema": "schema.json",
1528
+ "responseSchema": "schema.json",
1529
+ "timeout": 0,
1530
+ "sendEmpty": false,
1531
+ "requestDatatype": "JSON",
1532
+ "responseDatatype": "JSON",
1533
+ "headers": {},
1534
+ "responseObjects": [
1535
+ {
1536
+ "type": "default",
1537
+ "key": "",
1538
+ "mockFile": ""
1539
+ }
1540
+ ]
1541
+ },
1542
+ {
1543
+ "name": "iamServiceDeleteRoleassignmentScopeRef",
1544
+ "protocol": "REST",
1545
+ "method": "DELETE",
1546
+ "entitypath": "{base_path}/{version}/iam/roleassignment-scope/{pathv1}?{query}",
1547
+ "requestSchema": "schema.json",
1548
+ "responseSchema": "schema.json",
1549
+ "timeout": 0,
1550
+ "sendEmpty": false,
1551
+ "requestDatatype": "JSON",
1552
+ "responseDatatype": "JSON",
1553
+ "headers": {},
1554
+ "responseObjects": [
1555
+ {
1556
+ "type": "default",
1557
+ "key": "",
1558
+ "mockFile": ""
1559
+ }
1560
+ ]
1561
+ },
1562
+ {
1563
+ "name": "iamServiceCreateOidcSettingRoleRef",
1564
+ "protocol": "REST",
1565
+ "method": "POST",
1566
+ "entitypath": "{base_path}/{version}/iam/oidc-setting-role?{query}",
1567
+ "requestSchema": "schema.json",
1568
+ "responseSchema": "schema.json",
1569
+ "timeout": 0,
1570
+ "sendEmpty": false,
1571
+ "requestDatatype": "JSON",
1572
+ "responseDatatype": "JSON",
1573
+ "headers": {},
1574
+ "responseObjects": [
1575
+ {
1576
+ "type": "default",
1577
+ "key": "",
1578
+ "mockFile": ""
1579
+ }
1580
+ ]
1581
+ },
1582
+ {
1583
+ "name": "iamServiceBulkListUserView",
1584
+ "protocol": "REST",
1585
+ "method": "POST",
1586
+ "entitypath": "{base_path}/{version}/iam/bulk-list-user-view?{query}",
1587
+ "requestSchema": "schema.json",
1588
+ "responseSchema": "schema.json",
1589
+ "timeout": 0,
1590
+ "sendEmpty": false,
1591
+ "requestDatatype": "JSON",
1592
+ "responseDatatype": "JSON",
1593
+ "headers": {},
1594
+ "responseObjects": [
1595
+ {
1596
+ "type": "default",
1597
+ "key": "",
1598
+ "mockFile": ""
1599
+ }
1600
+ ]
1601
+ },
1602
+ {
1603
+ "name": "iamServiceCreateUserUserDetailRef",
1604
+ "protocol": "REST",
1605
+ "method": "POST",
1606
+ "entitypath": "{base_path}/{version}/iam/user-user-detail?{query}",
1607
+ "requestSchema": "schema.json",
1608
+ "responseSchema": "schema.json",
1609
+ "timeout": 0,
1610
+ "sendEmpty": false,
1611
+ "requestDatatype": "JSON",
1612
+ "responseDatatype": "JSON",
1613
+ "headers": {},
1614
+ "responseObjects": [
1615
+ {
1616
+ "type": "default",
1617
+ "key": "",
1618
+ "mockFile": ""
1619
+ }
1620
+ ]
1621
+ },
1622
+ {
1623
+ "name": "iamServiceCreateDeletedResource",
1624
+ "protocol": "REST",
1625
+ "method": "POST",
1626
+ "entitypath": "{base_path}/{version}/iam/deleted-resource?{query}",
1627
+ "requestSchema": "schema.json",
1628
+ "responseSchema": "schema.json",
1629
+ "timeout": 0,
1630
+ "sendEmpty": false,
1631
+ "requestDatatype": "JSON",
1632
+ "responseDatatype": "JSON",
1633
+ "headers": {},
1634
+ "responseObjects": [
1635
+ {
1636
+ "type": "default",
1637
+ "key": "",
1638
+ "mockFile": ""
1639
+ }
1640
+ ]
1641
+ },
1642
+ {
1643
+ "name": "iamServiceListDeletedResource",
1644
+ "protocol": "REST",
1645
+ "method": "GET",
1646
+ "entitypath": "{base_path}/{version}/iam/deleted-resource?{query}",
1647
+ "requestSchema": "schema.json",
1648
+ "responseSchema": "schema.json",
1649
+ "timeout": 0,
1650
+ "sendEmpty": false,
1651
+ "sendGetBody": false,
1652
+ "requestDatatype": "JSON",
1653
+ "responseDatatype": "JSON",
1654
+ "headers": {},
1655
+ "responseObjects": [
1656
+ {
1657
+ "type": "default",
1658
+ "key": "",
1659
+ "mockFile": ""
1660
+ }
1661
+ ]
1662
+ },
1663
+ {
1664
+ "name": "iamServiceCreateScope",
1665
+ "protocol": "REST",
1666
+ "method": "POST",
1667
+ "entitypath": "{base_path}/{version}/iam/scope?{query}",
1668
+ "requestSchema": "schema.json",
1669
+ "responseSchema": "schema.json",
1670
+ "timeout": 0,
1671
+ "sendEmpty": false,
1672
+ "requestDatatype": "JSON",
1673
+ "responseDatatype": "JSON",
1674
+ "headers": {},
1675
+ "responseObjects": [
1676
+ {
1677
+ "type": "default",
1678
+ "key": "",
1679
+ "mockFile": ""
1680
+ }
1681
+ ]
1682
+ },
1683
+ {
1684
+ "name": "iamServiceListScope",
1685
+ "protocol": "REST",
1686
+ "method": "GET",
1687
+ "entitypath": "{base_path}/{version}/iam/scope?{query}",
1688
+ "requestSchema": "schema.json",
1689
+ "responseSchema": "schema.json",
1690
+ "timeout": 0,
1691
+ "sendEmpty": false,
1692
+ "sendGetBody": false,
1693
+ "requestDatatype": "JSON",
1694
+ "responseDatatype": "JSON",
1695
+ "headers": {},
1696
+ "responseObjects": [
1697
+ {
1698
+ "type": "default",
1699
+ "key": "",
1700
+ "mockFile": ""
1701
+ }
1702
+ ]
1703
+ },
1704
+ {
1705
+ "name": "iamServiceCreateLastPublishedNotification",
1706
+ "protocol": "REST",
1707
+ "method": "POST",
1708
+ "entitypath": "{base_path}/{version}/iam/last-published-notification?{query}",
1709
+ "requestSchema": "schema.json",
1710
+ "responseSchema": "schema.json",
1711
+ "timeout": 0,
1712
+ "sendEmpty": false,
1713
+ "requestDatatype": "JSON",
1714
+ "responseDatatype": "JSON",
1715
+ "headers": {},
1716
+ "responseObjects": [
1717
+ {
1718
+ "type": "default",
1719
+ "key": "",
1720
+ "mockFile": ""
1721
+ }
1722
+ ]
1723
+ },
1724
+ {
1725
+ "name": "iamServiceListLastPublishedNotification",
1726
+ "protocol": "REST",
1727
+ "method": "GET",
1728
+ "entitypath": "{base_path}/{version}/iam/last-published-notification?{query}",
1729
+ "requestSchema": "schema.json",
1730
+ "responseSchema": "schema.json",
1731
+ "timeout": 0,
1732
+ "sendEmpty": false,
1733
+ "sendGetBody": false,
1734
+ "requestDatatype": "JSON",
1735
+ "responseDatatype": "JSON",
1736
+ "headers": {},
1737
+ "responseObjects": [
1738
+ {
1739
+ "type": "default",
1740
+ "key": "",
1741
+ "mockFile": ""
1742
+ }
1743
+ ]
1744
+ },
1745
+ {
1746
+ "name": "iamServiceCreateRevokeEvent",
1747
+ "protocol": "REST",
1748
+ "method": "POST",
1749
+ "entitypath": "{base_path}/{version}/iam/revoke-event?{query}",
1750
+ "requestSchema": "schema.json",
1751
+ "responseSchema": "schema.json",
1752
+ "timeout": 0,
1753
+ "sendEmpty": false,
1754
+ "requestDatatype": "JSON",
1755
+ "responseDatatype": "JSON",
1756
+ "headers": {},
1757
+ "responseObjects": [
1758
+ {
1759
+ "type": "default",
1760
+ "key": "",
1761
+ "mockFile": ""
1762
+ }
1763
+ ]
1764
+ },
1765
+ {
1766
+ "name": "iamServiceListRevokeEvent",
1767
+ "protocol": "REST",
1768
+ "method": "GET",
1769
+ "entitypath": "{base_path}/{version}/iam/revoke-event?{query}",
1770
+ "requestSchema": "schema.json",
1771
+ "responseSchema": "schema.json",
1772
+ "timeout": 0,
1773
+ "sendEmpty": false,
1774
+ "sendGetBody": false,
1775
+ "requestDatatype": "JSON",
1776
+ "responseDatatype": "JSON",
1777
+ "headers": {},
1778
+ "responseObjects": [
1779
+ {
1780
+ "type": "default",
1781
+ "key": "",
1782
+ "mockFile": ""
1783
+ }
1784
+ ]
1785
+ },
1786
+ {
1787
+ "name": "iamServiceCreateUserDetail",
1788
+ "protocol": "REST",
1789
+ "method": "POST",
1790
+ "entitypath": "{base_path}/{version}/iam/user-detail?{query}",
1791
+ "requestSchema": "schema.json",
1792
+ "responseSchema": "schema.json",
1793
+ "timeout": 0,
1794
+ "sendEmpty": false,
1795
+ "requestDatatype": "JSON",
1796
+ "responseDatatype": "JSON",
1797
+ "headers": {},
1798
+ "responseObjects": [
1799
+ {
1800
+ "type": "default",
1801
+ "key": "",
1802
+ "mockFile": ""
1803
+ }
1804
+ ]
1805
+ },
1806
+ {
1807
+ "name": "iamServiceListUserDetail",
1808
+ "protocol": "REST",
1809
+ "method": "GET",
1810
+ "entitypath": "{base_path}/{version}/iam/user-detail?{query}",
1811
+ "requestSchema": "schema.json",
1812
+ "responseSchema": "schema.json",
1813
+ "timeout": 0,
1814
+ "sendEmpty": false,
1815
+ "sendGetBody": false,
1816
+ "requestDatatype": "JSON",
1817
+ "responseDatatype": "JSON",
1818
+ "headers": {},
1819
+ "responseObjects": [
1820
+ {
1821
+ "type": "default",
1822
+ "key": "",
1823
+ "mockFile": ""
1824
+ }
1825
+ ]
1826
+ },
1827
+ {
1828
+ "name": "iamServiceDeleteUserGroupUserRef",
1829
+ "protocol": "REST",
1830
+ "method": "DELETE",
1831
+ "entitypath": "{base_path}/{version}/iam/user-group-user/{pathv1}?{query}",
1832
+ "requestSchema": "schema.json",
1833
+ "responseSchema": "schema.json",
1834
+ "timeout": 0,
1835
+ "sendEmpty": false,
1836
+ "requestDatatype": "JSON",
1837
+ "responseDatatype": "JSON",
1838
+ "headers": {},
1839
+ "responseObjects": [
1840
+ {
1841
+ "type": "default",
1842
+ "key": "",
1843
+ "mockFile": ""
1844
+ }
1845
+ ]
1846
+ },
1847
+ {
1848
+ "name": "iamServiceDeleteRoleassignmentUserDetailRef",
1849
+ "protocol": "REST",
1850
+ "method": "DELETE",
1851
+ "entitypath": "{base_path}/{version}/iam/roleassignment-user-detail/{pathv1}?{query}",
1852
+ "requestSchema": "schema.json",
1853
+ "responseSchema": "schema.json",
1854
+ "timeout": 0,
1855
+ "sendEmpty": false,
1856
+ "requestDatatype": "JSON",
1857
+ "responseDatatype": "JSON",
1858
+ "headers": {},
1859
+ "responseObjects": [
1860
+ {
1861
+ "type": "default",
1862
+ "key": "",
1863
+ "mockFile": ""
1864
+ }
1865
+ ]
1866
+ },
1867
+ {
1868
+ "name": "iamServiceBulkListUserGroup",
1869
+ "protocol": "REST",
1870
+ "method": "POST",
1871
+ "entitypath": "{base_path}/{version}/iam/bulk-list-user-group?{query}",
1872
+ "requestSchema": "schema.json",
1873
+ "responseSchema": "schema.json",
1874
+ "timeout": 0,
1875
+ "sendEmpty": false,
1876
+ "requestDatatype": "JSON",
1877
+ "responseDatatype": "JSON",
1878
+ "headers": {},
1879
+ "responseObjects": [
1880
+ {
1881
+ "type": "default",
1882
+ "key": "",
1883
+ "mockFile": ""
1884
+ }
1885
+ ]
1886
+ },
1887
+ {
1888
+ "name": "iamServiceBulkListUserDetail",
1889
+ "protocol": "REST",
1890
+ "method": "POST",
1891
+ "entitypath": "{base_path}/{version}/iam/bulk-list-user-detail?{query}",
1892
+ "requestSchema": "schema.json",
1893
+ "responseSchema": "schema.json",
1894
+ "timeout": 0,
1895
+ "sendEmpty": false,
1896
+ "requestDatatype": "JSON",
1897
+ "responseDatatype": "JSON",
1898
+ "headers": {},
1899
+ "responseObjects": [
1900
+ {
1901
+ "type": "default",
1902
+ "key": "",
1903
+ "mockFile": ""
1904
+ }
1905
+ ]
1906
+ },
1907
+ {
1908
+ "name": "iamServiceCreateRoleassignmentUserGroupRef",
1909
+ "protocol": "REST",
1910
+ "method": "POST",
1911
+ "entitypath": "{base_path}/{version}/iam/roleassignment-user-group?{query}",
1912
+ "requestSchema": "schema.json",
1913
+ "responseSchema": "schema.json",
1914
+ "timeout": 0,
1915
+ "sendEmpty": false,
1916
+ "requestDatatype": "JSON",
1917
+ "responseDatatype": "JSON",
1918
+ "headers": {},
1919
+ "responseObjects": [
1920
+ {
1921
+ "type": "default",
1922
+ "key": "",
1923
+ "mockFile": ""
1924
+ }
1925
+ ]
1926
+ },
1927
+ {
1928
+ "name": "iamServiceCreateUser",
1929
+ "protocol": "REST",
1930
+ "method": "POST",
1931
+ "entitypath": "{base_path}/{version}/iam/user?{query}",
1932
+ "requestSchema": "schema.json",
1933
+ "responseSchema": "schema.json",
1934
+ "timeout": 0,
1935
+ "sendEmpty": false,
1936
+ "requestDatatype": "JSON",
1937
+ "responseDatatype": "JSON",
1938
+ "headers": {},
1939
+ "responseObjects": [
1940
+ {
1941
+ "type": "default",
1942
+ "key": "",
1943
+ "mockFile": ""
1944
+ }
1945
+ ]
1946
+ },
1947
+ {
1948
+ "name": "iamServiceListUser",
1949
+ "protocol": "REST",
1950
+ "method": "GET",
1951
+ "entitypath": "{base_path}/{version}/iam/user?{query}",
1952
+ "requestSchema": "schema.json",
1953
+ "responseSchema": "schema.json",
1954
+ "timeout": 0,
1955
+ "sendEmpty": false,
1956
+ "sendGetBody": false,
1957
+ "requestDatatype": "JSON",
1958
+ "responseDatatype": "JSON",
1959
+ "headers": {},
1960
+ "responseObjects": [
1961
+ {
1962
+ "type": "default",
1963
+ "key": "",
1964
+ "mockFile": ""
1965
+ }
1966
+ ]
1967
+ },
1968
+ {
1969
+ "name": "iamServiceUpdateOidcSetting",
1970
+ "protocol": "REST",
1971
+ "method": "PUT",
1972
+ "entitypath": "{base_path}/{version}/iam/oidc-setting/{pathv1}?{query}",
1973
+ "requestSchema": "schema.json",
1974
+ "responseSchema": "schema.json",
1975
+ "timeout": 0,
1976
+ "sendEmpty": false,
1977
+ "requestDatatype": "JSON",
1978
+ "responseDatatype": "JSON",
1979
+ "headers": {},
1980
+ "responseObjects": [
1981
+ {
1982
+ "type": "default",
1983
+ "key": "",
1984
+ "mockFile": ""
1985
+ }
1986
+ ]
1987
+ },
1988
+ {
1989
+ "name": "iamServiceGetOidcSetting",
1990
+ "protocol": "REST",
1991
+ "method": "GET",
1992
+ "entitypath": "{base_path}/{version}/iam/oidc-setting/{pathv1}?{query}",
1993
+ "requestSchema": "schema.json",
1994
+ "responseSchema": "schema.json",
1995
+ "timeout": 0,
1996
+ "sendEmpty": false,
1997
+ "sendGetBody": false,
1998
+ "requestDatatype": "JSON",
1999
+ "responseDatatype": "JSON",
2000
+ "headers": {},
2001
+ "responseObjects": [
2002
+ {
2003
+ "type": "default",
2004
+ "key": "",
2005
+ "mockFile": ""
2006
+ }
2007
+ ]
2008
+ },
2009
+ {
2010
+ "name": "iamServiceDeleteOidcSetting",
2011
+ "protocol": "REST",
2012
+ "method": "DELETE",
2013
+ "entitypath": "{base_path}/{version}/iam/oidc-setting/{pathv1}?{query}",
2014
+ "requestSchema": "schema.json",
2015
+ "responseSchema": "schema.json",
2016
+ "timeout": 0,
2017
+ "sendEmpty": false,
2018
+ "requestDatatype": "JSON",
2019
+ "responseDatatype": "JSON",
2020
+ "headers": {},
2021
+ "responseObjects": [
2022
+ {
2023
+ "type": "default",
2024
+ "key": "",
2025
+ "mockFile": ""
2026
+ }
2027
+ ]
2028
+ },
2029
+ {
2030
+ "name": "iamServiceDeleteUserGroupUserDetailRef",
2031
+ "protocol": "REST",
2032
+ "method": "DELETE",
2033
+ "entitypath": "{base_path}/{version}/iam/user-group-user-detail/{pathv1}?{query}",
2034
+ "requestSchema": "schema.json",
2035
+ "responseSchema": "schema.json",
2036
+ "timeout": 0,
2037
+ "sendEmpty": false,
2038
+ "requestDatatype": "JSON",
2039
+ "responseDatatype": "JSON",
2040
+ "headers": {},
2041
+ "responseObjects": [
2042
+ {
2043
+ "type": "default",
2044
+ "key": "",
2045
+ "mockFile": ""
2046
+ }
2047
+ ]
2048
+ },
2049
+ {
2050
+ "name": "iamServiceBulkListLdapServer",
2051
+ "protocol": "REST",
2052
+ "method": "POST",
2053
+ "entitypath": "{base_path}/{version}/iam/bulk-list-ldap-server?{query}",
2054
+ "requestSchema": "schema.json",
2055
+ "responseSchema": "schema.json",
2056
+ "timeout": 0,
2057
+ "sendEmpty": false,
2058
+ "requestDatatype": "JSON",
2059
+ "responseDatatype": "JSON",
2060
+ "headers": {},
2061
+ "responseObjects": [
2062
+ {
2063
+ "type": "default",
2064
+ "key": "",
2065
+ "mockFile": ""
2066
+ }
2067
+ ]
2068
+ },
2069
+ {
2070
+ "name": "iamServiceCreateSaml",
2071
+ "protocol": "REST",
2072
+ "method": "POST",
2073
+ "entitypath": "{base_path}/{version}/iam/saml?{query}",
2074
+ "requestSchema": "schema.json",
2075
+ "responseSchema": "schema.json",
2076
+ "timeout": 0,
2077
+ "sendEmpty": false,
2078
+ "requestDatatype": "JSON",
2079
+ "responseDatatype": "JSON",
2080
+ "headers": {},
2081
+ "responseObjects": [
2082
+ {
2083
+ "type": "default",
2084
+ "key": "",
2085
+ "mockFile": ""
2086
+ }
2087
+ ]
2088
+ },
2089
+ {
2090
+ "name": "iamServiceListSaml",
2091
+ "protocol": "REST",
2092
+ "method": "GET",
2093
+ "entitypath": "{base_path}/{version}/iam/saml?{query}",
2094
+ "requestSchema": "schema.json",
2095
+ "responseSchema": "schema.json",
2096
+ "timeout": 0,
2097
+ "sendEmpty": false,
2098
+ "sendGetBody": false,
2099
+ "requestDatatype": "JSON",
2100
+ "responseDatatype": "JSON",
2101
+ "headers": {},
2102
+ "responseObjects": [
2103
+ {
2104
+ "type": "default",
2105
+ "key": "",
2106
+ "mockFile": ""
2107
+ }
2108
+ ]
2109
+ },
2110
+ {
2111
+ "name": "iamServiceUpdateIdentityProvider",
2112
+ "protocol": "REST",
2113
+ "method": "PUT",
2114
+ "entitypath": "{base_path}/{version}/iam/identity-provider/{pathv1}?{query}",
2115
+ "requestSchema": "schema.json",
2116
+ "responseSchema": "schema.json",
2117
+ "timeout": 0,
2118
+ "sendEmpty": false,
2119
+ "requestDatatype": "JSON",
2120
+ "responseDatatype": "JSON",
2121
+ "headers": {},
2122
+ "responseObjects": [
2123
+ {
2124
+ "type": "default",
2125
+ "key": "",
2126
+ "mockFile": ""
2127
+ }
2128
+ ]
2129
+ },
2130
+ {
2131
+ "name": "iamServiceGetIdentityProvider",
2132
+ "protocol": "REST",
2133
+ "method": "GET",
2134
+ "entitypath": "{base_path}/{version}/iam/identity-provider/{pathv1}?{query}",
2135
+ "requestSchema": "schema.json",
2136
+ "responseSchema": "schema.json",
2137
+ "timeout": 0,
2138
+ "sendEmpty": false,
2139
+ "sendGetBody": false,
2140
+ "requestDatatype": "JSON",
2141
+ "responseDatatype": "JSON",
2142
+ "headers": {},
2143
+ "responseObjects": [
2144
+ {
2145
+ "type": "default",
2146
+ "key": "",
2147
+ "mockFile": ""
2148
+ }
2149
+ ]
2150
+ },
2151
+ {
2152
+ "name": "iamServiceDeleteIdentityProvider",
2153
+ "protocol": "REST",
2154
+ "method": "DELETE",
2155
+ "entitypath": "{base_path}/{version}/iam/identity-provider/{pathv1}?{query}",
2156
+ "requestSchema": "schema.json",
2157
+ "responseSchema": "schema.json",
2158
+ "timeout": 0,
2159
+ "sendEmpty": false,
2160
+ "requestDatatype": "JSON",
2161
+ "responseDatatype": "JSON",
2162
+ "headers": {},
2163
+ "responseObjects": [
2164
+ {
2165
+ "type": "default",
2166
+ "key": "",
2167
+ "mockFile": ""
2168
+ }
2169
+ ]
2170
+ },
2171
+ {
2172
+ "name": "iamServiceCreateRoleassignmentScopeGroupRef",
2173
+ "protocol": "REST",
2174
+ "method": "POST",
2175
+ "entitypath": "{base_path}/{version}/iam/roleassignment-scope-group?{query}",
2176
+ "requestSchema": "schema.json",
2177
+ "responseSchema": "schema.json",
2178
+ "timeout": 0,
2179
+ "sendEmpty": false,
2180
+ "requestDatatype": "JSON",
2181
+ "responseDatatype": "JSON",
2182
+ "headers": {},
2183
+ "responseObjects": [
2184
+ {
2185
+ "type": "default",
2186
+ "key": "",
2187
+ "mockFile": ""
2188
+ }
2189
+ ]
2190
+ },
2191
+ {
2192
+ "name": "iamServiceCreateScopeGroup",
2193
+ "protocol": "REST",
2194
+ "method": "POST",
2195
+ "entitypath": "{base_path}/{version}/iam/scope-group?{query}",
2196
+ "requestSchema": "schema.json",
2197
+ "responseSchema": "schema.json",
2198
+ "timeout": 0,
2199
+ "sendEmpty": false,
2200
+ "requestDatatype": "JSON",
2201
+ "responseDatatype": "JSON",
2202
+ "headers": {},
2203
+ "responseObjects": [
2204
+ {
2205
+ "type": "default",
2206
+ "key": "",
2207
+ "mockFile": ""
2208
+ }
2209
+ ]
2210
+ },
2211
+ {
2212
+ "name": "iamServiceListScopeGroup",
2213
+ "protocol": "REST",
2214
+ "method": "GET",
2215
+ "entitypath": "{base_path}/{version}/iam/scope-group?{query}",
2216
+ "requestSchema": "schema.json",
2217
+ "responseSchema": "schema.json",
2218
+ "timeout": 0,
2219
+ "sendEmpty": false,
2220
+ "sendGetBody": false,
2221
+ "requestDatatype": "JSON",
2222
+ "responseDatatype": "JSON",
2223
+ "headers": {},
2224
+ "responseObjects": [
2225
+ {
2226
+ "type": "default",
2227
+ "key": "",
2228
+ "mockFile": ""
2229
+ }
2230
+ ]
2231
+ },
2232
+ {
2233
+ "name": "iamServiceDeleteUserUserDetailRef",
2234
+ "protocol": "REST",
2235
+ "method": "DELETE",
2236
+ "entitypath": "{base_path}/{version}/iam/user-user-detail/{pathv1}?{query}",
2237
+ "requestSchema": "schema.json",
2238
+ "responseSchema": "schema.json",
2239
+ "timeout": 0,
2240
+ "sendEmpty": false,
2241
+ "requestDatatype": "JSON",
2242
+ "responseDatatype": "JSON",
2243
+ "headers": {},
2244
+ "responseObjects": [
2245
+ {
2246
+ "type": "default",
2247
+ "key": "",
2248
+ "mockFile": ""
2249
+ }
2250
+ ]
2251
+ },
2252
+ {
2253
+ "name": "iamServiceExtRefUpdate",
2254
+ "protocol": "REST",
2255
+ "method": "POST",
2256
+ "entitypath": "{base_path}/{version}/iam/ext-ref-update?{query}",
2257
+ "requestSchema": "schema.json",
2258
+ "responseSchema": "schema.json",
2259
+ "timeout": 0,
2260
+ "sendEmpty": false,
2261
+ "requestDatatype": "JSON",
2262
+ "responseDatatype": "JSON",
2263
+ "headers": {},
2264
+ "responseObjects": [
2265
+ {
2266
+ "type": "default",
2267
+ "key": "",
2268
+ "mockFile": ""
2269
+ }
2270
+ ]
2271
+ },
2272
+ {
2273
+ "name": "iamServiceUpdateDeletedResource",
2274
+ "protocol": "REST",
2275
+ "method": "PUT",
2276
+ "entitypath": "{base_path}/{version}/iam/deleted-resource/{pathv1}?{query}",
2277
+ "requestSchema": "schema.json",
2278
+ "responseSchema": "schema.json",
2279
+ "timeout": 0,
2280
+ "sendEmpty": false,
2281
+ "requestDatatype": "JSON",
2282
+ "responseDatatype": "JSON",
2283
+ "headers": {},
2284
+ "responseObjects": [
2285
+ {
2286
+ "type": "default",
2287
+ "key": "",
2288
+ "mockFile": ""
2289
+ }
2290
+ ]
2291
+ },
2292
+ {
2293
+ "name": "iamServiceGetDeletedResource",
2294
+ "protocol": "REST",
2295
+ "method": "GET",
2296
+ "entitypath": "{base_path}/{version}/iam/deleted-resource/{pathv1}?{query}",
2297
+ "requestSchema": "schema.json",
2298
+ "responseSchema": "schema.json",
2299
+ "timeout": 0,
2300
+ "sendEmpty": false,
2301
+ "sendGetBody": false,
2302
+ "requestDatatype": "JSON",
2303
+ "responseDatatype": "JSON",
2304
+ "headers": {},
2305
+ "responseObjects": [
2306
+ {
2307
+ "type": "default",
2308
+ "key": "",
2309
+ "mockFile": ""
2310
+ }
2311
+ ]
2312
+ },
2313
+ {
2314
+ "name": "iamServiceDeleteDeletedResource",
2315
+ "protocol": "REST",
2316
+ "method": "DELETE",
2317
+ "entitypath": "{base_path}/{version}/iam/deleted-resource/{pathv1}?{query}",
2318
+ "requestSchema": "schema.json",
2319
+ "responseSchema": "schema.json",
2320
+ "timeout": 0,
2321
+ "sendEmpty": false,
2322
+ "requestDatatype": "JSON",
2323
+ "responseDatatype": "JSON",
2324
+ "headers": {},
2325
+ "responseObjects": [
2326
+ {
2327
+ "type": "default",
2328
+ "key": "",
2329
+ "mockFile": ""
2330
+ }
2331
+ ]
2332
+ },
2333
+ {
2334
+ "name": "iamServiceBulkListActivationCode",
2335
+ "protocol": "REST",
2336
+ "method": "POST",
2337
+ "entitypath": "{base_path}/{version}/iam/bulk-list-activation-code?{query}",
2338
+ "requestSchema": "schema.json",
2339
+ "responseSchema": "schema.json",
2340
+ "timeout": 0,
2341
+ "sendEmpty": false,
2342
+ "requestDatatype": "JSON",
2343
+ "responseDatatype": "JSON",
2344
+ "headers": {},
2345
+ "responseObjects": [
2346
+ {
2347
+ "type": "default",
2348
+ "key": "",
2349
+ "mockFile": ""
2350
+ }
2351
+ ]
2352
+ },
2353
+ {
2354
+ "name": "iamServiceBulkListUser",
2355
+ "protocol": "REST",
2356
+ "method": "POST",
2357
+ "entitypath": "{base_path}/{version}/iam/bulk-list-user?{query}",
2358
+ "requestSchema": "schema.json",
2359
+ "responseSchema": "schema.json",
2360
+ "timeout": 0,
2361
+ "sendEmpty": false,
2362
+ "requestDatatype": "JSON",
2363
+ "responseDatatype": "JSON",
2364
+ "headers": {},
2365
+ "responseObjects": [
2366
+ {
2367
+ "type": "default",
2368
+ "key": "",
2369
+ "mockFile": ""
2370
+ }
2371
+ ]
2372
+ },
2373
+ {
2374
+ "name": "iamServiceBulkListLastPublishedNotification",
2375
+ "protocol": "REST",
2376
+ "method": "POST",
2377
+ "entitypath": "{base_path}/{version}/iam/bulk-list-last-published-notification?{query}",
2378
+ "requestSchema": "schema.json",
2379
+ "responseSchema": "schema.json",
2380
+ "timeout": 0,
2381
+ "sendEmpty": false,
2382
+ "requestDatatype": "JSON",
2383
+ "responseDatatype": "JSON",
2384
+ "headers": {},
2385
+ "responseObjects": [
2386
+ {
2387
+ "type": "default",
2388
+ "key": "",
2389
+ "mockFile": ""
2390
+ }
2391
+ ]
2392
+ },
2393
+ {
2394
+ "name": "iamServiceBulkExtRefUpdate",
2395
+ "protocol": "REST",
2396
+ "method": "POST",
2397
+ "entitypath": "{base_path}/{version}/iam/bulk-ext-ref-update?{query}",
2398
+ "requestSchema": "schema.json",
2399
+ "responseSchema": "schema.json",
2400
+ "timeout": 0,
2401
+ "sendEmpty": false,
2402
+ "requestDatatype": "JSON",
2403
+ "responseDatatype": "JSON",
2404
+ "headers": {},
2405
+ "responseObjects": [
2406
+ {
2407
+ "type": "default",
2408
+ "key": "",
2409
+ "mockFile": ""
2410
+ }
2411
+ ]
2412
+ },
2413
+ {
2414
+ "name": "iamServiceUpdateLastPublishedNotification",
2415
+ "protocol": "REST",
2416
+ "method": "PUT",
2417
+ "entitypath": "{base_path}/{version}/iam/last-published-notification/{pathv1}?{query}",
2418
+ "requestSchema": "schema.json",
2419
+ "responseSchema": "schema.json",
2420
+ "timeout": 0,
2421
+ "sendEmpty": false,
2422
+ "requestDatatype": "JSON",
2423
+ "responseDatatype": "JSON",
2424
+ "headers": {},
2425
+ "responseObjects": [
2426
+ {
2427
+ "type": "default",
2428
+ "key": "",
2429
+ "mockFile": ""
2430
+ }
2431
+ ]
2432
+ },
2433
+ {
2434
+ "name": "iamServiceGetLastPublishedNotification",
2435
+ "protocol": "REST",
2436
+ "method": "GET",
2437
+ "entitypath": "{base_path}/{version}/iam/last-published-notification/{pathv1}?{query}",
2438
+ "requestSchema": "schema.json",
2439
+ "responseSchema": "schema.json",
2440
+ "timeout": 0,
2441
+ "sendEmpty": false,
2442
+ "sendGetBody": false,
2443
+ "requestDatatype": "JSON",
2444
+ "responseDatatype": "JSON",
2445
+ "headers": {},
2446
+ "responseObjects": [
2447
+ {
2448
+ "type": "default",
2449
+ "key": "",
2450
+ "mockFile": ""
2451
+ }
2452
+ ]
2453
+ },
2454
+ {
2455
+ "name": "iamServiceDeleteLastPublishedNotification",
2456
+ "protocol": "REST",
2457
+ "method": "DELETE",
2458
+ "entitypath": "{base_path}/{version}/iam/last-published-notification/{pathv1}?{query}",
2459
+ "requestSchema": "schema.json",
2460
+ "responseSchema": "schema.json",
2461
+ "timeout": 0,
2462
+ "sendEmpty": false,
2463
+ "requestDatatype": "JSON",
2464
+ "responseDatatype": "JSON",
2465
+ "headers": {},
2466
+ "responseObjects": [
2467
+ {
2468
+ "type": "default",
2469
+ "key": "",
2470
+ "mockFile": ""
2471
+ }
2472
+ ]
2473
+ },
2474
+ {
2475
+ "name": "iamServiceCreateUserGroupUserDetailRef",
2476
+ "protocol": "REST",
2477
+ "method": "POST",
2478
+ "entitypath": "{base_path}/{version}/iam/user-group-user-detail?{query}",
2479
+ "requestSchema": "schema.json",
2480
+ "responseSchema": "schema.json",
2481
+ "timeout": 0,
2482
+ "sendEmpty": false,
2483
+ "requestDatatype": "JSON",
2484
+ "responseDatatype": "JSON",
2485
+ "headers": {},
2486
+ "responseObjects": [
2487
+ {
2488
+ "type": "default",
2489
+ "key": "",
2490
+ "mockFile": ""
2491
+ }
2492
+ ]
2493
+ },
2494
+ {
2495
+ "name": "iamServiceCreateSMTPServer",
2496
+ "protocol": "REST",
2497
+ "method": "POST",
2498
+ "entitypath": "{base_path}/{version}/iam/smtp-server?{query}",
2499
+ "requestSchema": "schema.json",
2500
+ "responseSchema": "schema.json",
2501
+ "timeout": 0,
2502
+ "sendEmpty": false,
2503
+ "requestDatatype": "JSON",
2504
+ "responseDatatype": "JSON",
2505
+ "headers": {},
2506
+ "responseObjects": [
2507
+ {
2508
+ "type": "default",
2509
+ "key": "",
2510
+ "mockFile": ""
2511
+ }
2512
+ ]
2513
+ },
2514
+ {
2515
+ "name": "iamServiceListSMTPServer",
2516
+ "protocol": "REST",
2517
+ "method": "GET",
2518
+ "entitypath": "{base_path}/{version}/iam/smtp-server?{query}",
2519
+ "requestSchema": "schema.json",
2520
+ "responseSchema": "schema.json",
2521
+ "timeout": 0,
2522
+ "sendEmpty": false,
2523
+ "sendGetBody": false,
2524
+ "requestDatatype": "JSON",
2525
+ "responseDatatype": "JSON",
2526
+ "headers": {},
2527
+ "responseObjects": [
2528
+ {
2529
+ "type": "default",
2530
+ "key": "",
2531
+ "mockFile": ""
2532
+ }
2533
+ ]
2534
+ },
2535
+ {
2536
+ "name": "iamServiceCreateActivationCode",
2537
+ "protocol": "REST",
2538
+ "method": "POST",
2539
+ "entitypath": "{base_path}/{version}/iam/activation-code?{query}",
2540
+ "requestSchema": "schema.json",
2541
+ "responseSchema": "schema.json",
2542
+ "timeout": 0,
2543
+ "sendEmpty": false,
2544
+ "requestDatatype": "JSON",
2545
+ "responseDatatype": "JSON",
2546
+ "headers": {},
2547
+ "responseObjects": [
2548
+ {
2549
+ "type": "default",
2550
+ "key": "",
2551
+ "mockFile": ""
2552
+ }
2553
+ ]
2554
+ },
2555
+ {
2556
+ "name": "iamServiceListActivationCode",
2557
+ "protocol": "REST",
2558
+ "method": "GET",
2559
+ "entitypath": "{base_path}/{version}/iam/activation-code?{query}",
2560
+ "requestSchema": "schema.json",
2561
+ "responseSchema": "schema.json",
2562
+ "timeout": 0,
2563
+ "sendEmpty": false,
2564
+ "sendGetBody": false,
2565
+ "requestDatatype": "JSON",
2566
+ "responseDatatype": "JSON",
2567
+ "headers": {},
2568
+ "responseObjects": [
2569
+ {
2570
+ "type": "default",
2571
+ "key": "",
2572
+ "mockFile": ""
2573
+ }
2574
+ ]
2575
+ },
2576
+ {
2577
+ "name": "iamServiceCreateRole",
2578
+ "protocol": "REST",
2579
+ "method": "POST",
2580
+ "entitypath": "{base_path}/{version}/iam/role?{query}",
2581
+ "requestSchema": "schema.json",
2582
+ "responseSchema": "schema.json",
2583
+ "timeout": 0,
2584
+ "sendEmpty": false,
2585
+ "requestDatatype": "JSON",
2586
+ "responseDatatype": "JSON",
2587
+ "headers": {},
2588
+ "responseObjects": [
2589
+ {
2590
+ "type": "default",
2591
+ "key": "",
2592
+ "mockFile": ""
2593
+ }
2594
+ ]
2595
+ },
2596
+ {
2597
+ "name": "iamServiceListRole",
2598
+ "protocol": "REST",
2599
+ "method": "GET",
2600
+ "entitypath": "{base_path}/{version}/iam/role?{query}",
2601
+ "requestSchema": "schema.json",
2602
+ "responseSchema": "schema.json",
2603
+ "timeout": 0,
2604
+ "sendEmpty": false,
2605
+ "sendGetBody": false,
2606
+ "requestDatatype": "JSON",
2607
+ "responseDatatype": "JSON",
2608
+ "headers": {},
2609
+ "responseObjects": [
2610
+ {
2611
+ "type": "default",
2612
+ "key": "",
2613
+ "mockFile": ""
2614
+ }
2615
+ ]
2616
+ },
2617
+ {
2618
+ "name": "iamServiceCreateRoleassignment",
2619
+ "protocol": "REST",
2620
+ "method": "POST",
2621
+ "entitypath": "{base_path}/{version}/iam/roleassignment?{query}",
2622
+ "requestSchema": "schema.json",
2623
+ "responseSchema": "schema.json",
2624
+ "timeout": 0,
2625
+ "sendEmpty": false,
2626
+ "requestDatatype": "JSON",
2627
+ "responseDatatype": "JSON",
2628
+ "headers": {},
2629
+ "responseObjects": [
2630
+ {
2631
+ "type": "default",
2632
+ "key": "",
2633
+ "mockFile": ""
2634
+ }
2635
+ ]
2636
+ },
2637
+ {
2638
+ "name": "iamServiceListRoleassignment",
2639
+ "protocol": "REST",
2640
+ "method": "GET",
2641
+ "entitypath": "{base_path}/{version}/iam/roleassignment?{query}",
2642
+ "requestSchema": "schema.json",
2643
+ "responseSchema": "schema.json",
2644
+ "timeout": 0,
2645
+ "sendEmpty": false,
2646
+ "sendGetBody": false,
2647
+ "requestDatatype": "JSON",
2648
+ "responseDatatype": "JSON",
2649
+ "headers": {},
2650
+ "responseObjects": [
2651
+ {
2652
+ "type": "default",
2653
+ "key": "",
2654
+ "mockFile": ""
2655
+ }
2656
+ ]
2657
+ },
2658
+ {
2659
+ "name": "iamServiceBulkListRole",
2660
+ "protocol": "REST",
2661
+ "method": "POST",
2662
+ "entitypath": "{base_path}/{version}/iam/bulk-list-role?{query}",
2663
+ "requestSchema": "schema.json",
2664
+ "responseSchema": "schema.json",
2665
+ "timeout": 0,
2666
+ "sendEmpty": false,
2667
+ "requestDatatype": "JSON",
2668
+ "responseDatatype": "JSON",
2669
+ "headers": {},
2670
+ "responseObjects": [
2671
+ {
2672
+ "type": "default",
2673
+ "key": "",
2674
+ "mockFile": ""
2675
+ }
2676
+ ]
2677
+ },
2678
+ {
2679
+ "name": "iamServiceUpdateUserDetail",
2680
+ "protocol": "REST",
2681
+ "method": "PUT",
2682
+ "entitypath": "{base_path}/{version}/iam/user-detail/{pathv1}?{query}",
2683
+ "requestSchema": "schema.json",
2684
+ "responseSchema": "schema.json",
2685
+ "timeout": 0,
2686
+ "sendEmpty": false,
2687
+ "requestDatatype": "JSON",
2688
+ "responseDatatype": "JSON",
2689
+ "headers": {},
2690
+ "responseObjects": [
2691
+ {
2692
+ "type": "default",
2693
+ "key": "",
2694
+ "mockFile": ""
2695
+ }
2696
+ ]
2697
+ },
2698
+ {
2699
+ "name": "iamServiceGetUserDetail",
2700
+ "protocol": "REST",
2701
+ "method": "GET",
2702
+ "entitypath": "{base_path}/{version}/iam/user-detail/{pathv1}?{query}",
2703
+ "requestSchema": "schema.json",
2704
+ "responseSchema": "schema.json",
2705
+ "timeout": 0,
2706
+ "sendEmpty": false,
2707
+ "sendGetBody": false,
2708
+ "requestDatatype": "JSON",
2709
+ "responseDatatype": "JSON",
2710
+ "headers": {},
2711
+ "responseObjects": [
2712
+ {
2713
+ "type": "default",
2714
+ "key": "",
2715
+ "mockFile": ""
2716
+ }
2717
+ ]
2718
+ },
2719
+ {
2720
+ "name": "iamServiceDeleteUserDetail",
2721
+ "protocol": "REST",
2722
+ "method": "DELETE",
2723
+ "entitypath": "{base_path}/{version}/iam/user-detail/{pathv1}?{query}",
2724
+ "requestSchema": "schema.json",
2725
+ "responseSchema": "schema.json",
2726
+ "timeout": 0,
2727
+ "sendEmpty": false,
2728
+ "requestDatatype": "JSON",
2729
+ "responseDatatype": "JSON",
2730
+ "headers": {},
2731
+ "responseObjects": [
2732
+ {
2733
+ "type": "default",
2734
+ "key": "",
2735
+ "mockFile": ""
2736
+ }
2737
+ ]
2738
+ }
2739
+ ]
2740
+ }