import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * KerberosServerProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // * // Data source to retrieve a single SCM Kerberos Server Profile object by its ID. * // * // Replace the ID with the UUID of the SCM Kerberos Server Profile you want to find. * const scmKerberosProf = scm.getKerberosServerProfile({ * id: "6bd818f8-9679-4031-86df-17b8b40842a0", * }); * export const scmKerberosServerProfileDetails = { * profileId: scmKerberosProf.then(scmKerberosProf => scmKerberosProf.id), * folder: scmKerberosProf.then(scmKerberosProf => scmKerberosProf.folder), * name: scmKerberosProf.then(scmKerberosProf => scmKerberosProf.name), * }; * ``` */ export declare function getKerberosServerProfile(args: GetKerberosServerProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getKerberosServerProfile. */ export interface GetKerberosServerProfileArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * The UUID of the Kerberos server profile */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getKerberosServerProfile. */ export interface GetKerberosServerProfileResult { /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; /** * The UUID of the Kerberos server profile */ readonly id: string; readonly name: string; readonly servers: outputs.GetKerberosServerProfileServer[]; readonly snippet: string; readonly tfid: string; } /** * KerberosServerProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // * // Data source to retrieve a single SCM Kerberos Server Profile object by its ID. * // * // Replace the ID with the UUID of the SCM Kerberos Server Profile you want to find. * const scmKerberosProf = scm.getKerberosServerProfile({ * id: "6bd818f8-9679-4031-86df-17b8b40842a0", * }); * export const scmKerberosServerProfileDetails = { * profileId: scmKerberosProf.then(scmKerberosProf => scmKerberosProf.id), * folder: scmKerberosProf.then(scmKerberosProf => scmKerberosProf.folder), * name: scmKerberosProf.then(scmKerberosProf => scmKerberosProf.name), * }; * ``` */ export declare function getKerberosServerProfileOutput(args: GetKerberosServerProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getKerberosServerProfile. */ export interface GetKerberosServerProfileOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * The UUID of the Kerberos server profile */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getKerberosServerProfile.d.ts.map