@itentialopensource/adapter-paragon_iam 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 (69) hide show
  1. package/.eslintignore +5 -0
  2. package/.eslintrc.js +18 -0
  3. package/.jshintrc +3 -0
  4. package/AUTH.md +39 -0
  5. package/BROKER.md +199 -0
  6. package/CALLS.md +1284 -0
  7. package/CHANGELOG.md +9 -0
  8. package/CODE_OF_CONDUCT.md +43 -0
  9. package/CONTRIBUTING.md +172 -0
  10. package/ENHANCE.md +69 -0
  11. package/LICENSE +201 -0
  12. package/PROPERTIES.md +641 -0
  13. package/README.md +337 -0
  14. package/SUMMARY.md +9 -0
  15. package/SYSTEMINFO.md +11 -0
  16. package/TROUBLESHOOT.md +47 -0
  17. package/adapter.js +16476 -0
  18. package/adapterBase.js +1787 -0
  19. package/entities/.generic/action.json +214 -0
  20. package/entities/.generic/schema.json +28 -0
  21. package/entities/.system/action.json +50 -0
  22. package/entities/.system/mockdatafiles/getToken-default.json +3 -0
  23. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  24. package/entities/.system/schema.json +19 -0
  25. package/entities/.system/schemaTokenReq.json +53 -0
  26. package/entities/.system/schemaTokenResp.json +53 -0
  27. package/entities/Authentication/action.json +45 -0
  28. package/entities/Authentication/schema.json +20 -0
  29. package/entities/Authorization/action.json +105 -0
  30. package/entities/Authorization/schema.json +23 -0
  31. package/entities/IamRPCService/action.json +872 -0
  32. package/entities/IamRPCService/schema.json +325 -0
  33. package/entities/IamService/action.json +2740 -0
  34. package/entities/IamService/mockdatafiles/iamServiceExportUserView-default.json +21 -0
  35. package/entities/IamService/schema.json +670 -0
  36. package/error.json +190 -0
  37. package/package.json +86 -0
  38. package/pronghorn.json +28591 -0
  39. package/propertiesDecorators.json +14 -0
  40. package/propertiesSchema.json +1248 -0
  41. package/refs?service=git-upload-pack +0 -0
  42. package/report/adapterInfo.json +10 -0
  43. package/report/creationReport.json +1175 -0
  44. package/report/pathfinder-iam-openapi.json +19659 -0
  45. package/sampleProperties.json +195 -0
  46. package/test/integration/adapterTestBasicGet.js +83 -0
  47. package/test/integration/adapterTestConnectivity.js +93 -0
  48. package/test/integration/adapterTestIntegration.js +10570 -0
  49. package/test/unit/adapterBaseTestUnit.js +949 -0
  50. package/test/unit/adapterTestUnit.js +6489 -0
  51. package/utils/adapterInfo.js +206 -0
  52. package/utils/addAuth.js +94 -0
  53. package/utils/artifactize.js +146 -0
  54. package/utils/basicGet.js +50 -0
  55. package/utils/checkMigrate.js +63 -0
  56. package/utils/entitiesToDB.js +178 -0
  57. package/utils/findPath.js +74 -0
  58. package/utils/methodDocumentor.js +225 -0
  59. package/utils/modify.js +154 -0
  60. package/utils/packModificationScript.js +35 -0
  61. package/utils/patches2bundledDeps.js +90 -0
  62. package/utils/pre-commit.sh +32 -0
  63. package/utils/removeHooks.js +20 -0
  64. package/utils/setup.js +33 -0
  65. package/utils/tbScript.js +246 -0
  66. package/utils/tbUtils.js +490 -0
  67. package/utils/testRunner.js +298 -0
  68. package/utils/troubleshootingAdapter.js +195 -0
  69. package/workflows/README.md +3 -0
@@ -0,0 +1,1175 @@
1
+ {
2
+ "errors": [],
3
+ "statistics": [
4
+ {
5
+ "owner": "errorJson",
6
+ "description": "Standard adapter errors available for use",
7
+ "value": 31
8
+ },
9
+ {
10
+ "owner": "packageJson",
11
+ "description": "Number of production dependencies",
12
+ "value": 16
13
+ },
14
+ {
15
+ "owner": "packageJson",
16
+ "description": "Number of development dependencies",
17
+ "value": 7
18
+ },
19
+ {
20
+ "owner": "packageJson",
21
+ "description": "Number of npm scripts",
22
+ "value": 22
23
+ },
24
+ {
25
+ "owner": "packageJson",
26
+ "description": "Runtime Library dependency",
27
+ "value": "^4.48.0"
28
+ },
29
+ {
30
+ "owner": "propertiesSchemaJson",
31
+ "description": "Adapter properties defined in the propertiesSchema file",
32
+ "value": 70
33
+ },
34
+ {
35
+ "owner": "adapterJS",
36
+ "description": "Lines of code generated in adapter.js",
37
+ "value": 16477
38
+ },
39
+ {
40
+ "owner": "adapterJS",
41
+ "description": "Number of Functions added to adapter.js",
42
+ "value": 185
43
+ },
44
+ {
45
+ "owner": "pronghornJson",
46
+ "description": "Number of Methods added to pronghorn.json",
47
+ "value": 185
48
+ },
49
+ {
50
+ "owner": "markdown",
51
+ "description": "Number of lines in the README.md",
52
+ "value": 338
53
+ },
54
+ {
55
+ "owner": "markdown",
56
+ "description": "Number of lines in the SUMMARY.md",
57
+ "value": 9
58
+ },
59
+ {
60
+ "owner": "markdown",
61
+ "description": "Number of lines in the PROPERTIES.md",
62
+ "value": 642
63
+ },
64
+ {
65
+ "owner": "markdown",
66
+ "description": "Number of lines in the TROUBLESHOOT.md",
67
+ "value": 48
68
+ },
69
+ {
70
+ "owner": "markdown",
71
+ "description": "Number of lines in the ENHANCE.md",
72
+ "value": 70
73
+ },
74
+ {
75
+ "owner": "markdown",
76
+ "description": "Number of lines in the BROKER.md",
77
+ "value": 200
78
+ },
79
+ {
80
+ "owner": "markdown",
81
+ "description": "Number of lines in the CALLS.md",
82
+ "value": 171
83
+ },
84
+ {
85
+ "owner": "markdown",
86
+ "description": "Number of lines in the AUTH.md",
87
+ "value": 40
88
+ },
89
+ {
90
+ "owner": "markdown",
91
+ "description": "Number of lines in the SYSTEMINFO.md",
92
+ "value": 11
93
+ },
94
+ {
95
+ "owner": "unitTestJS",
96
+ "description": "Number of lines of code in unit tests",
97
+ "value": 6490
98
+ },
99
+ {
100
+ "owner": "unitTestJS",
101
+ "description": "Number of unit tests",
102
+ "value": 414
103
+ },
104
+ {
105
+ "owner": "integrationTestJS",
106
+ "description": "Number of lines of code in integration tests",
107
+ "value": 10571
108
+ },
109
+ {
110
+ "owner": "integrationTestJS",
111
+ "description": "Number of integration tests",
112
+ "value": 190
113
+ },
114
+ {
115
+ "owner": "actionJson",
116
+ "description": "Number of actions for IamService entity",
117
+ "value": 135
118
+ },
119
+ {
120
+ "owner": "actionJson",
121
+ "description": "Number of actions for IamRPCService entity",
122
+ "value": 43
123
+ },
124
+ {
125
+ "owner": "actionJson",
126
+ "description": "Number of actions for Authorization entity",
127
+ "value": 5
128
+ },
129
+ {
130
+ "owner": "actionJson",
131
+ "description": "Number of actions for Authentication entity",
132
+ "value": 2
133
+ },
134
+ {
135
+ "owner": "actionJson",
136
+ "description": "Total number of actions",
137
+ "value": 185
138
+ },
139
+ {
140
+ "owner": "actionJson",
141
+ "description": "Total number of entities",
142
+ "value": 4
143
+ },
144
+ {
145
+ "owner": "schemaJson",
146
+ "description": "Number of schemas for IamService entity",
147
+ "value": 1
148
+ },
149
+ {
150
+ "owner": "schemaJson",
151
+ "description": "Number of schemas for IamRPCService entity",
152
+ "value": 1
153
+ },
154
+ {
155
+ "owner": "schemaJson",
156
+ "description": "Number of schemas for Authorization entity",
157
+ "value": 1
158
+ },
159
+ {
160
+ "owner": "schemaJson",
161
+ "description": "Number of schemas for Authentication entity",
162
+ "value": 1
163
+ },
164
+ {
165
+ "owner": "schemaJson",
166
+ "description": "Total number of schemas",
167
+ "value": 4
168
+ },
169
+ {
170
+ "owner": "mockdata",
171
+ "description": "Number of mock data files for IamService entity",
172
+ "value": 1
173
+ },
174
+ {
175
+ "owner": "mockdata",
176
+ "description": "Number of mock data files for IamRPCService entity",
177
+ "value": 0
178
+ },
179
+ {
180
+ "owner": "mockdata",
181
+ "description": "Number of mock data files for Authorization entity",
182
+ "value": 0
183
+ },
184
+ {
185
+ "owner": "mockdata",
186
+ "description": "Number of mock data files for Authentication entity",
187
+ "value": 0
188
+ },
189
+ {
190
+ "owner": "mockdata",
191
+ "description": "Total number of mock data files",
192
+ "value": 1
193
+ },
194
+ {
195
+ "owner": "actionJson",
196
+ "description": "Number of actions for .system entity",
197
+ "value": 2
198
+ },
199
+ {
200
+ "owner": "schemaJson",
201
+ "description": "Number of schemas for .system entity",
202
+ "value": 3
203
+ },
204
+ {
205
+ "owner": "mockdata",
206
+ "description": "Number of mock data files for .system entity",
207
+ "value": 2
208
+ },
209
+ {
210
+ "owner": "System",
211
+ "description": "System entity files",
212
+ "value": 6
213
+ },
214
+ {
215
+ "owner": "usecases",
216
+ "description": "Number of workflows",
217
+ "value": 0
218
+ },
219
+ {
220
+ "owner": "staticFile",
221
+ "description": "Number of lines of code in adapterBase.js",
222
+ "value": 1788
223
+ },
224
+ {
225
+ "owner": "staticFile",
226
+ "description": "Number of static files added",
227
+ "value": 38
228
+ },
229
+ {
230
+ "owner": "Overall",
231
+ "description": "Total lines of Code",
232
+ "value": 35326
233
+ },
234
+ {
235
+ "owner": "Overall",
236
+ "description": "Total Tests",
237
+ "value": 604
238
+ },
239
+ {
240
+ "owner": "Overall",
241
+ "description": "Total Files",
242
+ "value": 61
243
+ }
244
+ ],
245
+ "warnings": [],
246
+ "apiParsingReport": {
247
+ "no_mockdata": [
248
+ {
249
+ "fnName": "iamServiceBulkListIdentityProvider",
250
+ "method": "post",
251
+ "path": "/iam/bulk-list-identity-provider"
252
+ },
253
+ {
254
+ "fnName": "iamServiceSync",
255
+ "method": "post",
256
+ "path": "/iam/sync"
257
+ },
258
+ {
259
+ "fnName": "iamServiceUpdateSMTPServer",
260
+ "method": "put",
261
+ "path": "/iam/smtp-server/{ID}"
262
+ },
263
+ {
264
+ "fnName": "iamServiceGetSMTPServer",
265
+ "method": "get",
266
+ "path": "/iam/smtp-server/{ID}"
267
+ },
268
+ {
269
+ "fnName": "iamServiceDeleteSMTPServer",
270
+ "method": "delete",
271
+ "path": "/iam/smtp-server/{ID}"
272
+ },
273
+ {
274
+ "fnName": "iamServiceBulkListOidcSetting",
275
+ "method": "post",
276
+ "path": "/iam/bulk-list-oidc-setting"
277
+ },
278
+ {
279
+ "fnName": "iamServiceCreateRoleassignmentUserDetailRef",
280
+ "method": "post",
281
+ "path": "/iam/roleassignment-user-detail"
282
+ },
283
+ {
284
+ "fnName": "iamServiceBulkListRoleassignment",
285
+ "method": "post",
286
+ "path": "/iam/bulk-list-roleassignment"
287
+ },
288
+ {
289
+ "fnName": "iamServiceDeleteRoleassignmentUserGroupRef",
290
+ "method": "delete",
291
+ "path": "/iam/roleassignment-user-group/{uuid}"
292
+ },
293
+ {
294
+ "fnName": "iamServiceUpdateRole",
295
+ "method": "put",
296
+ "path": "/iam/role/{ID}"
297
+ },
298
+ {
299
+ "fnName": "iamServiceGetRole",
300
+ "method": "get",
301
+ "path": "/iam/role/{ID}"
302
+ },
303
+ {
304
+ "fnName": "iamServiceDeleteRole",
305
+ "method": "delete",
306
+ "path": "/iam/role/{ID}"
307
+ },
308
+ {
309
+ "fnName": "iamServiceRefUpdate",
310
+ "method": "post",
311
+ "path": "/iam/ref-update"
312
+ },
313
+ {
314
+ "fnName": "iamServiceCreateRoleassignmentUserRef",
315
+ "method": "post",
316
+ "path": "/iam/roleassignment-user"
317
+ },
318
+ {
319
+ "fnName": "iamServiceUpdateRoleassignment",
320
+ "method": "put",
321
+ "path": "/iam/roleassignment/{ID}"
322
+ },
323
+ {
324
+ "fnName": "iamServiceGetRoleassignment",
325
+ "method": "get",
326
+ "path": "/iam/roleassignment/{ID}"
327
+ },
328
+ {
329
+ "fnName": "iamServiceDeleteRoleassignment",
330
+ "method": "delete",
331
+ "path": "/iam/roleassignment/{ID}"
332
+ },
333
+ {
334
+ "fnName": "iamServiceUpdateEmailTemplate",
335
+ "method": "put",
336
+ "path": "/iam/email-template/{ID}"
337
+ },
338
+ {
339
+ "fnName": "iamServiceGetEmailTemplate",
340
+ "method": "get",
341
+ "path": "/iam/email-template/{ID}"
342
+ },
343
+ {
344
+ "fnName": "iamServiceDeleteEmailTemplate",
345
+ "method": "delete",
346
+ "path": "/iam/email-template/{ID}"
347
+ },
348
+ {
349
+ "fnName": "iamServiceUpdateScope",
350
+ "method": "put",
351
+ "path": "/iam/scope/{ID}"
352
+ },
353
+ {
354
+ "fnName": "iamServiceGetScope",
355
+ "method": "get",
356
+ "path": "/iam/scope/{ID}"
357
+ },
358
+ {
359
+ "fnName": "iamServiceDeleteScope",
360
+ "method": "delete",
361
+ "path": "/iam/scope/{ID}"
362
+ },
363
+ {
364
+ "fnName": "iamServiceUpdateRevokeEvent",
365
+ "method": "put",
366
+ "path": "/iam/revoke-event/{ID}"
367
+ },
368
+ {
369
+ "fnName": "iamServiceGetRevokeEvent",
370
+ "method": "get",
371
+ "path": "/iam/revoke-event/{ID}"
372
+ },
373
+ {
374
+ "fnName": "iamServiceDeleteRevokeEvent",
375
+ "method": "delete",
376
+ "path": "/iam/revoke-event/{ID}"
377
+ },
378
+ {
379
+ "fnName": "iamServiceCreateOidcSetting",
380
+ "method": "post",
381
+ "path": "/iam/oidc-setting"
382
+ },
383
+ {
384
+ "fnName": "iamServiceListOidcSetting",
385
+ "method": "get",
386
+ "path": "/iam/oidc-setting"
387
+ },
388
+ {
389
+ "fnName": "iamServiceListUserView",
390
+ "method": "get",
391
+ "path": "/iam/user-view"
392
+ },
393
+ {
394
+ "fnName": "iamServiceDeleteOidcSettingRoleRef",
395
+ "method": "delete",
396
+ "path": "/iam/oidc-setting-role/{uuid}"
397
+ },
398
+ {
399
+ "fnName": "iamServiceBulkListRevokeEvent",
400
+ "method": "post",
401
+ "path": "/iam/bulk-list-revoke-event"
402
+ },
403
+ {
404
+ "fnName": "iamServiceGetUserView",
405
+ "method": "get",
406
+ "path": "/iam/user-view/{ID}"
407
+ },
408
+ {
409
+ "fnName": "iamServiceUpdateScopeGroup",
410
+ "method": "put",
411
+ "path": "/iam/scope-group/{ID}"
412
+ },
413
+ {
414
+ "fnName": "iamServiceGetScopeGroup",
415
+ "method": "get",
416
+ "path": "/iam/scope-group/{ID}"
417
+ },
418
+ {
419
+ "fnName": "iamServiceDeleteScopeGroup",
420
+ "method": "delete",
421
+ "path": "/iam/scope-group/{ID}"
422
+ },
423
+ {
424
+ "fnName": "iamServiceBulkListDeletedResource",
425
+ "method": "post",
426
+ "path": "/iam/bulk-list-deleted-resource"
427
+ },
428
+ {
429
+ "fnName": "iamServiceBulkListSaml",
430
+ "method": "post",
431
+ "path": "/iam/bulk-list-saml"
432
+ },
433
+ {
434
+ "fnName": "iamServiceDeleteRoleassignmentUserRef",
435
+ "method": "delete",
436
+ "path": "/iam/roleassignment-user/{uuid}"
437
+ },
438
+ {
439
+ "fnName": "iamServiceBulkListSMTPServer",
440
+ "method": "post",
441
+ "path": "/iam/bulk-list-smtp-server"
442
+ },
443
+ {
444
+ "fnName": "iamServiceCreateRoleassignmentScopeRef",
445
+ "method": "post",
446
+ "path": "/iam/roleassignment-scope"
447
+ },
448
+ {
449
+ "fnName": "iamServiceCreateEmailTemplate",
450
+ "method": "post",
451
+ "path": "/iam/email-template"
452
+ },
453
+ {
454
+ "fnName": "iamServiceListEmailTemplate",
455
+ "method": "get",
456
+ "path": "/iam/email-template"
457
+ },
458
+ {
459
+ "fnName": "iamServiceCreateUserGroup",
460
+ "method": "post",
461
+ "path": "/iam/user-group"
462
+ },
463
+ {
464
+ "fnName": "iamServiceListUserGroup",
465
+ "method": "get",
466
+ "path": "/iam/user-group"
467
+ },
468
+ {
469
+ "fnName": "iamServiceUpdateActivationCode",
470
+ "method": "put",
471
+ "path": "/iam/activation-code/{ID}"
472
+ },
473
+ {
474
+ "fnName": "iamServiceGetActivationCode",
475
+ "method": "get",
476
+ "path": "/iam/activation-code/{ID}"
477
+ },
478
+ {
479
+ "fnName": "iamServiceDeleteActivationCode",
480
+ "method": "delete",
481
+ "path": "/iam/activation-code/{ID}"
482
+ },
483
+ {
484
+ "fnName": "iamServiceDeleteRoleassignmentScopeGroupRef",
485
+ "method": "delete",
486
+ "path": "/iam/roleassignment-scope-group/{uuid}"
487
+ },
488
+ {
489
+ "fnName": "iamServiceCreateRoleassignmentRoleRef",
490
+ "method": "post",
491
+ "path": "/iam/roleassignment-role"
492
+ },
493
+ {
494
+ "fnName": "iamServiceDeleteRoleassignmentRoleRef",
495
+ "method": "delete",
496
+ "path": "/iam/roleassignment-role/{uuid}"
497
+ },
498
+ {
499
+ "fnName": "iamServiceCreateSamlRoleRef",
500
+ "method": "post",
501
+ "path": "/iam/saml-role"
502
+ },
503
+ {
504
+ "fnName": "iamServiceCreateLdapServer",
505
+ "method": "post",
506
+ "path": "/iam/ldap-server"
507
+ },
508
+ {
509
+ "fnName": "iamServiceListLdapServer",
510
+ "method": "get",
511
+ "path": "/iam/ldap-server"
512
+ },
513
+ {
514
+ "fnName": "iamServiceBulkRefUpdate",
515
+ "method": "post",
516
+ "path": "/iam/bulk-ref-update"
517
+ },
518
+ {
519
+ "fnName": "iamServiceUpdateSaml",
520
+ "method": "put",
521
+ "path": "/iam/saml/{ID}"
522
+ },
523
+ {
524
+ "fnName": "iamServiceGetSaml",
525
+ "method": "get",
526
+ "path": "/iam/saml/{ID}"
527
+ },
528
+ {
529
+ "fnName": "iamServiceDeleteSaml",
530
+ "method": "delete",
531
+ "path": "/iam/saml/{ID}"
532
+ },
533
+ {
534
+ "fnName": "iamServiceCreateUserGroupUserRef",
535
+ "method": "post",
536
+ "path": "/iam/user-group-user"
537
+ },
538
+ {
539
+ "fnName": "iamServiceBulkListEmailTemplate",
540
+ "method": "post",
541
+ "path": "/iam/bulk-list-email-template"
542
+ },
543
+ {
544
+ "fnName": "iamServiceDeleteScopeGroupScopeRef",
545
+ "method": "delete",
546
+ "path": "/iam/scope-group-scope/{uuid}"
547
+ },
548
+ {
549
+ "fnName": "iamServiceBulkListScope",
550
+ "method": "post",
551
+ "path": "/iam/bulk-list-scope"
552
+ },
553
+ {
554
+ "fnName": "iamServiceUpdateLdapServer",
555
+ "method": "put",
556
+ "path": "/iam/ldap-server/{ID}"
557
+ },
558
+ {
559
+ "fnName": "iamServiceGetLdapServer",
560
+ "method": "get",
561
+ "path": "/iam/ldap-server/{ID}"
562
+ },
563
+ {
564
+ "fnName": "iamServiceDeleteLdapServer",
565
+ "method": "delete",
566
+ "path": "/iam/ldap-server/{ID}"
567
+ },
568
+ {
569
+ "fnName": "iamServiceUpdateUser",
570
+ "method": "put",
571
+ "path": "/iam/user/{ID}"
572
+ },
573
+ {
574
+ "fnName": "iamServiceGetUser",
575
+ "method": "get",
576
+ "path": "/iam/user/{ID}"
577
+ },
578
+ {
579
+ "fnName": "iamServiceDeleteUser",
580
+ "method": "delete",
581
+ "path": "/iam/user/{ID}"
582
+ },
583
+ {
584
+ "fnName": "iamServiceCreateScopeGroupScopeRef",
585
+ "method": "post",
586
+ "path": "/iam/scope-group-scope"
587
+ },
588
+ {
589
+ "fnName": "iamServiceBulkListScopeGroup",
590
+ "method": "post",
591
+ "path": "/iam/bulk-list-scope-group"
592
+ },
593
+ {
594
+ "fnName": "iamServiceCreateIdentityProvider",
595
+ "method": "post",
596
+ "path": "/iam/identity-provider"
597
+ },
598
+ {
599
+ "fnName": "iamServiceListIdentityProvider",
600
+ "method": "get",
601
+ "path": "/iam/identity-provider"
602
+ },
603
+ {
604
+ "fnName": "iamServiceDeleteSamlRoleRef",
605
+ "method": "delete",
606
+ "path": "/iam/saml-role/{uuid}"
607
+ },
608
+ {
609
+ "fnName": "iamServiceUpdateUserGroup",
610
+ "method": "put",
611
+ "path": "/iam/user-group/{ID}"
612
+ },
613
+ {
614
+ "fnName": "iamServiceGetUserGroup",
615
+ "method": "get",
616
+ "path": "/iam/user-group/{ID}"
617
+ },
618
+ {
619
+ "fnName": "iamServiceDeleteUserGroup",
620
+ "method": "delete",
621
+ "path": "/iam/user-group/{ID}"
622
+ },
623
+ {
624
+ "fnName": "iamServiceDeleteRoleassignmentScopeRef",
625
+ "method": "delete",
626
+ "path": "/iam/roleassignment-scope/{uuid}"
627
+ },
628
+ {
629
+ "fnName": "iamServiceCreateOidcSettingRoleRef",
630
+ "method": "post",
631
+ "path": "/iam/oidc-setting-role"
632
+ },
633
+ {
634
+ "fnName": "iamServiceBulkListUserView",
635
+ "method": "post",
636
+ "path": "/iam/bulk-list-user-view"
637
+ },
638
+ {
639
+ "fnName": "iamServiceCreateUserUserDetailRef",
640
+ "method": "post",
641
+ "path": "/iam/user-user-detail"
642
+ },
643
+ {
644
+ "fnName": "iamServiceCreateDeletedResource",
645
+ "method": "post",
646
+ "path": "/iam/deleted-resource"
647
+ },
648
+ {
649
+ "fnName": "iamServiceListDeletedResource",
650
+ "method": "get",
651
+ "path": "/iam/deleted-resource"
652
+ },
653
+ {
654
+ "fnName": "iamServiceCreateScope",
655
+ "method": "post",
656
+ "path": "/iam/scope"
657
+ },
658
+ {
659
+ "fnName": "iamServiceListScope",
660
+ "method": "get",
661
+ "path": "/iam/scope"
662
+ },
663
+ {
664
+ "fnName": "iamServiceCreateLastPublishedNotification",
665
+ "method": "post",
666
+ "path": "/iam/last-published-notification"
667
+ },
668
+ {
669
+ "fnName": "iamServiceListLastPublishedNotification",
670
+ "method": "get",
671
+ "path": "/iam/last-published-notification"
672
+ },
673
+ {
674
+ "fnName": "iamServiceCreateRevokeEvent",
675
+ "method": "post",
676
+ "path": "/iam/revoke-event"
677
+ },
678
+ {
679
+ "fnName": "iamServiceListRevokeEvent",
680
+ "method": "get",
681
+ "path": "/iam/revoke-event"
682
+ },
683
+ {
684
+ "fnName": "iamServiceCreateUserDetail",
685
+ "method": "post",
686
+ "path": "/iam/user-detail"
687
+ },
688
+ {
689
+ "fnName": "iamServiceListUserDetail",
690
+ "method": "get",
691
+ "path": "/iam/user-detail"
692
+ },
693
+ {
694
+ "fnName": "iamServiceDeleteUserGroupUserRef",
695
+ "method": "delete",
696
+ "path": "/iam/user-group-user/{uuid}"
697
+ },
698
+ {
699
+ "fnName": "iamServiceDeleteRoleassignmentUserDetailRef",
700
+ "method": "delete",
701
+ "path": "/iam/roleassignment-user-detail/{uuid}"
702
+ },
703
+ {
704
+ "fnName": "iamServiceBulkListUserGroup",
705
+ "method": "post",
706
+ "path": "/iam/bulk-list-user-group"
707
+ },
708
+ {
709
+ "fnName": "iamServiceBulkListUserDetail",
710
+ "method": "post",
711
+ "path": "/iam/bulk-list-user-detail"
712
+ },
713
+ {
714
+ "fnName": "iamServiceCreateRoleassignmentUserGroupRef",
715
+ "method": "post",
716
+ "path": "/iam/roleassignment-user-group"
717
+ },
718
+ {
719
+ "fnName": "iamServiceCreateUser",
720
+ "method": "post",
721
+ "path": "/iam/user"
722
+ },
723
+ {
724
+ "fnName": "iamServiceListUser",
725
+ "method": "get",
726
+ "path": "/iam/user"
727
+ },
728
+ {
729
+ "fnName": "iamServiceUpdateOidcSetting",
730
+ "method": "put",
731
+ "path": "/iam/oidc-setting/{ID}"
732
+ },
733
+ {
734
+ "fnName": "iamServiceGetOidcSetting",
735
+ "method": "get",
736
+ "path": "/iam/oidc-setting/{ID}"
737
+ },
738
+ {
739
+ "fnName": "iamServiceDeleteOidcSetting",
740
+ "method": "delete",
741
+ "path": "/iam/oidc-setting/{ID}"
742
+ },
743
+ {
744
+ "fnName": "iamServiceDeleteUserGroupUserDetailRef",
745
+ "method": "delete",
746
+ "path": "/iam/user-group-user-detail/{uuid}"
747
+ },
748
+ {
749
+ "fnName": "iamServiceBulkListLdapServer",
750
+ "method": "post",
751
+ "path": "/iam/bulk-list-ldap-server"
752
+ },
753
+ {
754
+ "fnName": "iamServiceCreateSaml",
755
+ "method": "post",
756
+ "path": "/iam/saml"
757
+ },
758
+ {
759
+ "fnName": "iamServiceListSaml",
760
+ "method": "get",
761
+ "path": "/iam/saml"
762
+ },
763
+ {
764
+ "fnName": "iamServiceUpdateIdentityProvider",
765
+ "method": "put",
766
+ "path": "/iam/identity-provider/{ID}"
767
+ },
768
+ {
769
+ "fnName": "iamServiceGetIdentityProvider",
770
+ "method": "get",
771
+ "path": "/iam/identity-provider/{ID}"
772
+ },
773
+ {
774
+ "fnName": "iamServiceDeleteIdentityProvider",
775
+ "method": "delete",
776
+ "path": "/iam/identity-provider/{ID}"
777
+ },
778
+ {
779
+ "fnName": "iamServiceCreateRoleassignmentScopeGroupRef",
780
+ "method": "post",
781
+ "path": "/iam/roleassignment-scope-group"
782
+ },
783
+ {
784
+ "fnName": "iamServiceCreateScopeGroup",
785
+ "method": "post",
786
+ "path": "/iam/scope-group"
787
+ },
788
+ {
789
+ "fnName": "iamServiceListScopeGroup",
790
+ "method": "get",
791
+ "path": "/iam/scope-group"
792
+ },
793
+ {
794
+ "fnName": "iamServiceDeleteUserUserDetailRef",
795
+ "method": "delete",
796
+ "path": "/iam/user-user-detail/{uuid}"
797
+ },
798
+ {
799
+ "fnName": "iamServiceExtRefUpdate",
800
+ "method": "post",
801
+ "path": "/iam/ext-ref-update"
802
+ },
803
+ {
804
+ "fnName": "iamServiceUpdateDeletedResource",
805
+ "method": "put",
806
+ "path": "/iam/deleted-resource/{ID}"
807
+ },
808
+ {
809
+ "fnName": "iamServiceGetDeletedResource",
810
+ "method": "get",
811
+ "path": "/iam/deleted-resource/{ID}"
812
+ },
813
+ {
814
+ "fnName": "iamServiceDeleteDeletedResource",
815
+ "method": "delete",
816
+ "path": "/iam/deleted-resource/{ID}"
817
+ },
818
+ {
819
+ "fnName": "iamServiceBulkListActivationCode",
820
+ "method": "post",
821
+ "path": "/iam/bulk-list-activation-code"
822
+ },
823
+ {
824
+ "fnName": "iamServiceBulkListUser",
825
+ "method": "post",
826
+ "path": "/iam/bulk-list-user"
827
+ },
828
+ {
829
+ "fnName": "iamServiceBulkListLastPublishedNotification",
830
+ "method": "post",
831
+ "path": "/iam/bulk-list-last-published-notification"
832
+ },
833
+ {
834
+ "fnName": "iamServiceBulkExtRefUpdate",
835
+ "method": "post",
836
+ "path": "/iam/bulk-ext-ref-update"
837
+ },
838
+ {
839
+ "fnName": "iamServiceUpdateLastPublishedNotification",
840
+ "method": "put",
841
+ "path": "/iam/last-published-notification/{ID}"
842
+ },
843
+ {
844
+ "fnName": "iamServiceGetLastPublishedNotification",
845
+ "method": "get",
846
+ "path": "/iam/last-published-notification/{ID}"
847
+ },
848
+ {
849
+ "fnName": "iamServiceDeleteLastPublishedNotification",
850
+ "method": "delete",
851
+ "path": "/iam/last-published-notification/{ID}"
852
+ },
853
+ {
854
+ "fnName": "iamServiceCreateUserGroupUserDetailRef",
855
+ "method": "post",
856
+ "path": "/iam/user-group-user-detail"
857
+ },
858
+ {
859
+ "fnName": "iamServiceCreateSMTPServer",
860
+ "method": "post",
861
+ "path": "/iam/smtp-server"
862
+ },
863
+ {
864
+ "fnName": "iamServiceListSMTPServer",
865
+ "method": "get",
866
+ "path": "/iam/smtp-server"
867
+ },
868
+ {
869
+ "fnName": "iamServiceCreateActivationCode",
870
+ "method": "post",
871
+ "path": "/iam/activation-code"
872
+ },
873
+ {
874
+ "fnName": "iamServiceListActivationCode",
875
+ "method": "get",
876
+ "path": "/iam/activation-code"
877
+ },
878
+ {
879
+ "fnName": "iamServiceCreateRole",
880
+ "method": "post",
881
+ "path": "/iam/role"
882
+ },
883
+ {
884
+ "fnName": "iamServiceListRole",
885
+ "method": "get",
886
+ "path": "/iam/role"
887
+ },
888
+ {
889
+ "fnName": "iamServiceCreateRoleassignment",
890
+ "method": "post",
891
+ "path": "/iam/roleassignment"
892
+ },
893
+ {
894
+ "fnName": "iamServiceListRoleassignment",
895
+ "method": "get",
896
+ "path": "/iam/roleassignment"
897
+ },
898
+ {
899
+ "fnName": "iamServiceBulkListRole",
900
+ "method": "post",
901
+ "path": "/iam/bulk-list-role"
902
+ },
903
+ {
904
+ "fnName": "iamServiceUpdateUserDetail",
905
+ "method": "put",
906
+ "path": "/iam/user-detail/{ID}"
907
+ },
908
+ {
909
+ "fnName": "iamServiceGetUserDetail",
910
+ "method": "get",
911
+ "path": "/iam/user-detail/{ID}"
912
+ },
913
+ {
914
+ "fnName": "iamServiceDeleteUserDetail",
915
+ "method": "delete",
916
+ "path": "/iam/user-detail/{ID}"
917
+ },
918
+ {
919
+ "fnName": "iamRPCServiceCheckOIDCServerConnection",
920
+ "method": "post",
921
+ "path": "/iam/check-oidc-server-connection"
922
+ },
923
+ {
924
+ "fnName": "iamRPCServiceDeleteOpenIDCSetting",
925
+ "method": "post",
926
+ "path": "/iam/delete-oidc-setting"
927
+ },
928
+ {
929
+ "fnName": "iamRPCServiceActivateUser",
930
+ "method": "post",
931
+ "path": "/iam/activate-user"
932
+ },
933
+ {
934
+ "fnName": "iamRPCServiceGetSAMLAuthenticateTokenFromSAMLResponseXML",
935
+ "method": "post",
936
+ "path": "/iam/get-saml-authenticate-token"
937
+ },
938
+ {
939
+ "fnName": "iamRPCServiceDeleteUser",
940
+ "method": "post",
941
+ "path": "/iam/delete-user"
942
+ },
943
+ {
944
+ "fnName": "iamRPCServiceImport",
945
+ "method": "post",
946
+ "path": "/iam/import"
947
+ },
948
+ {
949
+ "fnName": "iamRPCServiceActivateUserWithoutPassword",
950
+ "method": "post",
951
+ "path": "/iam/activate-user-without-password"
952
+ },
953
+ {
954
+ "fnName": "iamRPCServiceForgotPassword",
955
+ "method": "post",
956
+ "path": "/iam/forgot-password"
957
+ },
958
+ {
959
+ "fnName": "iamRPCServiceSupportedUserVerificationMethods",
960
+ "method": "get",
961
+ "path": "/iam/supported-user-verification-methods"
962
+ },
963
+ {
964
+ "fnName": "iamRPCServiceGetIdentityProviders",
965
+ "method": "get",
966
+ "path": "/iam/identity-providers"
967
+ },
968
+ {
969
+ "fnName": "iamRPCServiceVerifyActivationCode",
970
+ "method": "post",
971
+ "path": "/iam/verify-activation-code"
972
+ },
973
+ {
974
+ "fnName": "iamRPCServiceGetCapabilityCatalog",
975
+ "method": "post",
976
+ "path": "/iam/get-capability-catalog"
977
+ },
978
+ {
979
+ "fnName": "iamRPCServiceUpdateAuthenticationSettings",
980
+ "method": "post",
981
+ "path": "/iam/update-authentication-settings"
982
+ },
983
+ {
984
+ "fnName": "iamRPCServiceCreateScope",
985
+ "method": "post",
986
+ "path": "/iam/create-scope"
987
+ },
988
+ {
989
+ "fnName": "iamRPCServiceSendTestMail",
990
+ "method": "post",
991
+ "path": "/iam/send-test-mail"
992
+ },
993
+ {
994
+ "fnName": "iamRPCServiceGetIdentityProvidersRedirectURLs",
995
+ "method": "post",
996
+ "path": "/iam/identity-providers-redirect-urls"
997
+ },
998
+ {
999
+ "fnName": "iamRPCServiceDeleteScope",
1000
+ "method": "post",
1001
+ "path": "/iam/delete-scope"
1002
+ },
1003
+ {
1004
+ "fnName": "iamRPCServiceSendForgotPasswordEmail",
1005
+ "method": "post",
1006
+ "path": "/iam/send-forgot-password-email"
1007
+ },
1008
+ {
1009
+ "fnName": "iamRPCServiceCreateSAMLSetting",
1010
+ "method": "post",
1011
+ "path": "/iam/create-saml-setting"
1012
+ },
1013
+ {
1014
+ "fnName": "iamRPCServiceConfigureSMTPServer",
1015
+ "method": "post",
1016
+ "path": "/iam/configure-smtp-server"
1017
+ },
1018
+ {
1019
+ "fnName": "iamRPCServiceSearchIdentityProviderGroups",
1020
+ "method": "post",
1021
+ "path": "/iam/search-identity-provider-groups"
1022
+ },
1023
+ {
1024
+ "fnName": "iamRPCServiceEditSAMLSetting",
1025
+ "method": "post",
1026
+ "path": "/iam/edit-saml-setting"
1027
+ },
1028
+ {
1029
+ "fnName": "iamRPCServiceDeleteSAMLSetting",
1030
+ "method": "post",
1031
+ "path": "/iam/delete-saml-setting"
1032
+ },
1033
+ {
1034
+ "fnName": "iamRPCServiceCreateUser",
1035
+ "method": "post",
1036
+ "path": "/iam/create-user"
1037
+ },
1038
+ {
1039
+ "fnName": "iamRPCServiceGetUsersByRoleAssignmentAndStatus",
1040
+ "method": "get",
1041
+ "path": "/iam/get-users-by-roleassignment-status"
1042
+ },
1043
+ {
1044
+ "fnName": "iamRPCServiceGetPortalURL",
1045
+ "method": "get",
1046
+ "path": "/iam/get-portal-url"
1047
+ },
1048
+ {
1049
+ "fnName": "iamRPCServiceUpdateScope",
1050
+ "method": "post",
1051
+ "path": "/iam/update-scope"
1052
+ },
1053
+ {
1054
+ "fnName": "iamRPCServiceEditUser",
1055
+ "method": "post",
1056
+ "path": "/iam/edit-user"
1057
+ },
1058
+ {
1059
+ "fnName": "iamRPCServiceEditOpenIDCSetting",
1060
+ "method": "post",
1061
+ "path": "/iam/edit-oidc-setting"
1062
+ },
1063
+ {
1064
+ "fnName": "iamRPCServiceCheckLDAPNetworkConnection",
1065
+ "method": "post",
1066
+ "path": "/iam/check-ldap-network-connection"
1067
+ },
1068
+ {
1069
+ "fnName": "iamRPCServiceExport",
1070
+ "method": "get",
1071
+ "path": "/iam/export"
1072
+ },
1073
+ {
1074
+ "fnName": "iamRPCServiceGetUserDetailsData",
1075
+ "method": "get",
1076
+ "path": "/iam/get-user-details"
1077
+ },
1078
+ {
1079
+ "fnName": "iamRPCServiceCreateOpenIDCSetting",
1080
+ "method": "post",
1081
+ "path": "/iam/create-oidc-setting"
1082
+ },
1083
+ {
1084
+ "fnName": "iamRPCServiceCheckLDAPAuthentication",
1085
+ "method": "post",
1086
+ "path": "/iam/check-ldap-authentication"
1087
+ },
1088
+ {
1089
+ "fnName": "iamRPCServiceGetOidcRedirectAuthUri",
1090
+ "method": "get",
1091
+ "path": "/iam/oidc-redirect-auth-uri"
1092
+ },
1093
+ {
1094
+ "fnName": "iamRPCServiceSendActivateUserEmail",
1095
+ "method": "post",
1096
+ "path": "/iam/send-activate-user-email"
1097
+ },
1098
+ {
1099
+ "fnName": "iamRPCServiceEditUserGroup",
1100
+ "method": "post",
1101
+ "path": "/iam/edit-user-group"
1102
+ },
1103
+ {
1104
+ "fnName": "iamRPCServiceResetPassword",
1105
+ "method": "post",
1106
+ "path": "/iam/reset-password"
1107
+ },
1108
+ {
1109
+ "fnName": "iamRPCServiceCreateUserGroup",
1110
+ "method": "post",
1111
+ "path": "/iam/create-user-group"
1112
+ },
1113
+ {
1114
+ "fnName": "iamRPCServiceGetUserScopes",
1115
+ "method": "get",
1116
+ "path": "/iam/get-user-scopes"
1117
+ },
1118
+ {
1119
+ "fnName": "iamRPCServiceChangePassword",
1120
+ "method": "post",
1121
+ "path": "/iam/change-password"
1122
+ },
1123
+ {
1124
+ "fnName": "iamRPCServiceUpdateIdentityProviderPriority",
1125
+ "method": "post",
1126
+ "path": "/iam/identity-provider-priority"
1127
+ },
1128
+ {
1129
+ "fnName": "iamRPCServiceConfigureLDAPServer",
1130
+ "method": "post",
1131
+ "path": "/iam/configure-ldap-server"
1132
+ },
1133
+ {
1134
+ "fnName": "authorizationAuthorizeIAMToken",
1135
+ "method": "post",
1136
+ "path": "/iam/authorize-iam-token"
1137
+ },
1138
+ {
1139
+ "fnName": "authorizationGetJWTKeys",
1140
+ "method": "get",
1141
+ "path": "/iam/jwt/keys"
1142
+ },
1143
+ {
1144
+ "fnName": "authorizationGetScope",
1145
+ "method": "post",
1146
+ "path": "/iam/get-scope"
1147
+ },
1148
+ {
1149
+ "fnName": "authorizationGenerateAccessToken",
1150
+ "method": "post",
1151
+ "path": "/iam/generate-access-token"
1152
+ },
1153
+ {
1154
+ "fnName": "authorizationAuthorizeServiceToken",
1155
+ "method": "post",
1156
+ "path": "/iam/authorize-service-token"
1157
+ },
1158
+ {
1159
+ "fnName": "authenticationAuthenticate",
1160
+ "method": "post",
1161
+ "path": "/iam/authenticate"
1162
+ },
1163
+ {
1164
+ "fnName": "authenticationAuthCallbackOpenIDConnect",
1165
+ "method": "get",
1166
+ "path": "/iam/auth/oidc/callback"
1167
+ }
1168
+ ],
1169
+ "errors": [],
1170
+ "warnings": [],
1171
+ "callsTotal": 185,
1172
+ "callsConverted": 185,
1173
+ "no_mockdata_num": 184
1174
+ }
1175
+ }