@pulumi/scm
Version:
A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1
82 lines (81 loc) • 2.11 kB
TypeScript
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 UUID of the LDAP server profile
*/
id: string;
/**
* The name of the LDAP server profile
*/
name?: 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
*/
readonly device: string;
readonly encryptedValues: {
[key: string]: string;
};
readonly folder: string;
/**
* The UUID of the LDAP server profile
*/
readonly id: string;
readonly ldapType: string;
/**
* The name of the LDAP server profile
*/
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
*/
export declare function getLdapServerProfileOutput(args: GetLdapServerProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLdapServerProfileResult>;
/**
* A collection of arguments for invoking getLdapServerProfile.
*/
export interface GetLdapServerProfileOutputArgs {
/**
* The UUID of the LDAP server profile
*/
id: pulumi.Input<string>;
/**
* The name of the LDAP server profile
*/
name?: pulumi.Input<string>;
}