Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

LdapConfig

import type { LdapConfig } from "https://googleapis.deno.dev/v1/file:v1.ts";

LdapConfig contains all the parameters for connecting to LDAP servers.

interface LdapConfig {
domain?: string;
groupsOu?: string;
servers?: string[];
usersOu?: string;
}

§Properties

§
domain?: string
[src]

Required. The LDAP domain name in the format of my-domain.com.

§
groupsOu?: string
[src]

Optional. The groups Organizational Unit (OU) is optional. This parameter is a hint to allow faster lookup in the LDAP namespace. In case that this parameter is not provided, Filestore instance will query the whole LDAP namespace.

§
servers?: string[]
[src]

Required. The servers names are used for specifying the LDAP servers names. The LDAP servers names can come with two formats: 1. DNS name, for example: ldap.example1.com, ldap.example2.com. 2. IP address, for example: 10.0.0.1, 10.0.0.2, 10.0.0.3. All servers names must be in the same format: either all DNS names or all IP addresses.

§
usersOu?: string
[src]

Optional. The users Organizational Unit (OU) is optional. This parameter is a hint to allow faster lookup in the LDAP namespace. In case that this parameter is not provided, Filestore instance will query the whole LDAP namespace.