@itentialopensource/adapter-paragon_iam 0.1.1 → 0.2.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.
package/CALLS.md CHANGED
@@ -19,7 +19,7 @@ These are adapter methods that IAP or you might use. There are some other method
19
19
  </tr>
20
20
  <tr>
21
21
  <td style="padding:15px">healthCheck(callback)</td>
22
- <td style="padding:15px">This call ensures that the adapter can communicate with Paragon_iam. The actual call that is used is defined in the adapter properties and .system entities action.json file.</td>
22
+ <td style="padding:15px">This call ensures that the adapter can communicate with Adapter for Paragon IAM. The actual call that is used is defined in the adapter properties and .system entities action.json file.</td>
23
23
  <td style="padding:15px">No</td>
24
24
  </tr>
25
25
  <tr>
@@ -29,7 +29,7 @@ These are adapter methods that IAP or you might use. There are some other method
29
29
  </tr>
30
30
  <tr>
31
31
  <td style="padding:15px">encryptProperty(property, technique, callback)</td>
32
- <td style="padding:15px">This call will take the provided property and technique, and return the property encrypted with the technique. This allows the property to be used in the adapterProps section for the credential password so that the password does not have to be in clear text. The adapter will decrypt the property as needed for communications with Paragon_iam.</td>
32
+ <td style="padding:15px">This call will take the provided property and technique, and return the property encrypted with the technique. This allows the property to be used in the adapterProps section for the credential password so that the password does not have to be in clear text. The adapter will decrypt the property as needed for communications with Adapter for Paragon IAM.</td>
33
33
  <td style="padding:15px">No</td>
34
34
  </tr>
35
35
  <tr>
@@ -37,11 +37,6 @@ These are adapter methods that IAP or you might use. There are some other method
37
37
  <td style="padding:15px">This call provides the ability to update the adapter configuration from IAP - includes actions, schema, mockdata and other configurations.</td>
38
38
  <td style="padding:15px">Yes</td>
39
39
  </tr>
40
- <tr>
41
- <td style="padding:15px">iapFindAdapterPath(apiPath, callback)</td>
42
- <td style="padding:15px">This call provides the ability to see if a particular API path is supported by the adapter.</td>
43
- <td style="padding:15px">Yes</td>
44
- </tr>
45
40
  <tr>
46
41
  <td style="padding:15px">iapSuspendAdapter(mode, callback)</td>
47
42
  <td style="padding:15px">This call provides the ability to suspend the adapter and either have requests rejected or put into a queue to be processed after the adapter is resumed.</td>
@@ -57,12 +52,16 @@ These are adapter methods that IAP or you might use. There are some other method
57
52
  <td style="padding:15px">This call will return the requests that are waiting in the queue if throttling is enabled.</td>
58
53
  <td style="padding:15px">Yes</td>
59
54
  </tr>
55
+ <tr>
56
+ <td style="padding:15px">iapFindAdapterPath(apiPath, callback)</td>
57
+ <td style="padding:15px">This call provides the ability to see if a particular API path is supported by the adapter.</td>
58
+ <td style="padding:15px">Yes</td>
59
+ </tr>
60
60
  <tr>
61
61
  <td style="padding:15px">iapTroubleshootAdapter(props, persistFlag, adapter, callback)</td>
62
62
  <td style="padding:15px">This call can be used to check on the performance of the adapter - it checks connectivity, healthcheck and basic get calls.</td>
63
63
  <td style="padding:15px">Yes</td>
64
64
  </tr>
65
-
66
65
  <tr>
67
66
  <td style="padding:15px">iapRunAdapterHealthcheck(adapter, callback)</td>
68
67
  <td style="padding:15px">This call will return the results of a healthcheck.</td>
@@ -83,6 +82,21 @@ These are adapter methods that IAP or you might use. There are some other method
83
82
  <td style="padding:15px">This call will push the adapter configuration from the entities directory into the Adapter or IAP Database.</td>
84
83
  <td style="padding:15px">Yes</td>
85
84
  </tr>
85
+ <tr>
86
+ <td style="padding:15px">iapDeactivateTasks(tasks, callback)</td>
87
+ <td style="padding:15px">This call provides the ability to remove tasks from the adapter.</td>
88
+ <td style="padding:15px">Yes</td>
89
+ </tr>
90
+ <tr>
91
+ <td style="padding:15px">iapActivateTasks(tasks, callback)</td>
92
+ <td style="padding:15px">This call provides the ability to add deactivated tasks back into the adapter.</td>
93
+ <td style="padding:15px">Yes</td>
94
+ </tr>
95
+ <tr>
96
+ <td style="padding:15px">iapExpandedGenericAdapterRequest(metadata, uriPath, restMethod, pathVars, queryData, requestBody, addlHeaders, callback)</td>
97
+ <td style="padding:15px">This is an expanded Generic Call. The metadata object allows us to provide many new capabilities within the generic request.</td>
98
+ <td style="padding:15px">Yes</td>
99
+ </tr>
86
100
  <tr>
87
101
  <td style="padding:15px">genericAdapterRequest(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)</td>
88
102
  <td style="padding:15px">This call allows you to provide the path to have the adapter call. It is an easy way to incorporate paths that have not been built into the adapter yet.</td>
@@ -94,24 +108,89 @@ These are adapter methods that IAP or you might use. There are some other method
94
108
  <td style="padding:15px">Yes</td>
95
109
  </tr>
96
110
  <tr>
97
- <td style="padding:15px">iapHasAdapterEntity(entityType, entityId, callback)</td>
98
- <td style="padding:15px">This call verifies the adapter has the specific entity.</td>
111
+ <td style="padding:15px">iapRunAdapterLint(callback)</td>
112
+ <td style="padding:15px">Runs lint on the addapter and provides the information back.</td>
113
+ <td style="padding:15px">Yes</td>
114
+ </tr>
115
+ <tr>
116
+ <td style="padding:15px">iapRunAdapterTests(callback)</td>
117
+ <td style="padding:15px">Runs baseunit and unit tests on the adapter and provides the information back.</td>
118
+ <td style="padding:15px">Yes</td>
119
+ </tr>
120
+ <tr>
121
+ <td style="padding:15px">iapGetAdapterInventory(callback)</td>
122
+ <td style="padding:15px">This call provides some inventory related information about the adapter.</td>
123
+ <td style="padding:15px">Yes</td>
124
+ </tr>
125
+ </table>
126
+ <br>
127
+
128
+ ### Adapter Cache Calls
129
+
130
+ These are adapter methods that are used for adapter caching. If configured, the adapter will cache based on the interval provided. However, you can force a population of the cache manually as well.
131
+
132
+ <table border="1" class="bordered-table">
133
+ <tr>
134
+ <th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
135
+ <th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
136
+ <th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
137
+ </tr>
138
+ <tr>
139
+ <td style="padding:15px">iapPopulateEntityCache(entityTypes, callback)</td>
140
+ <td style="padding:15px">This call populates the adapter cache.</td>
141
+ <td style="padding:15px">Yes</td>
142
+ </tr>
143
+ <tr>
144
+ <td style="padding:15px">iapRetrieveEntitiesCache(entityType, options, callback)</td>
145
+ <td style="padding:15px">This call retrieves the specific items from the adapter cache.</td>
146
+ <td style="padding:15px">Yes</td>
147
+ </tr>
148
+ </table>
149
+ <br>
150
+
151
+ ### Adapter Broker Calls
152
+
153
+ These are adapter methods that are used to integrate to IAP Brokers. This adapter currently supports the following broker calls.
154
+
155
+ <table border="1" class="bordered-table">
156
+ <tr>
157
+ <th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
158
+ <th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
159
+ <th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
160
+ </tr>
161
+ <tr>
162
+ <td style="padding:15px">hasEntities(entityType, entityList, callback)</td>
163
+ <td style="padding:15px">This call is utilized by the IAP Device Broker to determine if the adapter has a specific entity and item of the entity.</td>
99
164
  <td style="padding:15px">No</td>
100
165
  </tr>
101
166
  <tr>
102
- <td style="padding:15px">iapVerifyAdapterCapability(entityType, actionType, entityId, callback)</td>
103
- <td style="padding:15px">This call verifies the adapter can perform the provided action on the specific entity.</td>
167
+ <td style="padding:15px">getDevice(deviceName, callback)</td>
168
+ <td style="padding:15px">This call returns the details of the requested device.</td>
169
+ <td style="padding:15px">No</td>
170
+ </tr>
171
+ <tr>
172
+ <td style="padding:15px">getDevicesFiltered(options, callback)</td>
173
+ <td style="padding:15px">This call returns the list of devices that match the criteria provided in the options filter.</td>
104
174
  <td style="padding:15px">No</td>
105
175
  </tr>
106
176
  <tr>
107
- <td style="padding:15px">iapUpdateAdapterEntityCache()</td>
108
- <td style="padding:15px">This call will update the entity cache.</td>
177
+ <td style="padding:15px">isAlive(deviceName, callback)</td>
178
+ <td style="padding:15px">This call returns whether the device status is active</td>
179
+ <td style="padding:15px">No</td>
180
+ </tr>
181
+ <tr>
182
+ <td style="padding:15px">getConfig(deviceName, format, callback)</td>
183
+ <td style="padding:15px">This call returns the configuration for the selected device.</td>
184
+ <td style="padding:15px">No</td>
185
+ </tr>
186
+ <tr>
187
+ <td style="padding:15px">iapGetDeviceCount(callback)</td>
188
+ <td style="padding:15px">This call returns the count of devices.</td>
109
189
  <td style="padding:15px">No</td>
110
190
  </tr>
111
191
  </table>
112
192
  <br>
113
193
 
114
- ### Adapter Broker Calls
115
194
 
116
195
  These are adapter methods that are used to integrate to IAP Brokers. This adapter currently supports the following broker calls.
117
196
 
@@ -168,13 +247,13 @@ Specific adapter calls are built based on the API of the Paragon_iam. The Adapte
168
247
  </tr>
169
248
  <tr>
170
249
  <td style="padding:15px">iamServiceBulkListIdentityProvider(body, callback)</td>
171
- <td style="padding:15px">This API can be used to list identity-provider based on specification given in request body.</td>
250
+ <td style="padding:15px">Bulk list identity-providers</td>
172
251
  <td style="padding:15px">{base_path}/{version}/iam/bulk-list-identity-provider?{query}</td>
173
252
  <td style="padding:15px">Yes</td>
174
253
  </tr>
175
254
  <tr>
176
255
  <td style="padding:15px">iamServiceSync(body, callback)</td>
177
- <td style="padding:15px">This API can be used to CREATE/UPDATE/DELETE multiple resources from database</td>
256
+ <td style="padding:15px">Sync</td>
178
257
  <td style="padding:15px">{base_path}/{version}/iam/sync?{query}</td>
179
258
  <td style="padding:15px">Yes</td>
180
259
  </tr>
@@ -198,7 +277,7 @@ Specific adapter calls are built based on the API of the Paragon_iam. The Adapte
198
277
  </tr>
199
278
  <tr>
200
279
  <td style="padding:15px">iamServiceBulkListOidcSetting(body, callback)</td>
201
- <td style="padding:15px">This API can be used to list oidc-setting based on specification given in request body.</td>
280
+ <td style="padding:15px">Bulk list oidc-settings</td>
202
281
  <td style="padding:15px">{base_path}/{version}/iam/bulk-list-oidc-setting?{query}</td>
203
282
  <td style="padding:15px">Yes</td>
204
283
  </tr>
@@ -210,7 +289,7 @@ Specific adapter calls are built based on the API of the Paragon_iam. The Adapte
210
289
  </tr>
211
290
  <tr>
212
291
  <td style="padding:15px">iamServiceBulkListRoleassignment(body, callback)</td>
213
- <td style="padding:15px">This API can be used to list roleassignment based on specification given in request body.</td>
292
+ <td style="padding:15px">Bulk list roleassignments</td>
214
293
  <td style="padding:15px">{base_path}/{version}/iam/bulk-list-roleassignment?{query}</td>
215
294
  <td style="padding:15px">Yes</td>
216
295
  </tr>
@@ -240,7 +319,7 @@ Specific adapter calls are built based on the API of the Paragon_iam. The Adapte
240
319
  </tr>
241
320
  <tr>
242
321
  <td style="padding:15px">iamServiceRefUpdate(body, callback)</td>
243
- <td style="padding:15px">This API can be used to ADD/DELETE reference between two resources.</td>
322
+ <td style="padding:15px">Reference update</td>
244
323
  <td style="padding:15px">{base_path}/{version}/iam/ref-update?{query}</td>
245
324
  <td style="padding:15px">Yes</td>
246
325
  </tr>
@@ -329,14 +408,14 @@ Specific adapter calls are built based on the API of the Paragon_iam. The Adapte
329
408
  <td style="padding:15px">Yes</td>
330
409
  </tr>
331
410
  <tr>
332
- <td style="padding:15px">iamServiceListOidcSetting(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
333
- <td style="padding:15px">This API can be used to list oidc-setting based on specification given in query parameters.</td>
411
+ <td style="padding:15px">iamServiceListOidcSetting(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = 'AND', specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
412
+ <td style="padding:15px">List oidc-settings</td>
334
413
  <td style="padding:15px">{base_path}/{version}/iam/oidc-setting?{query}</td>
335
414
  <td style="padding:15px">Yes</td>
336
415
  </tr>
337
416
  <tr>
338
- <td style="padding:15px">iamServiceListUserView(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
339
- <td style="padding:15px">This API can be used to list user-view based on specification given in query parameters.</td>
417
+ <td style="padding:15px">iamServiceListUserView(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = 'AND', specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
418
+ <td style="padding:15px">List user-views</td>
340
419
  <td style="padding:15px">{base_path}/{version}/iam/user-view?{query}</td>
341
420
  <td style="padding:15px">Yes</td>
342
421
  </tr>
@@ -348,7 +427,7 @@ Specific adapter calls are built based on the API of the Paragon_iam. The Adapte
348
427
  </tr>
349
428
  <tr>
350
429
  <td style="padding:15px">iamServiceBulkListRevokeEvent(body, callback)</td>
351
- <td style="padding:15px">This API can be used to list revoke-event based on specification given in request body.</td>
430
+ <td style="padding:15px">Bulk list revoke-events</td>
352
431
  <td style="padding:15px">{base_path}/{version}/iam/bulk-list-revoke-event?{query}</td>
353
432
  <td style="padding:15px">Yes</td>
354
433
  </tr>
@@ -378,13 +457,13 @@ Specific adapter calls are built based on the API of the Paragon_iam. The Adapte
378
457
  </tr>
379
458
  <tr>
380
459
  <td style="padding:15px">iamServiceBulkListDeletedResource(body, callback)</td>
381
- <td style="padding:15px">This API can be used to list deleted-resource based on specification given in request body.</td>
460
+ <td style="padding:15px">Bulk list deleted-resources</td>
382
461
  <td style="padding:15px">{base_path}/{version}/iam/bulk-list-deleted-resource?{query}</td>
383
462
  <td style="padding:15px">Yes</td>
384
463
  </tr>
385
464
  <tr>
386
465
  <td style="padding:15px">iamServiceBulkListSaml(body, callback)</td>
387
- <td style="padding:15px">This API can be used to list saml based on specification given in request body.</td>
466
+ <td style="padding:15px">Bulk list samls</td>
388
467
  <td style="padding:15px">{base_path}/{version}/iam/bulk-list-saml?{query}</td>
389
468
  <td style="padding:15px">Yes</td>
390
469
  </tr>
@@ -396,7 +475,7 @@ Specific adapter calls are built based on the API of the Paragon_iam. The Adapte
396
475
  </tr>
397
476
  <tr>
398
477
  <td style="padding:15px">iamServiceBulkListSMTPServer(body, callback)</td>
399
- <td style="padding:15px">This API can be used to list smtp-server based on specification given in request body.</td>
478
+ <td style="padding:15px">Bulk list smtp-servers</td>
400
479
  <td style="padding:15px">{base_path}/{version}/iam/bulk-list-smtp-server?{query}</td>
401
480
  <td style="padding:15px">Yes</td>
402
481
  </tr>
@@ -413,8 +492,8 @@ Specific adapter calls are built based on the API of the Paragon_iam. The Adapte
413
492
  <td style="padding:15px">Yes</td>
414
493
  </tr>
415
494
  <tr>
416
- <td style="padding:15px">iamServiceListEmailTemplate(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
417
- <td style="padding:15px">This API can be used to list email-template based on specification given in query parameters.</td>
495
+ <td style="padding:15px">iamServiceListEmailTemplate(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = 'AND', specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
496
+ <td style="padding:15px">List email-templates</td>
418
497
  <td style="padding:15px">{base_path}/{version}/iam/email-template?{query}</td>
419
498
  <td style="padding:15px">Yes</td>
420
499
  </tr>
@@ -425,8 +504,8 @@ Specific adapter calls are built based on the API of the Paragon_iam. The Adapte
425
504
  <td style="padding:15px">Yes</td>
426
505
  </tr>
427
506
  <tr>
428
- <td style="padding:15px">iamServiceListUserGroup(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
429
- <td style="padding:15px">This API can be used to list user-group based on specification given in query parameters.</td>
507
+ <td style="padding:15px">iamServiceListUserGroup(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = 'AND', specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
508
+ <td style="padding:15px">List user-groups</td>
430
509
  <td style="padding:15px">{base_path}/{version}/iam/user-group?{query}</td>
431
510
  <td style="padding:15px">Yes</td>
432
511
  </tr>
@@ -450,8 +529,7 @@ Specific adapter calls are built based on the API of the Paragon_iam. The Adapte
450
529
  </tr>
451
530
  <tr>
452
531
  <td style="padding:15px">iamServiceExportUserView(body, callback)</td>
453
- <td style="padding:15px">Export is used to retrieve the data as a sequence of bytes.
454
- The bytes are returned in a sequence of responses, and the responses are delivered as the results of a server-side streaming RPC.</td>
532
+ <td style="padding:15px">Export</td>
455
533
  <td style="padding:15px">{base_path}/{version}/iam/user-view/export?{query}</td>
456
534
  <td style="padding:15px">Yes</td>
457
535
  </tr>
@@ -486,14 +564,14 @@ The bytes are returned in a sequence of responses, and the responses are deliver
486
564
  <td style="padding:15px">Yes</td>
487
565
  </tr>
488
566
  <tr>
489
- <td style="padding:15px">iamServiceListLdapServer(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
490
- <td style="padding:15px">This API can be used to list ldap-server based on specification given in query parameters.</td>
567
+ <td style="padding:15px">iamServiceListLdapServer(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = 'AND', specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
568
+ <td style="padding:15px">List ldap-servers</td>
491
569
  <td style="padding:15px">{base_path}/{version}/iam/ldap-server?{query}</td>
492
570
  <td style="padding:15px">Yes</td>
493
571
  </tr>
494
572
  <tr>
495
573
  <td style="padding:15px">iamServiceBulkRefUpdate(body, callback)</td>
496
- <td style="padding:15px">This API can be used to ADD/DELETE multiple references between two resources.</td>
574
+ <td style="padding:15px">Bulk reference updates</td>
497
575
  <td style="padding:15px">{base_path}/{version}/iam/bulk-ref-update?{query}</td>
498
576
  <td style="padding:15px">Yes</td>
499
577
  </tr>
@@ -523,7 +601,7 @@ The bytes are returned in a sequence of responses, and the responses are deliver
523
601
  </tr>
524
602
  <tr>
525
603
  <td style="padding:15px">iamServiceBulkListEmailTemplate(body, callback)</td>
526
- <td style="padding:15px">This API can be used to list email-template based on specification given in request body.</td>
604
+ <td style="padding:15px">Bulk list email-templates</td>
527
605
  <td style="padding:15px">{base_path}/{version}/iam/bulk-list-email-template?{query}</td>
528
606
  <td style="padding:15px">Yes</td>
529
607
  </tr>
@@ -535,7 +613,7 @@ The bytes are returned in a sequence of responses, and the responses are deliver
535
613
  </tr>
536
614
  <tr>
537
615
  <td style="padding:15px">iamServiceBulkListScope(body, callback)</td>
538
- <td style="padding:15px">This API can be used to list scope based on specification given in request body.</td>
616
+ <td style="padding:15px">Bulk list scopes</td>
539
617
  <td style="padding:15px">{base_path}/{version}/iam/bulk-list-scope?{query}</td>
540
618
  <td style="padding:15px">Yes</td>
541
619
  </tr>
@@ -583,7 +661,7 @@ The bytes are returned in a sequence of responses, and the responses are deliver
583
661
  </tr>
584
662
  <tr>
585
663
  <td style="padding:15px">iamServiceBulkListScopeGroup(body, callback)</td>
586
- <td style="padding:15px">This API can be used to list scope-group based on specification given in request body.</td>
664
+ <td style="padding:15px">Bulk list scope-groups</td>
587
665
  <td style="padding:15px">{base_path}/{version}/iam/bulk-list-scope-group?{query}</td>
588
666
  <td style="padding:15px">Yes</td>
589
667
  </tr>
@@ -594,8 +672,8 @@ The bytes are returned in a sequence of responses, and the responses are deliver
594
672
  <td style="padding:15px">Yes</td>
595
673
  </tr>
596
674
  <tr>
597
- <td style="padding:15px">iamServiceListIdentityProvider(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
598
- <td style="padding:15px">This API can be used to list identity-provider based on specification given in query parameters.</td>
675
+ <td style="padding:15px">iamServiceListIdentityProvider(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = 'AND', specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
676
+ <td style="padding:15px">List identity-providers</td>
599
677
  <td style="padding:15px">{base_path}/{version}/iam/identity-provider?{query}</td>
600
678
  <td style="padding:15px">Yes</td>
601
679
  </tr>
@@ -637,7 +715,7 @@ The bytes are returned in a sequence of responses, and the responses are deliver
637
715
  </tr>
638
716
  <tr>
639
717
  <td style="padding:15px">iamServiceBulkListUserView(body, callback)</td>
640
- <td style="padding:15px">This API can be used to list user-view based on specification given in request body.</td>
718
+ <td style="padding:15px">Bulk list user-views</td>
641
719
  <td style="padding:15px">{base_path}/{version}/iam/bulk-list-user-view?{query}</td>
642
720
  <td style="padding:15px">Yes</td>
643
721
  </tr>
@@ -654,8 +732,8 @@ The bytes are returned in a sequence of responses, and the responses are deliver
654
732
  <td style="padding:15px">Yes</td>
655
733
  </tr>
656
734
  <tr>
657
- <td style="padding:15px">iamServiceListDeletedResource(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
658
- <td style="padding:15px">This API can be used to list deleted-resource based on specification given in query parameters.</td>
735
+ <td style="padding:15px">iamServiceListDeletedResource(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = 'AND', specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
736
+ <td style="padding:15px">List deleted-resources</td>
659
737
  <td style="padding:15px">{base_path}/{version}/iam/deleted-resource?{query}</td>
660
738
  <td style="padding:15px">Yes</td>
661
739
  </tr>
@@ -666,8 +744,8 @@ The bytes are returned in a sequence of responses, and the responses are deliver
666
744
  <td style="padding:15px">Yes</td>
667
745
  </tr>
668
746
  <tr>
669
- <td style="padding:15px">iamServiceListScope(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
670
- <td style="padding:15px">This API can be used to list scope based on specification given in query parameters.</td>
747
+ <td style="padding:15px">iamServiceListScope(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = 'AND', specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
748
+ <td style="padding:15px">List scopes</td>
671
749
  <td style="padding:15px">{base_path}/{version}/iam/scope?{query}</td>
672
750
  <td style="padding:15px">Yes</td>
673
751
  </tr>
@@ -678,8 +756,8 @@ The bytes are returned in a sequence of responses, and the responses are deliver
678
756
  <td style="padding:15px">Yes</td>
679
757
  </tr>
680
758
  <tr>
681
- <td style="padding:15px">iamServiceListLastPublishedNotification(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
682
- <td style="padding:15px">This API can be used to list last-published-notification based on specification given in query parameters.</td>
759
+ <td style="padding:15px">iamServiceListLastPublishedNotification(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = 'AND', specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
760
+ <td style="padding:15px">List last-published-notifications</td>
683
761
  <td style="padding:15px">{base_path}/{version}/iam/last-published-notification?{query}</td>
684
762
  <td style="padding:15px">Yes</td>
685
763
  </tr>
@@ -690,8 +768,8 @@ The bytes are returned in a sequence of responses, and the responses are deliver
690
768
  <td style="padding:15px">Yes</td>
691
769
  </tr>
692
770
  <tr>
693
- <td style="padding:15px">iamServiceListRevokeEvent(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
694
- <td style="padding:15px">This API can be used to list revoke-event based on specification given in query parameters.</td>
771
+ <td style="padding:15px">iamServiceListRevokeEvent(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = 'AND', specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
772
+ <td style="padding:15px">List revoke-events</td>
695
773
  <td style="padding:15px">{base_path}/{version}/iam/revoke-event?{query}</td>
696
774
  <td style="padding:15px">Yes</td>
697
775
  </tr>
@@ -702,8 +780,8 @@ The bytes are returned in a sequence of responses, and the responses are deliver
702
780
  <td style="padding:15px">Yes</td>
703
781
  </tr>
704
782
  <tr>
705
- <td style="padding:15px">iamServiceListUserDetail(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
706
- <td style="padding:15px">This API can be used to list user-detail based on specification given in query parameters.</td>
783
+ <td style="padding:15px">iamServiceListUserDetail(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = 'AND', specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
784
+ <td style="padding:15px">List user-details</td>
707
785
  <td style="padding:15px">{base_path}/{version}/iam/user-detail?{query}</td>
708
786
  <td style="padding:15px">Yes</td>
709
787
  </tr>
@@ -721,13 +799,13 @@ The bytes are returned in a sequence of responses, and the responses are deliver
721
799
  </tr>
722
800
  <tr>
723
801
  <td style="padding:15px">iamServiceBulkListUserGroup(body, callback)</td>
724
- <td style="padding:15px">This API can be used to list user-group based on specification given in request body.</td>
802
+ <td style="padding:15px">Bulk list user-groups</td>
725
803
  <td style="padding:15px">{base_path}/{version}/iam/bulk-list-user-group?{query}</td>
726
804
  <td style="padding:15px">Yes</td>
727
805
  </tr>
728
806
  <tr>
729
807
  <td style="padding:15px">iamServiceBulkListUserDetail(body, callback)</td>
730
- <td style="padding:15px">This API can be used to list user-detail based on specification given in request body.</td>
808
+ <td style="padding:15px">Bulk list user-details</td>
731
809
  <td style="padding:15px">{base_path}/{version}/iam/bulk-list-user-detail?{query}</td>
732
810
  <td style="padding:15px">Yes</td>
733
811
  </tr>
@@ -744,8 +822,8 @@ The bytes are returned in a sequence of responses, and the responses are deliver
744
822
  <td style="padding:15px">Yes</td>
745
823
  </tr>
746
824
  <tr>
747
- <td style="padding:15px">iamServiceListUser(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
748
- <td style="padding:15px">This API can be used to list user based on specification given in query parameters.</td>
825
+ <td style="padding:15px">iamServiceListUser(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = 'AND', specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
826
+ <td style="padding:15px">List users</td>
749
827
  <td style="padding:15px">{base_path}/{version}/iam/user?{query}</td>
750
828
  <td style="padding:15px">Yes</td>
751
829
  </tr>
@@ -775,7 +853,7 @@ The bytes are returned in a sequence of responses, and the responses are deliver
775
853
  </tr>
776
854
  <tr>
777
855
  <td style="padding:15px">iamServiceBulkListLdapServer(body, callback)</td>
778
- <td style="padding:15px">This API can be used to list ldap-server based on specification given in request body.</td>
856
+ <td style="padding:15px">Bulk list ldap-servers</td>
779
857
  <td style="padding:15px">{base_path}/{version}/iam/bulk-list-ldap-server?{query}</td>
780
858
  <td style="padding:15px">Yes</td>
781
859
  </tr>
@@ -786,8 +864,8 @@ The bytes are returned in a sequence of responses, and the responses are deliver
786
864
  <td style="padding:15px">Yes</td>
787
865
  </tr>
788
866
  <tr>
789
- <td style="padding:15px">iamServiceListSaml(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
790
- <td style="padding:15px">This API can be used to list saml based on specification given in query parameters.</td>
867
+ <td style="padding:15px">iamServiceListSaml(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = 'AND', specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
868
+ <td style="padding:15px">List samls</td>
791
869
  <td style="padding:15px">{base_path}/{version}/iam/saml?{query}</td>
792
870
  <td style="padding:15px">Yes</td>
793
871
  </tr>
@@ -822,8 +900,8 @@ The bytes are returned in a sequence of responses, and the responses are deliver
822
900
  <td style="padding:15px">Yes</td>
823
901
  </tr>
824
902
  <tr>
825
- <td style="padding:15px">iamServiceListScopeGroup(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
826
- <td style="padding:15px">This API can be used to list scope-group based on specification given in query parameters.</td>
903
+ <td style="padding:15px">iamServiceListScopeGroup(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = 'AND', specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
904
+ <td style="padding:15px">List scope-groups</td>
827
905
  <td style="padding:15px">{base_path}/{version}/iam/scope-group?{query}</td>
828
906
  <td style="padding:15px">Yes</td>
829
907
  </tr>
@@ -835,7 +913,7 @@ The bytes are returned in a sequence of responses, and the responses are deliver
835
913
  </tr>
836
914
  <tr>
837
915
  <td style="padding:15px">iamServiceExtRefUpdate(body, callback)</td>
838
- <td style="padding:15px">This API can be used to create/delete reference for ExtRef table.</td>
916
+ <td style="padding:15px">External reference update</td>
839
917
  <td style="padding:15px">{base_path}/{version}/iam/ext-ref-update?{query}</td>
840
918
  <td style="padding:15px">Yes</td>
841
919
  </tr>
@@ -859,25 +937,25 @@ The bytes are returned in a sequence of responses, and the responses are deliver
859
937
  </tr>
860
938
  <tr>
861
939
  <td style="padding:15px">iamServiceBulkListActivationCode(body, callback)</td>
862
- <td style="padding:15px">This API can be used to list activation-code based on specification given in request body.</td>
940
+ <td style="padding:15px">Bulk list activation-codes</td>
863
941
  <td style="padding:15px">{base_path}/{version}/iam/bulk-list-activation-code?{query}</td>
864
942
  <td style="padding:15px">Yes</td>
865
943
  </tr>
866
944
  <tr>
867
945
  <td style="padding:15px">iamServiceBulkListUser(body, callback)</td>
868
- <td style="padding:15px">This API can be used to list user based on specification given in request body.</td>
946
+ <td style="padding:15px">Bulk list users</td>
869
947
  <td style="padding:15px">{base_path}/{version}/iam/bulk-list-user?{query}</td>
870
948
  <td style="padding:15px">Yes</td>
871
949
  </tr>
872
950
  <tr>
873
951
  <td style="padding:15px">iamServiceBulkListLastPublishedNotification(body, callback)</td>
874
- <td style="padding:15px">This API can be used to list last-published-notification based on specification given in request body.</td>
952
+ <td style="padding:15px">Bulk list last-published-notifications</td>
875
953
  <td style="padding:15px">{base_path}/{version}/iam/bulk-list-last-published-notification?{query}</td>
876
954
  <td style="padding:15px">Yes</td>
877
955
  </tr>
878
956
  <tr>
879
957
  <td style="padding:15px">iamServiceBulkExtRefUpdate(body, callback)</td>
880
- <td style="padding:15px">This API can be used to create/delete multiple references for ExtRef table.</td>
958
+ <td style="padding:15px">Bulk external reference updates</td>
881
959
  <td style="padding:15px">{base_path}/{version}/iam/bulk-ext-ref-update?{query}</td>
882
960
  <td style="padding:15px">Yes</td>
883
961
  </tr>
@@ -912,8 +990,8 @@ The bytes are returned in a sequence of responses, and the responses are deliver
912
990
  <td style="padding:15px">Yes</td>
913
991
  </tr>
914
992
  <tr>
915
- <td style="padding:15px">iamServiceListSMTPServer(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
916
- <td style="padding:15px">This API can be used to list smtp-server based on specification given in query parameters.</td>
993
+ <td style="padding:15px">iamServiceListSMTPServer(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = 'AND', specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
994
+ <td style="padding:15px">List smtp-servers</td>
917
995
  <td style="padding:15px">{base_path}/{version}/iam/smtp-server?{query}</td>
918
996
  <td style="padding:15px">Yes</td>
919
997
  </tr>
@@ -924,8 +1002,8 @@ The bytes are returned in a sequence of responses, and the responses are deliver
924
1002
  <td style="padding:15px">Yes</td>
925
1003
  </tr>
926
1004
  <tr>
927
- <td style="padding:15px">iamServiceListActivationCode(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
928
- <td style="padding:15px">This API can be used to list activation-code based on specification given in query parameters.</td>
1005
+ <td style="padding:15px">iamServiceListActivationCode(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = 'AND', specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
1006
+ <td style="padding:15px">List activation-codes</td>
929
1007
  <td style="padding:15px">{base_path}/{version}/iam/activation-code?{query}</td>
930
1008
  <td style="padding:15px">Yes</td>
931
1009
  </tr>
@@ -936,8 +1014,8 @@ The bytes are returned in a sequence of responses, and the responses are deliver
936
1014
  <td style="padding:15px">Yes</td>
937
1015
  </tr>
938
1016
  <tr>
939
- <td style="padding:15px">iamServiceListRole(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
940
- <td style="padding:15px">This API can be used to list role based on specification given in query parameters.</td>
1017
+ <td style="padding:15px">iamServiceListRole(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = 'AND', specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
1018
+ <td style="padding:15px">List roles</td>
941
1019
  <td style="padding:15px">{base_path}/{version}/iam/role?{query}</td>
942
1020
  <td style="padding:15px">Yes</td>
943
1021
  </tr>
@@ -948,14 +1026,14 @@ The bytes are returned in a sequence of responses, and the responses are deliver
948
1026
  <td style="padding:15px">Yes</td>
949
1027
  </tr>
950
1028
  <tr>
951
- <td style="padding:15px">iamServiceListRoleassignment(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
952
- <td style="padding:15px">This API can be used to list roleassignment based on specification given in query parameters.</td>
1029
+ <td style="padding:15px">iamServiceListRoleassignment(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = 'AND', specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
1030
+ <td style="padding:15px">List roleassignments</td>
953
1031
  <td style="padding:15px">{base_path}/{version}/iam/roleassignment?{query}</td>
954
1032
  <td style="padding:15px">Yes</td>
955
1033
  </tr>
956
1034
  <tr>
957
1035
  <td style="padding:15px">iamServiceBulkListRole(body, callback)</td>
958
- <td style="padding:15px">This API can be used to list role based on specification given in request body.</td>
1036
+ <td style="padding:15px">Bulk list roles</td>
959
1037
  <td style="padding:15px">{base_path}/{version}/iam/bulk-list-role?{query}</td>
960
1038
  <td style="padding:15px">Yes</td>
961
1039
  </tr>
@@ -979,262 +1057,259 @@ The bytes are returned in a sequence of responses, and the responses are deliver
979
1057
  </tr>
980
1058
  <tr>
981
1059
  <td style="padding:15px">iamRPCServiceCheckOIDCServerConnection(body, callback)</td>
982
- <td style="padding:15px">RPC for CheckOIDCServerConnection.</td>
1060
+ <td style="padding:15px">CheckOIDCServerConnection</td>
983
1061
  <td style="padding:15px">{base_path}/{version}/iam/check-oidc-server-connection?{query}</td>
984
1062
  <td style="padding:15px">Yes</td>
985
1063
  </tr>
986
1064
  <tr>
987
1065
  <td style="padding:15px">iamRPCServiceDeleteOpenIDCSetting(body, callback)</td>
988
- <td style="padding:15px">Delete the existing oidc setting</td>
1066
+ <td style="padding:15px">DeleteOpenIDCSetting</td>
989
1067
  <td style="padding:15px">{base_path}/{version}/iam/delete-oidc-setting?{query}</td>
990
1068
  <td style="padding:15px">Yes</td>
991
1069
  </tr>
992
1070
  <tr>
993
1071
  <td style="padding:15px">iamRPCServiceActivateUser(body, callback)</td>
994
- <td style="padding:15px">RPC for Activate User.</td>
1072
+ <td style="padding:15px">ActivateUser</td>
995
1073
  <td style="padding:15px">{base_path}/{version}/iam/activate-user?{query}</td>
996
1074
  <td style="padding:15px">Yes</td>
997
1075
  </tr>
998
1076
  <tr>
999
1077
  <td style="padding:15px">iamRPCServiceGetSAMLAuthenticateTokenFromSAMLResponseXML(body, callback)</td>
1000
- <td style="padding:15px">Get SAML AuthenticateToken From SAMLResponseXML to handle the saml acs url by non iam.</td>
1078
+ <td style="padding:15px">GetSAMLAuthenticateTokenFromSAMLResponseXML</td>
1001
1079
  <td style="padding:15px">{base_path}/{version}/iam/get-saml-authenticate-token?{query}</td>
1002
1080
  <td style="padding:15px">Yes</td>
1003
1081
  </tr>
1004
1082
  <tr>
1005
1083
  <td style="padding:15px">iamRPCServiceDeleteUser(body, callback)</td>
1006
- <td style="padding:15px">RPC for Delete User.</td>
1084
+ <td style="padding:15px">DeleteUser</td>
1007
1085
  <td style="padding:15px">{base_path}/{version}/iam/delete-user?{query}</td>
1008
1086
  <td style="padding:15px">Yes</td>
1009
1087
  </tr>
1010
1088
  <tr>
1011
1089
  <td style="padding:15px">iamRPCServiceImport(body, callback)</td>
1012
- <td style="padding:15px">RPC for Import Data.</td>
1090
+ <td style="padding:15px">Import</td>
1013
1091
  <td style="padding:15px">{base_path}/{version}/iam/import?{query}</td>
1014
1092
  <td style="padding:15px">Yes</td>
1015
1093
  </tr>
1016
1094
  <tr>
1017
1095
  <td style="padding:15px">iamRPCServiceActivateUserWithoutPassword(body, callback)</td>
1018
- <td style="padding:15px">RPC for Activate User Without Password.</td>
1096
+ <td style="padding:15px">ActivateUserWithoutPassword</td>
1019
1097
  <td style="padding:15px">{base_path}/{version}/iam/activate-user-without-password?{query}</td>
1020
1098
  <td style="padding:15px">Yes</td>
1021
1099
  </tr>
1022
1100
  <tr>
1023
1101
  <td style="padding:15px">iamRPCServiceForgotPassword(body, callback)</td>
1024
- <td style="padding:15px">RPC for ForgotPassword.</td>
1102
+ <td style="padding:15px">ForgotPassword</td>
1025
1103
  <td style="padding:15px">{base_path}/{version}/iam/forgot-password?{query}</td>
1026
1104
  <td style="padding:15px">Yes</td>
1027
1105
  </tr>
1028
1106
  <tr>
1029
1107
  <td style="padding:15px">iamRPCServiceSupportedUserVerificationMethods(callback)</td>
1030
- <td style="padding:15px">SupportedUserVerificationMethods, used while creatig user/scope is mail verification needed or not.</td>
1108
+ <td style="padding:15px">SupportedUserVerificationMethods</td>
1031
1109
  <td style="padding:15px">{base_path}/{version}/iam/supported-user-verification-methods?{query}</td>
1032
1110
  <td style="padding:15px">Yes</td>
1033
1111
  </tr>
1034
1112
  <tr>
1035
1113
  <td style="padding:15px">iamRPCServiceGetIdentityProviders(scopeId, callback)</td>
1036
- <td style="padding:15px">RPC for GetIdentityProviders.</td>
1114
+ <td style="padding:15px">GetIdentityProviders</td>
1037
1115
  <td style="padding:15px">{base_path}/{version}/iam/identity-providers?{query}</td>
1038
1116
  <td style="padding:15px">Yes</td>
1039
1117
  </tr>
1040
1118
  <tr>
1041
1119
  <td style="padding:15px">iamRPCServiceVerifyActivationCode(body, callback)</td>
1042
- <td style="padding:15px">RPC for VerifyActivationCode.</td>
1120
+ <td style="padding:15px">VerifyActivationCode</td>
1043
1121
  <td style="padding:15px">{base_path}/{version}/iam/verify-activation-code?{query}</td>
1044
1122
  <td style="padding:15px">Yes</td>
1045
1123
  </tr>
1046
1124
  <tr>
1047
1125
  <td style="padding:15px">iamRPCServiceGetCapabilityCatalog(body, callback)</td>
1048
- <td style="padding:15px">RPC for GetCapabilityCatalog.</td>
1126
+ <td style="padding:15px">DeleteSGetCapabilityCatalogcope</td>
1049
1127
  <td style="padding:15px">{base_path}/{version}/iam/get-capability-catalog?{query}</td>
1050
1128
  <td style="padding:15px">Yes</td>
1051
1129
  </tr>
1052
1130
  <tr>
1053
1131
  <td style="padding:15px">iamRPCServiceUpdateAuthenticationSettings(body, callback)</td>
1054
- <td style="padding:15px">UpdateAuthenticationSettings will update the portal url data in scope.</td>
1132
+ <td style="padding:15px">UpdateAuthenticationSettings</td>
1055
1133
  <td style="padding:15px">{base_path}/{version}/iam/update-authentication-settings?{query}</td>
1056
1134
  <td style="padding:15px">Yes</td>
1057
1135
  </tr>
1058
1136
  <tr>
1059
1137
  <td style="padding:15px">iamRPCServiceCreateScope(body, callback)</td>
1060
- <td style="padding:15px">RPC for Create Scope.</td>
1138
+ <td style="padding:15px">CreateScope</td>
1061
1139
  <td style="padding:15px">{base_path}/{version}/iam/create-scope?{query}</td>
1062
1140
  <td style="padding:15px">Yes</td>
1063
1141
  </tr>
1064
1142
  <tr>
1065
1143
  <td style="padding:15px">iamRPCServiceSendTestMail(body, callback)</td>
1066
- <td style="padding:15px">RPC for SendTestMail.
1067
- Send test mail for given user email address and optional smtp server settings, if no smtp server settings provided get from the DB</td>
1144
+ <td style="padding:15px">SendTestMail</td>
1068
1145
  <td style="padding:15px">{base_path}/{version}/iam/send-test-mail?{query}</td>
1069
1146
  <td style="padding:15px">Yes</td>
1070
1147
  </tr>
1071
1148
  <tr>
1072
1149
  <td style="padding:15px">iamRPCServiceGetIdentityProvidersRedirectURLs(body, callback)</td>
1073
- <td style="padding:15px">RPC for GetIdentityProvidersRedirectURLs - lists all the configured identity providers with IdentityProvider Redirect URLs.
1074
- In case OIDC the Issuer, in case of SAML the Idp Login Redirect URL.</td>
1150
+ <td style="padding:15px">GetIdentityProvidersRedirectURLs</td>
1075
1151
  <td style="padding:15px">{base_path}/{version}/iam/identity-providers-redirect-urls?{query}</td>
1076
1152
  <td style="padding:15px">Yes</td>
1077
1153
  </tr>
1078
1154
  <tr>
1079
1155
  <td style="padding:15px">iamRPCServiceDeleteScope(body, callback)</td>
1080
- <td style="padding:15px">RPC for Delete Scope.</td>
1156
+ <td style="padding:15px">DeleteScope</td>
1081
1157
  <td style="padding:15px">{base_path}/{version}/iam/delete-scope?{query}</td>
1082
1158
  <td style="padding:15px">Yes</td>
1083
1159
  </tr>
1084
1160
  <tr>
1085
1161
  <td style="padding:15px">iamRPCServiceSendForgotPasswordEmail(body, callback)</td>
1086
- <td style="padding:15px">RPC for SendForgotPasswordEmail.</td>
1162
+ <td style="padding:15px">SendForgotPasswordEmail</td>
1087
1163
  <td style="padding:15px">{base_path}/{version}/iam/send-forgot-password-email?{query}</td>
1088
1164
  <td style="padding:15px">Yes</td>
1089
1165
  </tr>
1090
1166
  <tr>
1091
1167
  <td style="padding:15px">iamRPCServiceCreateSAMLSetting(body, callback)</td>
1092
- <td style="padding:15px">Create saml setting</td>
1168
+ <td style="padding:15px">CreateSAMLSetting</td>
1093
1169
  <td style="padding:15px">{base_path}/{version}/iam/create-saml-setting?{query}</td>
1094
1170
  <td style="padding:15px">Yes</td>
1095
1171
  </tr>
1096
1172
  <tr>
1097
1173
  <td style="padding:15px">iamRPCServiceConfigureSMTPServer(body, callback)</td>
1098
- <td style="padding:15px">RPC for ConfigureSMTPServer.</td>
1174
+ <td style="padding:15px">ConfigureSMTPServer</td>
1099
1175
  <td style="padding:15px">{base_path}/{version}/iam/configure-smtp-server?{query}</td>
1100
1176
  <td style="padding:15px">Yes</td>
1101
1177
  </tr>
1102
1178
  <tr>
1103
1179
  <td style="padding:15px">iamRPCServiceSearchIdentityProviderGroups(body, callback)</td>
1104
- <td style="padding:15px">RPC for SearchIdentityProviderGroups.</td>
1180
+ <td style="padding:15px">SearchIdentityProviderGroups</td>
1105
1181
  <td style="padding:15px">{base_path}/{version}/iam/search-identity-provider-groups?{query}</td>
1106
1182
  <td style="padding:15px">Yes</td>
1107
1183
  </tr>
1108
1184
  <tr>
1109
1185
  <td style="padding:15px">iamRPCServiceEditSAMLSetting(body, callback)</td>
1110
- <td style="padding:15px">Edit saml setting</td>
1186
+ <td style="padding:15px">EditSAMLSetting</td>
1111
1187
  <td style="padding:15px">{base_path}/{version}/iam/edit-saml-setting?{query}</td>
1112
1188
  <td style="padding:15px">Yes</td>
1113
1189
  </tr>
1114
1190
  <tr>
1115
1191
  <td style="padding:15px">iamRPCServiceDeleteSAMLSetting(body, callback)</td>
1116
- <td style="padding:15px">Delete the existing saml setting</td>
1192
+ <td style="padding:15px">DeleteSAMLSetting</td>
1117
1193
  <td style="padding:15px">{base_path}/{version}/iam/delete-saml-setting?{query}</td>
1118
1194
  <td style="padding:15px">Yes</td>
1119
1195
  </tr>
1120
1196
  <tr>
1121
1197
  <td style="padding:15px">iamRPCServiceCreateUser(body, callback)</td>
1122
- <td style="padding:15px">RPC for Create User.</td>
1198
+ <td style="padding:15px">CreateUser</td>
1123
1199
  <td style="padding:15px">{base_path}/{version}/iam/create-user?{query}</td>
1124
1200
  <td style="padding:15px">Yes</td>
1125
1201
  </tr>
1126
1202
  <tr>
1127
1203
  <td style="padding:15px">iamRPCServiceGetUsersByRoleAssignmentAndStatus(roleName, status, callback)</td>
1128
- <td style="padding:15px">GetUserDetail will fetch the users based upon the roleassignment and user status.</td>
1204
+ <td style="padding:15px">GetUsersByRoleAssignmentAndStatus</td>
1129
1205
  <td style="padding:15px">{base_path}/{version}/iam/get-users-by-roleassignment-status?{query}</td>
1130
1206
  <td style="padding:15px">Yes</td>
1131
1207
  </tr>
1132
1208
  <tr>
1133
1209
  <td style="padding:15px">iamRPCServiceGetPortalURL(scopeId, callback)</td>
1134
- <td style="padding:15px">GetPortalURL will return the portal url, first it will check PortalURL with in the current context if not found get it from the parent Scope's.</td>
1210
+ <td style="padding:15px">GetPortalURL</td>
1135
1211
  <td style="padding:15px">{base_path}/{version}/iam/get-portal-url?{query}</td>
1136
1212
  <td style="padding:15px">Yes</td>
1137
1213
  </tr>
1138
1214
  <tr>
1139
1215
  <td style="padding:15px">iamRPCServiceUpdateScope(body, callback)</td>
1140
- <td style="padding:15px">RPC for Update Scope Data.
1141
- For now only Scope DisplayName will update.</td>
1216
+ <td style="padding:15px">UpdateScope</td>
1142
1217
  <td style="padding:15px">{base_path}/{version}/iam/update-scope?{query}</td>
1143
1218
  <td style="padding:15px">Yes</td>
1144
1219
  </tr>
1145
1220
  <tr>
1146
1221
  <td style="padding:15px">iamRPCServiceEditUser(body, callback)</td>
1147
- <td style="padding:15px">RPC for Edit User.</td>
1222
+ <td style="padding:15px">EditUser</td>
1148
1223
  <td style="padding:15px">{base_path}/{version}/iam/edit-user?{query}</td>
1149
1224
  <td style="padding:15px">Yes</td>
1150
1225
  </tr>
1151
1226
  <tr>
1152
1227
  <td style="padding:15px">iamRPCServiceEditOpenIDCSetting(body, callback)</td>
1153
- <td style="padding:15px">Edit oidc setting</td>
1228
+ <td style="padding:15px">EditOpenIDCSetting</td>
1154
1229
  <td style="padding:15px">{base_path}/{version}/iam/edit-oidc-setting?{query}</td>
1155
1230
  <td style="padding:15px">Yes</td>
1156
1231
  </tr>
1157
1232
  <tr>
1158
1233
  <td style="padding:15px">iamRPCServiceCheckLDAPNetworkConnection(body, callback)</td>
1159
- <td style="padding:15px">RPC for Check LDAP NetworkConnection.</td>
1234
+ <td style="padding:15px">CheckLDAPNetworkConnection</td>
1160
1235
  <td style="padding:15px">{base_path}/{version}/iam/check-ldap-network-connection?{query}</td>
1161
1236
  <td style="padding:15px">Yes</td>
1162
1237
  </tr>
1163
1238
  <tr>
1164
1239
  <td style="padding:15px">iamRPCServiceExport(role, user, usergroup, scope, callback)</td>
1165
- <td style="padding:15px">RPC for Export Data.</td>
1240
+ <td style="padding:15px">Export</td>
1166
1241
  <td style="padding:15px">{base_path}/{version}/iam/export?{query}</td>
1167
1242
  <td style="padding:15px">Yes</td>
1168
1243
  </tr>
1169
1244
  <tr>
1170
1245
  <td style="padding:15px">iamRPCServiceGetUserDetailsData(userName, callback)</td>
1171
- <td style="padding:15px">GetUserDetail will fetch the user details across all scopes</td>
1246
+ <td style="padding:15px">GetUserDetailsData</td>
1172
1247
  <td style="padding:15px">{base_path}/{version}/iam/get-user-details?{query}</td>
1173
1248
  <td style="padding:15px">Yes</td>
1174
1249
  </tr>
1175
1250
  <tr>
1176
1251
  <td style="padding:15px">iamRPCServiceCreateOpenIDCSetting(body, callback)</td>
1177
- <td style="padding:15px">Create oidc setting</td>
1252
+ <td style="padding:15px">CreateOpenIDCSetting</td>
1178
1253
  <td style="padding:15px">{base_path}/{version}/iam/create-oidc-setting?{query}</td>
1179
1254
  <td style="padding:15px">Yes</td>
1180
1255
  </tr>
1181
1256
  <tr>
1182
1257
  <td style="padding:15px">iamRPCServiceCheckLDAPAuthentication(body, callback)</td>
1183
- <td style="padding:15px">RPC for Check LDAP User Authentication.</td>
1258
+ <td style="padding:15px">CheckLDAPAuthentication</td>
1184
1259
  <td style="padding:15px">{base_path}/{version}/iam/check-ldap-authentication?{query}</td>
1185
1260
  <td style="padding:15px">Yes</td>
1186
1261
  </tr>
1187
1262
  <tr>
1188
1263
  <td style="padding:15px">iamRPCServiceGetOidcRedirectAuthUri(callback)</td>
1189
- <td style="padding:15px">Get Authorized redirect uri, used while doing oidc client registration in oidc server.</td>
1264
+ <td style="padding:15px">GetOidcRedirectAuthUri</td>
1190
1265
  <td style="padding:15px">{base_path}/{version}/iam/oidc-redirect-auth-uri?{query}</td>
1191
1266
  <td style="padding:15px">Yes</td>
1192
1267
  </tr>
1193
1268
  <tr>
1194
1269
  <td style="padding:15px">iamRPCServiceSendActivateUserEmail(body, callback)</td>
1195
- <td style="padding:15px">RPC for SendActivateUserEmail.</td>
1270
+ <td style="padding:15px">SendActivateUserEmail</td>
1196
1271
  <td style="padding:15px">{base_path}/{version}/iam/send-activate-user-email?{query}</td>
1197
1272
  <td style="padding:15px">Yes</td>
1198
1273
  </tr>
1199
1274
  <tr>
1200
1275
  <td style="padding:15px">iamRPCServiceEditUserGroup(body, callback)</td>
1201
- <td style="padding:15px">RPC for Edit UserGroup.</td>
1276
+ <td style="padding:15px">EditUserGroup</td>
1202
1277
  <td style="padding:15px">{base_path}/{version}/iam/edit-user-group?{query}</td>
1203
1278
  <td style="padding:15px">Yes</td>
1204
1279
  </tr>
1205
1280
  <tr>
1206
1281
  <td style="padding:15px">iamRPCServiceResetPassword(body, callback)</td>
1207
- <td style="padding:15px">RPC for ResetPassword.</td>
1282
+ <td style="padding:15px">ResetPassword</td>
1208
1283
  <td style="padding:15px">{base_path}/{version}/iam/reset-password?{query}</td>
1209
1284
  <td style="padding:15px">Yes</td>
1210
1285
  </tr>
1211
1286
  <tr>
1212
1287
  <td style="padding:15px">iamRPCServiceCreateUserGroup(body, callback)</td>
1213
- <td style="padding:15px">RPC for Create UserGroup.</td>
1288
+ <td style="padding:15px">CreateUserGroup</td>
1214
1289
  <td style="padding:15px">{base_path}/{version}/iam/create-user-group?{query}</td>
1215
1290
  <td style="padding:15px">Yes</td>
1216
1291
  </tr>
1217
1292
  <tr>
1218
- <td style="padding:15px">iamRPCServiceGetUserScopes(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = AND, specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
1219
- <td style="padding:15px">RPC for GetUserScopes.</td>
1293
+ <td style="padding:15px">iamRPCServiceGetUserScopes(specSize, specPageMarker, specDetail, specCount, specExcludeShared, specExcludeHrefs, specParentFqNameStr, specParentType, specParentId, specBackRefId, specObjUuids, specFields, specFilters, specRefUuids, specFrom, specSortby, specOperation = 'AND', specTagFilters, specTagDetail, specRefFields, specExtRefUuids, callback)</td>
1294
+ <td style="padding:15px">GetUserScopes</td>
1220
1295
  <td style="padding:15px">{base_path}/{version}/iam/get-user-scopes?{query}</td>
1221
1296
  <td style="padding:15px">Yes</td>
1222
1297
  </tr>
1223
1298
  <tr>
1224
1299
  <td style="padding:15px">iamRPCServiceChangePassword(body, callback)</td>
1225
- <td style="padding:15px">RPC for ChangePassword.</td>
1300
+ <td style="padding:15px">ChangePassword</td>
1226
1301
  <td style="padding:15px">{base_path}/{version}/iam/change-password?{query}</td>
1227
1302
  <td style="padding:15px">Yes</td>
1228
1303
  </tr>
1229
1304
  <tr>
1230
1305
  <td style="padding:15px">iamRPCServiceUpdateIdentityProviderPriority(body, callback)</td>
1231
- <td style="padding:15px">RPC for Update IdentityProvider Priority.</td>
1306
+ <td style="padding:15px">UpdateIdentityProviderPriority</td>
1232
1307
  <td style="padding:15px">{base_path}/{version}/iam/identity-provider-priority?{query}</td>
1233
1308
  <td style="padding:15px">Yes</td>
1234
1309
  </tr>
1235
1310
  <tr>
1236
1311
  <td style="padding:15px">iamRPCServiceConfigureLDAPServer(body, callback)</td>
1237
- <td style="padding:15px">RPC for Configure LDAPServer.</td>
1312
+ <td style="padding:15px">ConfigureLDAPServer</td>
1238
1313
  <td style="padding:15px">{base_path}/{version}/iam/configure-ldap-server?{query}</td>
1239
1314
  <td style="padding:15px">Yes</td>
1240
1315
  </tr>
@@ -1246,19 +1321,19 @@ For now only Scope DisplayName will update.</td>
1246
1321
  </tr>
1247
1322
  <tr>
1248
1323
  <td style="padding:15px">authorizationGetJWTKeys(callback)</td>
1249
- <td style="padding:15px">Get JWT publickeys of IAM</td>
1324
+ <td style="padding:15px">GetJWTKeys</td>
1250
1325
  <td style="padding:15px">{base_path}/{version}/iam/jwt/keys?{query}</td>
1251
1326
  <td style="padding:15px">Yes</td>
1252
1327
  </tr>
1253
1328
  <tr>
1254
1329
  <td style="padding:15px">authorizationGetScope(body, callback)</td>
1255
- <td style="padding:15px">Get Scope By UUID</td>
1330
+ <td style="padding:15px">GetScope</td>
1256
1331
  <td style="padding:15px">{base_path}/{version}/iam/get-scope?{query}</td>
1257
1332
  <td style="padding:15px">Yes</td>
1258
1333
  </tr>
1259
1334
  <tr>
1260
1335
  <td style="padding:15px">authorizationGenerateAccessToken(body, callback)</td>
1261
- <td style="padding:15px">GenerateAccessToken will generate accrss-token from id-token</td>
1336
+ <td style="padding:15px">GenerateAccessToken</td>
1262
1337
  <td style="padding:15px">{base_path}/{version}/iam/generate-access-token?{query}</td>
1263
1338
  <td style="padding:15px">Yes</td>
1264
1339
  </tr>
@@ -1270,13 +1345,13 @@ For now only Scope DisplayName will update.</td>
1270
1345
  </tr>
1271
1346
  <tr>
1272
1347
  <td style="padding:15px">authenticationAuthenticate(body, callback)</td>
1273
- <td style="padding:15px">Authenticate a user and return token</td>
1348
+ <td style="padding:15px">Authenticate</td>
1274
1349
  <td style="padding:15px">{base_path}/{version}/iam/authenticate?{query}</td>
1275
1350
  <td style="padding:15px">Yes</td>
1276
1351
  </tr>
1277
1352
  <tr>
1278
1353
  <td style="padding:15px">authenticationAuthCallbackOpenIDConnect(state, code, scope, callback)</td>
1279
- <td style="padding:15px">Redirect Authorized Uri call back</td>
1354
+ <td style="padding:15px">AuthCallbackOpenIDConnect</td>
1280
1355
  <td style="padding:15px">{base_path}/{version}/iam/auth/oidc/callback?{query}</td>
1281
1356
  <td style="padding:15px">Yes</td>
1282
1357
  </tr>