@emilgroup/tenant-sdk-node 1.39.1-beta.37 → 1.39.1-beta.39
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-node@1.39.1-beta.
|
|
20
|
+
npm install @emilgroup/tenant-sdk-node@1.39.1-beta.39 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/tenant-sdk-node@1.39.1-beta.
|
|
24
|
+
yarn add @emilgroup/tenant-sdk-node@1.39.1-beta.39
|
|
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';
|
|
@@ -123,6 +127,127 @@ export const SSOIdPGroupsApiAxiosParamCreator = function (configuration?: Config
|
|
|
123
127
|
|
|
124
128
|
|
|
125
129
|
|
|
130
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
131
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
132
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
133
|
+
|
|
134
|
+
return {
|
|
135
|
+
url: toPathString(localVarUrlObj),
|
|
136
|
+
options: localVarRequestOptions,
|
|
137
|
+
};
|
|
138
|
+
},
|
|
139
|
+
/**
|
|
140
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
141
|
+
* @summary Get an IdP group by code
|
|
142
|
+
* @param {string} code IdP group code.
|
|
143
|
+
* @param {string} [authorization] Bearer Token
|
|
144
|
+
* @param {*} [options] Override http request option.
|
|
145
|
+
* @throws {RequiredError}
|
|
146
|
+
*/
|
|
147
|
+
getSsoIdpGroup: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
148
|
+
// verify required parameter 'code' is not null or undefined
|
|
149
|
+
assertParamExists('getSsoIdpGroup', 'code', code)
|
|
150
|
+
const localVarPath = `/tenantservice/v1/sso-idp-groups/{code}`
|
|
151
|
+
.replace(`{${"code"}}`, encodeURIComponent(String(code)));
|
|
152
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
153
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
154
|
+
let baseOptions;
|
|
155
|
+
let baseAccessToken;
|
|
156
|
+
if (configuration) {
|
|
157
|
+
baseOptions = configuration.baseOptions;
|
|
158
|
+
baseAccessToken = configuration.accessToken;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
162
|
+
const localVarHeaderParameter = {} as any;
|
|
163
|
+
const localVarQueryParameter = {} as any;
|
|
164
|
+
|
|
165
|
+
// authentication bearer required
|
|
166
|
+
// http bearer authentication required
|
|
167
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
168
|
+
|
|
169
|
+
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
170
|
+
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
176
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
177
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
178
|
+
|
|
179
|
+
return {
|
|
180
|
+
url: toPathString(localVarUrlObj),
|
|
181
|
+
options: localVarRequestOptions,
|
|
182
|
+
};
|
|
183
|
+
},
|
|
184
|
+
/**
|
|
185
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
186
|
+
* @summary List registered IdP groups
|
|
187
|
+
* @param {string} [authorization] Bearer Token
|
|
188
|
+
* @param {number} [pageSize] Number of items per page.
|
|
189
|
+
* @param {string} [pageToken] Opaque token for the next page (returned in a previous response).
|
|
190
|
+
* @param {string} [filter] Filter IdP groups by one or more fields. Allowed: id, code, externalId, name, isActive, userGroup.code, createdAt, updatedAt.
|
|
191
|
+
* @param {string} [search] Free-text search over searchable columns.
|
|
192
|
+
* @param {string} [order] Sort the response. Allowed columns: id, code, externalId, name, isActive, createdAt, updatedAt.
|
|
193
|
+
* @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.
|
|
194
|
+
* @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.
|
|
195
|
+
* @param {*} [options] Override http request option.
|
|
196
|
+
* @throws {RequiredError}
|
|
197
|
+
*/
|
|
198
|
+
listSsoIdpGroups: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
199
|
+
const localVarPath = `/tenantservice/v1/sso-idp-groups`;
|
|
200
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
201
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
202
|
+
let baseOptions;
|
|
203
|
+
let baseAccessToken;
|
|
204
|
+
if (configuration) {
|
|
205
|
+
baseOptions = configuration.baseOptions;
|
|
206
|
+
baseAccessToken = configuration.accessToken;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
210
|
+
const localVarHeaderParameter = {} as any;
|
|
211
|
+
const localVarQueryParameter = {} as any;
|
|
212
|
+
|
|
213
|
+
// authentication bearer required
|
|
214
|
+
// http bearer authentication required
|
|
215
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
216
|
+
|
|
217
|
+
if (pageSize !== undefined) {
|
|
218
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
if (pageToken !== undefined) {
|
|
222
|
+
localVarQueryParameter['pageToken'] = pageToken;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
if (filter !== undefined) {
|
|
226
|
+
localVarQueryParameter['filter'] = filter;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
if (search !== undefined) {
|
|
230
|
+
localVarQueryParameter['search'] = search;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
if (order !== undefined) {
|
|
234
|
+
localVarQueryParameter['order'] = order;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
if (expand !== undefined) {
|
|
238
|
+
localVarQueryParameter['expand'] = expand;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
if (filters !== undefined) {
|
|
242
|
+
localVarQueryParameter['filters'] = filters;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
246
|
+
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
|
|
126
251
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
127
252
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
128
253
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -217,6 +342,36 @@ export const SSOIdPGroupsApiFp = function(configuration?: Configuration) {
|
|
|
217
342
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSsoIdpGroup(code, authorization, options);
|
|
218
343
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
219
344
|
},
|
|
345
|
+
/**
|
|
346
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
347
|
+
* @summary Get an IdP group by code
|
|
348
|
+
* @param {string} code IdP group code.
|
|
349
|
+
* @param {string} [authorization] Bearer Token
|
|
350
|
+
* @param {*} [options] Override http request option.
|
|
351
|
+
* @throws {RequiredError}
|
|
352
|
+
*/
|
|
353
|
+
async getSsoIdpGroup(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSsoIdpGroupResponseClass>> {
|
|
354
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getSsoIdpGroup(code, authorization, options);
|
|
355
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
356
|
+
},
|
|
357
|
+
/**
|
|
358
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
359
|
+
* @summary List registered IdP groups
|
|
360
|
+
* @param {string} [authorization] Bearer Token
|
|
361
|
+
* @param {number} [pageSize] Number of items per page.
|
|
362
|
+
* @param {string} [pageToken] Opaque token for the next page (returned in a previous response).
|
|
363
|
+
* @param {string} [filter] Filter IdP groups by one or more fields. Allowed: id, code, externalId, name, isActive, userGroup.code, createdAt, updatedAt.
|
|
364
|
+
* @param {string} [search] Free-text search over searchable columns.
|
|
365
|
+
* @param {string} [order] Sort the response. Allowed columns: id, code, externalId, name, isActive, createdAt, updatedAt.
|
|
366
|
+
* @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.
|
|
367
|
+
* @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.
|
|
368
|
+
* @param {*} [options] Override http request option.
|
|
369
|
+
* @throws {RequiredError}
|
|
370
|
+
*/
|
|
371
|
+
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>> {
|
|
372
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listSsoIdpGroups(authorization, pageSize, pageToken, filter, search, order, expand, filters, options);
|
|
373
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
374
|
+
},
|
|
220
375
|
/**
|
|
221
376
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
222
377
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -262,6 +417,34 @@ export const SSOIdPGroupsApiFactory = function (configuration?: Configuration, b
|
|
|
262
417
|
deleteSsoIdpGroup(code: string, authorization?: string, options?: any): AxiosPromise<DeleteByCodeResponseClass> {
|
|
263
418
|
return localVarFp.deleteSsoIdpGroup(code, authorization, options).then((request) => request(axios, basePath));
|
|
264
419
|
},
|
|
420
|
+
/**
|
|
421
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
422
|
+
* @summary Get an IdP group by code
|
|
423
|
+
* @param {string} code IdP group code.
|
|
424
|
+
* @param {string} [authorization] Bearer Token
|
|
425
|
+
* @param {*} [options] Override http request option.
|
|
426
|
+
* @throws {RequiredError}
|
|
427
|
+
*/
|
|
428
|
+
getSsoIdpGroup(code: string, authorization?: string, options?: any): AxiosPromise<GetSsoIdpGroupResponseClass> {
|
|
429
|
+
return localVarFp.getSsoIdpGroup(code, authorization, options).then((request) => request(axios, basePath));
|
|
430
|
+
},
|
|
431
|
+
/**
|
|
432
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
433
|
+
* @summary List registered IdP groups
|
|
434
|
+
* @param {string} [authorization] Bearer Token
|
|
435
|
+
* @param {number} [pageSize] Number of items per page.
|
|
436
|
+
* @param {string} [pageToken] Opaque token for the next page (returned in a previous response).
|
|
437
|
+
* @param {string} [filter] Filter IdP groups by one or more fields. Allowed: id, code, externalId, name, isActive, userGroup.code, createdAt, updatedAt.
|
|
438
|
+
* @param {string} [search] Free-text search over searchable columns.
|
|
439
|
+
* @param {string} [order] Sort the response. Allowed columns: id, code, externalId, name, isActive, createdAt, updatedAt.
|
|
440
|
+
* @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.
|
|
441
|
+
* @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.
|
|
442
|
+
* @param {*} [options] Override http request option.
|
|
443
|
+
* @throws {RequiredError}
|
|
444
|
+
*/
|
|
445
|
+
listSsoIdpGroups(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListSsoIdpGroupsResponseClass> {
|
|
446
|
+
return localVarFp.listSsoIdpGroups(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
447
|
+
},
|
|
265
448
|
/**
|
|
266
449
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
267
450
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -319,6 +502,90 @@ export interface SSOIdPGroupsApiDeleteSsoIdpGroupRequest {
|
|
|
319
502
|
readonly authorization?: string
|
|
320
503
|
}
|
|
321
504
|
|
|
505
|
+
/**
|
|
506
|
+
* Request parameters for getSsoIdpGroup operation in SSOIdPGroupsApi.
|
|
507
|
+
* @export
|
|
508
|
+
* @interface SSOIdPGroupsApiGetSsoIdpGroupRequest
|
|
509
|
+
*/
|
|
510
|
+
export interface SSOIdPGroupsApiGetSsoIdpGroupRequest {
|
|
511
|
+
/**
|
|
512
|
+
* IdP group code.
|
|
513
|
+
* @type {string}
|
|
514
|
+
* @memberof SSOIdPGroupsApiGetSsoIdpGroup
|
|
515
|
+
*/
|
|
516
|
+
readonly code: string
|
|
517
|
+
|
|
518
|
+
/**
|
|
519
|
+
* Bearer Token
|
|
520
|
+
* @type {string}
|
|
521
|
+
* @memberof SSOIdPGroupsApiGetSsoIdpGroup
|
|
522
|
+
*/
|
|
523
|
+
readonly authorization?: string
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
/**
|
|
527
|
+
* Request parameters for listSsoIdpGroups operation in SSOIdPGroupsApi.
|
|
528
|
+
* @export
|
|
529
|
+
* @interface SSOIdPGroupsApiListSsoIdpGroupsRequest
|
|
530
|
+
*/
|
|
531
|
+
export interface SSOIdPGroupsApiListSsoIdpGroupsRequest {
|
|
532
|
+
/**
|
|
533
|
+
* Bearer Token
|
|
534
|
+
* @type {string}
|
|
535
|
+
* @memberof SSOIdPGroupsApiListSsoIdpGroups
|
|
536
|
+
*/
|
|
537
|
+
readonly authorization?: string
|
|
538
|
+
|
|
539
|
+
/**
|
|
540
|
+
* Number of items per page.
|
|
541
|
+
* @type {number}
|
|
542
|
+
* @memberof SSOIdPGroupsApiListSsoIdpGroups
|
|
543
|
+
*/
|
|
544
|
+
readonly pageSize?: number
|
|
545
|
+
|
|
546
|
+
/**
|
|
547
|
+
* Opaque token for the next page (returned in a previous response).
|
|
548
|
+
* @type {string}
|
|
549
|
+
* @memberof SSOIdPGroupsApiListSsoIdpGroups
|
|
550
|
+
*/
|
|
551
|
+
readonly pageToken?: string
|
|
552
|
+
|
|
553
|
+
/**
|
|
554
|
+
* Filter IdP groups by one or more fields. Allowed: id, code, externalId, name, isActive, userGroup.code, createdAt, updatedAt.
|
|
555
|
+
* @type {string}
|
|
556
|
+
* @memberof SSOIdPGroupsApiListSsoIdpGroups
|
|
557
|
+
*/
|
|
558
|
+
readonly filter?: string
|
|
559
|
+
|
|
560
|
+
/**
|
|
561
|
+
* Free-text search over searchable columns.
|
|
562
|
+
* @type {string}
|
|
563
|
+
* @memberof SSOIdPGroupsApiListSsoIdpGroups
|
|
564
|
+
*/
|
|
565
|
+
readonly search?: string
|
|
566
|
+
|
|
567
|
+
/**
|
|
568
|
+
* Sort the response. Allowed columns: id, code, externalId, name, isActive, createdAt, updatedAt.
|
|
569
|
+
* @type {string}
|
|
570
|
+
* @memberof SSOIdPGroupsApiListSsoIdpGroups
|
|
571
|
+
*/
|
|
572
|
+
readonly order?: string
|
|
573
|
+
|
|
574
|
+
/**
|
|
575
|
+
* 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.
|
|
576
|
+
* @type {string}
|
|
577
|
+
* @memberof SSOIdPGroupsApiListSsoIdpGroups
|
|
578
|
+
*/
|
|
579
|
+
readonly expand?: string
|
|
580
|
+
|
|
581
|
+
/**
|
|
582
|
+
* 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.
|
|
583
|
+
* @type {string}
|
|
584
|
+
* @memberof SSOIdPGroupsApiListSsoIdpGroups
|
|
585
|
+
*/
|
|
586
|
+
readonly filters?: string
|
|
587
|
+
}
|
|
588
|
+
|
|
322
589
|
/**
|
|
323
590
|
* Request parameters for updateSsoIdpGroup operation in SSOIdPGroupsApi.
|
|
324
591
|
* @export
|
|
@@ -378,6 +645,30 @@ export class SSOIdPGroupsApi extends BaseAPI {
|
|
|
378
645
|
return SSOIdPGroupsApiFp(this.configuration).deleteSsoIdpGroup(requestParameters.code, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
379
646
|
}
|
|
380
647
|
|
|
648
|
+
/**
|
|
649
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
650
|
+
* @summary Get an IdP group by code
|
|
651
|
+
* @param {SSOIdPGroupsApiGetSsoIdpGroupRequest} requestParameters Request parameters.
|
|
652
|
+
* @param {*} [options] Override http request option.
|
|
653
|
+
* @throws {RequiredError}
|
|
654
|
+
* @memberof SSOIdPGroupsApi
|
|
655
|
+
*/
|
|
656
|
+
public getSsoIdpGroup(requestParameters: SSOIdPGroupsApiGetSsoIdpGroupRequest, options?: AxiosRequestConfig) {
|
|
657
|
+
return SSOIdPGroupsApiFp(this.configuration).getSsoIdpGroup(requestParameters.code, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
/**
|
|
661
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
662
|
+
* @summary List registered IdP groups
|
|
663
|
+
* @param {SSOIdPGroupsApiListSsoIdpGroupsRequest} requestParameters Request parameters.
|
|
664
|
+
* @param {*} [options] Override http request option.
|
|
665
|
+
* @throws {RequiredError}
|
|
666
|
+
* @memberof SSOIdPGroupsApi
|
|
667
|
+
*/
|
|
668
|
+
public listSsoIdpGroups(requestParameters: SSOIdPGroupsApiListSsoIdpGroupsRequest = {}, options?: AxiosRequestConfig) {
|
|
669
|
+
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));
|
|
670
|
+
}
|
|
671
|
+
|
|
381
672
|
/**
|
|
382
673
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
383
674
|
* @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
|
|
@@ -193,6 +193,126 @@ var SSOIdPGroupsApiAxiosParamCreator = function (configuration) {
|
|
|
193
193
|
});
|
|
194
194
|
});
|
|
195
195
|
},
|
|
196
|
+
/**
|
|
197
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
198
|
+
* @summary Get an IdP group by code
|
|
199
|
+
* @param {string} code IdP group code.
|
|
200
|
+
* @param {string} [authorization] Bearer Token
|
|
201
|
+
* @param {*} [options] Override http request option.
|
|
202
|
+
* @throws {RequiredError}
|
|
203
|
+
*/
|
|
204
|
+
getSsoIdpGroup: function (code, authorization, options) {
|
|
205
|
+
if (options === void 0) { options = {}; }
|
|
206
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
207
|
+
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
208
|
+
return __generator(this, function (_a) {
|
|
209
|
+
switch (_a.label) {
|
|
210
|
+
case 0:
|
|
211
|
+
// verify required parameter 'code' is not null or undefined
|
|
212
|
+
(0, common_1.assertParamExists)('getSsoIdpGroup', 'code', code);
|
|
213
|
+
localVarPath = "/tenantservice/v1/sso-idp-groups/{code}"
|
|
214
|
+
.replace("{".concat("code", "}"), encodeURIComponent(String(code)));
|
|
215
|
+
localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
216
|
+
if (configuration) {
|
|
217
|
+
baseOptions = configuration.baseOptions;
|
|
218
|
+
baseAccessToken = configuration.accessToken;
|
|
219
|
+
}
|
|
220
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
221
|
+
localVarHeaderParameter = {};
|
|
222
|
+
localVarQueryParameter = {};
|
|
223
|
+
// authentication bearer required
|
|
224
|
+
// http bearer authentication required
|
|
225
|
+
return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
|
|
226
|
+
case 1:
|
|
227
|
+
// authentication bearer required
|
|
228
|
+
// http bearer authentication required
|
|
229
|
+
_a.sent();
|
|
230
|
+
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
231
|
+
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
232
|
+
}
|
|
233
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
234
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
235
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
236
|
+
return [2 /*return*/, {
|
|
237
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
238
|
+
options: localVarRequestOptions,
|
|
239
|
+
}];
|
|
240
|
+
}
|
|
241
|
+
});
|
|
242
|
+
});
|
|
243
|
+
},
|
|
244
|
+
/**
|
|
245
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
246
|
+
* @summary List registered IdP groups
|
|
247
|
+
* @param {string} [authorization] Bearer Token
|
|
248
|
+
* @param {number} [pageSize] Number of items per page.
|
|
249
|
+
* @param {string} [pageToken] Opaque token for the next page (returned in a previous response).
|
|
250
|
+
* @param {string} [filter] Filter IdP groups by one or more fields. Allowed: id, code, externalId, name, isActive, userGroup.code, createdAt, updatedAt.
|
|
251
|
+
* @param {string} [search] Free-text search over searchable columns.
|
|
252
|
+
* @param {string} [order] Sort the response. Allowed columns: id, code, externalId, name, isActive, createdAt, updatedAt.
|
|
253
|
+
* @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.
|
|
254
|
+
* @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.
|
|
255
|
+
* @param {*} [options] Override http request option.
|
|
256
|
+
* @throws {RequiredError}
|
|
257
|
+
*/
|
|
258
|
+
listSsoIdpGroups: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
259
|
+
if (options === void 0) { options = {}; }
|
|
260
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
261
|
+
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
262
|
+
return __generator(this, function (_a) {
|
|
263
|
+
switch (_a.label) {
|
|
264
|
+
case 0:
|
|
265
|
+
localVarPath = "/tenantservice/v1/sso-idp-groups";
|
|
266
|
+
localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
267
|
+
if (configuration) {
|
|
268
|
+
baseOptions = configuration.baseOptions;
|
|
269
|
+
baseAccessToken = configuration.accessToken;
|
|
270
|
+
}
|
|
271
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
272
|
+
localVarHeaderParameter = {};
|
|
273
|
+
localVarQueryParameter = {};
|
|
274
|
+
// authentication bearer required
|
|
275
|
+
// http bearer authentication required
|
|
276
|
+
return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
|
|
277
|
+
case 1:
|
|
278
|
+
// authentication bearer required
|
|
279
|
+
// http bearer authentication required
|
|
280
|
+
_a.sent();
|
|
281
|
+
if (pageSize !== undefined) {
|
|
282
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
283
|
+
}
|
|
284
|
+
if (pageToken !== undefined) {
|
|
285
|
+
localVarQueryParameter['pageToken'] = pageToken;
|
|
286
|
+
}
|
|
287
|
+
if (filter !== undefined) {
|
|
288
|
+
localVarQueryParameter['filter'] = filter;
|
|
289
|
+
}
|
|
290
|
+
if (search !== undefined) {
|
|
291
|
+
localVarQueryParameter['search'] = search;
|
|
292
|
+
}
|
|
293
|
+
if (order !== undefined) {
|
|
294
|
+
localVarQueryParameter['order'] = order;
|
|
295
|
+
}
|
|
296
|
+
if (expand !== undefined) {
|
|
297
|
+
localVarQueryParameter['expand'] = expand;
|
|
298
|
+
}
|
|
299
|
+
if (filters !== undefined) {
|
|
300
|
+
localVarQueryParameter['filters'] = filters;
|
|
301
|
+
}
|
|
302
|
+
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
303
|
+
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
304
|
+
}
|
|
305
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
306
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
307
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
308
|
+
return [2 /*return*/, {
|
|
309
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
310
|
+
options: localVarRequestOptions,
|
|
311
|
+
}];
|
|
312
|
+
}
|
|
313
|
+
});
|
|
314
|
+
});
|
|
315
|
+
},
|
|
196
316
|
/**
|
|
197
317
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
198
318
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -298,6 +418,54 @@ var SSOIdPGroupsApiFp = function (configuration) {
|
|
|
298
418
|
});
|
|
299
419
|
});
|
|
300
420
|
},
|
|
421
|
+
/**
|
|
422
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
423
|
+
* @summary Get an IdP group by code
|
|
424
|
+
* @param {string} code IdP group code.
|
|
425
|
+
* @param {string} [authorization] Bearer Token
|
|
426
|
+
* @param {*} [options] Override http request option.
|
|
427
|
+
* @throws {RequiredError}
|
|
428
|
+
*/
|
|
429
|
+
getSsoIdpGroup: function (code, authorization, options) {
|
|
430
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
431
|
+
var localVarAxiosArgs;
|
|
432
|
+
return __generator(this, function (_a) {
|
|
433
|
+
switch (_a.label) {
|
|
434
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.getSsoIdpGroup(code, authorization, options)];
|
|
435
|
+
case 1:
|
|
436
|
+
localVarAxiosArgs = _a.sent();
|
|
437
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
438
|
+
}
|
|
439
|
+
});
|
|
440
|
+
});
|
|
441
|
+
},
|
|
442
|
+
/**
|
|
443
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
444
|
+
* @summary List registered IdP groups
|
|
445
|
+
* @param {string} [authorization] Bearer Token
|
|
446
|
+
* @param {number} [pageSize] Number of items per page.
|
|
447
|
+
* @param {string} [pageToken] Opaque token for the next page (returned in a previous response).
|
|
448
|
+
* @param {string} [filter] Filter IdP groups by one or more fields. Allowed: id, code, externalId, name, isActive, userGroup.code, createdAt, updatedAt.
|
|
449
|
+
* @param {string} [search] Free-text search over searchable columns.
|
|
450
|
+
* @param {string} [order] Sort the response. Allowed columns: id, code, externalId, name, isActive, createdAt, updatedAt.
|
|
451
|
+
* @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.
|
|
452
|
+
* @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.
|
|
453
|
+
* @param {*} [options] Override http request option.
|
|
454
|
+
* @throws {RequiredError}
|
|
455
|
+
*/
|
|
456
|
+
listSsoIdpGroups: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
457
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
458
|
+
var localVarAxiosArgs;
|
|
459
|
+
return __generator(this, function (_a) {
|
|
460
|
+
switch (_a.label) {
|
|
461
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listSsoIdpGroups(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
|
|
462
|
+
case 1:
|
|
463
|
+
localVarAxiosArgs = _a.sent();
|
|
464
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
465
|
+
}
|
|
466
|
+
});
|
|
467
|
+
});
|
|
468
|
+
},
|
|
301
469
|
/**
|
|
302
470
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
303
471
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -352,6 +520,34 @@ var SSOIdPGroupsApiFactory = function (configuration, basePath, axios) {
|
|
|
352
520
|
deleteSsoIdpGroup: function (code, authorization, options) {
|
|
353
521
|
return localVarFp.deleteSsoIdpGroup(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
354
522
|
},
|
|
523
|
+
/**
|
|
524
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
525
|
+
* @summary Get an IdP group by code
|
|
526
|
+
* @param {string} code IdP group code.
|
|
527
|
+
* @param {string} [authorization] Bearer Token
|
|
528
|
+
* @param {*} [options] Override http request option.
|
|
529
|
+
* @throws {RequiredError}
|
|
530
|
+
*/
|
|
531
|
+
getSsoIdpGroup: function (code, authorization, options) {
|
|
532
|
+
return localVarFp.getSsoIdpGroup(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
533
|
+
},
|
|
534
|
+
/**
|
|
535
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
536
|
+
* @summary List registered IdP groups
|
|
537
|
+
* @param {string} [authorization] Bearer Token
|
|
538
|
+
* @param {number} [pageSize] Number of items per page.
|
|
539
|
+
* @param {string} [pageToken] Opaque token for the next page (returned in a previous response).
|
|
540
|
+
* @param {string} [filter] Filter IdP groups by one or more fields. Allowed: id, code, externalId, name, isActive, userGroup.code, createdAt, updatedAt.
|
|
541
|
+
* @param {string} [search] Free-text search over searchable columns.
|
|
542
|
+
* @param {string} [order] Sort the response. Allowed columns: id, code, externalId, name, isActive, createdAt, updatedAt.
|
|
543
|
+
* @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.
|
|
544
|
+
* @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.
|
|
545
|
+
* @param {*} [options] Override http request option.
|
|
546
|
+
* @throws {RequiredError}
|
|
547
|
+
*/
|
|
548
|
+
listSsoIdpGroups: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
549
|
+
return localVarFp.listSsoIdpGroups(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
550
|
+
},
|
|
355
551
|
/**
|
|
356
552
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
357
553
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -402,6 +598,31 @@ var SSOIdPGroupsApi = /** @class */ (function (_super) {
|
|
|
402
598
|
var _this = this;
|
|
403
599
|
return (0, exports.SSOIdPGroupsApiFp)(this.configuration).deleteSsoIdpGroup(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
404
600
|
};
|
|
601
|
+
/**
|
|
602
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
603
|
+
* @summary Get an IdP group by code
|
|
604
|
+
* @param {SSOIdPGroupsApiGetSsoIdpGroupRequest} requestParameters Request parameters.
|
|
605
|
+
* @param {*} [options] Override http request option.
|
|
606
|
+
* @throws {RequiredError}
|
|
607
|
+
* @memberof SSOIdPGroupsApi
|
|
608
|
+
*/
|
|
609
|
+
SSOIdPGroupsApi.prototype.getSsoIdpGroup = function (requestParameters, options) {
|
|
610
|
+
var _this = this;
|
|
611
|
+
return (0, exports.SSOIdPGroupsApiFp)(this.configuration).getSsoIdpGroup(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
612
|
+
};
|
|
613
|
+
/**
|
|
614
|
+
* undefined **Required Permissions** \"tenant-management.settings.view\"
|
|
615
|
+
* @summary List registered IdP groups
|
|
616
|
+
* @param {SSOIdPGroupsApiListSsoIdpGroupsRequest} requestParameters Request parameters.
|
|
617
|
+
* @param {*} [options] Override http request option.
|
|
618
|
+
* @throws {RequiredError}
|
|
619
|
+
* @memberof SSOIdPGroupsApi
|
|
620
|
+
*/
|
|
621
|
+
SSOIdPGroupsApi.prototype.listSsoIdpGroups = function (requestParameters, options) {
|
|
622
|
+
var _this = this;
|
|
623
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
624
|
+
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); });
|
|
625
|
+
};
|
|
405
626
|
/**
|
|
406
627
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
407
628
|
* @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
|
+
|