@emilgroup/tenant-sdk 1.42.1-beta.35 → 1.42.1-beta.37

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.
@@ -72,6 +72,7 @@ models/data-report-filter-dto.ts
72
72
  models/data-report-filter-single-value-dto.ts
73
73
  models/data-report-filter-value-dto.ts
74
74
  models/dbconfig-dto.ts
75
+ models/delete-by-code-response-class.ts
75
76
  models/delete-response-class.ts
76
77
  models/delete-tenant-request-dto.ts
77
78
  models/disable-users-request-dto.ts
@@ -93,6 +94,7 @@ models/get-report-schedule-response-class.ts
93
94
  models/get-settings-response-class.ts
94
95
  models/get-sso-connection-response-class.ts
95
96
  models/get-sso-connection-setup-response-class.ts
97
+ models/get-sso-idp-group-response-class.ts
96
98
  models/get-user-group-response-class.ts
97
99
  models/get-user-response-class.ts
98
100
  models/index.ts
@@ -118,6 +120,7 @@ models/list-organizations-response-class.ts
118
120
  models/list-report-schedule-logs-response-class.ts
119
121
  models/list-report-schedules-response-class.ts
120
122
  models/list-roles-response-class.ts
123
+ models/list-sso-idp-groups-response-class.ts
121
124
  models/list-user-group-members-response-class.ts
122
125
  models/list-user-groups-response-class.ts
123
126
  models/list-users-response-class.ts
package/README.md CHANGED
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
17
17
  Navigate to the folder of your consuming project and run one of the following commands:
18
18
 
19
19
  ```
20
- npm install @emilgroup/tenant-sdk@1.42.1-beta.35 --save
20
+ npm install @emilgroup/tenant-sdk@1.42.1-beta.37 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/tenant-sdk@1.42.1-beta.35
24
+ yarn add @emilgroup/tenant-sdk@1.42.1-beta.37
25
25
  ```
26
26
 
27
27
  And then you can import `UsersApi`.
@@ -25,6 +25,12 @@ import { CreateSsoIdpGroupRequestDto } from '../models';
25
25
  // @ts-ignore
26
26
  import { CreateSsoIdpGroupResponseClass } from '../models';
27
27
  // @ts-ignore
28
+ import { DeleteByCodeResponseClass } from '../models';
29
+ // @ts-ignore
30
+ import { GetSsoIdpGroupResponseClass } from '../models';
31
+ // @ts-ignore
32
+ import { ListSsoIdpGroupsResponseClass } from '../models';
33
+ // @ts-ignore
28
34
  import { UpdateSsoIdpGroupBodyDto } from '../models';
29
35
  // @ts-ignore
30
36
  import { UpdateSsoIdpGroupResponseClass } from '../models';
@@ -81,6 +87,172 @@ export const SSOIdPGroupsApiAxiosParamCreator = function (configuration?: Config
81
87
  options: localVarRequestOptions,
82
88
  };
83
89
  },
90
+ /**
91
+ * undefined **Required Permissions** \"tenant-management.settings.delete\"
92
+ * @summary Delete an IdP group and all of its mappings
93
+ * @param {string} code IdP group code.
94
+ * @param {string} [authorization] Bearer Token
95
+ * @param {*} [options] Override http request option.
96
+ * @throws {RequiredError}
97
+ */
98
+ deleteSsoIdpGroup: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
99
+ // verify required parameter 'code' is not null or undefined
100
+ assertParamExists('deleteSsoIdpGroup', 'code', code)
101
+ const localVarPath = `/tenantservice/v1/sso-idp-groups/{code}`
102
+ .replace(`{${"code"}}`, encodeURIComponent(String(code)));
103
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
104
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
105
+ let baseOptions;
106
+ let baseAccessToken;
107
+ if (configuration) {
108
+ baseOptions = configuration.baseOptions;
109
+ baseAccessToken = configuration.accessToken;
110
+ }
111
+
112
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
113
+ const localVarHeaderParameter = {} as any;
114
+ const localVarQueryParameter = {} as any;
115
+
116
+ // authentication bearer required
117
+ // http bearer authentication required
118
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
119
+
120
+ if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
121
+ localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
122
+ }
123
+
124
+
125
+
126
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
127
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
128
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
129
+
130
+ return {
131
+ url: toPathString(localVarUrlObj),
132
+ options: localVarRequestOptions,
133
+ };
134
+ },
135
+ /**
136
+ * undefined **Required Permissions** \"tenant-management.settings.view\"
137
+ * @summary Get an IdP group by code
138
+ * @param {string} code IdP group code.
139
+ * @param {string} [authorization] Bearer Token
140
+ * @param {*} [options] Override http request option.
141
+ * @throws {RequiredError}
142
+ */
143
+ getSsoIdpGroup: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
144
+ // verify required parameter 'code' is not null or undefined
145
+ assertParamExists('getSsoIdpGroup', 'code', code)
146
+ const localVarPath = `/tenantservice/v1/sso-idp-groups/{code}`
147
+ .replace(`{${"code"}}`, encodeURIComponent(String(code)));
148
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
149
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
150
+ let baseOptions;
151
+ let baseAccessToken;
152
+ if (configuration) {
153
+ baseOptions = configuration.baseOptions;
154
+ baseAccessToken = configuration.accessToken;
155
+ }
156
+
157
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
158
+ const localVarHeaderParameter = {} as any;
159
+ const localVarQueryParameter = {} as any;
160
+
161
+ // authentication bearer required
162
+ // http bearer authentication required
163
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
164
+
165
+ if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
166
+ localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
167
+ }
168
+
169
+
170
+
171
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
172
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
173
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
174
+
175
+ return {
176
+ url: toPathString(localVarUrlObj),
177
+ options: localVarRequestOptions,
178
+ };
179
+ },
180
+ /**
181
+ * undefined **Required Permissions** \"tenant-management.settings.view\"
182
+ * @summary List registered IdP groups
183
+ * @param {string} [authorization] Bearer Token
184
+ * @param {number} [pageSize] Number of items per page.
185
+ * @param {string} [pageToken] Opaque token for the next page (returned in a previous response).
186
+ * @param {string} [filter] Filter IdP groups by one or more fields. Allowed: id, code, externalId, name, isActive, userGroup.code, createdAt, updatedAt.
187
+ * @param {string} [search] Free-text search over searchable columns.
188
+ * @param {string} [order] Sort the response. Allowed columns: id, code, externalId, name, isActive, createdAt, updatedAt.
189
+ * @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
190
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
191
+ * @param {*} [options] Override http request option.
192
+ * @throws {RequiredError}
193
+ */
194
+ listSsoIdpGroups: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
195
+ const localVarPath = `/tenantservice/v1/sso-idp-groups`;
196
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
197
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
198
+ let baseOptions;
199
+ let baseAccessToken;
200
+ if (configuration) {
201
+ baseOptions = configuration.baseOptions;
202
+ baseAccessToken = configuration.accessToken;
203
+ }
204
+
205
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
206
+ const localVarHeaderParameter = {} as any;
207
+ const localVarQueryParameter = {} as any;
208
+
209
+ // authentication bearer required
210
+ // http bearer authentication required
211
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
212
+
213
+ if (pageSize !== undefined) {
214
+ localVarQueryParameter['pageSize'] = pageSize;
215
+ }
216
+
217
+ if (pageToken !== undefined) {
218
+ localVarQueryParameter['pageToken'] = pageToken;
219
+ }
220
+
221
+ if (filter !== undefined) {
222
+ localVarQueryParameter['filter'] = filter;
223
+ }
224
+
225
+ if (search !== undefined) {
226
+ localVarQueryParameter['search'] = search;
227
+ }
228
+
229
+ if (order !== undefined) {
230
+ localVarQueryParameter['order'] = order;
231
+ }
232
+
233
+ if (expand !== undefined) {
234
+ localVarQueryParameter['expand'] = expand;
235
+ }
236
+
237
+ if (filters !== undefined) {
238
+ localVarQueryParameter['filters'] = filters;
239
+ }
240
+
241
+ if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
242
+ localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
243
+ }
244
+
245
+
246
+
247
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
248
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
249
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
250
+
251
+ return {
252
+ url: toPathString(localVarUrlObj),
253
+ options: localVarRequestOptions,
254
+ };
255
+ },
84
256
  /**
85
257
  * externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
86
258
  * @summary Update IdP group name and/or EIS mappings
@@ -154,6 +326,48 @@ export const SSOIdPGroupsApiFp = function(configuration?: Configuration) {
154
326
  const localVarAxiosArgs = await localVarAxiosParamCreator.createSsoIdpGroup(createSsoIdpGroupRequestDto, authorization, options);
155
327
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
156
328
  },
329
+ /**
330
+ * undefined **Required Permissions** \"tenant-management.settings.delete\"
331
+ * @summary Delete an IdP group and all of its mappings
332
+ * @param {string} code IdP group code.
333
+ * @param {string} [authorization] Bearer Token
334
+ * @param {*} [options] Override http request option.
335
+ * @throws {RequiredError}
336
+ */
337
+ async deleteSsoIdpGroup(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteByCodeResponseClass>> {
338
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSsoIdpGroup(code, authorization, options);
339
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
340
+ },
341
+ /**
342
+ * undefined **Required Permissions** \"tenant-management.settings.view\"
343
+ * @summary Get an IdP group by code
344
+ * @param {string} code IdP group code.
345
+ * @param {string} [authorization] Bearer Token
346
+ * @param {*} [options] Override http request option.
347
+ * @throws {RequiredError}
348
+ */
349
+ async getSsoIdpGroup(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSsoIdpGroupResponseClass>> {
350
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getSsoIdpGroup(code, authorization, options);
351
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
352
+ },
353
+ /**
354
+ * undefined **Required Permissions** \"tenant-management.settings.view\"
355
+ * @summary List registered IdP groups
356
+ * @param {string} [authorization] Bearer Token
357
+ * @param {number} [pageSize] Number of items per page.
358
+ * @param {string} [pageToken] Opaque token for the next page (returned in a previous response).
359
+ * @param {string} [filter] Filter IdP groups by one or more fields. Allowed: id, code, externalId, name, isActive, userGroup.code, createdAt, updatedAt.
360
+ * @param {string} [search] Free-text search over searchable columns.
361
+ * @param {string} [order] Sort the response. Allowed columns: id, code, externalId, name, isActive, createdAt, updatedAt.
362
+ * @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
363
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
364
+ * @param {*} [options] Override http request option.
365
+ * @throws {RequiredError}
366
+ */
367
+ async listSsoIdpGroups(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListSsoIdpGroupsResponseClass>> {
368
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listSsoIdpGroups(authorization, pageSize, pageToken, filter, search, order, expand, filters, options);
369
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
370
+ },
157
371
  /**
158
372
  * externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
159
373
  * @summary Update IdP group name and/or EIS mappings
@@ -188,6 +402,45 @@ export const SSOIdPGroupsApiFactory = function (configuration?: Configuration, b
188
402
  createSsoIdpGroup(createSsoIdpGroupRequestDto: CreateSsoIdpGroupRequestDto, authorization?: string, options?: any): AxiosPromise<CreateSsoIdpGroupResponseClass> {
189
403
  return localVarFp.createSsoIdpGroup(createSsoIdpGroupRequestDto, authorization, options).then((request) => request(axios, basePath));
190
404
  },
405
+ /**
406
+ * undefined **Required Permissions** \"tenant-management.settings.delete\"
407
+ * @summary Delete an IdP group and all of its mappings
408
+ * @param {string} code IdP group code.
409
+ * @param {string} [authorization] Bearer Token
410
+ * @param {*} [options] Override http request option.
411
+ * @throws {RequiredError}
412
+ */
413
+ deleteSsoIdpGroup(code: string, authorization?: string, options?: any): AxiosPromise<DeleteByCodeResponseClass> {
414
+ return localVarFp.deleteSsoIdpGroup(code, authorization, options).then((request) => request(axios, basePath));
415
+ },
416
+ /**
417
+ * undefined **Required Permissions** \"tenant-management.settings.view\"
418
+ * @summary Get an IdP group by code
419
+ * @param {string} code IdP group code.
420
+ * @param {string} [authorization] Bearer Token
421
+ * @param {*} [options] Override http request option.
422
+ * @throws {RequiredError}
423
+ */
424
+ getSsoIdpGroup(code: string, authorization?: string, options?: any): AxiosPromise<GetSsoIdpGroupResponseClass> {
425
+ return localVarFp.getSsoIdpGroup(code, authorization, options).then((request) => request(axios, basePath));
426
+ },
427
+ /**
428
+ * undefined **Required Permissions** \"tenant-management.settings.view\"
429
+ * @summary List registered IdP groups
430
+ * @param {string} [authorization] Bearer Token
431
+ * @param {number} [pageSize] Number of items per page.
432
+ * @param {string} [pageToken] Opaque token for the next page (returned in a previous response).
433
+ * @param {string} [filter] Filter IdP groups by one or more fields. Allowed: id, code, externalId, name, isActive, userGroup.code, createdAt, updatedAt.
434
+ * @param {string} [search] Free-text search over searchable columns.
435
+ * @param {string} [order] Sort the response. Allowed columns: id, code, externalId, name, isActive, createdAt, updatedAt.
436
+ * @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
437
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
438
+ * @param {*} [options] Override http request option.
439
+ * @throws {RequiredError}
440
+ */
441
+ listSsoIdpGroups(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListSsoIdpGroupsResponseClass> {
442
+ return localVarFp.listSsoIdpGroups(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
443
+ },
191
444
  /**
192
445
  * externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
193
446
  * @summary Update IdP group name and/or EIS mappings
@@ -224,6 +477,111 @@ export interface SSOIdPGroupsApiCreateSsoIdpGroupRequest {
224
477
  readonly authorization?: string
225
478
  }
226
479
 
480
+ /**
481
+ * Request parameters for deleteSsoIdpGroup operation in SSOIdPGroupsApi.
482
+ * @export
483
+ * @interface SSOIdPGroupsApiDeleteSsoIdpGroupRequest
484
+ */
485
+ export interface SSOIdPGroupsApiDeleteSsoIdpGroupRequest {
486
+ /**
487
+ * IdP group code.
488
+ * @type {string}
489
+ * @memberof SSOIdPGroupsApiDeleteSsoIdpGroup
490
+ */
491
+ readonly code: string
492
+
493
+ /**
494
+ * Bearer Token
495
+ * @type {string}
496
+ * @memberof SSOIdPGroupsApiDeleteSsoIdpGroup
497
+ */
498
+ readonly authorization?: string
499
+ }
500
+
501
+ /**
502
+ * Request parameters for getSsoIdpGroup operation in SSOIdPGroupsApi.
503
+ * @export
504
+ * @interface SSOIdPGroupsApiGetSsoIdpGroupRequest
505
+ */
506
+ export interface SSOIdPGroupsApiGetSsoIdpGroupRequest {
507
+ /**
508
+ * IdP group code.
509
+ * @type {string}
510
+ * @memberof SSOIdPGroupsApiGetSsoIdpGroup
511
+ */
512
+ readonly code: string
513
+
514
+ /**
515
+ * Bearer Token
516
+ * @type {string}
517
+ * @memberof SSOIdPGroupsApiGetSsoIdpGroup
518
+ */
519
+ readonly authorization?: string
520
+ }
521
+
522
+ /**
523
+ * Request parameters for listSsoIdpGroups operation in SSOIdPGroupsApi.
524
+ * @export
525
+ * @interface SSOIdPGroupsApiListSsoIdpGroupsRequest
526
+ */
527
+ export interface SSOIdPGroupsApiListSsoIdpGroupsRequest {
528
+ /**
529
+ * Bearer Token
530
+ * @type {string}
531
+ * @memberof SSOIdPGroupsApiListSsoIdpGroups
532
+ */
533
+ readonly authorization?: string
534
+
535
+ /**
536
+ * Number of items per page.
537
+ * @type {number}
538
+ * @memberof SSOIdPGroupsApiListSsoIdpGroups
539
+ */
540
+ readonly pageSize?: number
541
+
542
+ /**
543
+ * Opaque token for the next page (returned in a previous response).
544
+ * @type {string}
545
+ * @memberof SSOIdPGroupsApiListSsoIdpGroups
546
+ */
547
+ readonly pageToken?: string
548
+
549
+ /**
550
+ * Filter IdP groups by one or more fields. Allowed: id, code, externalId, name, isActive, userGroup.code, createdAt, updatedAt.
551
+ * @type {string}
552
+ * @memberof SSOIdPGroupsApiListSsoIdpGroups
553
+ */
554
+ readonly filter?: string
555
+
556
+ /**
557
+ * Free-text search over searchable columns.
558
+ * @type {string}
559
+ * @memberof SSOIdPGroupsApiListSsoIdpGroups
560
+ */
561
+ readonly search?: string
562
+
563
+ /**
564
+ * Sort the response. Allowed columns: id, code, externalId, name, isActive, createdAt, updatedAt.
565
+ * @type {string}
566
+ * @memberof SSOIdPGroupsApiListSsoIdpGroups
567
+ */
568
+ readonly order?: string
569
+
570
+ /**
571
+ * Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
572
+ * @type {string}
573
+ * @memberof SSOIdPGroupsApiListSsoIdpGroups
574
+ */
575
+ readonly expand?: string
576
+
577
+ /**
578
+ * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
579
+ * @type {string}
580
+ * @memberof SSOIdPGroupsApiListSsoIdpGroups
581
+ */
582
+ readonly filters?: string
583
+ }
584
+
227
585
  /**
228
586
  * Request parameters for updateSsoIdpGroup operation in SSOIdPGroupsApi.
229
587
  * @export
@@ -271,6 +629,42 @@ export class SSOIdPGroupsApi extends BaseAPI {
271
629
  return SSOIdPGroupsApiFp(this.configuration).createSsoIdpGroup(requestParameters.createSsoIdpGroupRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
272
630
  }
273
631
 
632
+ /**
633
+ * undefined **Required Permissions** \"tenant-management.settings.delete\"
634
+ * @summary Delete an IdP group and all of its mappings
635
+ * @param {SSOIdPGroupsApiDeleteSsoIdpGroupRequest} requestParameters Request parameters.
636
+ * @param {*} [options] Override http request option.
637
+ * @throws {RequiredError}
638
+ * @memberof SSOIdPGroupsApi
639
+ */
640
+ public deleteSsoIdpGroup(requestParameters: SSOIdPGroupsApiDeleteSsoIdpGroupRequest, options?: AxiosRequestConfig) {
641
+ return SSOIdPGroupsApiFp(this.configuration).deleteSsoIdpGroup(requestParameters.code, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
642
+ }
643
+
644
+ /**
645
+ * undefined **Required Permissions** \"tenant-management.settings.view\"
646
+ * @summary Get an IdP group by code
647
+ * @param {SSOIdPGroupsApiGetSsoIdpGroupRequest} requestParameters Request parameters.
648
+ * @param {*} [options] Override http request option.
649
+ * @throws {RequiredError}
650
+ * @memberof SSOIdPGroupsApi
651
+ */
652
+ public getSsoIdpGroup(requestParameters: SSOIdPGroupsApiGetSsoIdpGroupRequest, options?: AxiosRequestConfig) {
653
+ return SSOIdPGroupsApiFp(this.configuration).getSsoIdpGroup(requestParameters.code, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
654
+ }
655
+
656
+ /**
657
+ * undefined **Required Permissions** \"tenant-management.settings.view\"
658
+ * @summary List registered IdP groups
659
+ * @param {SSOIdPGroupsApiListSsoIdpGroupsRequest} requestParameters Request parameters.
660
+ * @param {*} [options] Override http request option.
661
+ * @throws {RequiredError}
662
+ * @memberof SSOIdPGroupsApi
663
+ */
664
+ public listSsoIdpGroups(requestParameters: SSOIdPGroupsApiListSsoIdpGroupsRequest = {}, options?: AxiosRequestConfig) {
665
+ return SSOIdPGroupsApiFp(this.configuration).listSsoIdpGroups(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then((request) => request(this.axios, this.basePath));
666
+ }
667
+
274
668
  /**
275
669
  * externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
276
670
  * @summary Update IdP group name and/or EIS mappings