import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * TacacsServerProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up the multi-tag address object by its ID. * const scmTacacsServerProfile5Ds = scm.getTacacsServerProfile({ * id: "1967a784-402b-4c20-aa48-aab64d73cc06", * }); * export const profileDataSourceResults = { * name: scmTacacsServerProfile5Ds.then(scmTacacsServerProfile5Ds => scmTacacsServerProfile5Ds.name), * protocol: scmTacacsServerProfile5Ds.then(scmTacacsServerProfile5Ds => scmTacacsServerProfile5Ds.protocol), * timeout: scmTacacsServerProfile5Ds.then(scmTacacsServerProfile5Ds => scmTacacsServerProfile5Ds.timeout), * folder: scmTacacsServerProfile5Ds.then(scmTacacsServerProfile5Ds => scmTacacsServerProfile5Ds.folder), * useSingleConnection: scmTacacsServerProfile5Ds.then(scmTacacsServerProfile5Ds => scmTacacsServerProfile5Ds.useSingleConnection), * }; * ``` */ export declare function getTacacsServerProfile(args: GetTacacsServerProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getTacacsServerProfile. */ export interface GetTacacsServerProfileArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * The UUID of the TACACS+ server profile */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getTacacsServerProfile. */ export interface GetTacacsServerProfileResult { /** * The device in which the resource is defined */ readonly device: string; readonly encryptedValues: { [key: string]: string; }; readonly folder: string; /** * The UUID of the TACACS+ server profile */ readonly id: string; readonly name: string; readonly protocol: string; readonly servers: outputs.GetTacacsServerProfileServer[]; readonly snippet: string; readonly tfid: string; readonly timeout: number; readonly useSingleConnection: boolean; } /** * TacacsServerProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up the multi-tag address object by its ID. * const scmTacacsServerProfile5Ds = scm.getTacacsServerProfile({ * id: "1967a784-402b-4c20-aa48-aab64d73cc06", * }); * export const profileDataSourceResults = { * name: scmTacacsServerProfile5Ds.then(scmTacacsServerProfile5Ds => scmTacacsServerProfile5Ds.name), * protocol: scmTacacsServerProfile5Ds.then(scmTacacsServerProfile5Ds => scmTacacsServerProfile5Ds.protocol), * timeout: scmTacacsServerProfile5Ds.then(scmTacacsServerProfile5Ds => scmTacacsServerProfile5Ds.timeout), * folder: scmTacacsServerProfile5Ds.then(scmTacacsServerProfile5Ds => scmTacacsServerProfile5Ds.folder), * useSingleConnection: scmTacacsServerProfile5Ds.then(scmTacacsServerProfile5Ds => scmTacacsServerProfile5Ds.useSingleConnection), * }; * ``` */ export declare function getTacacsServerProfileOutput(args: GetTacacsServerProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getTacacsServerProfile. */ export interface GetTacacsServerProfileOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * The UUID of the TACACS+ server profile */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getTacacsServerProfile.d.ts.map