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

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.
@@ -22,6 +22,7 @@ api/report-schedule-logs-api.ts
22
22
  api/roles-api.ts
23
23
  api/settings-api.ts
24
24
  api/ssoconnection-api.ts
25
+ api/ssoid-pgroups-api.ts
25
26
  api/user-controller-rest-api.ts
26
27
  api/user-group-api.ts
27
28
  api/users-api.ts
@@ -55,6 +56,8 @@ models/create-report-schedule-response-class.ts
55
56
  models/create-resources-migration-request-dto.ts
56
57
  models/create-sso-connection-request-dto.ts
57
58
  models/create-sso-connection-response-class.ts
59
+ models/create-sso-idp-group-request-dto.ts
60
+ models/create-sso-idp-group-response-class.ts
58
61
  models/create-tenant-request-dto.ts
59
62
  models/create-user-group-request-dto.ts
60
63
  models/create-user-group-response-class.ts
@@ -154,6 +157,7 @@ models/sso-attribute-mapping-dto.ts
154
157
  models/sso-attribute-mapping-template-class.ts
155
158
  models/sso-connection-class.ts
156
159
  models/sso-connection-setup-class.ts
160
+ models/sso-idp-group-class.ts
157
161
  models/subscription-class.ts
158
162
  models/tenant-admin-user-dto.ts
159
163
  models/tenant-settings-class.ts
@@ -173,6 +177,8 @@ models/update-sso-connection-body-dto.ts
173
177
  models/update-sso-connection-response-class.ts
174
178
  models/update-sso-connection-status-body-dto.ts
175
179
  models/update-sso-connection-status-response-class.ts
180
+ models/update-sso-idp-group-body-dto.ts
181
+ models/update-sso-idp-group-response-class.ts
176
182
  models/update-user-group-request-dto.ts
177
183
  models/update-user-group-response-class.ts
178
184
  models/user-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.33 --save
20
+ npm install @emilgroup/tenant-sdk@1.42.1-beta.35 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/tenant-sdk@1.42.1-beta.33
24
+ yarn add @emilgroup/tenant-sdk@1.42.1-beta.35
25
25
  ```
26
26
 
27
27
  And then you can import `UsersApi`.
@@ -0,0 +1,285 @@
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 globalAxios, { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
17
+ import { Configuration } from '../configuration';
18
+ // Some imports not used depending on template conditions
19
+ // @ts-ignore
20
+ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common';
21
+ // @ts-ignore
22
+ import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
23
+ // @ts-ignore
24
+ import { CreateSsoIdpGroupRequestDto } from '../models';
25
+ // @ts-ignore
26
+ import { CreateSsoIdpGroupResponseClass } from '../models';
27
+ // @ts-ignore
28
+ import { UpdateSsoIdpGroupBodyDto } from '../models';
29
+ // @ts-ignore
30
+ import { UpdateSsoIdpGroupResponseClass } from '../models';
31
+ /**
32
+ * SSOIdPGroupsApi - axios parameter creator
33
+ * @export
34
+ */
35
+ export const SSOIdPGroupsApiAxiosParamCreator = function (configuration?: Configuration) {
36
+ return {
37
+ /**
38
+ * Creates an inactive IdP group with at least one EIS user-group mapping. externalId must be a GUID and is immutable after create. **Required Permissions** \"tenant-management.settings.create\"
39
+ * @summary Register an IdP group and its EIS mappings
40
+ * @param {CreateSsoIdpGroupRequestDto} createSsoIdpGroupRequestDto
41
+ * @param {string} [authorization] Bearer Token
42
+ * @param {*} [options] Override http request option.
43
+ * @throws {RequiredError}
44
+ */
45
+ createSsoIdpGroup: async (createSsoIdpGroupRequestDto: CreateSsoIdpGroupRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
46
+ // verify required parameter 'createSsoIdpGroupRequestDto' is not null or undefined
47
+ assertParamExists('createSsoIdpGroup', 'createSsoIdpGroupRequestDto', createSsoIdpGroupRequestDto)
48
+ const localVarPath = `/tenantservice/v1/sso-idp-groups`;
49
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
50
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
51
+ let baseOptions;
52
+ let baseAccessToken;
53
+ if (configuration) {
54
+ baseOptions = configuration.baseOptions;
55
+ baseAccessToken = configuration.accessToken;
56
+ }
57
+
58
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
59
+ const localVarHeaderParameter = {} as any;
60
+ const localVarQueryParameter = {} as any;
61
+
62
+ // authentication bearer required
63
+ // http bearer authentication required
64
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
65
+
66
+ if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
67
+ localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
68
+ }
69
+
70
+
71
+
72
+ localVarHeaderParameter['Content-Type'] = 'application/json';
73
+
74
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
75
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
76
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
77
+ localVarRequestOptions.data = serializeDataIfNeeded(createSsoIdpGroupRequestDto, localVarRequestOptions, configuration)
78
+
79
+ return {
80
+ url: toPathString(localVarUrlObj),
81
+ options: localVarRequestOptions,
82
+ };
83
+ },
84
+ /**
85
+ * externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
86
+ * @summary Update IdP group name and/or EIS mappings
87
+ * @param {string} code IdP group code.
88
+ * @param {UpdateSsoIdpGroupBodyDto} updateSsoIdpGroupBodyDto
89
+ * @param {string} [authorization] Bearer Token
90
+ * @param {*} [options] Override http request option.
91
+ * @throws {RequiredError}
92
+ */
93
+ updateSsoIdpGroup: async (code: string, updateSsoIdpGroupBodyDto: UpdateSsoIdpGroupBodyDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
94
+ // verify required parameter 'code' is not null or undefined
95
+ assertParamExists('updateSsoIdpGroup', 'code', code)
96
+ // verify required parameter 'updateSsoIdpGroupBodyDto' is not null or undefined
97
+ assertParamExists('updateSsoIdpGroup', 'updateSsoIdpGroupBodyDto', updateSsoIdpGroupBodyDto)
98
+ const localVarPath = `/tenantservice/v1/sso-idp-groups/{code}`
99
+ .replace(`{${"code"}}`, encodeURIComponent(String(code)));
100
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
101
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
102
+ let baseOptions;
103
+ let baseAccessToken;
104
+ if (configuration) {
105
+ baseOptions = configuration.baseOptions;
106
+ baseAccessToken = configuration.accessToken;
107
+ }
108
+
109
+ const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
110
+ const localVarHeaderParameter = {} as any;
111
+ const localVarQueryParameter = {} as any;
112
+
113
+ // authentication bearer required
114
+ // http bearer authentication required
115
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
116
+
117
+ if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
118
+ localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
119
+ }
120
+
121
+
122
+
123
+ localVarHeaderParameter['Content-Type'] = 'application/json';
124
+
125
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
126
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
127
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
128
+ localVarRequestOptions.data = serializeDataIfNeeded(updateSsoIdpGroupBodyDto, localVarRequestOptions, configuration)
129
+
130
+ return {
131
+ url: toPathString(localVarUrlObj),
132
+ options: localVarRequestOptions,
133
+ };
134
+ },
135
+ }
136
+ };
137
+
138
+ /**
139
+ * SSOIdPGroupsApi - functional programming interface
140
+ * @export
141
+ */
142
+ export const SSOIdPGroupsApiFp = function(configuration?: Configuration) {
143
+ const localVarAxiosParamCreator = SSOIdPGroupsApiAxiosParamCreator(configuration)
144
+ return {
145
+ /**
146
+ * Creates an inactive IdP group with at least one EIS user-group mapping. externalId must be a GUID and is immutable after create. **Required Permissions** \"tenant-management.settings.create\"
147
+ * @summary Register an IdP group and its EIS mappings
148
+ * @param {CreateSsoIdpGroupRequestDto} createSsoIdpGroupRequestDto
149
+ * @param {string} [authorization] Bearer Token
150
+ * @param {*} [options] Override http request option.
151
+ * @throws {RequiredError}
152
+ */
153
+ async createSsoIdpGroup(createSsoIdpGroupRequestDto: CreateSsoIdpGroupRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateSsoIdpGroupResponseClass>> {
154
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createSsoIdpGroup(createSsoIdpGroupRequestDto, authorization, options);
155
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
156
+ },
157
+ /**
158
+ * externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
159
+ * @summary Update IdP group name and/or EIS mappings
160
+ * @param {string} code IdP group code.
161
+ * @param {UpdateSsoIdpGroupBodyDto} updateSsoIdpGroupBodyDto
162
+ * @param {string} [authorization] Bearer Token
163
+ * @param {*} [options] Override http request option.
164
+ * @throws {RequiredError}
165
+ */
166
+ async updateSsoIdpGroup(code: string, updateSsoIdpGroupBodyDto: UpdateSsoIdpGroupBodyDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateSsoIdpGroupResponseClass>> {
167
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updateSsoIdpGroup(code, updateSsoIdpGroupBodyDto, authorization, options);
168
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
169
+ },
170
+ }
171
+ };
172
+
173
+ /**
174
+ * SSOIdPGroupsApi - factory interface
175
+ * @export
176
+ */
177
+ export const SSOIdPGroupsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
178
+ const localVarFp = SSOIdPGroupsApiFp(configuration)
179
+ return {
180
+ /**
181
+ * Creates an inactive IdP group with at least one EIS user-group mapping. externalId must be a GUID and is immutable after create. **Required Permissions** \"tenant-management.settings.create\"
182
+ * @summary Register an IdP group and its EIS mappings
183
+ * @param {CreateSsoIdpGroupRequestDto} createSsoIdpGroupRequestDto
184
+ * @param {string} [authorization] Bearer Token
185
+ * @param {*} [options] Override http request option.
186
+ * @throws {RequiredError}
187
+ */
188
+ createSsoIdpGroup(createSsoIdpGroupRequestDto: CreateSsoIdpGroupRequestDto, authorization?: string, options?: any): AxiosPromise<CreateSsoIdpGroupResponseClass> {
189
+ return localVarFp.createSsoIdpGroup(createSsoIdpGroupRequestDto, authorization, options).then((request) => request(axios, basePath));
190
+ },
191
+ /**
192
+ * externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
193
+ * @summary Update IdP group name and/or EIS mappings
194
+ * @param {string} code IdP group code.
195
+ * @param {UpdateSsoIdpGroupBodyDto} updateSsoIdpGroupBodyDto
196
+ * @param {string} [authorization] Bearer Token
197
+ * @param {*} [options] Override http request option.
198
+ * @throws {RequiredError}
199
+ */
200
+ updateSsoIdpGroup(code: string, updateSsoIdpGroupBodyDto: UpdateSsoIdpGroupBodyDto, authorization?: string, options?: any): AxiosPromise<UpdateSsoIdpGroupResponseClass> {
201
+ return localVarFp.updateSsoIdpGroup(code, updateSsoIdpGroupBodyDto, authorization, options).then((request) => request(axios, basePath));
202
+ },
203
+ };
204
+ };
205
+
206
+ /**
207
+ * Request parameters for createSsoIdpGroup operation in SSOIdPGroupsApi.
208
+ * @export
209
+ * @interface SSOIdPGroupsApiCreateSsoIdpGroupRequest
210
+ */
211
+ export interface SSOIdPGroupsApiCreateSsoIdpGroupRequest {
212
+ /**
213
+ *
214
+ * @type {CreateSsoIdpGroupRequestDto}
215
+ * @memberof SSOIdPGroupsApiCreateSsoIdpGroup
216
+ */
217
+ readonly createSsoIdpGroupRequestDto: CreateSsoIdpGroupRequestDto
218
+
219
+ /**
220
+ * Bearer Token
221
+ * @type {string}
222
+ * @memberof SSOIdPGroupsApiCreateSsoIdpGroup
223
+ */
224
+ readonly authorization?: string
225
+ }
226
+
227
+ /**
228
+ * Request parameters for updateSsoIdpGroup operation in SSOIdPGroupsApi.
229
+ * @export
230
+ * @interface SSOIdPGroupsApiUpdateSsoIdpGroupRequest
231
+ */
232
+ export interface SSOIdPGroupsApiUpdateSsoIdpGroupRequest {
233
+ /**
234
+ * IdP group code.
235
+ * @type {string}
236
+ * @memberof SSOIdPGroupsApiUpdateSsoIdpGroup
237
+ */
238
+ readonly code: string
239
+
240
+ /**
241
+ *
242
+ * @type {UpdateSsoIdpGroupBodyDto}
243
+ * @memberof SSOIdPGroupsApiUpdateSsoIdpGroup
244
+ */
245
+ readonly updateSsoIdpGroupBodyDto: UpdateSsoIdpGroupBodyDto
246
+
247
+ /**
248
+ * Bearer Token
249
+ * @type {string}
250
+ * @memberof SSOIdPGroupsApiUpdateSsoIdpGroup
251
+ */
252
+ readonly authorization?: string
253
+ }
254
+
255
+ /**
256
+ * SSOIdPGroupsApi - object-oriented interface
257
+ * @export
258
+ * @class SSOIdPGroupsApi
259
+ * @extends {BaseAPI}
260
+ */
261
+ export class SSOIdPGroupsApi extends BaseAPI {
262
+ /**
263
+ * Creates an inactive IdP group with at least one EIS user-group mapping. externalId must be a GUID and is immutable after create. **Required Permissions** \"tenant-management.settings.create\"
264
+ * @summary Register an IdP group and its EIS mappings
265
+ * @param {SSOIdPGroupsApiCreateSsoIdpGroupRequest} requestParameters Request parameters.
266
+ * @param {*} [options] Override http request option.
267
+ * @throws {RequiredError}
268
+ * @memberof SSOIdPGroupsApi
269
+ */
270
+ public createSsoIdpGroup(requestParameters: SSOIdPGroupsApiCreateSsoIdpGroupRequest, options?: AxiosRequestConfig) {
271
+ return SSOIdPGroupsApiFp(this.configuration).createSsoIdpGroup(requestParameters.createSsoIdpGroupRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
272
+ }
273
+
274
+ /**
275
+ * externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
276
+ * @summary Update IdP group name and/or EIS mappings
277
+ * @param {SSOIdPGroupsApiUpdateSsoIdpGroupRequest} requestParameters Request parameters.
278
+ * @param {*} [options] Override http request option.
279
+ * @throws {RequiredError}
280
+ * @memberof SSOIdPGroupsApi
281
+ */
282
+ public updateSsoIdpGroup(requestParameters: SSOIdPGroupsApiUpdateSsoIdpGroupRequest, options?: AxiosRequestConfig) {
283
+ return SSOIdPGroupsApiFp(this.configuration).updateSsoIdpGroup(requestParameters.code, requestParameters.updateSsoIdpGroupBodyDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
284
+ }
285
+ }
package/api.ts CHANGED
@@ -38,6 +38,7 @@ import { ReportScheduleApi } from './api';
38
38
  import { ReportScheduleLogsApi } from './api';
39
39
  import { RolesApi } from './api';
40
40
  import { SSOConnectionApi } from './api';
41
+ import { SSOIdPGroupsApi } from './api';
41
42
  import { SettingsApi } from './api';
42
43
  import { UserControllerRestApi } from './api';
43
44
  import { UserGroupApi } from './api';
@@ -62,6 +63,7 @@ export * from './api/report-schedule-api';
62
63
  export * from './api/report-schedule-logs-api';
63
64
  export * from './api/roles-api';
64
65
  export * from './api/ssoconnection-api';
66
+ export * from './api/ssoid-pgroups-api';
65
67
  export * from './api/settings-api';
66
68
  export * from './api/user-controller-rest-api';
67
69
  export * from './api/user-group-api';
@@ -0,0 +1,163 @@
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 { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
13
+ import { Configuration } from '../configuration';
14
+ import { RequestArgs, BaseAPI } from '../base';
15
+ import { CreateSsoIdpGroupRequestDto } from '../models';
16
+ import { CreateSsoIdpGroupResponseClass } from '../models';
17
+ import { UpdateSsoIdpGroupBodyDto } from '../models';
18
+ import { UpdateSsoIdpGroupResponseClass } from '../models';
19
+ /**
20
+ * SSOIdPGroupsApi - axios parameter creator
21
+ * @export
22
+ */
23
+ export declare const SSOIdPGroupsApiAxiosParamCreator: (configuration?: Configuration) => {
24
+ /**
25
+ * Creates an inactive IdP group with at least one EIS user-group mapping. externalId must be a GUID and is immutable after create. **Required Permissions** \"tenant-management.settings.create\"
26
+ * @summary Register an IdP group and its EIS mappings
27
+ * @param {CreateSsoIdpGroupRequestDto} createSsoIdpGroupRequestDto
28
+ * @param {string} [authorization] Bearer Token
29
+ * @param {*} [options] Override http request option.
30
+ * @throws {RequiredError}
31
+ */
32
+ createSsoIdpGroup: (createSsoIdpGroupRequestDto: CreateSsoIdpGroupRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
33
+ /**
34
+ * externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
35
+ * @summary Update IdP group name and/or EIS mappings
36
+ * @param {string} code IdP group code.
37
+ * @param {UpdateSsoIdpGroupBodyDto} updateSsoIdpGroupBodyDto
38
+ * @param {string} [authorization] Bearer Token
39
+ * @param {*} [options] Override http request option.
40
+ * @throws {RequiredError}
41
+ */
42
+ updateSsoIdpGroup: (code: string, updateSsoIdpGroupBodyDto: UpdateSsoIdpGroupBodyDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
43
+ };
44
+ /**
45
+ * SSOIdPGroupsApi - functional programming interface
46
+ * @export
47
+ */
48
+ export declare const SSOIdPGroupsApiFp: (configuration?: Configuration) => {
49
+ /**
50
+ * Creates an inactive IdP group with at least one EIS user-group mapping. externalId must be a GUID and is immutable after create. **Required Permissions** \"tenant-management.settings.create\"
51
+ * @summary Register an IdP group and its EIS mappings
52
+ * @param {CreateSsoIdpGroupRequestDto} createSsoIdpGroupRequestDto
53
+ * @param {string} [authorization] Bearer Token
54
+ * @param {*} [options] Override http request option.
55
+ * @throws {RequiredError}
56
+ */
57
+ createSsoIdpGroup(createSsoIdpGroupRequestDto: CreateSsoIdpGroupRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateSsoIdpGroupResponseClass>>;
58
+ /**
59
+ * externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
60
+ * @summary Update IdP group name and/or EIS mappings
61
+ * @param {string} code IdP group code.
62
+ * @param {UpdateSsoIdpGroupBodyDto} updateSsoIdpGroupBodyDto
63
+ * @param {string} [authorization] Bearer Token
64
+ * @param {*} [options] Override http request option.
65
+ * @throws {RequiredError}
66
+ */
67
+ updateSsoIdpGroup(code: string, updateSsoIdpGroupBodyDto: UpdateSsoIdpGroupBodyDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateSsoIdpGroupResponseClass>>;
68
+ };
69
+ /**
70
+ * SSOIdPGroupsApi - factory interface
71
+ * @export
72
+ */
73
+ export declare const SSOIdPGroupsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
74
+ /**
75
+ * Creates an inactive IdP group with at least one EIS user-group mapping. externalId must be a GUID and is immutable after create. **Required Permissions** \"tenant-management.settings.create\"
76
+ * @summary Register an IdP group and its EIS mappings
77
+ * @param {CreateSsoIdpGroupRequestDto} createSsoIdpGroupRequestDto
78
+ * @param {string} [authorization] Bearer Token
79
+ * @param {*} [options] Override http request option.
80
+ * @throws {RequiredError}
81
+ */
82
+ createSsoIdpGroup(createSsoIdpGroupRequestDto: CreateSsoIdpGroupRequestDto, authorization?: string, options?: any): AxiosPromise<CreateSsoIdpGroupResponseClass>;
83
+ /**
84
+ * externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
85
+ * @summary Update IdP group name and/or EIS mappings
86
+ * @param {string} code IdP group code.
87
+ * @param {UpdateSsoIdpGroupBodyDto} updateSsoIdpGroupBodyDto
88
+ * @param {string} [authorization] Bearer Token
89
+ * @param {*} [options] Override http request option.
90
+ * @throws {RequiredError}
91
+ */
92
+ updateSsoIdpGroup(code: string, updateSsoIdpGroupBodyDto: UpdateSsoIdpGroupBodyDto, authorization?: string, options?: any): AxiosPromise<UpdateSsoIdpGroupResponseClass>;
93
+ };
94
+ /**
95
+ * Request parameters for createSsoIdpGroup operation in SSOIdPGroupsApi.
96
+ * @export
97
+ * @interface SSOIdPGroupsApiCreateSsoIdpGroupRequest
98
+ */
99
+ export interface SSOIdPGroupsApiCreateSsoIdpGroupRequest {
100
+ /**
101
+ *
102
+ * @type {CreateSsoIdpGroupRequestDto}
103
+ * @memberof SSOIdPGroupsApiCreateSsoIdpGroup
104
+ */
105
+ readonly createSsoIdpGroupRequestDto: CreateSsoIdpGroupRequestDto;
106
+ /**
107
+ * Bearer Token
108
+ * @type {string}
109
+ * @memberof SSOIdPGroupsApiCreateSsoIdpGroup
110
+ */
111
+ readonly authorization?: string;
112
+ }
113
+ /**
114
+ * Request parameters for updateSsoIdpGroup operation in SSOIdPGroupsApi.
115
+ * @export
116
+ * @interface SSOIdPGroupsApiUpdateSsoIdpGroupRequest
117
+ */
118
+ export interface SSOIdPGroupsApiUpdateSsoIdpGroupRequest {
119
+ /**
120
+ * IdP group code.
121
+ * @type {string}
122
+ * @memberof SSOIdPGroupsApiUpdateSsoIdpGroup
123
+ */
124
+ readonly code: string;
125
+ /**
126
+ *
127
+ * @type {UpdateSsoIdpGroupBodyDto}
128
+ * @memberof SSOIdPGroupsApiUpdateSsoIdpGroup
129
+ */
130
+ readonly updateSsoIdpGroupBodyDto: UpdateSsoIdpGroupBodyDto;
131
+ /**
132
+ * Bearer Token
133
+ * @type {string}
134
+ * @memberof SSOIdPGroupsApiUpdateSsoIdpGroup
135
+ */
136
+ readonly authorization?: string;
137
+ }
138
+ /**
139
+ * SSOIdPGroupsApi - object-oriented interface
140
+ * @export
141
+ * @class SSOIdPGroupsApi
142
+ * @extends {BaseAPI}
143
+ */
144
+ export declare class SSOIdPGroupsApi extends BaseAPI {
145
+ /**
146
+ * Creates an inactive IdP group with at least one EIS user-group mapping. externalId must be a GUID and is immutable after create. **Required Permissions** \"tenant-management.settings.create\"
147
+ * @summary Register an IdP group and its EIS mappings
148
+ * @param {SSOIdPGroupsApiCreateSsoIdpGroupRequest} requestParameters Request parameters.
149
+ * @param {*} [options] Override http request option.
150
+ * @throws {RequiredError}
151
+ * @memberof SSOIdPGroupsApi
152
+ */
153
+ createSsoIdpGroup(requestParameters: SSOIdPGroupsApiCreateSsoIdpGroupRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateSsoIdpGroupResponseClass, any, {}>>;
154
+ /**
155
+ * externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
156
+ * @summary Update IdP group name and/or EIS mappings
157
+ * @param {SSOIdPGroupsApiUpdateSsoIdpGroupRequest} requestParameters Request parameters.
158
+ * @param {*} [options] Override http request option.
159
+ * @throws {RequiredError}
160
+ * @memberof SSOIdPGroupsApi
161
+ */
162
+ updateSsoIdpGroup(requestParameters: SSOIdPGroupsApiUpdateSsoIdpGroupRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateSsoIdpGroupResponseClass, any, {}>>;
163
+ }