@emilgroup/tenant-sdk 1.42.1-beta.36 → 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.
- package/.openapi-generator/FILES +2 -0
- package/README.md +2 -2
- package/api/ssoid-pgroups-api.ts +291 -0
- package/dist/api/ssoid-pgroups-api.d.ts +166 -0
- package/dist/api/ssoid-pgroups-api.js +221 -0
- package/dist/models/get-sso-idp-group-response-class.d.ts +25 -0
- package/dist/models/get-sso-idp-group-response-class.js +15 -0
- package/dist/models/index.d.ts +2 -0
- package/dist/models/index.js +2 -0
- package/dist/models/list-sso-idp-groups-response-class.d.ts +43 -0
- package/dist/models/list-sso-idp-groups-response-class.js +15 -0
- package/models/get-sso-idp-group-response-class.ts +31 -0
- package/models/index.ts +2 -0
- package/models/list-sso-idp-groups-response-class.ts +49 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -94,6 +94,7 @@ models/get-report-schedule-response-class.ts
|
|
|
94
94
|
models/get-settings-response-class.ts
|
|
95
95
|
models/get-sso-connection-response-class.ts
|
|
96
96
|
models/get-sso-connection-setup-response-class.ts
|
|
97
|
+
models/get-sso-idp-group-response-class.ts
|
|
97
98
|
models/get-user-group-response-class.ts
|
|
98
99
|
models/get-user-response-class.ts
|
|
99
100
|
models/index.ts
|
|
@@ -119,6 +120,7 @@ models/list-organizations-response-class.ts
|
|
|
119
120
|
models/list-report-schedule-logs-response-class.ts
|
|
120
121
|
models/list-report-schedules-response-class.ts
|
|
121
122
|
models/list-roles-response-class.ts
|
|
123
|
+
models/list-sso-idp-groups-response-class.ts
|
|
122
124
|
models/list-user-group-members-response-class.ts
|
|
123
125
|
models/list-user-groups-response-class.ts
|
|
124
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.
|
|
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.
|
|
24
|
+
yarn add @emilgroup/tenant-sdk@1.42.1-beta.37
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `UsersApi`.
|
package/api/ssoid-pgroups-api.ts
CHANGED
|
@@ -27,6 +27,10 @@ import { CreateSsoIdpGroupResponseClass } from '../models';
|
|
|
27
27
|
// @ts-ignore
|
|
28
28
|
import { DeleteByCodeResponseClass } from '../models';
|
|
29
29
|
// @ts-ignore
|
|
30
|
+
import { GetSsoIdpGroupResponseClass } from '../models';
|
|
31
|
+
// @ts-ignore
|
|
32
|
+
import { ListSsoIdpGroupsResponseClass } from '../models';
|
|
33
|
+
// @ts-ignore
|
|
30
34
|
import { UpdateSsoIdpGroupBodyDto } from '../models';
|
|
31
35
|
// @ts-ignore
|
|
32
36
|
import { UpdateSsoIdpGroupResponseClass } from '../models';
|
|
@@ -119,6 +123,127 @@ export const SSOIdPGroupsApiAxiosParamCreator = function (configuration?: Config
|
|
|
119
123
|
|
|
120
124
|
|
|
121
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
|
+
|
|
122
247
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
123
248
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
124
249
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -213,6 +338,36 @@ export const SSOIdPGroupsApiFp = function(configuration?: Configuration) {
|
|
|
213
338
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSsoIdpGroup(code, authorization, options);
|
|
214
339
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
215
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
|
+
},
|
|
216
371
|
/**
|
|
217
372
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
218
373
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -258,6 +413,34 @@ export const SSOIdPGroupsApiFactory = function (configuration?: Configuration, b
|
|
|
258
413
|
deleteSsoIdpGroup(code: string, authorization?: string, options?: any): AxiosPromise<DeleteByCodeResponseClass> {
|
|
259
414
|
return localVarFp.deleteSsoIdpGroup(code, authorization, options).then((request) => request(axios, basePath));
|
|
260
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
|
+
},
|
|
261
444
|
/**
|
|
262
445
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
263
446
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -315,6 +498,90 @@ export interface SSOIdPGroupsApiDeleteSsoIdpGroupRequest {
|
|
|
315
498
|
readonly authorization?: string
|
|
316
499
|
}
|
|
317
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
|
+
|
|
318
585
|
/**
|
|
319
586
|
* Request parameters for updateSsoIdpGroup operation in SSOIdPGroupsApi.
|
|
320
587
|
* @export
|
|
@@ -374,6 +641,30 @@ export class SSOIdPGroupsApi extends BaseAPI {
|
|
|
374
641
|
return SSOIdPGroupsApiFp(this.configuration).deleteSsoIdpGroup(requestParameters.code, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
375
642
|
}
|
|
376
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
|
+
|
|
377
668
|
/**
|
|
378
669
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
379
670
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -15,6 +15,8 @@ import { RequestArgs, BaseAPI } from '../base';
|
|
|
15
15
|
import { CreateSsoIdpGroupRequestDto } from '../models';
|
|
16
16
|
import { CreateSsoIdpGroupResponseClass } from '../models';
|
|
17
17
|
import { DeleteByCodeResponseClass } from '../models';
|
|
18
|
+
import { GetSsoIdpGroupResponseClass } from '../models';
|
|
19
|
+
import { ListSsoIdpGroupsResponseClass } from '../models';
|
|
18
20
|
import { UpdateSsoIdpGroupBodyDto } from '../models';
|
|
19
21
|
import { UpdateSsoIdpGroupResponseClass } from '../models';
|
|
20
22
|
/**
|
|
@@ -40,6 +42,30 @@ export declare const SSOIdPGroupsApiAxiosParamCreator: (configuration?: Configur
|
|
|
40
42
|
* @throws {RequiredError}
|
|
41
43
|
*/
|
|
42
44
|
deleteSsoIdpGroup: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
45
|
+
/**
|
|
46
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
47
|
+
* @summary Get an IdP group by code
|
|
48
|
+
* @param {string} code IdP group code.
|
|
49
|
+
* @param {string} [authorization] Bearer Token
|
|
50
|
+
* @param {*} [options] Override http request option.
|
|
51
|
+
* @throws {RequiredError}
|
|
52
|
+
*/
|
|
53
|
+
getSsoIdpGroup: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
54
|
+
/**
|
|
55
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
56
|
+
* @summary List registered IdP groups
|
|
57
|
+
* @param {string} [authorization] Bearer Token
|
|
58
|
+
* @param {number} [pageSize] Number of items per page.
|
|
59
|
+
* @param {string} [pageToken] Opaque token for the next page (returned in a previous response).
|
|
60
|
+
* @param {string} [filter] Filter IdP groups by one or more fields. Allowed: id, code, externalId, name, isActive, userGroup.code, createdAt, updatedAt.
|
|
61
|
+
* @param {string} [search] Free-text search over searchable columns.
|
|
62
|
+
* @param {string} [order] Sort the response. Allowed columns: id, code, externalId, name, isActive, createdAt, updatedAt.
|
|
63
|
+
* @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.
|
|
64
|
+
* @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.
|
|
65
|
+
* @param {*} [options] Override http request option.
|
|
66
|
+
* @throws {RequiredError}
|
|
67
|
+
*/
|
|
68
|
+
listSsoIdpGroups: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
43
69
|
/**
|
|
44
70
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
45
71
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -74,6 +100,30 @@ export declare const SSOIdPGroupsApiFp: (configuration?: Configuration) => {
|
|
|
74
100
|
* @throws {RequiredError}
|
|
75
101
|
*/
|
|
76
102
|
deleteSsoIdpGroup(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteByCodeResponseClass>>;
|
|
103
|
+
/**
|
|
104
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
105
|
+
* @summary Get an IdP group by code
|
|
106
|
+
* @param {string} code IdP group code.
|
|
107
|
+
* @param {string} [authorization] Bearer Token
|
|
108
|
+
* @param {*} [options] Override http request option.
|
|
109
|
+
* @throws {RequiredError}
|
|
110
|
+
*/
|
|
111
|
+
getSsoIdpGroup(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSsoIdpGroupResponseClass>>;
|
|
112
|
+
/**
|
|
113
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
114
|
+
* @summary List registered IdP groups
|
|
115
|
+
* @param {string} [authorization] Bearer Token
|
|
116
|
+
* @param {number} [pageSize] Number of items per page.
|
|
117
|
+
* @param {string} [pageToken] Opaque token for the next page (returned in a previous response).
|
|
118
|
+
* @param {string} [filter] Filter IdP groups by one or more fields. Allowed: id, code, externalId, name, isActive, userGroup.code, createdAt, updatedAt.
|
|
119
|
+
* @param {string} [search] Free-text search over searchable columns.
|
|
120
|
+
* @param {string} [order] Sort the response. Allowed columns: id, code, externalId, name, isActive, createdAt, updatedAt.
|
|
121
|
+
* @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.
|
|
122
|
+
* @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.
|
|
123
|
+
* @param {*} [options] Override http request option.
|
|
124
|
+
* @throws {RequiredError}
|
|
125
|
+
*/
|
|
126
|
+
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>>;
|
|
77
127
|
/**
|
|
78
128
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
79
129
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -108,6 +158,30 @@ export declare const SSOIdPGroupsApiFactory: (configuration?: Configuration, bas
|
|
|
108
158
|
* @throws {RequiredError}
|
|
109
159
|
*/
|
|
110
160
|
deleteSsoIdpGroup(code: string, authorization?: string, options?: any): AxiosPromise<DeleteByCodeResponseClass>;
|
|
161
|
+
/**
|
|
162
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
163
|
+
* @summary Get an IdP group by code
|
|
164
|
+
* @param {string} code IdP group code.
|
|
165
|
+
* @param {string} [authorization] Bearer Token
|
|
166
|
+
* @param {*} [options] Override http request option.
|
|
167
|
+
* @throws {RequiredError}
|
|
168
|
+
*/
|
|
169
|
+
getSsoIdpGroup(code: string, authorization?: string, options?: any): AxiosPromise<GetSsoIdpGroupResponseClass>;
|
|
170
|
+
/**
|
|
171
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
172
|
+
* @summary List registered IdP groups
|
|
173
|
+
* @param {string} [authorization] Bearer Token
|
|
174
|
+
* @param {number} [pageSize] Number of items per page.
|
|
175
|
+
* @param {string} [pageToken] Opaque token for the next page (returned in a previous response).
|
|
176
|
+
* @param {string} [filter] Filter IdP groups by one or more fields. Allowed: id, code, externalId, name, isActive, userGroup.code, createdAt, updatedAt.
|
|
177
|
+
* @param {string} [search] Free-text search over searchable columns.
|
|
178
|
+
* @param {string} [order] Sort the response. Allowed columns: id, code, externalId, name, isActive, createdAt, updatedAt.
|
|
179
|
+
* @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.
|
|
180
|
+
* @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.
|
|
181
|
+
* @param {*} [options] Override http request option.
|
|
182
|
+
* @throws {RequiredError}
|
|
183
|
+
*/
|
|
184
|
+
listSsoIdpGroups(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListSsoIdpGroupsResponseClass>;
|
|
111
185
|
/**
|
|
112
186
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
113
187
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -157,6 +231,80 @@ export interface SSOIdPGroupsApiDeleteSsoIdpGroupRequest {
|
|
|
157
231
|
*/
|
|
158
232
|
readonly authorization?: string;
|
|
159
233
|
}
|
|
234
|
+
/**
|
|
235
|
+
* Request parameters for getSsoIdpGroup operation in SSOIdPGroupsApi.
|
|
236
|
+
* @export
|
|
237
|
+
* @interface SSOIdPGroupsApiGetSsoIdpGroupRequest
|
|
238
|
+
*/
|
|
239
|
+
export interface SSOIdPGroupsApiGetSsoIdpGroupRequest {
|
|
240
|
+
/**
|
|
241
|
+
* IdP group code.
|
|
242
|
+
* @type {string}
|
|
243
|
+
* @memberof SSOIdPGroupsApiGetSsoIdpGroup
|
|
244
|
+
*/
|
|
245
|
+
readonly code: string;
|
|
246
|
+
/**
|
|
247
|
+
* Bearer Token
|
|
248
|
+
* @type {string}
|
|
249
|
+
* @memberof SSOIdPGroupsApiGetSsoIdpGroup
|
|
250
|
+
*/
|
|
251
|
+
readonly authorization?: string;
|
|
252
|
+
}
|
|
253
|
+
/**
|
|
254
|
+
* Request parameters for listSsoIdpGroups operation in SSOIdPGroupsApi.
|
|
255
|
+
* @export
|
|
256
|
+
* @interface SSOIdPGroupsApiListSsoIdpGroupsRequest
|
|
257
|
+
*/
|
|
258
|
+
export interface SSOIdPGroupsApiListSsoIdpGroupsRequest {
|
|
259
|
+
/**
|
|
260
|
+
* Bearer Token
|
|
261
|
+
* @type {string}
|
|
262
|
+
* @memberof SSOIdPGroupsApiListSsoIdpGroups
|
|
263
|
+
*/
|
|
264
|
+
readonly authorization?: string;
|
|
265
|
+
/**
|
|
266
|
+
* Number of items per page.
|
|
267
|
+
* @type {number}
|
|
268
|
+
* @memberof SSOIdPGroupsApiListSsoIdpGroups
|
|
269
|
+
*/
|
|
270
|
+
readonly pageSize?: number;
|
|
271
|
+
/**
|
|
272
|
+
* Opaque token for the next page (returned in a previous response).
|
|
273
|
+
* @type {string}
|
|
274
|
+
* @memberof SSOIdPGroupsApiListSsoIdpGroups
|
|
275
|
+
*/
|
|
276
|
+
readonly pageToken?: string;
|
|
277
|
+
/**
|
|
278
|
+
* Filter IdP groups by one or more fields. Allowed: id, code, externalId, name, isActive, userGroup.code, createdAt, updatedAt.
|
|
279
|
+
* @type {string}
|
|
280
|
+
* @memberof SSOIdPGroupsApiListSsoIdpGroups
|
|
281
|
+
*/
|
|
282
|
+
readonly filter?: string;
|
|
283
|
+
/**
|
|
284
|
+
* Free-text search over searchable columns.
|
|
285
|
+
* @type {string}
|
|
286
|
+
* @memberof SSOIdPGroupsApiListSsoIdpGroups
|
|
287
|
+
*/
|
|
288
|
+
readonly search?: string;
|
|
289
|
+
/**
|
|
290
|
+
* Sort the response. Allowed columns: id, code, externalId, name, isActive, createdAt, updatedAt.
|
|
291
|
+
* @type {string}
|
|
292
|
+
* @memberof SSOIdPGroupsApiListSsoIdpGroups
|
|
293
|
+
*/
|
|
294
|
+
readonly order?: string;
|
|
295
|
+
/**
|
|
296
|
+
* 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.
|
|
297
|
+
* @type {string}
|
|
298
|
+
* @memberof SSOIdPGroupsApiListSsoIdpGroups
|
|
299
|
+
*/
|
|
300
|
+
readonly expand?: string;
|
|
301
|
+
/**
|
|
302
|
+
* 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.
|
|
303
|
+
* @type {string}
|
|
304
|
+
* @memberof SSOIdPGroupsApiListSsoIdpGroups
|
|
305
|
+
*/
|
|
306
|
+
readonly filters?: string;
|
|
307
|
+
}
|
|
160
308
|
/**
|
|
161
309
|
* Request parameters for updateSsoIdpGroup operation in SSOIdPGroupsApi.
|
|
162
310
|
* @export
|
|
@@ -207,6 +355,24 @@ export declare class SSOIdPGroupsApi extends BaseAPI {
|
|
|
207
355
|
* @memberof SSOIdPGroupsApi
|
|
208
356
|
*/
|
|
209
357
|
deleteSsoIdpGroup(requestParameters: SSOIdPGroupsApiDeleteSsoIdpGroupRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteByCodeResponseClass, any, {}>>;
|
|
358
|
+
/**
|
|
359
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
360
|
+
* @summary Get an IdP group by code
|
|
361
|
+
* @param {SSOIdPGroupsApiGetSsoIdpGroupRequest} requestParameters Request parameters.
|
|
362
|
+
* @param {*} [options] Override http request option.
|
|
363
|
+
* @throws {RequiredError}
|
|
364
|
+
* @memberof SSOIdPGroupsApi
|
|
365
|
+
*/
|
|
366
|
+
getSsoIdpGroup(requestParameters: SSOIdPGroupsApiGetSsoIdpGroupRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetSsoIdpGroupResponseClass, any, {}>>;
|
|
367
|
+
/**
|
|
368
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
369
|
+
* @summary List registered IdP groups
|
|
370
|
+
* @param {SSOIdPGroupsApiListSsoIdpGroupsRequest} requestParameters Request parameters.
|
|
371
|
+
* @param {*} [options] Override http request option.
|
|
372
|
+
* @throws {RequiredError}
|
|
373
|
+
* @memberof SSOIdPGroupsApi
|
|
374
|
+
*/
|
|
375
|
+
listSsoIdpGroups(requestParameters?: SSOIdPGroupsApiListSsoIdpGroupsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListSsoIdpGroupsResponseClass, any, {}>>;
|
|
210
376
|
/**
|
|
211
377
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
212
378
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -189,6 +189,126 @@ var SSOIdPGroupsApiAxiosParamCreator = function (configuration) {
|
|
|
189
189
|
});
|
|
190
190
|
});
|
|
191
191
|
},
|
|
192
|
+
/**
|
|
193
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
194
|
+
* @summary Get an IdP group by code
|
|
195
|
+
* @param {string} code IdP group code.
|
|
196
|
+
* @param {string} [authorization] Bearer Token
|
|
197
|
+
* @param {*} [options] Override http request option.
|
|
198
|
+
* @throws {RequiredError}
|
|
199
|
+
*/
|
|
200
|
+
getSsoIdpGroup: function (code, authorization, options) {
|
|
201
|
+
if (options === void 0) { options = {}; }
|
|
202
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
203
|
+
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
204
|
+
return __generator(this, function (_a) {
|
|
205
|
+
switch (_a.label) {
|
|
206
|
+
case 0:
|
|
207
|
+
// verify required parameter 'code' is not null or undefined
|
|
208
|
+
(0, common_1.assertParamExists)('getSsoIdpGroup', 'code', code);
|
|
209
|
+
localVarPath = "/tenantservice/v1/sso-idp-groups/{code}"
|
|
210
|
+
.replace("{".concat("code", "}"), encodeURIComponent(String(code)));
|
|
211
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
212
|
+
if (configuration) {
|
|
213
|
+
baseOptions = configuration.baseOptions;
|
|
214
|
+
baseAccessToken = configuration.accessToken;
|
|
215
|
+
}
|
|
216
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
217
|
+
localVarHeaderParameter = {};
|
|
218
|
+
localVarQueryParameter = {};
|
|
219
|
+
// authentication bearer required
|
|
220
|
+
// http bearer authentication required
|
|
221
|
+
return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
|
|
222
|
+
case 1:
|
|
223
|
+
// authentication bearer required
|
|
224
|
+
// http bearer authentication required
|
|
225
|
+
_a.sent();
|
|
226
|
+
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
227
|
+
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
228
|
+
}
|
|
229
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
230
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
231
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
232
|
+
return [2 /*return*/, {
|
|
233
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
234
|
+
options: localVarRequestOptions,
|
|
235
|
+
}];
|
|
236
|
+
}
|
|
237
|
+
});
|
|
238
|
+
});
|
|
239
|
+
},
|
|
240
|
+
/**
|
|
241
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
242
|
+
* @summary List registered IdP groups
|
|
243
|
+
* @param {string} [authorization] Bearer Token
|
|
244
|
+
* @param {number} [pageSize] Number of items per page.
|
|
245
|
+
* @param {string} [pageToken] Opaque token for the next page (returned in a previous response).
|
|
246
|
+
* @param {string} [filter] Filter IdP groups by one or more fields. Allowed: id, code, externalId, name, isActive, userGroup.code, createdAt, updatedAt.
|
|
247
|
+
* @param {string} [search] Free-text search over searchable columns.
|
|
248
|
+
* @param {string} [order] Sort the response. Allowed columns: id, code, externalId, name, isActive, createdAt, updatedAt.
|
|
249
|
+
* @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.
|
|
250
|
+
* @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.
|
|
251
|
+
* @param {*} [options] Override http request option.
|
|
252
|
+
* @throws {RequiredError}
|
|
253
|
+
*/
|
|
254
|
+
listSsoIdpGroups: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
255
|
+
if (options === void 0) { options = {}; }
|
|
256
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
257
|
+
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
258
|
+
return __generator(this, function (_a) {
|
|
259
|
+
switch (_a.label) {
|
|
260
|
+
case 0:
|
|
261
|
+
localVarPath = "/tenantservice/v1/sso-idp-groups";
|
|
262
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
263
|
+
if (configuration) {
|
|
264
|
+
baseOptions = configuration.baseOptions;
|
|
265
|
+
baseAccessToken = configuration.accessToken;
|
|
266
|
+
}
|
|
267
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
268
|
+
localVarHeaderParameter = {};
|
|
269
|
+
localVarQueryParameter = {};
|
|
270
|
+
// authentication bearer required
|
|
271
|
+
// http bearer authentication required
|
|
272
|
+
return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
|
|
273
|
+
case 1:
|
|
274
|
+
// authentication bearer required
|
|
275
|
+
// http bearer authentication required
|
|
276
|
+
_a.sent();
|
|
277
|
+
if (pageSize !== undefined) {
|
|
278
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
279
|
+
}
|
|
280
|
+
if (pageToken !== undefined) {
|
|
281
|
+
localVarQueryParameter['pageToken'] = pageToken;
|
|
282
|
+
}
|
|
283
|
+
if (filter !== undefined) {
|
|
284
|
+
localVarQueryParameter['filter'] = filter;
|
|
285
|
+
}
|
|
286
|
+
if (search !== undefined) {
|
|
287
|
+
localVarQueryParameter['search'] = search;
|
|
288
|
+
}
|
|
289
|
+
if (order !== undefined) {
|
|
290
|
+
localVarQueryParameter['order'] = order;
|
|
291
|
+
}
|
|
292
|
+
if (expand !== undefined) {
|
|
293
|
+
localVarQueryParameter['expand'] = expand;
|
|
294
|
+
}
|
|
295
|
+
if (filters !== undefined) {
|
|
296
|
+
localVarQueryParameter['filters'] = filters;
|
|
297
|
+
}
|
|
298
|
+
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
299
|
+
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
300
|
+
}
|
|
301
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
302
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
303
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
304
|
+
return [2 /*return*/, {
|
|
305
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
306
|
+
options: localVarRequestOptions,
|
|
307
|
+
}];
|
|
308
|
+
}
|
|
309
|
+
});
|
|
310
|
+
});
|
|
311
|
+
},
|
|
192
312
|
/**
|
|
193
313
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
194
314
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -294,6 +414,54 @@ var SSOIdPGroupsApiFp = function (configuration) {
|
|
|
294
414
|
});
|
|
295
415
|
});
|
|
296
416
|
},
|
|
417
|
+
/**
|
|
418
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
419
|
+
* @summary Get an IdP group by code
|
|
420
|
+
* @param {string} code IdP group code.
|
|
421
|
+
* @param {string} [authorization] Bearer Token
|
|
422
|
+
* @param {*} [options] Override http request option.
|
|
423
|
+
* @throws {RequiredError}
|
|
424
|
+
*/
|
|
425
|
+
getSsoIdpGroup: function (code, authorization, options) {
|
|
426
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
427
|
+
var localVarAxiosArgs;
|
|
428
|
+
return __generator(this, function (_a) {
|
|
429
|
+
switch (_a.label) {
|
|
430
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.getSsoIdpGroup(code, authorization, options)];
|
|
431
|
+
case 1:
|
|
432
|
+
localVarAxiosArgs = _a.sent();
|
|
433
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
434
|
+
}
|
|
435
|
+
});
|
|
436
|
+
});
|
|
437
|
+
},
|
|
438
|
+
/**
|
|
439
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
440
|
+
* @summary List registered IdP groups
|
|
441
|
+
* @param {string} [authorization] Bearer Token
|
|
442
|
+
* @param {number} [pageSize] Number of items per page.
|
|
443
|
+
* @param {string} [pageToken] Opaque token for the next page (returned in a previous response).
|
|
444
|
+
* @param {string} [filter] Filter IdP groups by one or more fields. Allowed: id, code, externalId, name, isActive, userGroup.code, createdAt, updatedAt.
|
|
445
|
+
* @param {string} [search] Free-text search over searchable columns.
|
|
446
|
+
* @param {string} [order] Sort the response. Allowed columns: id, code, externalId, name, isActive, createdAt, updatedAt.
|
|
447
|
+
* @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.
|
|
448
|
+
* @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.
|
|
449
|
+
* @param {*} [options] Override http request option.
|
|
450
|
+
* @throws {RequiredError}
|
|
451
|
+
*/
|
|
452
|
+
listSsoIdpGroups: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
453
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
454
|
+
var localVarAxiosArgs;
|
|
455
|
+
return __generator(this, function (_a) {
|
|
456
|
+
switch (_a.label) {
|
|
457
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listSsoIdpGroups(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
|
|
458
|
+
case 1:
|
|
459
|
+
localVarAxiosArgs = _a.sent();
|
|
460
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
461
|
+
}
|
|
462
|
+
});
|
|
463
|
+
});
|
|
464
|
+
},
|
|
297
465
|
/**
|
|
298
466
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
299
467
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -348,6 +516,34 @@ var SSOIdPGroupsApiFactory = function (configuration, basePath, axios) {
|
|
|
348
516
|
deleteSsoIdpGroup: function (code, authorization, options) {
|
|
349
517
|
return localVarFp.deleteSsoIdpGroup(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
350
518
|
},
|
|
519
|
+
/**
|
|
520
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
521
|
+
* @summary Get an IdP group by code
|
|
522
|
+
* @param {string} code IdP group code.
|
|
523
|
+
* @param {string} [authorization] Bearer Token
|
|
524
|
+
* @param {*} [options] Override http request option.
|
|
525
|
+
* @throws {RequiredError}
|
|
526
|
+
*/
|
|
527
|
+
getSsoIdpGroup: function (code, authorization, options) {
|
|
528
|
+
return localVarFp.getSsoIdpGroup(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
529
|
+
},
|
|
530
|
+
/**
|
|
531
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
532
|
+
* @summary List registered IdP groups
|
|
533
|
+
* @param {string} [authorization] Bearer Token
|
|
534
|
+
* @param {number} [pageSize] Number of items per page.
|
|
535
|
+
* @param {string} [pageToken] Opaque token for the next page (returned in a previous response).
|
|
536
|
+
* @param {string} [filter] Filter IdP groups by one or more fields. Allowed: id, code, externalId, name, isActive, userGroup.code, createdAt, updatedAt.
|
|
537
|
+
* @param {string} [search] Free-text search over searchable columns.
|
|
538
|
+
* @param {string} [order] Sort the response. Allowed columns: id, code, externalId, name, isActive, createdAt, updatedAt.
|
|
539
|
+
* @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.
|
|
540
|
+
* @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.
|
|
541
|
+
* @param {*} [options] Override http request option.
|
|
542
|
+
* @throws {RequiredError}
|
|
543
|
+
*/
|
|
544
|
+
listSsoIdpGroups: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
545
|
+
return localVarFp.listSsoIdpGroups(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
546
|
+
},
|
|
351
547
|
/**
|
|
352
548
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
353
549
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -398,6 +594,31 @@ var SSOIdPGroupsApi = /** @class */ (function (_super) {
|
|
|
398
594
|
var _this = this;
|
|
399
595
|
return (0, exports.SSOIdPGroupsApiFp)(this.configuration).deleteSsoIdpGroup(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
400
596
|
};
|
|
597
|
+
/**
|
|
598
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
599
|
+
* @summary Get an IdP group by code
|
|
600
|
+
* @param {SSOIdPGroupsApiGetSsoIdpGroupRequest} requestParameters Request parameters.
|
|
601
|
+
* @param {*} [options] Override http request option.
|
|
602
|
+
* @throws {RequiredError}
|
|
603
|
+
* @memberof SSOIdPGroupsApi
|
|
604
|
+
*/
|
|
605
|
+
SSOIdPGroupsApi.prototype.getSsoIdpGroup = function (requestParameters, options) {
|
|
606
|
+
var _this = this;
|
|
607
|
+
return (0, exports.SSOIdPGroupsApiFp)(this.configuration).getSsoIdpGroup(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
608
|
+
};
|
|
609
|
+
/**
|
|
610
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
611
|
+
* @summary List registered IdP groups
|
|
612
|
+
* @param {SSOIdPGroupsApiListSsoIdpGroupsRequest} requestParameters Request parameters.
|
|
613
|
+
* @param {*} [options] Override http request option.
|
|
614
|
+
* @throws {RequiredError}
|
|
615
|
+
* @memberof SSOIdPGroupsApi
|
|
616
|
+
*/
|
|
617
|
+
SSOIdPGroupsApi.prototype.listSsoIdpGroups = function (requestParameters, options) {
|
|
618
|
+
var _this = this;
|
|
619
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
620
|
+
return (0, exports.SSOIdPGroupsApiFp)(this.configuration).listSsoIdpGroups(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
621
|
+
};
|
|
401
622
|
/**
|
|
402
623
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
403
624
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL Tenant Service
|
|
3
|
+
* The EMIL TenantService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { SsoIdpGroupClass } from './sso-idp-group-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GetSsoIdpGroupResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface GetSsoIdpGroupResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {SsoIdpGroupClass}
|
|
22
|
+
* @memberof GetSsoIdpGroupResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'ssoIdpGroup': SsoIdpGroupClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL Tenant Service
|
|
6
|
+
* The EMIL TenantService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
package/dist/models/index.d.ts
CHANGED
|
@@ -61,6 +61,7 @@ export * from './get-report-schedule-response-class';
|
|
|
61
61
|
export * from './get-settings-response-class';
|
|
62
62
|
export * from './get-sso-connection-response-class';
|
|
63
63
|
export * from './get-sso-connection-setup-response-class';
|
|
64
|
+
export * from './get-sso-idp-group-response-class';
|
|
64
65
|
export * from './get-user-group-response-class';
|
|
65
66
|
export * from './get-user-response-class';
|
|
66
67
|
export * from './initial-tenant-config-class';
|
|
@@ -85,6 +86,7 @@ export * from './list-organizations-response-class';
|
|
|
85
86
|
export * from './list-report-schedule-logs-response-class';
|
|
86
87
|
export * from './list-report-schedules-response-class';
|
|
87
88
|
export * from './list-roles-response-class';
|
|
89
|
+
export * from './list-sso-idp-groups-response-class';
|
|
88
90
|
export * from './list-user-group-members-response-class';
|
|
89
91
|
export * from './list-user-groups-response-class';
|
|
90
92
|
export * from './list-users-response-class';
|
package/dist/models/index.js
CHANGED
|
@@ -77,6 +77,7 @@ __exportStar(require("./get-report-schedule-response-class"), exports);
|
|
|
77
77
|
__exportStar(require("./get-settings-response-class"), exports);
|
|
78
78
|
__exportStar(require("./get-sso-connection-response-class"), exports);
|
|
79
79
|
__exportStar(require("./get-sso-connection-setup-response-class"), exports);
|
|
80
|
+
__exportStar(require("./get-sso-idp-group-response-class"), exports);
|
|
80
81
|
__exportStar(require("./get-user-group-response-class"), exports);
|
|
81
82
|
__exportStar(require("./get-user-response-class"), exports);
|
|
82
83
|
__exportStar(require("./initial-tenant-config-class"), exports);
|
|
@@ -101,6 +102,7 @@ __exportStar(require("./list-organizations-response-class"), exports);
|
|
|
101
102
|
__exportStar(require("./list-report-schedule-logs-response-class"), exports);
|
|
102
103
|
__exportStar(require("./list-report-schedules-response-class"), exports);
|
|
103
104
|
__exportStar(require("./list-roles-response-class"), exports);
|
|
105
|
+
__exportStar(require("./list-sso-idp-groups-response-class"), exports);
|
|
104
106
|
__exportStar(require("./list-user-group-members-response-class"), exports);
|
|
105
107
|
__exportStar(require("./list-user-groups-response-class"), exports);
|
|
106
108
|
__exportStar(require("./list-users-response-class"), exports);
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL Tenant Service
|
|
3
|
+
* The EMIL TenantService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { SsoIdpGroupClass } from './sso-idp-group-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ListSsoIdpGroupsResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListSsoIdpGroupsResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* IdP groups.
|
|
21
|
+
* @type {Array<SsoIdpGroupClass>}
|
|
22
|
+
* @memberof ListSsoIdpGroupsResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<SsoIdpGroupClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Next page token.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ListSsoIdpGroupsResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'nextPageToken': string;
|
|
31
|
+
/**
|
|
32
|
+
* Number of items in this page.
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof ListSsoIdpGroupsResponseClass
|
|
35
|
+
*/
|
|
36
|
+
'itemsPerPage'?: number;
|
|
37
|
+
/**
|
|
38
|
+
* Total number of matching items across all pages.
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof ListSsoIdpGroupsResponseClass
|
|
41
|
+
*/
|
|
42
|
+
'totalItems'?: number;
|
|
43
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL Tenant Service
|
|
6
|
+
* The EMIL TenantService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL Tenant Service
|
|
5
|
+
* The EMIL TenantService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { SsoIdpGroupClass } from './sso-idp-group-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetSsoIdpGroupResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetSsoIdpGroupResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {SsoIdpGroupClass}
|
|
27
|
+
* @memberof GetSsoIdpGroupResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'ssoIdpGroup': SsoIdpGroupClass;
|
|
30
|
+
}
|
|
31
|
+
|
package/models/index.ts
CHANGED
|
@@ -61,6 +61,7 @@ export * from './get-report-schedule-response-class';
|
|
|
61
61
|
export * from './get-settings-response-class';
|
|
62
62
|
export * from './get-sso-connection-response-class';
|
|
63
63
|
export * from './get-sso-connection-setup-response-class';
|
|
64
|
+
export * from './get-sso-idp-group-response-class';
|
|
64
65
|
export * from './get-user-group-response-class';
|
|
65
66
|
export * from './get-user-response-class';
|
|
66
67
|
export * from './initial-tenant-config-class';
|
|
@@ -85,6 +86,7 @@ export * from './list-organizations-response-class';
|
|
|
85
86
|
export * from './list-report-schedule-logs-response-class';
|
|
86
87
|
export * from './list-report-schedules-response-class';
|
|
87
88
|
export * from './list-roles-response-class';
|
|
89
|
+
export * from './list-sso-idp-groups-response-class';
|
|
88
90
|
export * from './list-user-group-members-response-class';
|
|
89
91
|
export * from './list-user-groups-response-class';
|
|
90
92
|
export * from './list-users-response-class';
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL Tenant Service
|
|
5
|
+
* The EMIL TenantService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { SsoIdpGroupClass } from './sso-idp-group-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListSsoIdpGroupsResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListSsoIdpGroupsResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* IdP groups.
|
|
26
|
+
* @type {Array<SsoIdpGroupClass>}
|
|
27
|
+
* @memberof ListSsoIdpGroupsResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<SsoIdpGroupClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Next page token.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListSsoIdpGroupsResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'nextPageToken': string;
|
|
36
|
+
/**
|
|
37
|
+
* Number of items in this page.
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof ListSsoIdpGroupsResponseClass
|
|
40
|
+
*/
|
|
41
|
+
'itemsPerPage'?: number;
|
|
42
|
+
/**
|
|
43
|
+
* Total number of matching items across all pages.
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof ListSsoIdpGroupsResponseClass
|
|
46
|
+
*/
|
|
47
|
+
'totalItems'?: number;
|
|
48
|
+
}
|
|
49
|
+
|