AuthenticationMethodLdapProperties Class

Ldap authentication method properties. This feature is in preview.

Inheritance
AuthenticationMethodLdapProperties

Constructor

AuthenticationMethodLdapProperties(*, server_hostname: Optional[str] = None, server_port: Optional[int] = None, service_user_distinguished_name: Optional[str] = None, service_user_password: Optional[str] = None, search_base_distinguished_name: Optional[str] = None, search_filter_template: Optional[str] = None, server_certificates: Optional[List[azure.mgmt.cosmosdb.models._models_py3.Certificate]] = None, **kwargs)

Variables

server_hostname
str

Hostname of the LDAP server.

server_port
int

Port of the LDAP server.

service_user_distinguished_name
str

Distinguished name of the look up user account, who can look up user details on authentication.

service_user_password
str

Password of the look up user.

search_base_distinguished_name
str

Distinguished name of the object to start the recursive search of users from.

search_filter_template
str

Template to use for searching. Defaults to (cn=%s) where %s will be replaced by the username used to login.

server_certificates
list[Certificate]