import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * LdapServerProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // * // Data source to retrieve a single SCM LDAP Server Profile object by its ID. * // * // Replace the ID with the UUID of the LDAP Server Profile you want to find. * const ldapServerProf = scm.getLdapServerProfile({ * id: "a5006a3e-52b3-435e-9e3b-39b50dc72401", * }); * export const scmLdapServerProfileDetails = { * id: ldapServerProf.then(ldapServerProf => ldapServerProf.id), * folder: ldapServerProf.then(ldapServerProf => ldapServerProf.folder), * name: ldapServerProf.then(ldapServerProf => ldapServerProf.name), * }; * ``` */ export declare function getLdapServerProfile(args: GetLdapServerProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLdapServerProfile. */ export interface GetLdapServerProfileArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * The UUID of the LDAP server profile */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getLdapServerProfile. */ export interface GetLdapServerProfileResult { readonly base: string; readonly bindDn: string; readonly bindPassword: string; readonly bindTimelimit: string; /** * The device in which the resource is defined */ readonly device: string; readonly encryptedValues: { [key: string]: string; }; readonly folder: string; /** * The UUID of the LDAP server profile */ readonly id: string; readonly ldapType: string; readonly name: string; readonly retryInterval: number; readonly servers: outputs.GetLdapServerProfileServer[]; readonly snippet: string; readonly ssl: boolean; readonly tfid: string; readonly timelimit: number; readonly verifyServerCertificate: boolean; } /** * LdapServerProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // * // Data source to retrieve a single SCM LDAP Server Profile object by its ID. * // * // Replace the ID with the UUID of the LDAP Server Profile you want to find. * const ldapServerProf = scm.getLdapServerProfile({ * id: "a5006a3e-52b3-435e-9e3b-39b50dc72401", * }); * export const scmLdapServerProfileDetails = { * id: ldapServerProf.then(ldapServerProf => ldapServerProf.id), * folder: ldapServerProf.then(ldapServerProf => ldapServerProf.folder), * name: ldapServerProf.then(ldapServerProf => ldapServerProf.name), * }; * ``` */ export declare function getLdapServerProfileOutput(args: GetLdapServerProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLdapServerProfile. */ export interface GetLdapServerProfileOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * The UUID of the LDAP server profile */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getLdapServerProfile.d.ts.map