@goauthentik/api 2024.6.1-1721927330 → 2024.6.1-1722285189
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 +4 -0
- package/dist/apis/PropertymappingsApi.d.ts +94 -11
- package/dist/apis/PropertymappingsApi.js +295 -30
- package/dist/apis/RbacApi.d.ts +2 -0
- package/dist/apis/RbacApi.js +2 -0
- package/dist/esm/apis/PropertymappingsApi.d.ts +94 -11
- package/dist/esm/apis/PropertymappingsApi.js +296 -31
- package/dist/esm/apis/RbacApi.d.ts +2 -0
- package/dist/esm/apis/RbacApi.js +2 -0
- package/dist/esm/models/ModelEnum.d.ts +1 -0
- package/dist/esm/models/ModelEnum.js +1 -0
- package/dist/esm/models/PaginatedSCIMSourcePropertyMappingList.d.ts +39 -0
- package/dist/esm/models/PaginatedSCIMSourcePropertyMappingList.js +48 -0
- package/dist/esm/models/PatchedSCIMSourcePropertyMappingRequest.d.ts +43 -0
- package/dist/esm/models/PatchedSCIMSourcePropertyMappingRequest.js +47 -0
- package/dist/esm/models/PatchedSCIMSourceRequest.d.ts +8 -3
- package/dist/esm/models/PatchedSCIMSourceRequest.js +4 -3
- package/dist/esm/models/SCIMSource.d.ts +12 -7
- package/dist/esm/models/SCIMSource.js +4 -3
- package/dist/esm/models/SCIMSourcePropertyMapping.d.ts +73 -0
- package/dist/esm/models/SCIMSourcePropertyMapping.js +59 -0
- package/dist/esm/models/SCIMSourcePropertyMappingRequest.d.ts +43 -0
- package/dist/esm/models/SCIMSourcePropertyMappingRequest.js +49 -0
- package/dist/esm/models/SCIMSourceRequest.d.ts +8 -3
- package/dist/esm/models/SCIMSourceRequest.js +4 -3
- package/dist/esm/models/index.d.ts +4 -0
- package/dist/esm/models/index.js +4 -0
- package/dist/models/ModelEnum.d.ts +1 -0
- package/dist/models/ModelEnum.js +1 -0
- package/dist/models/PaginatedSCIMSourcePropertyMappingList.d.ts +39 -0
- package/dist/models/PaginatedSCIMSourcePropertyMappingList.js +55 -0
- package/dist/models/PatchedSCIMSourcePropertyMappingRequest.d.ts +43 -0
- package/dist/models/PatchedSCIMSourcePropertyMappingRequest.js +54 -0
- package/dist/models/PatchedSCIMSourceRequest.d.ts +8 -3
- package/dist/models/PatchedSCIMSourceRequest.js +4 -3
- package/dist/models/SCIMSource.d.ts +12 -7
- package/dist/models/SCIMSource.js +4 -3
- package/dist/models/SCIMSourcePropertyMapping.d.ts +73 -0
- package/dist/models/SCIMSourcePropertyMapping.js +66 -0
- package/dist/models/SCIMSourcePropertyMappingRequest.d.ts +43 -0
- package/dist/models/SCIMSourcePropertyMappingRequest.js +56 -0
- package/dist/models/SCIMSourceRequest.d.ts +8 -3
- package/dist/models/SCIMSourceRequest.js +4 -3
- package/dist/models/index.d.ts +4 -0
- package/dist/models/index.js +4 -0
- package/package.json +1 -1
- package/src/apis/PropertymappingsApi.ts +390 -50
- package/src/apis/RbacApi.ts +2 -0
- package/src/models/ModelEnum.ts +1 -0
- package/src/models/PaginatedSCIMSourcePropertyMappingList.ts +88 -0
- package/src/models/PatchedSCIMSourcePropertyMappingRequest.ts +81 -0
- package/src/models/PatchedSCIMSourceRequest.ts +12 -11
- package/src/models/SCIMSource.ts +16 -14
- package/src/models/SCIMSourcePropertyMapping.ts +123 -0
- package/src/models/SCIMSourcePropertyMappingRequest.ts +83 -0
- package/src/models/SCIMSourceRequest.ts +12 -11
- package/src/models/index.ts +4 -0
package/.openapi-generator/FILES
CHANGED
|
@@ -337,6 +337,7 @@ src/models/PaginatedSCIMProviderList.ts
|
|
|
337
337
|
src/models/PaginatedSCIMProviderUserList.ts
|
|
338
338
|
src/models/PaginatedSCIMSourceGroupList.ts
|
|
339
339
|
src/models/PaginatedSCIMSourceList.ts
|
|
340
|
+
src/models/PaginatedSCIMSourcePropertyMappingList.ts
|
|
340
341
|
src/models/PaginatedSCIMSourceUserList.ts
|
|
341
342
|
src/models/PaginatedSMSDeviceList.ts
|
|
342
343
|
src/models/PaginatedScopeMappingList.ts
|
|
@@ -439,6 +440,7 @@ src/models/PatchedSAMLSourceRequest.ts
|
|
|
439
440
|
src/models/PatchedSCIMMappingRequest.ts
|
|
440
441
|
src/models/PatchedSCIMProviderRequest.ts
|
|
441
442
|
src/models/PatchedSCIMSourceGroupRequest.ts
|
|
443
|
+
src/models/PatchedSCIMSourcePropertyMappingRequest.ts
|
|
442
444
|
src/models/PatchedSCIMSourceRequest.ts
|
|
443
445
|
src/models/PatchedSCIMSourceUserRequest.ts
|
|
444
446
|
src/models/PatchedSMSDeviceRequest.ts
|
|
@@ -531,6 +533,8 @@ src/models/SCIMProviderUserRequest.ts
|
|
|
531
533
|
src/models/SCIMSource.ts
|
|
532
534
|
src/models/SCIMSourceGroup.ts
|
|
533
535
|
src/models/SCIMSourceGroupRequest.ts
|
|
536
|
+
src/models/SCIMSourcePropertyMapping.ts
|
|
537
|
+
src/models/SCIMSourcePropertyMappingRequest.ts
|
|
534
538
|
src/models/SCIMSourceRequest.ts
|
|
535
539
|
src/models/SCIMSourceUser.ts
|
|
536
540
|
src/models/SCIMSourceUserRequest.ts
|
|
@@ -10,12 +10,14 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import * as runtime from '../runtime';
|
|
13
|
-
import type { GoogleWorkspaceProviderMapping, GoogleWorkspaceProviderMappingRequest, LDAPSourcePropertyMapping, LDAPSourcePropertyMappingRequest, MicrosoftEntraProviderMapping, MicrosoftEntraProviderMappingRequest, NotificationWebhookMapping, NotificationWebhookMappingRequest, PaginatedGoogleWorkspaceProviderMappingList, PaginatedLDAPSourcePropertyMappingList, PaginatedMicrosoftEntraProviderMappingList, PaginatedNotificationWebhookMappingList, PaginatedPropertyMappingList, PaginatedRACPropertyMappingList, PaginatedRadiusProviderPropertyMappingList, PaginatedSAMLPropertyMappingList, PaginatedSCIMMappingList, PaginatedScopeMappingList, PatchedGoogleWorkspaceProviderMappingRequest, PatchedLDAPSourcePropertyMappingRequest, PatchedMicrosoftEntraProviderMappingRequest, PatchedNotificationWebhookMappingRequest, PatchedRACPropertyMappingRequest, PatchedRadiusProviderPropertyMappingRequest, PatchedSAMLPropertyMappingRequest, PatchedSCIMMappingRequest, PatchedScopeMappingRequest, PropertyMapping, PropertyMappingTestRequest, PropertyMappingTestResult, RACPropertyMapping, RACPropertyMappingRequest, RadiusProviderPropertyMapping, RadiusProviderPropertyMappingRequest, SAMLPropertyMapping, SAMLPropertyMappingRequest, SCIMMapping, SCIMMappingRequest, ScopeMapping, ScopeMappingRequest, TypeCreate, UsedBy } from '../models';
|
|
13
|
+
import type { GoogleWorkspaceProviderMapping, GoogleWorkspaceProviderMappingRequest, LDAPSourcePropertyMapping, LDAPSourcePropertyMappingRequest, MicrosoftEntraProviderMapping, MicrosoftEntraProviderMappingRequest, NotificationWebhookMapping, NotificationWebhookMappingRequest, PaginatedGoogleWorkspaceProviderMappingList, PaginatedLDAPSourcePropertyMappingList, PaginatedMicrosoftEntraProviderMappingList, PaginatedNotificationWebhookMappingList, PaginatedPropertyMappingList, PaginatedRACPropertyMappingList, PaginatedRadiusProviderPropertyMappingList, PaginatedSAMLPropertyMappingList, PaginatedSCIMMappingList, PaginatedSCIMSourcePropertyMappingList, PaginatedScopeMappingList, PatchedGoogleWorkspaceProviderMappingRequest, PatchedLDAPSourcePropertyMappingRequest, PatchedMicrosoftEntraProviderMappingRequest, PatchedNotificationWebhookMappingRequest, PatchedRACPropertyMappingRequest, PatchedRadiusProviderPropertyMappingRequest, PatchedSAMLPropertyMappingRequest, PatchedSCIMMappingRequest, PatchedSCIMSourcePropertyMappingRequest, PatchedScopeMappingRequest, PropertyMapping, PropertyMappingTestRequest, PropertyMappingTestResult, RACPropertyMapping, RACPropertyMappingRequest, RadiusProviderPropertyMapping, RadiusProviderPropertyMappingRequest, SAMLPropertyMapping, SAMLPropertyMappingRequest, SCIMMapping, SCIMMappingRequest, SCIMSourcePropertyMapping, SCIMSourcePropertyMappingRequest, ScopeMapping, ScopeMappingRequest, TypeCreate, UsedBy } from '../models';
|
|
14
14
|
export interface PropertymappingsAllDestroyRequest {
|
|
15
15
|
pmUuid: string;
|
|
16
16
|
}
|
|
17
17
|
export interface PropertymappingsAllListRequest {
|
|
18
|
+
managed?: Array<string>;
|
|
18
19
|
managedIsnull?: boolean;
|
|
20
|
+
name?: string;
|
|
19
21
|
ordering?: string;
|
|
20
22
|
page?: number;
|
|
21
23
|
pageSize?: number;
|
|
@@ -154,13 +156,12 @@ export interface PropertymappingsRadiusDestroyRequest {
|
|
|
154
156
|
pmUuid: string;
|
|
155
157
|
}
|
|
156
158
|
export interface PropertymappingsRadiusListRequest {
|
|
157
|
-
expression?: string;
|
|
158
159
|
managed?: Array<string>;
|
|
160
|
+
managedIsnull?: boolean;
|
|
159
161
|
name?: string;
|
|
160
162
|
ordering?: string;
|
|
161
163
|
page?: number;
|
|
162
164
|
pageSize?: number;
|
|
163
|
-
pmUuid?: string;
|
|
164
165
|
search?: string;
|
|
165
166
|
}
|
|
166
167
|
export interface PropertymappingsRadiusPartialUpdateRequest {
|
|
@@ -184,15 +185,12 @@ export interface PropertymappingsSamlDestroyRequest {
|
|
|
184
185
|
pmUuid: string;
|
|
185
186
|
}
|
|
186
187
|
export interface PropertymappingsSamlListRequest {
|
|
187
|
-
expression?: string;
|
|
188
|
-
friendlyName?: string;
|
|
189
188
|
managed?: Array<string>;
|
|
189
|
+
managedIsnull?: boolean;
|
|
190
190
|
name?: string;
|
|
191
191
|
ordering?: string;
|
|
192
192
|
page?: number;
|
|
193
193
|
pageSize?: number;
|
|
194
|
-
pmUuid?: string;
|
|
195
|
-
samlName?: string;
|
|
196
194
|
search?: string;
|
|
197
195
|
}
|
|
198
196
|
export interface PropertymappingsSamlPartialUpdateRequest {
|
|
@@ -216,13 +214,12 @@ export interface PropertymappingsScimDestroyRequest {
|
|
|
216
214
|
pmUuid: string;
|
|
217
215
|
}
|
|
218
216
|
export interface PropertymappingsScimListRequest {
|
|
219
|
-
expression?: string;
|
|
220
217
|
managed?: Array<string>;
|
|
218
|
+
managedIsnull?: boolean;
|
|
221
219
|
name?: string;
|
|
222
220
|
ordering?: string;
|
|
223
221
|
page?: number;
|
|
224
222
|
pageSize?: number;
|
|
225
|
-
pmUuid?: string;
|
|
226
223
|
search?: string;
|
|
227
224
|
}
|
|
228
225
|
export interface PropertymappingsScimPartialUpdateRequest {
|
|
@@ -247,6 +244,7 @@ export interface PropertymappingsScopeDestroyRequest {
|
|
|
247
244
|
}
|
|
248
245
|
export interface PropertymappingsScopeListRequest {
|
|
249
246
|
managed?: Array<string>;
|
|
247
|
+
managedIsnull?: boolean;
|
|
250
248
|
name?: string;
|
|
251
249
|
ordering?: string;
|
|
252
250
|
page?: number;
|
|
@@ -275,13 +273,12 @@ export interface PropertymappingsSourceLdapDestroyRequest {
|
|
|
275
273
|
pmUuid: string;
|
|
276
274
|
}
|
|
277
275
|
export interface PropertymappingsSourceLdapListRequest {
|
|
278
|
-
expression?: string;
|
|
279
276
|
managed?: Array<string>;
|
|
277
|
+
managedIsnull?: boolean;
|
|
280
278
|
name?: string;
|
|
281
279
|
ordering?: string;
|
|
282
280
|
page?: number;
|
|
283
281
|
pageSize?: number;
|
|
284
|
-
pmUuid?: string;
|
|
285
282
|
search?: string;
|
|
286
283
|
}
|
|
287
284
|
export interface PropertymappingsSourceLdapPartialUpdateRequest {
|
|
@@ -298,6 +295,36 @@ export interface PropertymappingsSourceLdapUpdateRequest {
|
|
|
298
295
|
export interface PropertymappingsSourceLdapUsedByListRequest {
|
|
299
296
|
pmUuid: string;
|
|
300
297
|
}
|
|
298
|
+
export interface PropertymappingsSourceScimCreateRequest {
|
|
299
|
+
sCIMSourcePropertyMappingRequest: SCIMSourcePropertyMappingRequest;
|
|
300
|
+
}
|
|
301
|
+
export interface PropertymappingsSourceScimDestroyRequest {
|
|
302
|
+
pmUuid: string;
|
|
303
|
+
}
|
|
304
|
+
export interface PropertymappingsSourceScimListRequest {
|
|
305
|
+
expression?: string;
|
|
306
|
+
managed?: Array<string>;
|
|
307
|
+
name?: string;
|
|
308
|
+
ordering?: string;
|
|
309
|
+
page?: number;
|
|
310
|
+
pageSize?: number;
|
|
311
|
+
pmUuid?: string;
|
|
312
|
+
search?: string;
|
|
313
|
+
}
|
|
314
|
+
export interface PropertymappingsSourceScimPartialUpdateRequest {
|
|
315
|
+
pmUuid: string;
|
|
316
|
+
patchedSCIMSourcePropertyMappingRequest?: PatchedSCIMSourcePropertyMappingRequest;
|
|
317
|
+
}
|
|
318
|
+
export interface PropertymappingsSourceScimRetrieveRequest {
|
|
319
|
+
pmUuid: string;
|
|
320
|
+
}
|
|
321
|
+
export interface PropertymappingsSourceScimUpdateRequest {
|
|
322
|
+
pmUuid: string;
|
|
323
|
+
sCIMSourcePropertyMappingRequest: SCIMSourcePropertyMappingRequest;
|
|
324
|
+
}
|
|
325
|
+
export interface PropertymappingsSourceScimUsedByListRequest {
|
|
326
|
+
pmUuid: string;
|
|
327
|
+
}
|
|
301
328
|
/**
|
|
302
329
|
*
|
|
303
330
|
*/
|
|
@@ -854,4 +881,60 @@ export declare class PropertymappingsApi extends runtime.BaseAPI {
|
|
|
854
881
|
* Get a list of all objects that use this object
|
|
855
882
|
*/
|
|
856
883
|
propertymappingsSourceLdapUsedByList(requestParameters: PropertymappingsSourceLdapUsedByListRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<UsedBy>>;
|
|
884
|
+
/**
|
|
885
|
+
* SCIMSourcePropertyMapping Viewset
|
|
886
|
+
*/
|
|
887
|
+
propertymappingsSourceScimCreateRaw(requestParameters: PropertymappingsSourceScimCreateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<SCIMSourcePropertyMapping>>;
|
|
888
|
+
/**
|
|
889
|
+
* SCIMSourcePropertyMapping Viewset
|
|
890
|
+
*/
|
|
891
|
+
propertymappingsSourceScimCreate(requestParameters: PropertymappingsSourceScimCreateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SCIMSourcePropertyMapping>;
|
|
892
|
+
/**
|
|
893
|
+
* SCIMSourcePropertyMapping Viewset
|
|
894
|
+
*/
|
|
895
|
+
propertymappingsSourceScimDestroyRaw(requestParameters: PropertymappingsSourceScimDestroyRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
896
|
+
/**
|
|
897
|
+
* SCIMSourcePropertyMapping Viewset
|
|
898
|
+
*/
|
|
899
|
+
propertymappingsSourceScimDestroy(requestParameters: PropertymappingsSourceScimDestroyRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
900
|
+
/**
|
|
901
|
+
* SCIMSourcePropertyMapping Viewset
|
|
902
|
+
*/
|
|
903
|
+
propertymappingsSourceScimListRaw(requestParameters: PropertymappingsSourceScimListRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PaginatedSCIMSourcePropertyMappingList>>;
|
|
904
|
+
/**
|
|
905
|
+
* SCIMSourcePropertyMapping Viewset
|
|
906
|
+
*/
|
|
907
|
+
propertymappingsSourceScimList(requestParameters?: PropertymappingsSourceScimListRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PaginatedSCIMSourcePropertyMappingList>;
|
|
908
|
+
/**
|
|
909
|
+
* SCIMSourcePropertyMapping Viewset
|
|
910
|
+
*/
|
|
911
|
+
propertymappingsSourceScimPartialUpdateRaw(requestParameters: PropertymappingsSourceScimPartialUpdateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<SCIMSourcePropertyMapping>>;
|
|
912
|
+
/**
|
|
913
|
+
* SCIMSourcePropertyMapping Viewset
|
|
914
|
+
*/
|
|
915
|
+
propertymappingsSourceScimPartialUpdate(requestParameters: PropertymappingsSourceScimPartialUpdateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SCIMSourcePropertyMapping>;
|
|
916
|
+
/**
|
|
917
|
+
* SCIMSourcePropertyMapping Viewset
|
|
918
|
+
*/
|
|
919
|
+
propertymappingsSourceScimRetrieveRaw(requestParameters: PropertymappingsSourceScimRetrieveRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<SCIMSourcePropertyMapping>>;
|
|
920
|
+
/**
|
|
921
|
+
* SCIMSourcePropertyMapping Viewset
|
|
922
|
+
*/
|
|
923
|
+
propertymappingsSourceScimRetrieve(requestParameters: PropertymappingsSourceScimRetrieveRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SCIMSourcePropertyMapping>;
|
|
924
|
+
/**
|
|
925
|
+
* SCIMSourcePropertyMapping Viewset
|
|
926
|
+
*/
|
|
927
|
+
propertymappingsSourceScimUpdateRaw(requestParameters: PropertymappingsSourceScimUpdateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<SCIMSourcePropertyMapping>>;
|
|
928
|
+
/**
|
|
929
|
+
* SCIMSourcePropertyMapping Viewset
|
|
930
|
+
*/
|
|
931
|
+
propertymappingsSourceScimUpdate(requestParameters: PropertymappingsSourceScimUpdateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SCIMSourcePropertyMapping>;
|
|
932
|
+
/**
|
|
933
|
+
* Get a list of all objects that use this object
|
|
934
|
+
*/
|
|
935
|
+
propertymappingsSourceScimUsedByListRaw(requestParameters: PropertymappingsSourceScimUsedByListRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<UsedBy>>>;
|
|
936
|
+
/**
|
|
937
|
+
* Get a list of all objects that use this object
|
|
938
|
+
*/
|
|
939
|
+
propertymappingsSourceScimUsedByList(requestParameters: PropertymappingsSourceScimUsedByListRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<UsedBy>>;
|
|
857
940
|
}
|
|
@@ -69,9 +69,15 @@ class PropertymappingsApi extends runtime.BaseAPI {
|
|
|
69
69
|
propertymappingsAllListRaw(requestParameters, initOverrides) {
|
|
70
70
|
return __awaiter(this, void 0, void 0, function* () {
|
|
71
71
|
const queryParameters = {};
|
|
72
|
+
if (requestParameters.managed) {
|
|
73
|
+
queryParameters['managed'] = requestParameters.managed;
|
|
74
|
+
}
|
|
72
75
|
if (requestParameters.managedIsnull !== undefined) {
|
|
73
76
|
queryParameters['managed__isnull'] = requestParameters.managedIsnull;
|
|
74
77
|
}
|
|
78
|
+
if (requestParameters.name !== undefined) {
|
|
79
|
+
queryParameters['name'] = requestParameters.name;
|
|
80
|
+
}
|
|
75
81
|
if (requestParameters.ordering !== undefined) {
|
|
76
82
|
queryParameters['ordering'] = requestParameters.ordering;
|
|
77
83
|
}
|
|
@@ -1410,12 +1416,12 @@ class PropertymappingsApi extends runtime.BaseAPI {
|
|
|
1410
1416
|
propertymappingsRadiusListRaw(requestParameters, initOverrides) {
|
|
1411
1417
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1412
1418
|
const queryParameters = {};
|
|
1413
|
-
if (requestParameters.expression !== undefined) {
|
|
1414
|
-
queryParameters['expression'] = requestParameters.expression;
|
|
1415
|
-
}
|
|
1416
1419
|
if (requestParameters.managed) {
|
|
1417
1420
|
queryParameters['managed'] = requestParameters.managed;
|
|
1418
1421
|
}
|
|
1422
|
+
if (requestParameters.managedIsnull !== undefined) {
|
|
1423
|
+
queryParameters['managed__isnull'] = requestParameters.managedIsnull;
|
|
1424
|
+
}
|
|
1419
1425
|
if (requestParameters.name !== undefined) {
|
|
1420
1426
|
queryParameters['name'] = requestParameters.name;
|
|
1421
1427
|
}
|
|
@@ -1428,9 +1434,6 @@ class PropertymappingsApi extends runtime.BaseAPI {
|
|
|
1428
1434
|
if (requestParameters.pageSize !== undefined) {
|
|
1429
1435
|
queryParameters['page_size'] = requestParameters.pageSize;
|
|
1430
1436
|
}
|
|
1431
|
-
if (requestParameters.pmUuid !== undefined) {
|
|
1432
|
-
queryParameters['pm_uuid'] = requestParameters.pmUuid;
|
|
1433
|
-
}
|
|
1434
1437
|
if (requestParameters.search !== undefined) {
|
|
1435
1438
|
queryParameters['search'] = requestParameters.search;
|
|
1436
1439
|
}
|
|
@@ -1684,15 +1687,12 @@ class PropertymappingsApi extends runtime.BaseAPI {
|
|
|
1684
1687
|
propertymappingsSamlListRaw(requestParameters, initOverrides) {
|
|
1685
1688
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1686
1689
|
const queryParameters = {};
|
|
1687
|
-
if (requestParameters.expression !== undefined) {
|
|
1688
|
-
queryParameters['expression'] = requestParameters.expression;
|
|
1689
|
-
}
|
|
1690
|
-
if (requestParameters.friendlyName !== undefined) {
|
|
1691
|
-
queryParameters['friendly_name'] = requestParameters.friendlyName;
|
|
1692
|
-
}
|
|
1693
1690
|
if (requestParameters.managed) {
|
|
1694
1691
|
queryParameters['managed'] = requestParameters.managed;
|
|
1695
1692
|
}
|
|
1693
|
+
if (requestParameters.managedIsnull !== undefined) {
|
|
1694
|
+
queryParameters['managed__isnull'] = requestParameters.managedIsnull;
|
|
1695
|
+
}
|
|
1696
1696
|
if (requestParameters.name !== undefined) {
|
|
1697
1697
|
queryParameters['name'] = requestParameters.name;
|
|
1698
1698
|
}
|
|
@@ -1705,12 +1705,6 @@ class PropertymappingsApi extends runtime.BaseAPI {
|
|
|
1705
1705
|
if (requestParameters.pageSize !== undefined) {
|
|
1706
1706
|
queryParameters['page_size'] = requestParameters.pageSize;
|
|
1707
1707
|
}
|
|
1708
|
-
if (requestParameters.pmUuid !== undefined) {
|
|
1709
|
-
queryParameters['pm_uuid'] = requestParameters.pmUuid;
|
|
1710
|
-
}
|
|
1711
|
-
if (requestParameters.samlName !== undefined) {
|
|
1712
|
-
queryParameters['saml_name'] = requestParameters.samlName;
|
|
1713
|
-
}
|
|
1714
1708
|
if (requestParameters.search !== undefined) {
|
|
1715
1709
|
queryParameters['search'] = requestParameters.search;
|
|
1716
1710
|
}
|
|
@@ -1964,12 +1958,12 @@ class PropertymappingsApi extends runtime.BaseAPI {
|
|
|
1964
1958
|
propertymappingsScimListRaw(requestParameters, initOverrides) {
|
|
1965
1959
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1966
1960
|
const queryParameters = {};
|
|
1967
|
-
if (requestParameters.expression !== undefined) {
|
|
1968
|
-
queryParameters['expression'] = requestParameters.expression;
|
|
1969
|
-
}
|
|
1970
1961
|
if (requestParameters.managed) {
|
|
1971
1962
|
queryParameters['managed'] = requestParameters.managed;
|
|
1972
1963
|
}
|
|
1964
|
+
if (requestParameters.managedIsnull !== undefined) {
|
|
1965
|
+
queryParameters['managed__isnull'] = requestParameters.managedIsnull;
|
|
1966
|
+
}
|
|
1973
1967
|
if (requestParameters.name !== undefined) {
|
|
1974
1968
|
queryParameters['name'] = requestParameters.name;
|
|
1975
1969
|
}
|
|
@@ -1982,9 +1976,6 @@ class PropertymappingsApi extends runtime.BaseAPI {
|
|
|
1982
1976
|
if (requestParameters.pageSize !== undefined) {
|
|
1983
1977
|
queryParameters['page_size'] = requestParameters.pageSize;
|
|
1984
1978
|
}
|
|
1985
|
-
if (requestParameters.pmUuid !== undefined) {
|
|
1986
|
-
queryParameters['pm_uuid'] = requestParameters.pmUuid;
|
|
1987
|
-
}
|
|
1988
1979
|
if (requestParameters.search !== undefined) {
|
|
1989
1980
|
queryParameters['search'] = requestParameters.search;
|
|
1990
1981
|
}
|
|
@@ -2241,6 +2232,9 @@ class PropertymappingsApi extends runtime.BaseAPI {
|
|
|
2241
2232
|
if (requestParameters.managed) {
|
|
2242
2233
|
queryParameters['managed'] = requestParameters.managed;
|
|
2243
2234
|
}
|
|
2235
|
+
if (requestParameters.managedIsnull !== undefined) {
|
|
2236
|
+
queryParameters['managed__isnull'] = requestParameters.managedIsnull;
|
|
2237
|
+
}
|
|
2244
2238
|
if (requestParameters.name !== undefined) {
|
|
2245
2239
|
queryParameters['name'] = requestParameters.name;
|
|
2246
2240
|
}
|
|
@@ -2509,12 +2503,12 @@ class PropertymappingsApi extends runtime.BaseAPI {
|
|
|
2509
2503
|
propertymappingsSourceLdapListRaw(requestParameters, initOverrides) {
|
|
2510
2504
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2511
2505
|
const queryParameters = {};
|
|
2512
|
-
if (requestParameters.expression !== undefined) {
|
|
2513
|
-
queryParameters['expression'] = requestParameters.expression;
|
|
2514
|
-
}
|
|
2515
2506
|
if (requestParameters.managed) {
|
|
2516
2507
|
queryParameters['managed'] = requestParameters.managed;
|
|
2517
2508
|
}
|
|
2509
|
+
if (requestParameters.managedIsnull !== undefined) {
|
|
2510
|
+
queryParameters['managed__isnull'] = requestParameters.managedIsnull;
|
|
2511
|
+
}
|
|
2518
2512
|
if (requestParameters.name !== undefined) {
|
|
2519
2513
|
queryParameters['name'] = requestParameters.name;
|
|
2520
2514
|
}
|
|
@@ -2527,9 +2521,6 @@ class PropertymappingsApi extends runtime.BaseAPI {
|
|
|
2527
2521
|
if (requestParameters.pageSize !== undefined) {
|
|
2528
2522
|
queryParameters['page_size'] = requestParameters.pageSize;
|
|
2529
2523
|
}
|
|
2530
|
-
if (requestParameters.pmUuid !== undefined) {
|
|
2531
|
-
queryParameters['pm_uuid'] = requestParameters.pmUuid;
|
|
2532
|
-
}
|
|
2533
2524
|
if (requestParameters.search !== undefined) {
|
|
2534
2525
|
queryParameters['search'] = requestParameters.search;
|
|
2535
2526
|
}
|
|
@@ -2706,5 +2697,279 @@ class PropertymappingsApi extends runtime.BaseAPI {
|
|
|
2706
2697
|
return yield response.value();
|
|
2707
2698
|
});
|
|
2708
2699
|
}
|
|
2700
|
+
/**
|
|
2701
|
+
* SCIMSourcePropertyMapping Viewset
|
|
2702
|
+
*/
|
|
2703
|
+
propertymappingsSourceScimCreateRaw(requestParameters, initOverrides) {
|
|
2704
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2705
|
+
if (requestParameters.sCIMSourcePropertyMappingRequest === null || requestParameters.sCIMSourcePropertyMappingRequest === undefined) {
|
|
2706
|
+
throw new runtime.RequiredError('sCIMSourcePropertyMappingRequest', 'Required parameter requestParameters.sCIMSourcePropertyMappingRequest was null or undefined when calling propertymappingsSourceScimCreate.');
|
|
2707
|
+
}
|
|
2708
|
+
const queryParameters = {};
|
|
2709
|
+
const headerParameters = {};
|
|
2710
|
+
headerParameters['Content-Type'] = 'application/json';
|
|
2711
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
2712
|
+
const token = this.configuration.accessToken;
|
|
2713
|
+
const tokenString = yield token("authentik", []);
|
|
2714
|
+
if (tokenString) {
|
|
2715
|
+
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
2716
|
+
}
|
|
2717
|
+
}
|
|
2718
|
+
const response = yield this.request({
|
|
2719
|
+
path: `/propertymappings/source/scim/`,
|
|
2720
|
+
method: 'POST',
|
|
2721
|
+
headers: headerParameters,
|
|
2722
|
+
query: queryParameters,
|
|
2723
|
+
body: (0, models_1.SCIMSourcePropertyMappingRequestToJSON)(requestParameters.sCIMSourcePropertyMappingRequest),
|
|
2724
|
+
}, initOverrides);
|
|
2725
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => (0, models_1.SCIMSourcePropertyMappingFromJSON)(jsonValue));
|
|
2726
|
+
});
|
|
2727
|
+
}
|
|
2728
|
+
/**
|
|
2729
|
+
* SCIMSourcePropertyMapping Viewset
|
|
2730
|
+
*/
|
|
2731
|
+
propertymappingsSourceScimCreate(requestParameters, initOverrides) {
|
|
2732
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2733
|
+
const response = yield this.propertymappingsSourceScimCreateRaw(requestParameters, initOverrides);
|
|
2734
|
+
return yield response.value();
|
|
2735
|
+
});
|
|
2736
|
+
}
|
|
2737
|
+
/**
|
|
2738
|
+
* SCIMSourcePropertyMapping Viewset
|
|
2739
|
+
*/
|
|
2740
|
+
propertymappingsSourceScimDestroyRaw(requestParameters, initOverrides) {
|
|
2741
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2742
|
+
if (requestParameters.pmUuid === null || requestParameters.pmUuid === undefined) {
|
|
2743
|
+
throw new runtime.RequiredError('pmUuid', 'Required parameter requestParameters.pmUuid was null or undefined when calling propertymappingsSourceScimDestroy.');
|
|
2744
|
+
}
|
|
2745
|
+
const queryParameters = {};
|
|
2746
|
+
const headerParameters = {};
|
|
2747
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
2748
|
+
const token = this.configuration.accessToken;
|
|
2749
|
+
const tokenString = yield token("authentik", []);
|
|
2750
|
+
if (tokenString) {
|
|
2751
|
+
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
2752
|
+
}
|
|
2753
|
+
}
|
|
2754
|
+
const response = yield this.request({
|
|
2755
|
+
path: `/propertymappings/source/scim/{pm_uuid}/`.replace(`{${"pm_uuid"}}`, encodeURIComponent(String(requestParameters.pmUuid))),
|
|
2756
|
+
method: 'DELETE',
|
|
2757
|
+
headers: headerParameters,
|
|
2758
|
+
query: queryParameters,
|
|
2759
|
+
}, initOverrides);
|
|
2760
|
+
return new runtime.VoidApiResponse(response);
|
|
2761
|
+
});
|
|
2762
|
+
}
|
|
2763
|
+
/**
|
|
2764
|
+
* SCIMSourcePropertyMapping Viewset
|
|
2765
|
+
*/
|
|
2766
|
+
propertymappingsSourceScimDestroy(requestParameters, initOverrides) {
|
|
2767
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2768
|
+
yield this.propertymappingsSourceScimDestroyRaw(requestParameters, initOverrides);
|
|
2769
|
+
});
|
|
2770
|
+
}
|
|
2771
|
+
/**
|
|
2772
|
+
* SCIMSourcePropertyMapping Viewset
|
|
2773
|
+
*/
|
|
2774
|
+
propertymappingsSourceScimListRaw(requestParameters, initOverrides) {
|
|
2775
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2776
|
+
const queryParameters = {};
|
|
2777
|
+
if (requestParameters.expression !== undefined) {
|
|
2778
|
+
queryParameters['expression'] = requestParameters.expression;
|
|
2779
|
+
}
|
|
2780
|
+
if (requestParameters.managed) {
|
|
2781
|
+
queryParameters['managed'] = requestParameters.managed;
|
|
2782
|
+
}
|
|
2783
|
+
if (requestParameters.name !== undefined) {
|
|
2784
|
+
queryParameters['name'] = requestParameters.name;
|
|
2785
|
+
}
|
|
2786
|
+
if (requestParameters.ordering !== undefined) {
|
|
2787
|
+
queryParameters['ordering'] = requestParameters.ordering;
|
|
2788
|
+
}
|
|
2789
|
+
if (requestParameters.page !== undefined) {
|
|
2790
|
+
queryParameters['page'] = requestParameters.page;
|
|
2791
|
+
}
|
|
2792
|
+
if (requestParameters.pageSize !== undefined) {
|
|
2793
|
+
queryParameters['page_size'] = requestParameters.pageSize;
|
|
2794
|
+
}
|
|
2795
|
+
if (requestParameters.pmUuid !== undefined) {
|
|
2796
|
+
queryParameters['pm_uuid'] = requestParameters.pmUuid;
|
|
2797
|
+
}
|
|
2798
|
+
if (requestParameters.search !== undefined) {
|
|
2799
|
+
queryParameters['search'] = requestParameters.search;
|
|
2800
|
+
}
|
|
2801
|
+
const headerParameters = {};
|
|
2802
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
2803
|
+
const token = this.configuration.accessToken;
|
|
2804
|
+
const tokenString = yield token("authentik", []);
|
|
2805
|
+
if (tokenString) {
|
|
2806
|
+
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
2807
|
+
}
|
|
2808
|
+
}
|
|
2809
|
+
const response = yield this.request({
|
|
2810
|
+
path: `/propertymappings/source/scim/`,
|
|
2811
|
+
method: 'GET',
|
|
2812
|
+
headers: headerParameters,
|
|
2813
|
+
query: queryParameters,
|
|
2814
|
+
}, initOverrides);
|
|
2815
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => (0, models_1.PaginatedSCIMSourcePropertyMappingListFromJSON)(jsonValue));
|
|
2816
|
+
});
|
|
2817
|
+
}
|
|
2818
|
+
/**
|
|
2819
|
+
* SCIMSourcePropertyMapping Viewset
|
|
2820
|
+
*/
|
|
2821
|
+
propertymappingsSourceScimList(requestParameters = {}, initOverrides) {
|
|
2822
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2823
|
+
const response = yield this.propertymappingsSourceScimListRaw(requestParameters, initOverrides);
|
|
2824
|
+
return yield response.value();
|
|
2825
|
+
});
|
|
2826
|
+
}
|
|
2827
|
+
/**
|
|
2828
|
+
* SCIMSourcePropertyMapping Viewset
|
|
2829
|
+
*/
|
|
2830
|
+
propertymappingsSourceScimPartialUpdateRaw(requestParameters, initOverrides) {
|
|
2831
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2832
|
+
if (requestParameters.pmUuid === null || requestParameters.pmUuid === undefined) {
|
|
2833
|
+
throw new runtime.RequiredError('pmUuid', 'Required parameter requestParameters.pmUuid was null or undefined when calling propertymappingsSourceScimPartialUpdate.');
|
|
2834
|
+
}
|
|
2835
|
+
const queryParameters = {};
|
|
2836
|
+
const headerParameters = {};
|
|
2837
|
+
headerParameters['Content-Type'] = 'application/json';
|
|
2838
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
2839
|
+
const token = this.configuration.accessToken;
|
|
2840
|
+
const tokenString = yield token("authentik", []);
|
|
2841
|
+
if (tokenString) {
|
|
2842
|
+
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
2843
|
+
}
|
|
2844
|
+
}
|
|
2845
|
+
const response = yield this.request({
|
|
2846
|
+
path: `/propertymappings/source/scim/{pm_uuid}/`.replace(`{${"pm_uuid"}}`, encodeURIComponent(String(requestParameters.pmUuid))),
|
|
2847
|
+
method: 'PATCH',
|
|
2848
|
+
headers: headerParameters,
|
|
2849
|
+
query: queryParameters,
|
|
2850
|
+
body: (0, models_1.PatchedSCIMSourcePropertyMappingRequestToJSON)(requestParameters.patchedSCIMSourcePropertyMappingRequest),
|
|
2851
|
+
}, initOverrides);
|
|
2852
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => (0, models_1.SCIMSourcePropertyMappingFromJSON)(jsonValue));
|
|
2853
|
+
});
|
|
2854
|
+
}
|
|
2855
|
+
/**
|
|
2856
|
+
* SCIMSourcePropertyMapping Viewset
|
|
2857
|
+
*/
|
|
2858
|
+
propertymappingsSourceScimPartialUpdate(requestParameters, initOverrides) {
|
|
2859
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2860
|
+
const response = yield this.propertymappingsSourceScimPartialUpdateRaw(requestParameters, initOverrides);
|
|
2861
|
+
return yield response.value();
|
|
2862
|
+
});
|
|
2863
|
+
}
|
|
2864
|
+
/**
|
|
2865
|
+
* SCIMSourcePropertyMapping Viewset
|
|
2866
|
+
*/
|
|
2867
|
+
propertymappingsSourceScimRetrieveRaw(requestParameters, initOverrides) {
|
|
2868
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2869
|
+
if (requestParameters.pmUuid === null || requestParameters.pmUuid === undefined) {
|
|
2870
|
+
throw new runtime.RequiredError('pmUuid', 'Required parameter requestParameters.pmUuid was null or undefined when calling propertymappingsSourceScimRetrieve.');
|
|
2871
|
+
}
|
|
2872
|
+
const queryParameters = {};
|
|
2873
|
+
const headerParameters = {};
|
|
2874
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
2875
|
+
const token = this.configuration.accessToken;
|
|
2876
|
+
const tokenString = yield token("authentik", []);
|
|
2877
|
+
if (tokenString) {
|
|
2878
|
+
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
2879
|
+
}
|
|
2880
|
+
}
|
|
2881
|
+
const response = yield this.request({
|
|
2882
|
+
path: `/propertymappings/source/scim/{pm_uuid}/`.replace(`{${"pm_uuid"}}`, encodeURIComponent(String(requestParameters.pmUuid))),
|
|
2883
|
+
method: 'GET',
|
|
2884
|
+
headers: headerParameters,
|
|
2885
|
+
query: queryParameters,
|
|
2886
|
+
}, initOverrides);
|
|
2887
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => (0, models_1.SCIMSourcePropertyMappingFromJSON)(jsonValue));
|
|
2888
|
+
});
|
|
2889
|
+
}
|
|
2890
|
+
/**
|
|
2891
|
+
* SCIMSourcePropertyMapping Viewset
|
|
2892
|
+
*/
|
|
2893
|
+
propertymappingsSourceScimRetrieve(requestParameters, initOverrides) {
|
|
2894
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2895
|
+
const response = yield this.propertymappingsSourceScimRetrieveRaw(requestParameters, initOverrides);
|
|
2896
|
+
return yield response.value();
|
|
2897
|
+
});
|
|
2898
|
+
}
|
|
2899
|
+
/**
|
|
2900
|
+
* SCIMSourcePropertyMapping Viewset
|
|
2901
|
+
*/
|
|
2902
|
+
propertymappingsSourceScimUpdateRaw(requestParameters, initOverrides) {
|
|
2903
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2904
|
+
if (requestParameters.pmUuid === null || requestParameters.pmUuid === undefined) {
|
|
2905
|
+
throw new runtime.RequiredError('pmUuid', 'Required parameter requestParameters.pmUuid was null or undefined when calling propertymappingsSourceScimUpdate.');
|
|
2906
|
+
}
|
|
2907
|
+
if (requestParameters.sCIMSourcePropertyMappingRequest === null || requestParameters.sCIMSourcePropertyMappingRequest === undefined) {
|
|
2908
|
+
throw new runtime.RequiredError('sCIMSourcePropertyMappingRequest', 'Required parameter requestParameters.sCIMSourcePropertyMappingRequest was null or undefined when calling propertymappingsSourceScimUpdate.');
|
|
2909
|
+
}
|
|
2910
|
+
const queryParameters = {};
|
|
2911
|
+
const headerParameters = {};
|
|
2912
|
+
headerParameters['Content-Type'] = 'application/json';
|
|
2913
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
2914
|
+
const token = this.configuration.accessToken;
|
|
2915
|
+
const tokenString = yield token("authentik", []);
|
|
2916
|
+
if (tokenString) {
|
|
2917
|
+
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
2918
|
+
}
|
|
2919
|
+
}
|
|
2920
|
+
const response = yield this.request({
|
|
2921
|
+
path: `/propertymappings/source/scim/{pm_uuid}/`.replace(`{${"pm_uuid"}}`, encodeURIComponent(String(requestParameters.pmUuid))),
|
|
2922
|
+
method: 'PUT',
|
|
2923
|
+
headers: headerParameters,
|
|
2924
|
+
query: queryParameters,
|
|
2925
|
+
body: (0, models_1.SCIMSourcePropertyMappingRequestToJSON)(requestParameters.sCIMSourcePropertyMappingRequest),
|
|
2926
|
+
}, initOverrides);
|
|
2927
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => (0, models_1.SCIMSourcePropertyMappingFromJSON)(jsonValue));
|
|
2928
|
+
});
|
|
2929
|
+
}
|
|
2930
|
+
/**
|
|
2931
|
+
* SCIMSourcePropertyMapping Viewset
|
|
2932
|
+
*/
|
|
2933
|
+
propertymappingsSourceScimUpdate(requestParameters, initOverrides) {
|
|
2934
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2935
|
+
const response = yield this.propertymappingsSourceScimUpdateRaw(requestParameters, initOverrides);
|
|
2936
|
+
return yield response.value();
|
|
2937
|
+
});
|
|
2938
|
+
}
|
|
2939
|
+
/**
|
|
2940
|
+
* Get a list of all objects that use this object
|
|
2941
|
+
*/
|
|
2942
|
+
propertymappingsSourceScimUsedByListRaw(requestParameters, initOverrides) {
|
|
2943
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2944
|
+
if (requestParameters.pmUuid === null || requestParameters.pmUuid === undefined) {
|
|
2945
|
+
throw new runtime.RequiredError('pmUuid', 'Required parameter requestParameters.pmUuid was null or undefined when calling propertymappingsSourceScimUsedByList.');
|
|
2946
|
+
}
|
|
2947
|
+
const queryParameters = {};
|
|
2948
|
+
const headerParameters = {};
|
|
2949
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
2950
|
+
const token = this.configuration.accessToken;
|
|
2951
|
+
const tokenString = yield token("authentik", []);
|
|
2952
|
+
if (tokenString) {
|
|
2953
|
+
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
2954
|
+
}
|
|
2955
|
+
}
|
|
2956
|
+
const response = yield this.request({
|
|
2957
|
+
path: `/propertymappings/source/scim/{pm_uuid}/used_by/`.replace(`{${"pm_uuid"}}`, encodeURIComponent(String(requestParameters.pmUuid))),
|
|
2958
|
+
method: 'GET',
|
|
2959
|
+
headers: headerParameters,
|
|
2960
|
+
query: queryParameters,
|
|
2961
|
+
}, initOverrides);
|
|
2962
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => jsonValue.map(models_1.UsedByFromJSON));
|
|
2963
|
+
});
|
|
2964
|
+
}
|
|
2965
|
+
/**
|
|
2966
|
+
* Get a list of all objects that use this object
|
|
2967
|
+
*/
|
|
2968
|
+
propertymappingsSourceScimUsedByList(requestParameters, initOverrides) {
|
|
2969
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2970
|
+
const response = yield this.propertymappingsSourceScimUsedByListRaw(requestParameters, initOverrides);
|
|
2971
|
+
return yield response.value();
|
|
2972
|
+
});
|
|
2973
|
+
}
|
|
2709
2974
|
}
|
|
2710
2975
|
exports.PropertymappingsApi = PropertymappingsApi;
|
package/dist/apis/RbacApi.d.ts
CHANGED
|
@@ -295,6 +295,7 @@ export declare const RbacPermissionsAssignedByRolesListModelEnum: {
|
|
|
295
295
|
readonly SourcesSamlSamlsource: "authentik_sources_saml.samlsource";
|
|
296
296
|
readonly SourcesSamlUsersamlsourceconnection: "authentik_sources_saml.usersamlsourceconnection";
|
|
297
297
|
readonly SourcesScimScimsource: "authentik_sources_scim.scimsource";
|
|
298
|
+
readonly SourcesScimScimsourcepropertymapping: "authentik_sources_scim.scimsourcepropertymapping";
|
|
298
299
|
readonly StagesAuthenticatorDuoAuthenticatorduostage: "authentik_stages_authenticator_duo.authenticatorduostage";
|
|
299
300
|
readonly StagesAuthenticatorDuoDuodevice: "authentik_stages_authenticator_duo.duodevice";
|
|
300
301
|
readonly StagesAuthenticatorSmsAuthenticatorsmsstage: "authentik_stages_authenticator_sms.authenticatorsmsstage";
|
|
@@ -383,6 +384,7 @@ export declare const RbacPermissionsAssignedByUsersListModelEnum: {
|
|
|
383
384
|
readonly SourcesSamlSamlsource: "authentik_sources_saml.samlsource";
|
|
384
385
|
readonly SourcesSamlUsersamlsourceconnection: "authentik_sources_saml.usersamlsourceconnection";
|
|
385
386
|
readonly SourcesScimScimsource: "authentik_sources_scim.scimsource";
|
|
387
|
+
readonly SourcesScimScimsourcepropertymapping: "authentik_sources_scim.scimsourcepropertymapping";
|
|
386
388
|
readonly StagesAuthenticatorDuoAuthenticatorduostage: "authentik_stages_authenticator_duo.authenticatorduostage";
|
|
387
389
|
readonly StagesAuthenticatorDuoDuodevice: "authentik_stages_authenticator_duo.duodevice";
|
|
388
390
|
readonly StagesAuthenticatorSmsAuthenticatorsmsstage: "authentik_stages_authenticator_sms.authenticatorsmsstage";
|
package/dist/apis/RbacApi.js
CHANGED
|
@@ -802,6 +802,7 @@ exports.RbacPermissionsAssignedByRolesListModelEnum = {
|
|
|
802
802
|
SourcesSamlSamlsource: 'authentik_sources_saml.samlsource',
|
|
803
803
|
SourcesSamlUsersamlsourceconnection: 'authentik_sources_saml.usersamlsourceconnection',
|
|
804
804
|
SourcesScimScimsource: 'authentik_sources_scim.scimsource',
|
|
805
|
+
SourcesScimScimsourcepropertymapping: 'authentik_sources_scim.scimsourcepropertymapping',
|
|
805
806
|
StagesAuthenticatorDuoAuthenticatorduostage: 'authentik_stages_authenticator_duo.authenticatorduostage',
|
|
806
807
|
StagesAuthenticatorDuoDuodevice: 'authentik_stages_authenticator_duo.duodevice',
|
|
807
808
|
StagesAuthenticatorSmsAuthenticatorsmsstage: 'authentik_stages_authenticator_sms.authenticatorsmsstage',
|
|
@@ -889,6 +890,7 @@ exports.RbacPermissionsAssignedByUsersListModelEnum = {
|
|
|
889
890
|
SourcesSamlSamlsource: 'authentik_sources_saml.samlsource',
|
|
890
891
|
SourcesSamlUsersamlsourceconnection: 'authentik_sources_saml.usersamlsourceconnection',
|
|
891
892
|
SourcesScimScimsource: 'authentik_sources_scim.scimsource',
|
|
893
|
+
SourcesScimScimsourcepropertymapping: 'authentik_sources_scim.scimsourcepropertymapping',
|
|
892
894
|
StagesAuthenticatorDuoAuthenticatorduostage: 'authentik_stages_authenticator_duo.authenticatorduostage',
|
|
893
895
|
StagesAuthenticatorDuoDuodevice: 'authentik_stages_authenticator_duo.duodevice',
|
|
894
896
|
StagesAuthenticatorSmsAuthenticatorsmsstage: 'authentik_stages_authenticator_sms.authenticatorsmsstage',
|