/* tslint:disable */ /* eslint-disable */ /** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { mapValues } from '../runtime'; import type { PolicyEngineMode } from './PolicyEngineMode'; import { PolicyEngineModeFromJSON, PolicyEngineModeFromJSONTyped, PolicyEngineModeToJSON, PolicyEngineModeToJSONTyped, } from './PolicyEngineMode'; import type { UserMatchingModeEnum } from './UserMatchingModeEnum'; import { UserMatchingModeEnumFromJSON, UserMatchingModeEnumFromJSONTyped, UserMatchingModeEnumToJSON, UserMatchingModeEnumToJSONTyped, } from './UserMatchingModeEnum'; /** * LDAP Source Serializer * @export * @interface LDAPSource */ export interface LDAPSource { /** * * @type {string} * @memberof LDAPSource */ readonly pk: string; /** * Source's display Name. * @type {string} * @memberof LDAPSource */ name: string; /** * Internal source name, used in URLs. * @type {string} * @memberof LDAPSource */ slug: string; /** * * @type {boolean} * @memberof LDAPSource */ enabled?: boolean; /** * Flow to use when authenticating existing users. * @type {string} * @memberof LDAPSource */ authenticationFlow?: string | null; /** * Flow to use when enrolling new users. * @type {string} * @memberof LDAPSource */ enrollmentFlow?: string | null; /** * * @type {Array} * @memberof LDAPSource */ userPropertyMappings?: Array; /** * * @type {Array} * @memberof LDAPSource */ groupPropertyMappings?: Array; /** * Get object component so that we know how to edit the object * @type {string} * @memberof LDAPSource */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof LDAPSource */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof LDAPSource */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof LDAPSource */ readonly metaModelName: string; /** * * @type {PolicyEngineMode} * @memberof LDAPSource */ policyEngineMode?: PolicyEngineMode; /** * How the source determines if an existing user should be authenticated or a new user enrolled. * @type {UserMatchingModeEnum} * @memberof LDAPSource */ userMatchingMode?: UserMatchingModeEnum; /** * 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. * @type {string} * @memberof LDAPSource */ readonly managed: string | null; /** * * @type {string} * @memberof LDAPSource */ userPathTemplate?: string; /** * * @type {string} * @memberof LDAPSource */ readonly icon: string; /** * * @type {string} * @memberof LDAPSource */ serverUri: string; /** * Optionally verify the LDAP Server's Certificate against the CA Chain in this keypair. * @type {string} * @memberof LDAPSource */ peerCertificate?: string | null; /** * Client certificate to authenticate against the LDAP Server's Certificate. * @type {string} * @memberof LDAPSource */ clientCertificate?: string | null; /** * * @type {string} * @memberof LDAPSource */ bindCn?: string; /** * * @type {boolean} * @memberof LDAPSource */ startTls?: boolean; /** * * @type {boolean} * @memberof LDAPSource */ sni?: boolean; /** * * @type {string} * @memberof LDAPSource */ baseDn: string; /** * Prepended to Base DN for User-queries. * @type {string} * @memberof LDAPSource */ additionalUserDn?: string; /** * Prepended to Base DN for Group-queries. * @type {string} * @memberof LDAPSource */ additionalGroupDn?: string; /** * Consider Objects matching this filter to be Users. * @type {string} * @memberof LDAPSource */ userObjectFilter?: string; /** * Consider Objects matching this filter to be Groups. * @type {string} * @memberof LDAPSource */ groupObjectFilter?: string; /** * Field which contains members of a group. * @type {string} * @memberof LDAPSource */ groupMembershipField?: string; /** * Attribute which matches the value of `group_membership_field`. * @type {string} * @memberof LDAPSource */ userMembershipAttribute?: string; /** * Field which contains a unique Identifier. * @type {string} * @memberof LDAPSource */ objectUniquenessField?: string; /** * Update internal authentik password when login succeeds with LDAP * @type {boolean} * @memberof LDAPSource */ passwordLoginUpdateInternalPassword?: boolean; /** * * @type {boolean} * @memberof LDAPSource */ syncUsers?: boolean; /** * When a user changes their password, sync it back to LDAP. This can only be enabled on a single LDAP source. * @type {boolean} * @memberof LDAPSource */ syncUsersPassword?: boolean; /** * * @type {boolean} * @memberof LDAPSource */ syncGroups?: boolean; /** * * @type {string} * @memberof LDAPSource */ syncParentGroup?: string | null; /** * Get cached source connectivity * @type {{ [key: string]: { [key: string]: string; }; }} * @memberof LDAPSource */ readonly connectivity: { [key: string]: { [key: string]: string; }; } | null; /** * Lookup group membership based on a user attribute instead of a group attribute. This allows nested group resolution on systems like FreeIPA and Active Directory * @type {boolean} * @memberof LDAPSource */ lookupGroupsFromUser?: boolean; /** * Delete authentik users and groups which were previously supplied by this source, but are now missing from it. * @type {boolean} * @memberof LDAPSource */ deleteNotFoundObjects?: boolean; } /** * Check if a given object implements the LDAPSource interface. */ export function instanceOfLDAPSource(value: object): value is LDAPSource { if (!('pk' in value) || value['pk'] === undefined) return false; if (!('name' in value) || value['name'] === undefined) return false; if (!('slug' in value) || value['slug'] === undefined) return false; if (!('component' in value) || value['component'] === undefined) return false; if (!('verboseName' in value) || value['verboseName'] === undefined) return false; if (!('verboseNamePlural' in value) || value['verboseNamePlural'] === undefined) return false; if (!('metaModelName' in value) || value['metaModelName'] === undefined) return false; if (!('managed' in value) || value['managed'] === undefined) return false; if (!('icon' in value) || value['icon'] === undefined) return false; if (!('serverUri' in value) || value['serverUri'] === undefined) return false; if (!('baseDn' in value) || value['baseDn'] === undefined) return false; if (!('connectivity' in value) || value['connectivity'] === undefined) return false; return true; } export function LDAPSourceFromJSON(json: any): LDAPSource { return LDAPSourceFromJSONTyped(json, false); } export function LDAPSourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): LDAPSource { if (json == null) { return json; } return { 'pk': json['pk'], 'name': json['name'], 'slug': json['slug'], 'enabled': json['enabled'] == null ? undefined : json['enabled'], 'authenticationFlow': json['authentication_flow'] == null ? undefined : json['authentication_flow'], 'enrollmentFlow': json['enrollment_flow'] == null ? undefined : json['enrollment_flow'], 'userPropertyMappings': json['user_property_mappings'] == null ? undefined : json['user_property_mappings'], 'groupPropertyMappings': json['group_property_mappings'] == null ? undefined : json['group_property_mappings'], 'component': json['component'], 'verboseName': json['verbose_name'], 'verboseNamePlural': json['verbose_name_plural'], 'metaModelName': json['meta_model_name'], 'policyEngineMode': json['policy_engine_mode'] == null ? undefined : PolicyEngineModeFromJSON(json['policy_engine_mode']), 'userMatchingMode': json['user_matching_mode'] == null ? undefined : UserMatchingModeEnumFromJSON(json['user_matching_mode']), 'managed': json['managed'], 'userPathTemplate': json['user_path_template'] == null ? undefined : json['user_path_template'], 'icon': json['icon'], 'serverUri': json['server_uri'], 'peerCertificate': json['peer_certificate'] == null ? undefined : json['peer_certificate'], 'clientCertificate': json['client_certificate'] == null ? undefined : json['client_certificate'], 'bindCn': json['bind_cn'] == null ? undefined : json['bind_cn'], 'startTls': json['start_tls'] == null ? undefined : json['start_tls'], 'sni': json['sni'] == null ? undefined : json['sni'], 'baseDn': json['base_dn'], 'additionalUserDn': json['additional_user_dn'] == null ? undefined : json['additional_user_dn'], 'additionalGroupDn': json['additional_group_dn'] == null ? undefined : json['additional_group_dn'], 'userObjectFilter': json['user_object_filter'] == null ? undefined : json['user_object_filter'], 'groupObjectFilter': json['group_object_filter'] == null ? undefined : json['group_object_filter'], 'groupMembershipField': json['group_membership_field'] == null ? undefined : json['group_membership_field'], 'userMembershipAttribute': json['user_membership_attribute'] == null ? undefined : json['user_membership_attribute'], 'objectUniquenessField': json['object_uniqueness_field'] == null ? undefined : json['object_uniqueness_field'], 'passwordLoginUpdateInternalPassword': json['password_login_update_internal_password'] == null ? undefined : json['password_login_update_internal_password'], 'syncUsers': json['sync_users'] == null ? undefined : json['sync_users'], 'syncUsersPassword': json['sync_users_password'] == null ? undefined : json['sync_users_password'], 'syncGroups': json['sync_groups'] == null ? undefined : json['sync_groups'], 'syncParentGroup': json['sync_parent_group'] == null ? undefined : json['sync_parent_group'], 'connectivity': json['connectivity'], 'lookupGroupsFromUser': json['lookup_groups_from_user'] == null ? undefined : json['lookup_groups_from_user'], 'deleteNotFoundObjects': json['delete_not_found_objects'] == null ? undefined : json['delete_not_found_objects'], }; } export function LDAPSourceToJSON(json: any): LDAPSource { return LDAPSourceToJSONTyped(json, false); } export function LDAPSourceToJSONTyped(value?: Omit | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'name': value['name'], 'slug': value['slug'], 'enabled': value['enabled'], 'authentication_flow': value['authenticationFlow'], 'enrollment_flow': value['enrollmentFlow'], 'user_property_mappings': value['userPropertyMappings'], 'group_property_mappings': value['groupPropertyMappings'], 'policy_engine_mode': PolicyEngineModeToJSON(value['policyEngineMode']), 'user_matching_mode': UserMatchingModeEnumToJSON(value['userMatchingMode']), 'user_path_template': value['userPathTemplate'], 'server_uri': value['serverUri'], 'peer_certificate': value['peerCertificate'], 'client_certificate': value['clientCertificate'], 'bind_cn': value['bindCn'], 'start_tls': value['startTls'], 'sni': value['sni'], 'base_dn': value['baseDn'], 'additional_user_dn': value['additionalUserDn'], 'additional_group_dn': value['additionalGroupDn'], 'user_object_filter': value['userObjectFilter'], 'group_object_filter': value['groupObjectFilter'], 'group_membership_field': value['groupMembershipField'], 'user_membership_attribute': value['userMembershipAttribute'], 'object_uniqueness_field': value['objectUniquenessField'], 'password_login_update_internal_password': value['passwordLoginUpdateInternalPassword'], 'sync_users': value['syncUsers'], 'sync_users_password': value['syncUsersPassword'], 'sync_groups': value['syncGroups'], 'sync_parent_group': value['syncParentGroup'], 'lookup_groups_from_user': value['lookupGroupsFromUser'], 'delete_not_found_objects': value['deleteNotFoundObjects'], }; }