@goauthentik/api 2024.6.1-1721916595 → 2024.6.1-1722014086
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 +5 -0
- package/dist/apis/OutpostsApi.d.ts +7 -28
- package/dist/apis/OutpostsApi.js +11 -78
- package/dist/apis/PropertymappingsApi.d.ts +92 -9
- package/dist/apis/PropertymappingsApi.js +289 -24
- package/dist/apis/RbacApi.d.ts +2 -0
- package/dist/apis/RbacApi.js +2 -0
- package/dist/esm/apis/OutpostsApi.d.ts +7 -28
- package/dist/esm/apis/OutpostsApi.js +12 -79
- package/dist/esm/apis/PropertymappingsApi.d.ts +92 -9
- package/dist/esm/apis/PropertymappingsApi.js +290 -25
- 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/PaginatedRadiusProviderPropertyMappingList.d.ts +39 -0
- package/dist/esm/models/PaginatedRadiusProviderPropertyMappingList.js +48 -0
- package/dist/esm/models/PatchedRadiusProviderPropertyMappingRequest.d.ts +43 -0
- package/dist/esm/models/PatchedRadiusProviderPropertyMappingRequest.js +47 -0
- package/dist/esm/models/RadiusCheckAccess.d.ts +38 -0
- package/dist/esm/models/RadiusCheckAccess.js +47 -0
- package/dist/esm/models/RadiusProviderPropertyMapping.d.ts +73 -0
- package/dist/esm/models/RadiusProviderPropertyMapping.js +59 -0
- package/dist/esm/models/RadiusProviderPropertyMappingRequest.d.ts +43 -0
- package/dist/esm/models/RadiusProviderPropertyMappingRequest.js +49 -0
- package/dist/esm/models/index.d.ts +5 -0
- package/dist/esm/models/index.js +5 -0
- package/dist/models/ModelEnum.d.ts +1 -0
- package/dist/models/ModelEnum.js +1 -0
- package/dist/models/PaginatedRadiusProviderPropertyMappingList.d.ts +39 -0
- package/dist/models/PaginatedRadiusProviderPropertyMappingList.js +55 -0
- package/dist/models/PatchedRadiusProviderPropertyMappingRequest.d.ts +43 -0
- package/dist/models/PatchedRadiusProviderPropertyMappingRequest.js +54 -0
- package/dist/models/RadiusCheckAccess.d.ts +38 -0
- package/dist/models/RadiusCheckAccess.js +54 -0
- package/dist/models/RadiusProviderPropertyMapping.d.ts +73 -0
- package/dist/models/RadiusProviderPropertyMapping.js +66 -0
- package/dist/models/RadiusProviderPropertyMappingRequest.d.ts +43 -0
- package/dist/models/RadiusProviderPropertyMappingRequest.js +56 -0
- package/dist/models/index.d.ts +5 -0
- package/dist/models/index.js +5 -0
- package/package.json +1 -1
- package/src/apis/OutpostsApi.ts +17 -102
- package/src/apis/PropertymappingsApi.ts +380 -40
- package/src/apis/RbacApi.ts +2 -0
- package/src/models/ModelEnum.ts +1 -0
- package/src/models/PaginatedRadiusProviderPropertyMappingList.ts +88 -0
- package/src/models/PatchedRadiusProviderPropertyMappingRequest.ts +81 -0
- package/src/models/RadiusCheckAccess.ts +81 -0
- package/src/models/RadiusProviderPropertyMapping.ts +123 -0
- package/src/models/RadiusProviderPropertyMappingRequest.ts +83 -0
- package/src/models/index.ts +5 -0
package/.openapi-generator/FILES
CHANGED
|
@@ -323,6 +323,7 @@ src/models/PaginatedRACPropertyMappingList.ts
|
|
|
323
323
|
src/models/PaginatedRACProviderList.ts
|
|
324
324
|
src/models/PaginatedRadiusOutpostConfigList.ts
|
|
325
325
|
src/models/PaginatedRadiusProviderList.ts
|
|
326
|
+
src/models/PaginatedRadiusProviderPropertyMappingList.ts
|
|
326
327
|
src/models/PaginatedReputationList.ts
|
|
327
328
|
src/models/PaginatedReputationPolicyList.ts
|
|
328
329
|
src/models/PaginatedRoleAssignedObjectPermissionList.ts
|
|
@@ -428,6 +429,7 @@ src/models/PatchedPromptStageRequest.ts
|
|
|
428
429
|
src/models/PatchedProxyProviderRequest.ts
|
|
429
430
|
src/models/PatchedRACPropertyMappingRequest.ts
|
|
430
431
|
src/models/PatchedRACProviderRequest.ts
|
|
432
|
+
src/models/PatchedRadiusProviderPropertyMappingRequest.ts
|
|
431
433
|
src/models/PatchedRadiusProviderRequest.ts
|
|
432
434
|
src/models/PatchedReputationPolicyRequest.ts
|
|
433
435
|
src/models/PatchedRoleRequest.ts
|
|
@@ -496,8 +498,11 @@ src/models/RACPropertyMapping.ts
|
|
|
496
498
|
src/models/RACPropertyMappingRequest.ts
|
|
497
499
|
src/models/RACProvider.ts
|
|
498
500
|
src/models/RACProviderRequest.ts
|
|
501
|
+
src/models/RadiusCheckAccess.ts
|
|
499
502
|
src/models/RadiusOutpostConfig.ts
|
|
500
503
|
src/models/RadiusProvider.ts
|
|
504
|
+
src/models/RadiusProviderPropertyMapping.ts
|
|
505
|
+
src/models/RadiusProviderPropertyMappingRequest.ts
|
|
501
506
|
src/models/RadiusProviderRequest.ts
|
|
502
507
|
src/models/RedirectChallenge.ts
|
|
503
508
|
src/models/Reputation.ts
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import * as runtime from '../runtime';
|
|
13
|
-
import type { DockerServiceConnection, DockerServiceConnectionRequest, KubernetesServiceConnection, KubernetesServiceConnectionRequest,
|
|
13
|
+
import type { DockerServiceConnection, DockerServiceConnectionRequest, KubernetesServiceConnection, KubernetesServiceConnectionRequest, Outpost, OutpostDefaultConfig, OutpostHealth, OutpostRequest, PaginatedDockerServiceConnectionList, PaginatedKubernetesServiceConnectionList, PaginatedLDAPOutpostConfigList, PaginatedOutpostList, PaginatedProxyOutpostConfigList, PaginatedRadiusOutpostConfigList, PaginatedServiceConnectionList, PatchedDockerServiceConnectionRequest, PatchedKubernetesServiceConnectionRequest, PatchedOutpostRequest, RadiusCheckAccess, ServiceConnection, ServiceConnectionState, TypeCreate, UsedBy } from '../models';
|
|
14
14
|
export interface OutpostsInstancesCreateRequest {
|
|
15
15
|
outpostRequest: OutpostRequest;
|
|
16
16
|
}
|
|
@@ -65,9 +65,6 @@ export interface OutpostsLdapListRequest {
|
|
|
65
65
|
pageSize?: number;
|
|
66
66
|
search?: string;
|
|
67
67
|
}
|
|
68
|
-
export interface OutpostsLdapRetrieveRequest {
|
|
69
|
-
id: number;
|
|
70
|
-
}
|
|
71
68
|
export interface OutpostsProxyListRequest {
|
|
72
69
|
name?: string;
|
|
73
70
|
ordering?: string;
|
|
@@ -75,8 +72,9 @@ export interface OutpostsProxyListRequest {
|
|
|
75
72
|
pageSize?: number;
|
|
76
73
|
search?: string;
|
|
77
74
|
}
|
|
78
|
-
export interface
|
|
75
|
+
export interface OutpostsRadiusCheckAccessRetrieveRequest {
|
|
79
76
|
id: number;
|
|
77
|
+
appSlug?: string;
|
|
80
78
|
}
|
|
81
79
|
export interface OutpostsRadiusListRequest {
|
|
82
80
|
name?: string;
|
|
@@ -85,9 +83,6 @@ export interface OutpostsRadiusListRequest {
|
|
|
85
83
|
pageSize?: number;
|
|
86
84
|
search?: string;
|
|
87
85
|
}
|
|
88
|
-
export interface OutpostsRadiusRetrieveRequest {
|
|
89
|
-
id: number;
|
|
90
|
-
}
|
|
91
86
|
export interface OutpostsServiceConnectionsAllDestroyRequest {
|
|
92
87
|
uuid: string;
|
|
93
88
|
}
|
|
@@ -250,14 +245,6 @@ export declare class OutpostsApi extends runtime.BaseAPI {
|
|
|
250
245
|
* LDAPProvider Viewset
|
|
251
246
|
*/
|
|
252
247
|
outpostsLdapList(requestParameters?: OutpostsLdapListRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PaginatedLDAPOutpostConfigList>;
|
|
253
|
-
/**
|
|
254
|
-
* LDAPProvider Viewset
|
|
255
|
-
*/
|
|
256
|
-
outpostsLdapRetrieveRaw(requestParameters: OutpostsLdapRetrieveRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<LDAPOutpostConfig>>;
|
|
257
|
-
/**
|
|
258
|
-
* LDAPProvider Viewset
|
|
259
|
-
*/
|
|
260
|
-
outpostsLdapRetrieve(requestParameters: OutpostsLdapRetrieveRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<LDAPOutpostConfig>;
|
|
261
248
|
/**
|
|
262
249
|
* ProxyProvider Viewset
|
|
263
250
|
*/
|
|
@@ -267,13 +254,13 @@ export declare class OutpostsApi extends runtime.BaseAPI {
|
|
|
267
254
|
*/
|
|
268
255
|
outpostsProxyList(requestParameters?: OutpostsProxyListRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PaginatedProxyOutpostConfigList>;
|
|
269
256
|
/**
|
|
270
|
-
*
|
|
257
|
+
* Check access to a single application by slug
|
|
271
258
|
*/
|
|
272
|
-
|
|
259
|
+
outpostsRadiusCheckAccessRetrieveRaw(requestParameters: OutpostsRadiusCheckAccessRetrieveRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<RadiusCheckAccess>>;
|
|
273
260
|
/**
|
|
274
|
-
*
|
|
261
|
+
* Check access to a single application by slug
|
|
275
262
|
*/
|
|
276
|
-
|
|
263
|
+
outpostsRadiusCheckAccessRetrieve(requestParameters: OutpostsRadiusCheckAccessRetrieveRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<RadiusCheckAccess>;
|
|
277
264
|
/**
|
|
278
265
|
* RadiusProvider Viewset
|
|
279
266
|
*/
|
|
@@ -282,14 +269,6 @@ export declare class OutpostsApi extends runtime.BaseAPI {
|
|
|
282
269
|
* RadiusProvider Viewset
|
|
283
270
|
*/
|
|
284
271
|
outpostsRadiusList(requestParameters?: OutpostsRadiusListRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PaginatedRadiusOutpostConfigList>;
|
|
285
|
-
/**
|
|
286
|
-
* RadiusProvider Viewset
|
|
287
|
-
*/
|
|
288
|
-
outpostsRadiusRetrieveRaw(requestParameters: OutpostsRadiusRetrieveRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<RadiusOutpostConfig>>;
|
|
289
|
-
/**
|
|
290
|
-
* RadiusProvider Viewset
|
|
291
|
-
*/
|
|
292
|
-
outpostsRadiusRetrieve(requestParameters: OutpostsRadiusRetrieveRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<RadiusOutpostConfig>;
|
|
293
272
|
/**
|
|
294
273
|
* ServiceConnection Viewset
|
|
295
274
|
*/
|
package/dist/apis/OutpostsApi.js
CHANGED
|
@@ -459,41 +459,6 @@ class OutpostsApi extends runtime.BaseAPI {
|
|
|
459
459
|
return yield response.value();
|
|
460
460
|
});
|
|
461
461
|
}
|
|
462
|
-
/**
|
|
463
|
-
* LDAPProvider Viewset
|
|
464
|
-
*/
|
|
465
|
-
outpostsLdapRetrieveRaw(requestParameters, initOverrides) {
|
|
466
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
467
|
-
if (requestParameters.id === null || requestParameters.id === undefined) {
|
|
468
|
-
throw new runtime.RequiredError('id', 'Required parameter requestParameters.id was null or undefined when calling outpostsLdapRetrieve.');
|
|
469
|
-
}
|
|
470
|
-
const queryParameters = {};
|
|
471
|
-
const headerParameters = {};
|
|
472
|
-
if (this.configuration && this.configuration.accessToken) {
|
|
473
|
-
const token = this.configuration.accessToken;
|
|
474
|
-
const tokenString = yield token("authentik", []);
|
|
475
|
-
if (tokenString) {
|
|
476
|
-
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
477
|
-
}
|
|
478
|
-
}
|
|
479
|
-
const response = yield this.request({
|
|
480
|
-
path: `/outposts/ldap/{id}/`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters.id))),
|
|
481
|
-
method: 'GET',
|
|
482
|
-
headers: headerParameters,
|
|
483
|
-
query: queryParameters,
|
|
484
|
-
}, initOverrides);
|
|
485
|
-
return new runtime.JSONApiResponse(response, (jsonValue) => (0, models_1.LDAPOutpostConfigFromJSON)(jsonValue));
|
|
486
|
-
});
|
|
487
|
-
}
|
|
488
|
-
/**
|
|
489
|
-
* LDAPProvider Viewset
|
|
490
|
-
*/
|
|
491
|
-
outpostsLdapRetrieve(requestParameters, initOverrides) {
|
|
492
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
493
|
-
const response = yield this.outpostsLdapRetrieveRaw(requestParameters, initOverrides);
|
|
494
|
-
return yield response.value();
|
|
495
|
-
});
|
|
496
|
-
}
|
|
497
462
|
/**
|
|
498
463
|
* ProxyProvider Viewset
|
|
499
464
|
*/
|
|
@@ -542,14 +507,17 @@ class OutpostsApi extends runtime.BaseAPI {
|
|
|
542
507
|
});
|
|
543
508
|
}
|
|
544
509
|
/**
|
|
545
|
-
*
|
|
510
|
+
* Check access to a single application by slug
|
|
546
511
|
*/
|
|
547
|
-
|
|
512
|
+
outpostsRadiusCheckAccessRetrieveRaw(requestParameters, initOverrides) {
|
|
548
513
|
return __awaiter(this, void 0, void 0, function* () {
|
|
549
514
|
if (requestParameters.id === null || requestParameters.id === undefined) {
|
|
550
|
-
throw new runtime.RequiredError('id', 'Required parameter requestParameters.id was null or undefined when calling
|
|
515
|
+
throw new runtime.RequiredError('id', 'Required parameter requestParameters.id was null or undefined when calling outpostsRadiusCheckAccessRetrieve.');
|
|
551
516
|
}
|
|
552
517
|
const queryParameters = {};
|
|
518
|
+
if (requestParameters.appSlug !== undefined) {
|
|
519
|
+
queryParameters['app_slug'] = requestParameters.appSlug;
|
|
520
|
+
}
|
|
553
521
|
const headerParameters = {};
|
|
554
522
|
if (this.configuration && this.configuration.accessToken) {
|
|
555
523
|
const token = this.configuration.accessToken;
|
|
@@ -559,20 +527,20 @@ class OutpostsApi extends runtime.BaseAPI {
|
|
|
559
527
|
}
|
|
560
528
|
}
|
|
561
529
|
const response = yield this.request({
|
|
562
|
-
path: `/outposts/
|
|
530
|
+
path: `/outposts/radius/{id}/check_access/`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters.id))),
|
|
563
531
|
method: 'GET',
|
|
564
532
|
headers: headerParameters,
|
|
565
533
|
query: queryParameters,
|
|
566
534
|
}, initOverrides);
|
|
567
|
-
return new runtime.JSONApiResponse(response, (jsonValue) => (0, models_1.
|
|
535
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => (0, models_1.RadiusCheckAccessFromJSON)(jsonValue));
|
|
568
536
|
});
|
|
569
537
|
}
|
|
570
538
|
/**
|
|
571
|
-
*
|
|
539
|
+
* Check access to a single application by slug
|
|
572
540
|
*/
|
|
573
|
-
|
|
541
|
+
outpostsRadiusCheckAccessRetrieve(requestParameters, initOverrides) {
|
|
574
542
|
return __awaiter(this, void 0, void 0, function* () {
|
|
575
|
-
const response = yield this.
|
|
543
|
+
const response = yield this.outpostsRadiusCheckAccessRetrieveRaw(requestParameters, initOverrides);
|
|
576
544
|
return yield response.value();
|
|
577
545
|
});
|
|
578
546
|
}
|
|
@@ -623,41 +591,6 @@ class OutpostsApi extends runtime.BaseAPI {
|
|
|
623
591
|
return yield response.value();
|
|
624
592
|
});
|
|
625
593
|
}
|
|
626
|
-
/**
|
|
627
|
-
* RadiusProvider Viewset
|
|
628
|
-
*/
|
|
629
|
-
outpostsRadiusRetrieveRaw(requestParameters, initOverrides) {
|
|
630
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
631
|
-
if (requestParameters.id === null || requestParameters.id === undefined) {
|
|
632
|
-
throw new runtime.RequiredError('id', 'Required parameter requestParameters.id was null or undefined when calling outpostsRadiusRetrieve.');
|
|
633
|
-
}
|
|
634
|
-
const queryParameters = {};
|
|
635
|
-
const headerParameters = {};
|
|
636
|
-
if (this.configuration && this.configuration.accessToken) {
|
|
637
|
-
const token = this.configuration.accessToken;
|
|
638
|
-
const tokenString = yield token("authentik", []);
|
|
639
|
-
if (tokenString) {
|
|
640
|
-
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
641
|
-
}
|
|
642
|
-
}
|
|
643
|
-
const response = yield this.request({
|
|
644
|
-
path: `/outposts/radius/{id}/`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters.id))),
|
|
645
|
-
method: 'GET',
|
|
646
|
-
headers: headerParameters,
|
|
647
|
-
query: queryParameters,
|
|
648
|
-
}, initOverrides);
|
|
649
|
-
return new runtime.JSONApiResponse(response, (jsonValue) => (0, models_1.RadiusOutpostConfigFromJSON)(jsonValue));
|
|
650
|
-
});
|
|
651
|
-
}
|
|
652
|
-
/**
|
|
653
|
-
* RadiusProvider Viewset
|
|
654
|
-
*/
|
|
655
|
-
outpostsRadiusRetrieve(requestParameters, initOverrides) {
|
|
656
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
657
|
-
const response = yield this.outpostsRadiusRetrieveRaw(requestParameters, initOverrides);
|
|
658
|
-
return yield response.value();
|
|
659
|
-
});
|
|
660
|
-
}
|
|
661
594
|
/**
|
|
662
595
|
* ServiceConnection Viewset
|
|
663
596
|
*/
|
|
@@ -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, PaginatedSAMLPropertyMappingList, PaginatedSCIMMappingList, PaginatedScopeMappingList, PatchedGoogleWorkspaceProviderMappingRequest, PatchedLDAPSourcePropertyMappingRequest, PatchedMicrosoftEntraProviderMappingRequest, PatchedNotificationWebhookMappingRequest, PatchedRACPropertyMappingRequest, PatchedSAMLPropertyMappingRequest, PatchedSCIMMappingRequest, PatchedScopeMappingRequest, PropertyMapping, PropertyMappingTestRequest, PropertyMappingTestResult, RACPropertyMapping, RACPropertyMappingRequest, 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, 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';
|
|
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;
|
|
@@ -147,6 +149,35 @@ export interface PropertymappingsRacUpdateRequest {
|
|
|
147
149
|
export interface PropertymappingsRacUsedByListRequest {
|
|
148
150
|
pmUuid: string;
|
|
149
151
|
}
|
|
152
|
+
export interface PropertymappingsRadiusCreateRequest {
|
|
153
|
+
radiusProviderPropertyMappingRequest: RadiusProviderPropertyMappingRequest;
|
|
154
|
+
}
|
|
155
|
+
export interface PropertymappingsRadiusDestroyRequest {
|
|
156
|
+
pmUuid: string;
|
|
157
|
+
}
|
|
158
|
+
export interface PropertymappingsRadiusListRequest {
|
|
159
|
+
managed?: Array<string>;
|
|
160
|
+
managedIsnull?: boolean;
|
|
161
|
+
name?: string;
|
|
162
|
+
ordering?: string;
|
|
163
|
+
page?: number;
|
|
164
|
+
pageSize?: number;
|
|
165
|
+
search?: string;
|
|
166
|
+
}
|
|
167
|
+
export interface PropertymappingsRadiusPartialUpdateRequest {
|
|
168
|
+
pmUuid: string;
|
|
169
|
+
patchedRadiusProviderPropertyMappingRequest?: PatchedRadiusProviderPropertyMappingRequest;
|
|
170
|
+
}
|
|
171
|
+
export interface PropertymappingsRadiusRetrieveRequest {
|
|
172
|
+
pmUuid: string;
|
|
173
|
+
}
|
|
174
|
+
export interface PropertymappingsRadiusUpdateRequest {
|
|
175
|
+
pmUuid: string;
|
|
176
|
+
radiusProviderPropertyMappingRequest: RadiusProviderPropertyMappingRequest;
|
|
177
|
+
}
|
|
178
|
+
export interface PropertymappingsRadiusUsedByListRequest {
|
|
179
|
+
pmUuid: string;
|
|
180
|
+
}
|
|
150
181
|
export interface PropertymappingsSamlCreateRequest {
|
|
151
182
|
sAMLPropertyMappingRequest: SAMLPropertyMappingRequest;
|
|
152
183
|
}
|
|
@@ -154,15 +185,12 @@ export interface PropertymappingsSamlDestroyRequest {
|
|
|
154
185
|
pmUuid: string;
|
|
155
186
|
}
|
|
156
187
|
export interface PropertymappingsSamlListRequest {
|
|
157
|
-
expression?: string;
|
|
158
|
-
friendlyName?: string;
|
|
159
188
|
managed?: Array<string>;
|
|
189
|
+
managedIsnull?: boolean;
|
|
160
190
|
name?: string;
|
|
161
191
|
ordering?: string;
|
|
162
192
|
page?: number;
|
|
163
193
|
pageSize?: number;
|
|
164
|
-
pmUuid?: string;
|
|
165
|
-
samlName?: string;
|
|
166
194
|
search?: string;
|
|
167
195
|
}
|
|
168
196
|
export interface PropertymappingsSamlPartialUpdateRequest {
|
|
@@ -186,13 +214,12 @@ export interface PropertymappingsScimDestroyRequest {
|
|
|
186
214
|
pmUuid: string;
|
|
187
215
|
}
|
|
188
216
|
export interface PropertymappingsScimListRequest {
|
|
189
|
-
expression?: string;
|
|
190
217
|
managed?: Array<string>;
|
|
218
|
+
managedIsnull?: boolean;
|
|
191
219
|
name?: string;
|
|
192
220
|
ordering?: string;
|
|
193
221
|
page?: number;
|
|
194
222
|
pageSize?: number;
|
|
195
|
-
pmUuid?: string;
|
|
196
223
|
search?: string;
|
|
197
224
|
}
|
|
198
225
|
export interface PropertymappingsScimPartialUpdateRequest {
|
|
@@ -217,6 +244,7 @@ export interface PropertymappingsScopeDestroyRequest {
|
|
|
217
244
|
}
|
|
218
245
|
export interface PropertymappingsScopeListRequest {
|
|
219
246
|
managed?: Array<string>;
|
|
247
|
+
managedIsnull?: boolean;
|
|
220
248
|
name?: string;
|
|
221
249
|
ordering?: string;
|
|
222
250
|
page?: number;
|
|
@@ -245,13 +273,12 @@ export interface PropertymappingsSourceLdapDestroyRequest {
|
|
|
245
273
|
pmUuid: string;
|
|
246
274
|
}
|
|
247
275
|
export interface PropertymappingsSourceLdapListRequest {
|
|
248
|
-
expression?: string;
|
|
249
276
|
managed?: Array<string>;
|
|
277
|
+
managedIsnull?: boolean;
|
|
250
278
|
name?: string;
|
|
251
279
|
ordering?: string;
|
|
252
280
|
page?: number;
|
|
253
281
|
pageSize?: number;
|
|
254
|
-
pmUuid?: string;
|
|
255
282
|
search?: string;
|
|
256
283
|
}
|
|
257
284
|
export interface PropertymappingsSourceLdapPartialUpdateRequest {
|
|
@@ -544,6 +571,62 @@ export declare class PropertymappingsApi extends runtime.BaseAPI {
|
|
|
544
571
|
* Get a list of all objects that use this object
|
|
545
572
|
*/
|
|
546
573
|
propertymappingsRacUsedByList(requestParameters: PropertymappingsRacUsedByListRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<UsedBy>>;
|
|
574
|
+
/**
|
|
575
|
+
* RadiusProviderPropertyMapping Viewset
|
|
576
|
+
*/
|
|
577
|
+
propertymappingsRadiusCreateRaw(requestParameters: PropertymappingsRadiusCreateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<RadiusProviderPropertyMapping>>;
|
|
578
|
+
/**
|
|
579
|
+
* RadiusProviderPropertyMapping Viewset
|
|
580
|
+
*/
|
|
581
|
+
propertymappingsRadiusCreate(requestParameters: PropertymappingsRadiusCreateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<RadiusProviderPropertyMapping>;
|
|
582
|
+
/**
|
|
583
|
+
* RadiusProviderPropertyMapping Viewset
|
|
584
|
+
*/
|
|
585
|
+
propertymappingsRadiusDestroyRaw(requestParameters: PropertymappingsRadiusDestroyRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
586
|
+
/**
|
|
587
|
+
* RadiusProviderPropertyMapping Viewset
|
|
588
|
+
*/
|
|
589
|
+
propertymappingsRadiusDestroy(requestParameters: PropertymappingsRadiusDestroyRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
590
|
+
/**
|
|
591
|
+
* RadiusProviderPropertyMapping Viewset
|
|
592
|
+
*/
|
|
593
|
+
propertymappingsRadiusListRaw(requestParameters: PropertymappingsRadiusListRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PaginatedRadiusProviderPropertyMappingList>>;
|
|
594
|
+
/**
|
|
595
|
+
* RadiusProviderPropertyMapping Viewset
|
|
596
|
+
*/
|
|
597
|
+
propertymappingsRadiusList(requestParameters?: PropertymappingsRadiusListRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PaginatedRadiusProviderPropertyMappingList>;
|
|
598
|
+
/**
|
|
599
|
+
* RadiusProviderPropertyMapping Viewset
|
|
600
|
+
*/
|
|
601
|
+
propertymappingsRadiusPartialUpdateRaw(requestParameters: PropertymappingsRadiusPartialUpdateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<RadiusProviderPropertyMapping>>;
|
|
602
|
+
/**
|
|
603
|
+
* RadiusProviderPropertyMapping Viewset
|
|
604
|
+
*/
|
|
605
|
+
propertymappingsRadiusPartialUpdate(requestParameters: PropertymappingsRadiusPartialUpdateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<RadiusProviderPropertyMapping>;
|
|
606
|
+
/**
|
|
607
|
+
* RadiusProviderPropertyMapping Viewset
|
|
608
|
+
*/
|
|
609
|
+
propertymappingsRadiusRetrieveRaw(requestParameters: PropertymappingsRadiusRetrieveRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<RadiusProviderPropertyMapping>>;
|
|
610
|
+
/**
|
|
611
|
+
* RadiusProviderPropertyMapping Viewset
|
|
612
|
+
*/
|
|
613
|
+
propertymappingsRadiusRetrieve(requestParameters: PropertymappingsRadiusRetrieveRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<RadiusProviderPropertyMapping>;
|
|
614
|
+
/**
|
|
615
|
+
* RadiusProviderPropertyMapping Viewset
|
|
616
|
+
*/
|
|
617
|
+
propertymappingsRadiusUpdateRaw(requestParameters: PropertymappingsRadiusUpdateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<RadiusProviderPropertyMapping>>;
|
|
618
|
+
/**
|
|
619
|
+
* RadiusProviderPropertyMapping Viewset
|
|
620
|
+
*/
|
|
621
|
+
propertymappingsRadiusUpdate(requestParameters: PropertymappingsRadiusUpdateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<RadiusProviderPropertyMapping>;
|
|
622
|
+
/**
|
|
623
|
+
* Get a list of all objects that use this object
|
|
624
|
+
*/
|
|
625
|
+
propertymappingsRadiusUsedByListRaw(requestParameters: PropertymappingsRadiusUsedByListRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<UsedBy>>>;
|
|
626
|
+
/**
|
|
627
|
+
* Get a list of all objects that use this object
|
|
628
|
+
*/
|
|
629
|
+
propertymappingsRadiusUsedByList(requestParameters: PropertymappingsRadiusUsedByListRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<UsedBy>>;
|
|
547
630
|
/**
|
|
548
631
|
* SAMLPropertyMapping Viewset
|
|
549
632
|
*/
|