import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class LdapSettings extends pulumi.CustomResource { /** * Get an existing LdapSettings resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: LdapSettingsState, opts?: pulumi.CustomResourceOptions): LdapSettings; /** * Returns true if the given object is an instance of LdapSettings. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is LdapSettings; /** * Whether auto admin population is enabled */ readonly adminAutoPopulate: pulumi.Output; /** * LDAP admin group search settings */ readonly adminGroupSearchSettings: pulumi.Output; /** * Saved admin group list */ readonly adminGroups: pulumi.Output; /** * Enable anonymous mode. When enabled, ReaderDN and Password will not be used */ readonly anonymousMode: pulumi.Output; /** * Automatically provision users and assign them to matching LDAP group names */ readonly autoCreateUsers: pulumi.Output; /** * LDAP group search settings */ readonly groupSearchSettings: pulumi.Output; readonly ldapSettingsId: pulumi.Output; /** * Password of the account used to search users */ readonly password: pulumi.Output; /** * Account that will be used to search for users (e.g. cn=readonly-account,dc=ldap,dc=domain,dc=tld) */ readonly readerDn: pulumi.Output; /** * LDAP user search settings */ readonly searchSettings: pulumi.Output; /** * LDAP server type */ readonly serverType: pulumi.Output; /** * Whether LDAP connection should use StartTLS */ readonly startTls: pulumi.Output; /** * TLS configuration for LDAP */ readonly tlsConfig: pulumi.Output; /** * URL or IP address of the LDAP server (deprecated, use urls) */ readonly url: pulumi.Output; /** * URLs or IP addresses of the LDAP server */ readonly urls: pulumi.Output; /** * Create a LdapSettings resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: LdapSettingsArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering LdapSettings resources. */ export interface LdapSettingsState { /** * Whether auto admin population is enabled */ adminAutoPopulate?: pulumi.Input; /** * LDAP admin group search settings */ adminGroupSearchSettings?: pulumi.Input[] | undefined>; /** * Saved admin group list */ adminGroups?: pulumi.Input[] | undefined>; /** * Enable anonymous mode. When enabled, ReaderDN and Password will not be used */ anonymousMode?: pulumi.Input; /** * Automatically provision users and assign them to matching LDAP group names */ autoCreateUsers?: pulumi.Input; /** * LDAP group search settings */ groupSearchSettings?: pulumi.Input[] | undefined>; ldapSettingsId?: pulumi.Input; /** * Password of the account used to search users */ password?: pulumi.Input; /** * Account that will be used to search for users (e.g. cn=readonly-account,dc=ldap,dc=domain,dc=tld) */ readerDn?: pulumi.Input; /** * LDAP user search settings */ searchSettings?: pulumi.Input[] | undefined>; /** * LDAP server type */ serverType?: pulumi.Input; /** * Whether LDAP connection should use StartTLS */ startTls?: pulumi.Input; /** * TLS configuration for LDAP */ tlsConfig?: pulumi.Input; /** * URL or IP address of the LDAP server (deprecated, use urls) */ url?: pulumi.Input; /** * URLs or IP addresses of the LDAP server */ urls?: pulumi.Input[] | undefined>; } /** * The set of arguments for constructing a LdapSettings resource. */ export interface LdapSettingsArgs { /** * Whether auto admin population is enabled */ adminAutoPopulate?: pulumi.Input; /** * LDAP admin group search settings */ adminGroupSearchSettings?: pulumi.Input[] | undefined>; /** * Saved admin group list */ adminGroups?: pulumi.Input[] | undefined>; /** * Enable anonymous mode. When enabled, ReaderDN and Password will not be used */ anonymousMode?: pulumi.Input; /** * Automatically provision users and assign them to matching LDAP group names */ autoCreateUsers?: pulumi.Input; /** * LDAP group search settings */ groupSearchSettings?: pulumi.Input[] | undefined>; ldapSettingsId?: pulumi.Input; /** * Password of the account used to search users */ password?: pulumi.Input; /** * Account that will be used to search for users (e.g. cn=readonly-account,dc=ldap,dc=domain,dc=tld) */ readerDn?: pulumi.Input; /** * LDAP user search settings */ searchSettings?: pulumi.Input[] | undefined>; /** * LDAP server type */ serverType?: pulumi.Input; /** * Whether LDAP connection should use StartTLS */ startTls?: pulumi.Input; /** * TLS configuration for LDAP */ tlsConfig?: pulumi.Input; /** * URL or IP address of the LDAP server (deprecated, use urls) */ url?: pulumi.Input; /** * URLs or IP addresses of the LDAP server */ urls?: pulumi.Input[] | undefined>; } //# sourceMappingURL=ldapSettings.d.ts.map