@goauthentik/api 2024.6.1-1721916595 → 2024.6.1-1722014086

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. package/.openapi-generator/FILES +5 -0
  2. package/dist/apis/OutpostsApi.d.ts +7 -28
  3. package/dist/apis/OutpostsApi.js +11 -78
  4. package/dist/apis/PropertymappingsApi.d.ts +92 -9
  5. package/dist/apis/PropertymappingsApi.js +289 -24
  6. package/dist/apis/RbacApi.d.ts +2 -0
  7. package/dist/apis/RbacApi.js +2 -0
  8. package/dist/esm/apis/OutpostsApi.d.ts +7 -28
  9. package/dist/esm/apis/OutpostsApi.js +12 -79
  10. package/dist/esm/apis/PropertymappingsApi.d.ts +92 -9
  11. package/dist/esm/apis/PropertymappingsApi.js +290 -25
  12. package/dist/esm/apis/RbacApi.d.ts +2 -0
  13. package/dist/esm/apis/RbacApi.js +2 -0
  14. package/dist/esm/models/ModelEnum.d.ts +1 -0
  15. package/dist/esm/models/ModelEnum.js +1 -0
  16. package/dist/esm/models/PaginatedRadiusProviderPropertyMappingList.d.ts +39 -0
  17. package/dist/esm/models/PaginatedRadiusProviderPropertyMappingList.js +48 -0
  18. package/dist/esm/models/PatchedRadiusProviderPropertyMappingRequest.d.ts +43 -0
  19. package/dist/esm/models/PatchedRadiusProviderPropertyMappingRequest.js +47 -0
  20. package/dist/esm/models/RadiusCheckAccess.d.ts +38 -0
  21. package/dist/esm/models/RadiusCheckAccess.js +47 -0
  22. package/dist/esm/models/RadiusProviderPropertyMapping.d.ts +73 -0
  23. package/dist/esm/models/RadiusProviderPropertyMapping.js +59 -0
  24. package/dist/esm/models/RadiusProviderPropertyMappingRequest.d.ts +43 -0
  25. package/dist/esm/models/RadiusProviderPropertyMappingRequest.js +49 -0
  26. package/dist/esm/models/index.d.ts +5 -0
  27. package/dist/esm/models/index.js +5 -0
  28. package/dist/models/ModelEnum.d.ts +1 -0
  29. package/dist/models/ModelEnum.js +1 -0
  30. package/dist/models/PaginatedRadiusProviderPropertyMappingList.d.ts +39 -0
  31. package/dist/models/PaginatedRadiusProviderPropertyMappingList.js +55 -0
  32. package/dist/models/PatchedRadiusProviderPropertyMappingRequest.d.ts +43 -0
  33. package/dist/models/PatchedRadiusProviderPropertyMappingRequest.js +54 -0
  34. package/dist/models/RadiusCheckAccess.d.ts +38 -0
  35. package/dist/models/RadiusCheckAccess.js +54 -0
  36. package/dist/models/RadiusProviderPropertyMapping.d.ts +73 -0
  37. package/dist/models/RadiusProviderPropertyMapping.js +66 -0
  38. package/dist/models/RadiusProviderPropertyMappingRequest.d.ts +43 -0
  39. package/dist/models/RadiusProviderPropertyMappingRequest.js +56 -0
  40. package/dist/models/index.d.ts +5 -0
  41. package/dist/models/index.js +5 -0
  42. package/package.json +1 -1
  43. package/src/apis/OutpostsApi.ts +17 -102
  44. package/src/apis/PropertymappingsApi.ts +380 -40
  45. package/src/apis/RbacApi.ts +2 -0
  46. package/src/models/ModelEnum.ts +1 -0
  47. package/src/models/PaginatedRadiusProviderPropertyMappingList.ts +88 -0
  48. package/src/models/PatchedRadiusProviderPropertyMappingRequest.ts +81 -0
  49. package/src/models/RadiusCheckAccess.ts +81 -0
  50. package/src/models/RadiusProviderPropertyMapping.ts +123 -0
  51. package/src/models/RadiusProviderPropertyMappingRequest.ts +83 -0
  52. package/src/models/index.ts +5 -0
@@ -0,0 +1,48 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * authentik
5
+ * Making authentication simple.
6
+ *
7
+ * The version of the OpenAPI document: 2024.6.1
8
+ * Contact: hello@goauthentik.io
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
+ import { PaginationFromJSON, PaginationToJSON, } from './Pagination';
15
+ import { RadiusProviderPropertyMappingFromJSON, RadiusProviderPropertyMappingToJSON, } from './RadiusProviderPropertyMapping';
16
+ /**
17
+ * Check if a given object implements the PaginatedRadiusProviderPropertyMappingList interface.
18
+ */
19
+ export function instanceOfPaginatedRadiusProviderPropertyMappingList(value) {
20
+ let isInstance = true;
21
+ isInstance = isInstance && "pagination" in value;
22
+ isInstance = isInstance && "results" in value;
23
+ return isInstance;
24
+ }
25
+ export function PaginatedRadiusProviderPropertyMappingListFromJSON(json) {
26
+ return PaginatedRadiusProviderPropertyMappingListFromJSONTyped(json, false);
27
+ }
28
+ export function PaginatedRadiusProviderPropertyMappingListFromJSONTyped(json, ignoreDiscriminator) {
29
+ if ((json === undefined) || (json === null)) {
30
+ return json;
31
+ }
32
+ return {
33
+ 'pagination': PaginationFromJSON(json['pagination']),
34
+ 'results': (json['results'].map(RadiusProviderPropertyMappingFromJSON)),
35
+ };
36
+ }
37
+ export function PaginatedRadiusProviderPropertyMappingListToJSON(value) {
38
+ if (value === undefined) {
39
+ return undefined;
40
+ }
41
+ if (value === null) {
42
+ return null;
43
+ }
44
+ return {
45
+ 'pagination': PaginationToJSON(value.pagination),
46
+ 'results': (value.results.map(RadiusProviderPropertyMappingToJSON)),
47
+ };
48
+ }
@@ -0,0 +1,43 @@
1
+ /**
2
+ * authentik
3
+ * Making authentication simple.
4
+ *
5
+ * The version of the OpenAPI document: 2024.6.1
6
+ * Contact: hello@goauthentik.io
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
+ /**
13
+ * RadiusProviderPropertyMapping Serializer
14
+ * @export
15
+ * @interface PatchedRadiusProviderPropertyMappingRequest
16
+ */
17
+ export interface PatchedRadiusProviderPropertyMappingRequest {
18
+ /**
19
+ * Objects that are managed by authentik. These objects are created and updated automatically. This flag only indicates that an object can be overwritten by migrations. You can still modify the objects via the API, but expect changes to be overwritten in a later update.
20
+ * @type {string}
21
+ * @memberof PatchedRadiusProviderPropertyMappingRequest
22
+ */
23
+ managed?: string | null;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof PatchedRadiusProviderPropertyMappingRequest
28
+ */
29
+ name?: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof PatchedRadiusProviderPropertyMappingRequest
34
+ */
35
+ expression?: string;
36
+ }
37
+ /**
38
+ * Check if a given object implements the PatchedRadiusProviderPropertyMappingRequest interface.
39
+ */
40
+ export declare function instanceOfPatchedRadiusProviderPropertyMappingRequest(value: object): boolean;
41
+ export declare function PatchedRadiusProviderPropertyMappingRequestFromJSON(json: any): PatchedRadiusProviderPropertyMappingRequest;
42
+ export declare function PatchedRadiusProviderPropertyMappingRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedRadiusProviderPropertyMappingRequest;
43
+ export declare function PatchedRadiusProviderPropertyMappingRequestToJSON(value?: PatchedRadiusProviderPropertyMappingRequest | null): any;
@@ -0,0 +1,47 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * authentik
5
+ * Making authentication simple.
6
+ *
7
+ * The version of the OpenAPI document: 2024.6.1
8
+ * Contact: hello@goauthentik.io
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
+ import { exists } from '../runtime';
15
+ /**
16
+ * Check if a given object implements the PatchedRadiusProviderPropertyMappingRequest interface.
17
+ */
18
+ export function instanceOfPatchedRadiusProviderPropertyMappingRequest(value) {
19
+ let isInstance = true;
20
+ return isInstance;
21
+ }
22
+ export function PatchedRadiusProviderPropertyMappingRequestFromJSON(json) {
23
+ return PatchedRadiusProviderPropertyMappingRequestFromJSONTyped(json, false);
24
+ }
25
+ export function PatchedRadiusProviderPropertyMappingRequestFromJSONTyped(json, ignoreDiscriminator) {
26
+ if ((json === undefined) || (json === null)) {
27
+ return json;
28
+ }
29
+ return {
30
+ 'managed': !exists(json, 'managed') ? undefined : json['managed'],
31
+ 'name': !exists(json, 'name') ? undefined : json['name'],
32
+ 'expression': !exists(json, 'expression') ? undefined : json['expression'],
33
+ };
34
+ }
35
+ export function PatchedRadiusProviderPropertyMappingRequestToJSON(value) {
36
+ if (value === undefined) {
37
+ return undefined;
38
+ }
39
+ if (value === null) {
40
+ return null;
41
+ }
42
+ return {
43
+ 'managed': value.managed,
44
+ 'name': value.name,
45
+ 'expression': value.expression,
46
+ };
47
+ }
@@ -0,0 +1,38 @@
1
+ /**
2
+ * authentik
3
+ * Making authentication simple.
4
+ *
5
+ * The version of the OpenAPI document: 2024.6.1
6
+ * Contact: hello@goauthentik.io
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 type { PolicyTestResult } from './PolicyTestResult';
13
+ /**
14
+ * Base serializer class which doesn't implement create/update methods
15
+ * @export
16
+ * @interface RadiusCheckAccess
17
+ */
18
+ export interface RadiusCheckAccess {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof RadiusCheckAccess
23
+ */
24
+ attributes?: string;
25
+ /**
26
+ *
27
+ * @type {PolicyTestResult}
28
+ * @memberof RadiusCheckAccess
29
+ */
30
+ access: PolicyTestResult;
31
+ }
32
+ /**
33
+ * Check if a given object implements the RadiusCheckAccess interface.
34
+ */
35
+ export declare function instanceOfRadiusCheckAccess(value: object): boolean;
36
+ export declare function RadiusCheckAccessFromJSON(json: any): RadiusCheckAccess;
37
+ export declare function RadiusCheckAccessFromJSONTyped(json: any, ignoreDiscriminator: boolean): RadiusCheckAccess;
38
+ export declare function RadiusCheckAccessToJSON(value?: RadiusCheckAccess | null): any;
@@ -0,0 +1,47 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * authentik
5
+ * Making authentication simple.
6
+ *
7
+ * The version of the OpenAPI document: 2024.6.1
8
+ * Contact: hello@goauthentik.io
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
+ import { exists } from '../runtime';
15
+ import { PolicyTestResultFromJSON, PolicyTestResultToJSON, } from './PolicyTestResult';
16
+ /**
17
+ * Check if a given object implements the RadiusCheckAccess interface.
18
+ */
19
+ export function instanceOfRadiusCheckAccess(value) {
20
+ let isInstance = true;
21
+ isInstance = isInstance && "access" in value;
22
+ return isInstance;
23
+ }
24
+ export function RadiusCheckAccessFromJSON(json) {
25
+ return RadiusCheckAccessFromJSONTyped(json, false);
26
+ }
27
+ export function RadiusCheckAccessFromJSONTyped(json, ignoreDiscriminator) {
28
+ if ((json === undefined) || (json === null)) {
29
+ return json;
30
+ }
31
+ return {
32
+ 'attributes': !exists(json, 'attributes') ? undefined : json['attributes'],
33
+ 'access': PolicyTestResultFromJSON(json['access']),
34
+ };
35
+ }
36
+ export function RadiusCheckAccessToJSON(value) {
37
+ if (value === undefined) {
38
+ return undefined;
39
+ }
40
+ if (value === null) {
41
+ return null;
42
+ }
43
+ return {
44
+ 'attributes': value.attributes,
45
+ 'access': PolicyTestResultToJSON(value.access),
46
+ };
47
+ }
@@ -0,0 +1,73 @@
1
+ /**
2
+ * authentik
3
+ * Making authentication simple.
4
+ *
5
+ * The version of the OpenAPI document: 2024.6.1
6
+ * Contact: hello@goauthentik.io
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
+ /**
13
+ * RadiusProviderPropertyMapping Serializer
14
+ * @export
15
+ * @interface RadiusProviderPropertyMapping
16
+ */
17
+ export interface RadiusProviderPropertyMapping {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof RadiusProviderPropertyMapping
22
+ */
23
+ readonly pk: string;
24
+ /**
25
+ * Objects that are managed by authentik. These objects are created and updated automatically. This flag only indicates that an object can be overwritten by migrations. You can still modify the objects via the API, but expect changes to be overwritten in a later update.
26
+ * @type {string}
27
+ * @memberof RadiusProviderPropertyMapping
28
+ */
29
+ managed?: string | null;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof RadiusProviderPropertyMapping
34
+ */
35
+ name: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof RadiusProviderPropertyMapping
40
+ */
41
+ expression: string;
42
+ /**
43
+ * Get object's component so that we know how to edit the object
44
+ * @type {string}
45
+ * @memberof RadiusProviderPropertyMapping
46
+ */
47
+ readonly component: string;
48
+ /**
49
+ * Return object's verbose_name
50
+ * @type {string}
51
+ * @memberof RadiusProviderPropertyMapping
52
+ */
53
+ readonly verboseName: string;
54
+ /**
55
+ * Return object's plural verbose_name
56
+ * @type {string}
57
+ * @memberof RadiusProviderPropertyMapping
58
+ */
59
+ readonly verboseNamePlural: string;
60
+ /**
61
+ * Return internal model name
62
+ * @type {string}
63
+ * @memberof RadiusProviderPropertyMapping
64
+ */
65
+ readonly metaModelName: string;
66
+ }
67
+ /**
68
+ * Check if a given object implements the RadiusProviderPropertyMapping interface.
69
+ */
70
+ export declare function instanceOfRadiusProviderPropertyMapping(value: object): boolean;
71
+ export declare function RadiusProviderPropertyMappingFromJSON(json: any): RadiusProviderPropertyMapping;
72
+ export declare function RadiusProviderPropertyMappingFromJSONTyped(json: any, ignoreDiscriminator: boolean): RadiusProviderPropertyMapping;
73
+ export declare function RadiusProviderPropertyMappingToJSON(value?: RadiusProviderPropertyMapping | null): any;
@@ -0,0 +1,59 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * authentik
5
+ * Making authentication simple.
6
+ *
7
+ * The version of the OpenAPI document: 2024.6.1
8
+ * Contact: hello@goauthentik.io
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
+ import { exists } from '../runtime';
15
+ /**
16
+ * Check if a given object implements the RadiusProviderPropertyMapping interface.
17
+ */
18
+ export function instanceOfRadiusProviderPropertyMapping(value) {
19
+ let isInstance = true;
20
+ isInstance = isInstance && "pk" in value;
21
+ isInstance = isInstance && "name" in value;
22
+ isInstance = isInstance && "expression" in value;
23
+ isInstance = isInstance && "component" in value;
24
+ isInstance = isInstance && "verboseName" in value;
25
+ isInstance = isInstance && "verboseNamePlural" in value;
26
+ isInstance = isInstance && "metaModelName" in value;
27
+ return isInstance;
28
+ }
29
+ export function RadiusProviderPropertyMappingFromJSON(json) {
30
+ return RadiusProviderPropertyMappingFromJSONTyped(json, false);
31
+ }
32
+ export function RadiusProviderPropertyMappingFromJSONTyped(json, ignoreDiscriminator) {
33
+ if ((json === undefined) || (json === null)) {
34
+ return json;
35
+ }
36
+ return {
37
+ 'pk': json['pk'],
38
+ 'managed': !exists(json, 'managed') ? undefined : json['managed'],
39
+ 'name': json['name'],
40
+ 'expression': json['expression'],
41
+ 'component': json['component'],
42
+ 'verboseName': json['verbose_name'],
43
+ 'verboseNamePlural': json['verbose_name_plural'],
44
+ 'metaModelName': json['meta_model_name'],
45
+ };
46
+ }
47
+ export function RadiusProviderPropertyMappingToJSON(value) {
48
+ if (value === undefined) {
49
+ return undefined;
50
+ }
51
+ if (value === null) {
52
+ return null;
53
+ }
54
+ return {
55
+ 'managed': value.managed,
56
+ 'name': value.name,
57
+ 'expression': value.expression,
58
+ };
59
+ }
@@ -0,0 +1,43 @@
1
+ /**
2
+ * authentik
3
+ * Making authentication simple.
4
+ *
5
+ * The version of the OpenAPI document: 2024.6.1
6
+ * Contact: hello@goauthentik.io
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
+ /**
13
+ * RadiusProviderPropertyMapping Serializer
14
+ * @export
15
+ * @interface RadiusProviderPropertyMappingRequest
16
+ */
17
+ export interface RadiusProviderPropertyMappingRequest {
18
+ /**
19
+ * Objects that are managed by authentik. These objects are created and updated automatically. This flag only indicates that an object can be overwritten by migrations. You can still modify the objects via the API, but expect changes to be overwritten in a later update.
20
+ * @type {string}
21
+ * @memberof RadiusProviderPropertyMappingRequest
22
+ */
23
+ managed?: string | null;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof RadiusProviderPropertyMappingRequest
28
+ */
29
+ name: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof RadiusProviderPropertyMappingRequest
34
+ */
35
+ expression: string;
36
+ }
37
+ /**
38
+ * Check if a given object implements the RadiusProviderPropertyMappingRequest interface.
39
+ */
40
+ export declare function instanceOfRadiusProviderPropertyMappingRequest(value: object): boolean;
41
+ export declare function RadiusProviderPropertyMappingRequestFromJSON(json: any): RadiusProviderPropertyMappingRequest;
42
+ export declare function RadiusProviderPropertyMappingRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): RadiusProviderPropertyMappingRequest;
43
+ export declare function RadiusProviderPropertyMappingRequestToJSON(value?: RadiusProviderPropertyMappingRequest | null): any;
@@ -0,0 +1,49 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * authentik
5
+ * Making authentication simple.
6
+ *
7
+ * The version of the OpenAPI document: 2024.6.1
8
+ * Contact: hello@goauthentik.io
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
+ import { exists } from '../runtime';
15
+ /**
16
+ * Check if a given object implements the RadiusProviderPropertyMappingRequest interface.
17
+ */
18
+ export function instanceOfRadiusProviderPropertyMappingRequest(value) {
19
+ let isInstance = true;
20
+ isInstance = isInstance && "name" in value;
21
+ isInstance = isInstance && "expression" in value;
22
+ return isInstance;
23
+ }
24
+ export function RadiusProviderPropertyMappingRequestFromJSON(json) {
25
+ return RadiusProviderPropertyMappingRequestFromJSONTyped(json, false);
26
+ }
27
+ export function RadiusProviderPropertyMappingRequestFromJSONTyped(json, ignoreDiscriminator) {
28
+ if ((json === undefined) || (json === null)) {
29
+ return json;
30
+ }
31
+ return {
32
+ 'managed': !exists(json, 'managed') ? undefined : json['managed'],
33
+ 'name': json['name'],
34
+ 'expression': json['expression'],
35
+ };
36
+ }
37
+ export function RadiusProviderPropertyMappingRequestToJSON(value) {
38
+ if (value === undefined) {
39
+ return undefined;
40
+ }
41
+ if (value === null) {
42
+ return null;
43
+ }
44
+ return {
45
+ 'managed': value.managed,
46
+ 'name': value.name,
47
+ 'expression': value.expression,
48
+ };
49
+ }
@@ -296,6 +296,7 @@ export * from './PaginatedRACPropertyMappingList';
296
296
  export * from './PaginatedRACProviderList';
297
297
  export * from './PaginatedRadiusOutpostConfigList';
298
298
  export * from './PaginatedRadiusProviderList';
299
+ export * from './PaginatedRadiusProviderPropertyMappingList';
299
300
  export * from './PaginatedReputationList';
300
301
  export * from './PaginatedReputationPolicyList';
301
302
  export * from './PaginatedRoleAssignedObjectPermissionList';
@@ -401,6 +402,7 @@ export * from './PatchedPromptStageRequest';
401
402
  export * from './PatchedProxyProviderRequest';
402
403
  export * from './PatchedRACPropertyMappingRequest';
403
404
  export * from './PatchedRACProviderRequest';
405
+ export * from './PatchedRadiusProviderPropertyMappingRequest';
404
406
  export * from './PatchedRadiusProviderRequest';
405
407
  export * from './PatchedReputationPolicyRequest';
406
408
  export * from './PatchedRoleRequest';
@@ -469,8 +471,11 @@ export * from './RACPropertyMapping';
469
471
  export * from './RACPropertyMappingRequest';
470
472
  export * from './RACProvider';
471
473
  export * from './RACProviderRequest';
474
+ export * from './RadiusCheckAccess';
472
475
  export * from './RadiusOutpostConfig';
473
476
  export * from './RadiusProvider';
477
+ export * from './RadiusProviderPropertyMapping';
478
+ export * from './RadiusProviderPropertyMappingRequest';
474
479
  export * from './RadiusProviderRequest';
475
480
  export * from './RedirectChallenge';
476
481
  export * from './Reputation';
@@ -298,6 +298,7 @@ export * from './PaginatedRACPropertyMappingList';
298
298
  export * from './PaginatedRACProviderList';
299
299
  export * from './PaginatedRadiusOutpostConfigList';
300
300
  export * from './PaginatedRadiusProviderList';
301
+ export * from './PaginatedRadiusProviderPropertyMappingList';
301
302
  export * from './PaginatedReputationList';
302
303
  export * from './PaginatedReputationPolicyList';
303
304
  export * from './PaginatedRoleAssignedObjectPermissionList';
@@ -403,6 +404,7 @@ export * from './PatchedPromptStageRequest';
403
404
  export * from './PatchedProxyProviderRequest';
404
405
  export * from './PatchedRACPropertyMappingRequest';
405
406
  export * from './PatchedRACProviderRequest';
407
+ export * from './PatchedRadiusProviderPropertyMappingRequest';
406
408
  export * from './PatchedRadiusProviderRequest';
407
409
  export * from './PatchedReputationPolicyRequest';
408
410
  export * from './PatchedRoleRequest';
@@ -471,8 +473,11 @@ export * from './RACPropertyMapping';
471
473
  export * from './RACPropertyMappingRequest';
472
474
  export * from './RACProvider';
473
475
  export * from './RACProviderRequest';
476
+ export * from './RadiusCheckAccess';
474
477
  export * from './RadiusOutpostConfig';
475
478
  export * from './RadiusProvider';
479
+ export * from './RadiusProviderPropertyMapping';
480
+ export * from './RadiusProviderPropertyMappingRequest';
476
481
  export * from './RadiusProviderRequest';
477
482
  export * from './RedirectChallenge';
478
483
  export * from './Reputation';
@@ -33,6 +33,7 @@ export declare const ModelEnum: {
33
33
  readonly ProvidersOauth2Oauth2provider: "authentik_providers_oauth2.oauth2provider";
34
34
  readonly ProvidersProxyProxyprovider: "authentik_providers_proxy.proxyprovider";
35
35
  readonly ProvidersRadiusRadiusprovider: "authentik_providers_radius.radiusprovider";
36
+ readonly ProvidersRadiusRadiusproviderpropertymapping: "authentik_providers_radius.radiusproviderpropertymapping";
36
37
  readonly ProvidersSamlSamlprovider: "authentik_providers_saml.samlprovider";
37
38
  readonly ProvidersSamlSamlpropertymapping: "authentik_providers_saml.samlpropertymapping";
38
39
  readonly ProvidersScimScimprovider: "authentik_providers_scim.scimprovider";
@@ -38,6 +38,7 @@ exports.ModelEnum = {
38
38
  ProvidersOauth2Oauth2provider: 'authentik_providers_oauth2.oauth2provider',
39
39
  ProvidersProxyProxyprovider: 'authentik_providers_proxy.proxyprovider',
40
40
  ProvidersRadiusRadiusprovider: 'authentik_providers_radius.radiusprovider',
41
+ ProvidersRadiusRadiusproviderpropertymapping: 'authentik_providers_radius.radiusproviderpropertymapping',
41
42
  ProvidersSamlSamlprovider: 'authentik_providers_saml.samlprovider',
42
43
  ProvidersSamlSamlpropertymapping: 'authentik_providers_saml.samlpropertymapping',
43
44
  ProvidersScimScimprovider: 'authentik_providers_scim.scimprovider',
@@ -0,0 +1,39 @@
1
+ /**
2
+ * authentik
3
+ * Making authentication simple.
4
+ *
5
+ * The version of the OpenAPI document: 2024.6.1
6
+ * Contact: hello@goauthentik.io
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 type { Pagination } from './Pagination';
13
+ import type { RadiusProviderPropertyMapping } from './RadiusProviderPropertyMapping';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface PaginatedRadiusProviderPropertyMappingList
18
+ */
19
+ export interface PaginatedRadiusProviderPropertyMappingList {
20
+ /**
21
+ *
22
+ * @type {Pagination}
23
+ * @memberof PaginatedRadiusProviderPropertyMappingList
24
+ */
25
+ pagination: Pagination;
26
+ /**
27
+ *
28
+ * @type {Array<RadiusProviderPropertyMapping>}
29
+ * @memberof PaginatedRadiusProviderPropertyMappingList
30
+ */
31
+ results: Array<RadiusProviderPropertyMapping>;
32
+ }
33
+ /**
34
+ * Check if a given object implements the PaginatedRadiusProviderPropertyMappingList interface.
35
+ */
36
+ export declare function instanceOfPaginatedRadiusProviderPropertyMappingList(value: object): boolean;
37
+ export declare function PaginatedRadiusProviderPropertyMappingListFromJSON(json: any): PaginatedRadiusProviderPropertyMappingList;
38
+ export declare function PaginatedRadiusProviderPropertyMappingListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedRadiusProviderPropertyMappingList;
39
+ export declare function PaginatedRadiusProviderPropertyMappingListToJSON(value?: PaginatedRadiusProviderPropertyMappingList | null): any;
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * authentik
6
+ * Making authentication simple.
7
+ *
8
+ * The version of the OpenAPI document: 2024.6.1
9
+ * Contact: hello@goauthentik.io
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.PaginatedRadiusProviderPropertyMappingListToJSON = exports.PaginatedRadiusProviderPropertyMappingListFromJSONTyped = exports.PaginatedRadiusProviderPropertyMappingListFromJSON = exports.instanceOfPaginatedRadiusProviderPropertyMappingList = void 0;
17
+ const Pagination_1 = require("./Pagination");
18
+ const RadiusProviderPropertyMapping_1 = require("./RadiusProviderPropertyMapping");
19
+ /**
20
+ * Check if a given object implements the PaginatedRadiusProviderPropertyMappingList interface.
21
+ */
22
+ function instanceOfPaginatedRadiusProviderPropertyMappingList(value) {
23
+ let isInstance = true;
24
+ isInstance = isInstance && "pagination" in value;
25
+ isInstance = isInstance && "results" in value;
26
+ return isInstance;
27
+ }
28
+ exports.instanceOfPaginatedRadiusProviderPropertyMappingList = instanceOfPaginatedRadiusProviderPropertyMappingList;
29
+ function PaginatedRadiusProviderPropertyMappingListFromJSON(json) {
30
+ return PaginatedRadiusProviderPropertyMappingListFromJSONTyped(json, false);
31
+ }
32
+ exports.PaginatedRadiusProviderPropertyMappingListFromJSON = PaginatedRadiusProviderPropertyMappingListFromJSON;
33
+ function PaginatedRadiusProviderPropertyMappingListFromJSONTyped(json, ignoreDiscriminator) {
34
+ if ((json === undefined) || (json === null)) {
35
+ return json;
36
+ }
37
+ return {
38
+ 'pagination': (0, Pagination_1.PaginationFromJSON)(json['pagination']),
39
+ 'results': (json['results'].map(RadiusProviderPropertyMapping_1.RadiusProviderPropertyMappingFromJSON)),
40
+ };
41
+ }
42
+ exports.PaginatedRadiusProviderPropertyMappingListFromJSONTyped = PaginatedRadiusProviderPropertyMappingListFromJSONTyped;
43
+ function PaginatedRadiusProviderPropertyMappingListToJSON(value) {
44
+ if (value === undefined) {
45
+ return undefined;
46
+ }
47
+ if (value === null) {
48
+ return null;
49
+ }
50
+ return {
51
+ 'pagination': (0, Pagination_1.PaginationToJSON)(value.pagination),
52
+ 'results': (value.results.map(RadiusProviderPropertyMapping_1.RadiusProviderPropertyMappingToJSON)),
53
+ };
54
+ }
55
+ exports.PaginatedRadiusProviderPropertyMappingListToJSON = PaginatedRadiusProviderPropertyMappingListToJSON;
@@ -0,0 +1,43 @@
1
+ /**
2
+ * authentik
3
+ * Making authentication simple.
4
+ *
5
+ * The version of the OpenAPI document: 2024.6.1
6
+ * Contact: hello@goauthentik.io
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
+ /**
13
+ * RadiusProviderPropertyMapping Serializer
14
+ * @export
15
+ * @interface PatchedRadiusProviderPropertyMappingRequest
16
+ */
17
+ export interface PatchedRadiusProviderPropertyMappingRequest {
18
+ /**
19
+ * Objects that are managed by authentik. These objects are created and updated automatically. This flag only indicates that an object can be overwritten by migrations. You can still modify the objects via the API, but expect changes to be overwritten in a later update.
20
+ * @type {string}
21
+ * @memberof PatchedRadiusProviderPropertyMappingRequest
22
+ */
23
+ managed?: string | null;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof PatchedRadiusProviderPropertyMappingRequest
28
+ */
29
+ name?: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof PatchedRadiusProviderPropertyMappingRequest
34
+ */
35
+ expression?: string;
36
+ }
37
+ /**
38
+ * Check if a given object implements the PatchedRadiusProviderPropertyMappingRequest interface.
39
+ */
40
+ export declare function instanceOfPatchedRadiusProviderPropertyMappingRequest(value: object): boolean;
41
+ export declare function PatchedRadiusProviderPropertyMappingRequestFromJSON(json: any): PatchedRadiusProviderPropertyMappingRequest;
42
+ export declare function PatchedRadiusProviderPropertyMappingRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedRadiusProviderPropertyMappingRequest;
43
+ export declare function PatchedRadiusProviderPropertyMappingRequestToJSON(value?: PatchedRadiusProviderPropertyMappingRequest | null): any;