UNPKG

@pulumi/scm

Version:

A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1

142 lines (141 loc) 4.06 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * LdapServerProfile data source */ export declare function getLdapServerProfile(args: GetLdapServerProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetLdapServerProfileResult>; /** * A collection of arguments for invoking getLdapServerProfile. */ export interface GetLdapServerProfileArgs { /** * The device in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ device?: string; /** * The folder in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ folder?: string; /** * The UUID of the LDAP server profile */ id: string; /** * The name of the LDAP server profile */ name?: string; /** * The snippet in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ snippet?: string; } /** * A collection of values returned by getLdapServerProfile. */ export interface GetLdapServerProfileResult { /** * The base DN */ readonly base: string; /** * The bind DN */ readonly bindDn: string; /** * The bind password */ readonly bindPassword: string; /** * The bind timeout (seconds) */ readonly bindTimelimit: string; /** * The device in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly device: string; /** * Map of sensitive values returned from the API. */ readonly encryptedValues: { [key: string]: string; }; /** * The folder in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly folder: string; /** * The UUID of the LDAP server profile */ readonly id: string; /** * The LDAP server time */ readonly ldapType: string; /** * The name of the LDAP server profile */ readonly name: string; /** * The search retry interval (seconds) */ readonly retryInterval: number; /** * The LDAP server configuration */ readonly servers: outputs.GetLdapServerProfileServer[]; /** * The snippet in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly snippet: string; /** * Require SSL/TLS secured connection? */ readonly ssl: boolean; readonly tfid: string; /** * The search timeout (seconds) */ readonly timelimit: number; /** * Verify server certificate for SSL sessions? */ readonly verifyServerCertificate: boolean; } /** * LdapServerProfile data source */ export declare function getLdapServerProfileOutput(args: GetLdapServerProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLdapServerProfileResult>; /** * A collection of arguments for invoking getLdapServerProfile. */ export interface GetLdapServerProfileOutputArgs { /** * The device in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ device?: pulumi.Input<string>; /** * The folder in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ folder?: pulumi.Input<string>; /** * The UUID of the LDAP server profile */ id: pulumi.Input<string>; /** * The name of the LDAP server profile */ name?: pulumi.Input<string>; /** * The snippet in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ snippet?: pulumi.Input<string>; }