Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 2.53 KB

File metadata and controls

42 lines (33 loc) · 2.53 KB

LDAPProviderRequest

LDAPProvider Serializer

Properties

Name Type Description Notes
name str
authentication_flow UUID Flow used for authentication when the associated application is accessed by an un-authenticated user. [optional]
authorization_flow UUID Flow used when authorizing this provider.
invalidation_flow UUID Flow used ending the session from a provider.
property_mappings List[UUID] [optional]
base_dn str DN under which objects are accessible. [optional]
certificate UUID [optional]
tls_server_name str [optional]
uid_start_number int The start for uidNumbers, this number is added to the user.pk to make sure that the numbers aren't too low for POSIX users. Default is 2000 to ensure that we don't collide with local users uidNumber [optional]
gid_start_number int The start for gidNumbers, this number is added to a number generated from the group.pk to make sure that the numbers aren't too low for POSIX groups. Default is 4000 to ensure that we don't collide with local groups or users primary groups gidNumber [optional]
search_mode LDAPAPIAccessMode [optional]
bind_mode LDAPAPIAccessMode [optional]
mfa_support bool When enabled, code-based multi-factor authentication can be used by appending a semicolon and the TOTP code to the password. This should only be enabled if all users that will bind to this provider have a TOTP device configured, as otherwise a password may incorrectly be rejected if it contains a semicolon. [optional]

Example

from authentik_client.models.ldap_provider_request import LDAPProviderRequest

# TODO update the JSON string below
json = "{}"
# create an instance of LDAPProviderRequest from a JSON string
ldap_provider_request_instance = LDAPProviderRequest.from_json(json)
# print the JSON string representation of the object
print(LDAPProviderRequest.to_json())

# convert the object into a dict
ldap_provider_request_dict = ldap_provider_request_instance.to_dict()
# create an instance of LDAPProviderRequest from a dict
ldap_provider_request_from_dict = LDAPProviderRequest.from_dict(ldap_provider_request_dict)

[Back to Model list] [Back to API list] [Back to README]