@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,872 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "iamRPCServiceCheckOIDCServerConnection",
5
+ "protocol": "REST",
6
+ "method": "POST",
7
+ "entitypath": "{base_path}/{version}/iam/check-oidc-server-connection?{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": "iamRPCServiceDeleteOpenIDCSetting",
25
+ "protocol": "REST",
26
+ "method": "POST",
27
+ "entitypath": "{base_path}/{version}/iam/delete-oidc-setting?{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": "iamRPCServiceActivateUser",
45
+ "protocol": "REST",
46
+ "method": "POST",
47
+ "entitypath": "{base_path}/{version}/iam/activate-user?{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": "iamRPCServiceGetSAMLAuthenticateTokenFromSAMLResponseXML",
65
+ "protocol": "REST",
66
+ "method": "POST",
67
+ "entitypath": "{base_path}/{version}/iam/get-saml-authenticate-token?{query}",
68
+ "requestSchema": "schema.json",
69
+ "responseSchema": "schema.json",
70
+ "timeout": 0,
71
+ "sendEmpty": false,
72
+ "requestDatatype": "JSON",
73
+ "responseDatatype": "JSON",
74
+ "headers": {},
75
+ "responseObjects": [
76
+ {
77
+ "type": "default",
78
+ "key": "",
79
+ "mockFile": ""
80
+ }
81
+ ]
82
+ },
83
+ {
84
+ "name": "iamRPCServiceDeleteUser",
85
+ "protocol": "REST",
86
+ "method": "POST",
87
+ "entitypath": "{base_path}/{version}/iam/delete-user?{query}",
88
+ "requestSchema": "schema.json",
89
+ "responseSchema": "schema.json",
90
+ "timeout": 0,
91
+ "sendEmpty": false,
92
+ "requestDatatype": "JSON",
93
+ "responseDatatype": "JSON",
94
+ "headers": {},
95
+ "responseObjects": [
96
+ {
97
+ "type": "default",
98
+ "key": "",
99
+ "mockFile": ""
100
+ }
101
+ ]
102
+ },
103
+ {
104
+ "name": "iamRPCServiceImport",
105
+ "protocol": "REST",
106
+ "method": "POST",
107
+ "entitypath": "{base_path}/{version}/iam/import?{query}",
108
+ "requestSchema": "schema.json",
109
+ "responseSchema": "schema.json",
110
+ "timeout": 0,
111
+ "sendEmpty": false,
112
+ "requestDatatype": "JSON",
113
+ "responseDatatype": "JSON",
114
+ "headers": {},
115
+ "responseObjects": [
116
+ {
117
+ "type": "default",
118
+ "key": "",
119
+ "mockFile": ""
120
+ }
121
+ ]
122
+ },
123
+ {
124
+ "name": "iamRPCServiceActivateUserWithoutPassword",
125
+ "protocol": "REST",
126
+ "method": "POST",
127
+ "entitypath": "{base_path}/{version}/iam/activate-user-without-password?{query}",
128
+ "requestSchema": "schema.json",
129
+ "responseSchema": "schema.json",
130
+ "timeout": 0,
131
+ "sendEmpty": false,
132
+ "requestDatatype": "JSON",
133
+ "responseDatatype": "JSON",
134
+ "headers": {},
135
+ "responseObjects": [
136
+ {
137
+ "type": "default",
138
+ "key": "",
139
+ "mockFile": ""
140
+ }
141
+ ]
142
+ },
143
+ {
144
+ "name": "iamRPCServiceForgotPassword",
145
+ "protocol": "REST",
146
+ "method": "POST",
147
+ "entitypath": "{base_path}/{version}/iam/forgot-password?{query}",
148
+ "requestSchema": "schema.json",
149
+ "responseSchema": "schema.json",
150
+ "timeout": 0,
151
+ "sendEmpty": false,
152
+ "requestDatatype": "JSON",
153
+ "responseDatatype": "JSON",
154
+ "headers": {},
155
+ "responseObjects": [
156
+ {
157
+ "type": "default",
158
+ "key": "",
159
+ "mockFile": ""
160
+ }
161
+ ]
162
+ },
163
+ {
164
+ "name": "iamRPCServiceSupportedUserVerificationMethods",
165
+ "protocol": "REST",
166
+ "method": "GET",
167
+ "entitypath": "{base_path}/{version}/iam/supported-user-verification-methods?{query}",
168
+ "requestSchema": "schema.json",
169
+ "responseSchema": "schema.json",
170
+ "timeout": 0,
171
+ "sendEmpty": false,
172
+ "sendGetBody": 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": "iamRPCServiceGetIdentityProviders",
186
+ "protocol": "REST",
187
+ "method": "GET",
188
+ "entitypath": "{base_path}/{version}/iam/identity-providers?{query}",
189
+ "requestSchema": "schema.json",
190
+ "responseSchema": "schema.json",
191
+ "timeout": 0,
192
+ "sendEmpty": false,
193
+ "sendGetBody": false,
194
+ "requestDatatype": "JSON",
195
+ "responseDatatype": "JSON",
196
+ "headers": {},
197
+ "responseObjects": [
198
+ {
199
+ "type": "default",
200
+ "key": "",
201
+ "mockFile": ""
202
+ }
203
+ ]
204
+ },
205
+ {
206
+ "name": "iamRPCServiceVerifyActivationCode",
207
+ "protocol": "REST",
208
+ "method": "POST",
209
+ "entitypath": "{base_path}/{version}/iam/verify-activation-code?{query}",
210
+ "requestSchema": "schema.json",
211
+ "responseSchema": "schema.json",
212
+ "timeout": 0,
213
+ "sendEmpty": 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": "iamRPCServiceGetCapabilityCatalog",
227
+ "protocol": "REST",
228
+ "method": "POST",
229
+ "entitypath": "{base_path}/{version}/iam/get-capability-catalog?{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": "iamRPCServiceUpdateAuthenticationSettings",
247
+ "protocol": "REST",
248
+ "method": "POST",
249
+ "entitypath": "{base_path}/{version}/iam/update-authentication-settings?{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": "iamRPCServiceCreateScope",
267
+ "protocol": "REST",
268
+ "method": "POST",
269
+ "entitypath": "{base_path}/{version}/iam/create-scope?{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": "iamRPCServiceSendTestMail",
287
+ "protocol": "REST",
288
+ "method": "POST",
289
+ "entitypath": "{base_path}/{version}/iam/send-test-mail?{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": "iamRPCServiceGetIdentityProvidersRedirectURLs",
307
+ "protocol": "REST",
308
+ "method": "POST",
309
+ "entitypath": "{base_path}/{version}/iam/identity-providers-redirect-urls?{query}",
310
+ "requestSchema": "schema.json",
311
+ "responseSchema": "schema.json",
312
+ "timeout": 0,
313
+ "sendEmpty": false,
314
+ "requestDatatype": "JSON",
315
+ "responseDatatype": "JSON",
316
+ "headers": {},
317
+ "responseObjects": [
318
+ {
319
+ "type": "default",
320
+ "key": "",
321
+ "mockFile": ""
322
+ }
323
+ ]
324
+ },
325
+ {
326
+ "name": "iamRPCServiceDeleteScope",
327
+ "protocol": "REST",
328
+ "method": "POST",
329
+ "entitypath": "{base_path}/{version}/iam/delete-scope?{query}",
330
+ "requestSchema": "schema.json",
331
+ "responseSchema": "schema.json",
332
+ "timeout": 0,
333
+ "sendEmpty": false,
334
+ "requestDatatype": "JSON",
335
+ "responseDatatype": "JSON",
336
+ "headers": {},
337
+ "responseObjects": [
338
+ {
339
+ "type": "default",
340
+ "key": "",
341
+ "mockFile": ""
342
+ }
343
+ ]
344
+ },
345
+ {
346
+ "name": "iamRPCServiceSendForgotPasswordEmail",
347
+ "protocol": "REST",
348
+ "method": "POST",
349
+ "entitypath": "{base_path}/{version}/iam/send-forgot-password-email?{query}",
350
+ "requestSchema": "schema.json",
351
+ "responseSchema": "schema.json",
352
+ "timeout": 0,
353
+ "sendEmpty": false,
354
+ "requestDatatype": "JSON",
355
+ "responseDatatype": "JSON",
356
+ "headers": {},
357
+ "responseObjects": [
358
+ {
359
+ "type": "default",
360
+ "key": "",
361
+ "mockFile": ""
362
+ }
363
+ ]
364
+ },
365
+ {
366
+ "name": "iamRPCServiceCreateSAMLSetting",
367
+ "protocol": "REST",
368
+ "method": "POST",
369
+ "entitypath": "{base_path}/{version}/iam/create-saml-setting?{query}",
370
+ "requestSchema": "schema.json",
371
+ "responseSchema": "schema.json",
372
+ "timeout": 0,
373
+ "sendEmpty": false,
374
+ "requestDatatype": "JSON",
375
+ "responseDatatype": "JSON",
376
+ "headers": {},
377
+ "responseObjects": [
378
+ {
379
+ "type": "default",
380
+ "key": "",
381
+ "mockFile": ""
382
+ }
383
+ ]
384
+ },
385
+ {
386
+ "name": "iamRPCServiceConfigureSMTPServer",
387
+ "protocol": "REST",
388
+ "method": "POST",
389
+ "entitypath": "{base_path}/{version}/iam/configure-smtp-server?{query}",
390
+ "requestSchema": "schema.json",
391
+ "responseSchema": "schema.json",
392
+ "timeout": 0,
393
+ "sendEmpty": false,
394
+ "requestDatatype": "JSON",
395
+ "responseDatatype": "JSON",
396
+ "headers": {},
397
+ "responseObjects": [
398
+ {
399
+ "type": "default",
400
+ "key": "",
401
+ "mockFile": ""
402
+ }
403
+ ]
404
+ },
405
+ {
406
+ "name": "iamRPCServiceSearchIdentityProviderGroups",
407
+ "protocol": "REST",
408
+ "method": "POST",
409
+ "entitypath": "{base_path}/{version}/iam/search-identity-provider-groups?{query}",
410
+ "requestSchema": "schema.json",
411
+ "responseSchema": "schema.json",
412
+ "timeout": 0,
413
+ "sendEmpty": false,
414
+ "requestDatatype": "JSON",
415
+ "responseDatatype": "JSON",
416
+ "headers": {},
417
+ "responseObjects": [
418
+ {
419
+ "type": "default",
420
+ "key": "",
421
+ "mockFile": ""
422
+ }
423
+ ]
424
+ },
425
+ {
426
+ "name": "iamRPCServiceEditSAMLSetting",
427
+ "protocol": "REST",
428
+ "method": "POST",
429
+ "entitypath": "{base_path}/{version}/iam/edit-saml-setting?{query}",
430
+ "requestSchema": "schema.json",
431
+ "responseSchema": "schema.json",
432
+ "timeout": 0,
433
+ "sendEmpty": false,
434
+ "requestDatatype": "JSON",
435
+ "responseDatatype": "JSON",
436
+ "headers": {},
437
+ "responseObjects": [
438
+ {
439
+ "type": "default",
440
+ "key": "",
441
+ "mockFile": ""
442
+ }
443
+ ]
444
+ },
445
+ {
446
+ "name": "iamRPCServiceDeleteSAMLSetting",
447
+ "protocol": "REST",
448
+ "method": "POST",
449
+ "entitypath": "{base_path}/{version}/iam/delete-saml-setting?{query}",
450
+ "requestSchema": "schema.json",
451
+ "responseSchema": "schema.json",
452
+ "timeout": 0,
453
+ "sendEmpty": false,
454
+ "requestDatatype": "JSON",
455
+ "responseDatatype": "JSON",
456
+ "headers": {},
457
+ "responseObjects": [
458
+ {
459
+ "type": "default",
460
+ "key": "",
461
+ "mockFile": ""
462
+ }
463
+ ]
464
+ },
465
+ {
466
+ "name": "iamRPCServiceCreateUser",
467
+ "protocol": "REST",
468
+ "method": "POST",
469
+ "entitypath": "{base_path}/{version}/iam/create-user?{query}",
470
+ "requestSchema": "schema.json",
471
+ "responseSchema": "schema.json",
472
+ "timeout": 0,
473
+ "sendEmpty": false,
474
+ "requestDatatype": "JSON",
475
+ "responseDatatype": "JSON",
476
+ "headers": {},
477
+ "responseObjects": [
478
+ {
479
+ "type": "default",
480
+ "key": "",
481
+ "mockFile": ""
482
+ }
483
+ ]
484
+ },
485
+ {
486
+ "name": "iamRPCServiceGetUsersByRoleAssignmentAndStatus",
487
+ "protocol": "REST",
488
+ "method": "GET",
489
+ "entitypath": "{base_path}/{version}/iam/get-users-by-roleassignment-status?{query}",
490
+ "requestSchema": "schema.json",
491
+ "responseSchema": "schema.json",
492
+ "timeout": 0,
493
+ "sendEmpty": false,
494
+ "sendGetBody": false,
495
+ "requestDatatype": "JSON",
496
+ "responseDatatype": "JSON",
497
+ "headers": {},
498
+ "responseObjects": [
499
+ {
500
+ "type": "default",
501
+ "key": "",
502
+ "mockFile": ""
503
+ }
504
+ ]
505
+ },
506
+ {
507
+ "name": "iamRPCServiceGetPortalURL",
508
+ "protocol": "REST",
509
+ "method": "GET",
510
+ "entitypath": "{base_path}/{version}/iam/get-portal-url?{query}",
511
+ "requestSchema": "schema.json",
512
+ "responseSchema": "schema.json",
513
+ "timeout": 0,
514
+ "sendEmpty": false,
515
+ "sendGetBody": false,
516
+ "requestDatatype": "JSON",
517
+ "responseDatatype": "JSON",
518
+ "headers": {},
519
+ "responseObjects": [
520
+ {
521
+ "type": "default",
522
+ "key": "",
523
+ "mockFile": ""
524
+ }
525
+ ]
526
+ },
527
+ {
528
+ "name": "iamRPCServiceUpdateScope",
529
+ "protocol": "REST",
530
+ "method": "POST",
531
+ "entitypath": "{base_path}/{version}/iam/update-scope?{query}",
532
+ "requestSchema": "schema.json",
533
+ "responseSchema": "schema.json",
534
+ "timeout": 0,
535
+ "sendEmpty": false,
536
+ "requestDatatype": "JSON",
537
+ "responseDatatype": "JSON",
538
+ "headers": {},
539
+ "responseObjects": [
540
+ {
541
+ "type": "default",
542
+ "key": "",
543
+ "mockFile": ""
544
+ }
545
+ ]
546
+ },
547
+ {
548
+ "name": "iamRPCServiceEditUser",
549
+ "protocol": "REST",
550
+ "method": "POST",
551
+ "entitypath": "{base_path}/{version}/iam/edit-user?{query}",
552
+ "requestSchema": "schema.json",
553
+ "responseSchema": "schema.json",
554
+ "timeout": 0,
555
+ "sendEmpty": false,
556
+ "requestDatatype": "JSON",
557
+ "responseDatatype": "JSON",
558
+ "headers": {},
559
+ "responseObjects": [
560
+ {
561
+ "type": "default",
562
+ "key": "",
563
+ "mockFile": ""
564
+ }
565
+ ]
566
+ },
567
+ {
568
+ "name": "iamRPCServiceEditOpenIDCSetting",
569
+ "protocol": "REST",
570
+ "method": "POST",
571
+ "entitypath": "{base_path}/{version}/iam/edit-oidc-setting?{query}",
572
+ "requestSchema": "schema.json",
573
+ "responseSchema": "schema.json",
574
+ "timeout": 0,
575
+ "sendEmpty": false,
576
+ "requestDatatype": "JSON",
577
+ "responseDatatype": "JSON",
578
+ "headers": {},
579
+ "responseObjects": [
580
+ {
581
+ "type": "default",
582
+ "key": "",
583
+ "mockFile": ""
584
+ }
585
+ ]
586
+ },
587
+ {
588
+ "name": "iamRPCServiceCheckLDAPNetworkConnection",
589
+ "protocol": "REST",
590
+ "method": "POST",
591
+ "entitypath": "{base_path}/{version}/iam/check-ldap-network-connection?{query}",
592
+ "requestSchema": "schema.json",
593
+ "responseSchema": "schema.json",
594
+ "timeout": 0,
595
+ "sendEmpty": false,
596
+ "requestDatatype": "JSON",
597
+ "responseDatatype": "JSON",
598
+ "headers": {},
599
+ "responseObjects": [
600
+ {
601
+ "type": "default",
602
+ "key": "",
603
+ "mockFile": ""
604
+ }
605
+ ]
606
+ },
607
+ {
608
+ "name": "iamRPCServiceExport",
609
+ "protocol": "REST",
610
+ "method": "GET",
611
+ "entitypath": "{base_path}/{version}/iam/export?{query}",
612
+ "requestSchema": "schema.json",
613
+ "responseSchema": "schema.json",
614
+ "timeout": 0,
615
+ "sendEmpty": false,
616
+ "sendGetBody": false,
617
+ "requestDatatype": "JSON",
618
+ "responseDatatype": "JSON",
619
+ "headers": {},
620
+ "responseObjects": [
621
+ {
622
+ "type": "default",
623
+ "key": "",
624
+ "mockFile": ""
625
+ }
626
+ ]
627
+ },
628
+ {
629
+ "name": "iamRPCServiceGetUserDetailsData",
630
+ "protocol": "REST",
631
+ "method": "GET",
632
+ "entitypath": "{base_path}/{version}/iam/get-user-details?{query}",
633
+ "requestSchema": "schema.json",
634
+ "responseSchema": "schema.json",
635
+ "timeout": 0,
636
+ "sendEmpty": false,
637
+ "sendGetBody": false,
638
+ "requestDatatype": "JSON",
639
+ "responseDatatype": "JSON",
640
+ "headers": {},
641
+ "responseObjects": [
642
+ {
643
+ "type": "default",
644
+ "key": "",
645
+ "mockFile": ""
646
+ }
647
+ ]
648
+ },
649
+ {
650
+ "name": "iamRPCServiceCreateOpenIDCSetting",
651
+ "protocol": "REST",
652
+ "method": "POST",
653
+ "entitypath": "{base_path}/{version}/iam/create-oidc-setting?{query}",
654
+ "requestSchema": "schema.json",
655
+ "responseSchema": "schema.json",
656
+ "timeout": 0,
657
+ "sendEmpty": false,
658
+ "requestDatatype": "JSON",
659
+ "responseDatatype": "JSON",
660
+ "headers": {},
661
+ "responseObjects": [
662
+ {
663
+ "type": "default",
664
+ "key": "",
665
+ "mockFile": ""
666
+ }
667
+ ]
668
+ },
669
+ {
670
+ "name": "iamRPCServiceCheckLDAPAuthentication",
671
+ "protocol": "REST",
672
+ "method": "POST",
673
+ "entitypath": "{base_path}/{version}/iam/check-ldap-authentication?{query}",
674
+ "requestSchema": "schema.json",
675
+ "responseSchema": "schema.json",
676
+ "timeout": 0,
677
+ "sendEmpty": false,
678
+ "requestDatatype": "JSON",
679
+ "responseDatatype": "JSON",
680
+ "headers": {},
681
+ "responseObjects": [
682
+ {
683
+ "type": "default",
684
+ "key": "",
685
+ "mockFile": ""
686
+ }
687
+ ]
688
+ },
689
+ {
690
+ "name": "iamRPCServiceGetOidcRedirectAuthUri",
691
+ "protocol": "REST",
692
+ "method": "GET",
693
+ "entitypath": "{base_path}/{version}/iam/oidc-redirect-auth-uri?{query}",
694
+ "requestSchema": "schema.json",
695
+ "responseSchema": "schema.json",
696
+ "timeout": 0,
697
+ "sendEmpty": false,
698
+ "sendGetBody": false,
699
+ "requestDatatype": "JSON",
700
+ "responseDatatype": "JSON",
701
+ "headers": {},
702
+ "responseObjects": [
703
+ {
704
+ "type": "default",
705
+ "key": "",
706
+ "mockFile": ""
707
+ }
708
+ ]
709
+ },
710
+ {
711
+ "name": "iamRPCServiceSendActivateUserEmail",
712
+ "protocol": "REST",
713
+ "method": "POST",
714
+ "entitypath": "{base_path}/{version}/iam/send-activate-user-email?{query}",
715
+ "requestSchema": "schema.json",
716
+ "responseSchema": "schema.json",
717
+ "timeout": 0,
718
+ "sendEmpty": false,
719
+ "requestDatatype": "JSON",
720
+ "responseDatatype": "JSON",
721
+ "headers": {},
722
+ "responseObjects": [
723
+ {
724
+ "type": "default",
725
+ "key": "",
726
+ "mockFile": ""
727
+ }
728
+ ]
729
+ },
730
+ {
731
+ "name": "iamRPCServiceEditUserGroup",
732
+ "protocol": "REST",
733
+ "method": "POST",
734
+ "entitypath": "{base_path}/{version}/iam/edit-user-group?{query}",
735
+ "requestSchema": "schema.json",
736
+ "responseSchema": "schema.json",
737
+ "timeout": 0,
738
+ "sendEmpty": false,
739
+ "requestDatatype": "JSON",
740
+ "responseDatatype": "JSON",
741
+ "headers": {},
742
+ "responseObjects": [
743
+ {
744
+ "type": "default",
745
+ "key": "",
746
+ "mockFile": ""
747
+ }
748
+ ]
749
+ },
750
+ {
751
+ "name": "iamRPCServiceResetPassword",
752
+ "protocol": "REST",
753
+ "method": "POST",
754
+ "entitypath": "{base_path}/{version}/iam/reset-password?{query}",
755
+ "requestSchema": "schema.json",
756
+ "responseSchema": "schema.json",
757
+ "timeout": 0,
758
+ "sendEmpty": false,
759
+ "requestDatatype": "JSON",
760
+ "responseDatatype": "JSON",
761
+ "headers": {},
762
+ "responseObjects": [
763
+ {
764
+ "type": "default",
765
+ "key": "",
766
+ "mockFile": ""
767
+ }
768
+ ]
769
+ },
770
+ {
771
+ "name": "iamRPCServiceCreateUserGroup",
772
+ "protocol": "REST",
773
+ "method": "POST",
774
+ "entitypath": "{base_path}/{version}/iam/create-user-group?{query}",
775
+ "requestSchema": "schema.json",
776
+ "responseSchema": "schema.json",
777
+ "timeout": 0,
778
+ "sendEmpty": false,
779
+ "requestDatatype": "JSON",
780
+ "responseDatatype": "JSON",
781
+ "headers": {},
782
+ "responseObjects": [
783
+ {
784
+ "type": "default",
785
+ "key": "",
786
+ "mockFile": ""
787
+ }
788
+ ]
789
+ },
790
+ {
791
+ "name": "iamRPCServiceGetUserScopes",
792
+ "protocol": "REST",
793
+ "method": "GET",
794
+ "entitypath": "{base_path}/{version}/iam/get-user-scopes?{query}",
795
+ "requestSchema": "schema.json",
796
+ "responseSchema": "schema.json",
797
+ "timeout": 0,
798
+ "sendEmpty": false,
799
+ "sendGetBody": false,
800
+ "requestDatatype": "JSON",
801
+ "responseDatatype": "JSON",
802
+ "headers": {},
803
+ "responseObjects": [
804
+ {
805
+ "type": "default",
806
+ "key": "",
807
+ "mockFile": ""
808
+ }
809
+ ]
810
+ },
811
+ {
812
+ "name": "iamRPCServiceChangePassword",
813
+ "protocol": "REST",
814
+ "method": "POST",
815
+ "entitypath": "{base_path}/{version}/iam/change-password?{query}",
816
+ "requestSchema": "schema.json",
817
+ "responseSchema": "schema.json",
818
+ "timeout": 0,
819
+ "sendEmpty": false,
820
+ "requestDatatype": "JSON",
821
+ "responseDatatype": "JSON",
822
+ "headers": {},
823
+ "responseObjects": [
824
+ {
825
+ "type": "default",
826
+ "key": "",
827
+ "mockFile": ""
828
+ }
829
+ ]
830
+ },
831
+ {
832
+ "name": "iamRPCServiceUpdateIdentityProviderPriority",
833
+ "protocol": "REST",
834
+ "method": "POST",
835
+ "entitypath": "{base_path}/{version}/iam/identity-provider-priority?{query}",
836
+ "requestSchema": "schema.json",
837
+ "responseSchema": "schema.json",
838
+ "timeout": 0,
839
+ "sendEmpty": false,
840
+ "requestDatatype": "JSON",
841
+ "responseDatatype": "JSON",
842
+ "headers": {},
843
+ "responseObjects": [
844
+ {
845
+ "type": "default",
846
+ "key": "",
847
+ "mockFile": ""
848
+ }
849
+ ]
850
+ },
851
+ {
852
+ "name": "iamRPCServiceConfigureLDAPServer",
853
+ "protocol": "REST",
854
+ "method": "POST",
855
+ "entitypath": "{base_path}/{version}/iam/configure-ldap-server?{query}",
856
+ "requestSchema": "schema.json",
857
+ "responseSchema": "schema.json",
858
+ "timeout": 0,
859
+ "sendEmpty": false,
860
+ "requestDatatype": "JSON",
861
+ "responseDatatype": "JSON",
862
+ "headers": {},
863
+ "responseObjects": [
864
+ {
865
+ "type": "default",
866
+ "key": "",
867
+ "mockFile": ""
868
+ }
869
+ ]
870
+ }
871
+ ]
872
+ }