import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * RadiusServerProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const singleProfileById = scm.getRadiusServerProfile({ * id: "50e5f694-19a2-467b-90a8-9db168600327", * }); * export const singleRspDump = singleProfileById.then(singleProfileById => singleProfileById.name); * ``` */ export declare function getRadiusServerProfile(args: GetRadiusServerProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRadiusServerProfile. */ export interface GetRadiusServerProfileArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * The UUID of the RADIUS server profile */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getRadiusServerProfile. */ export interface GetRadiusServerProfileResult { /** * The device in which the resource is defined */ readonly device: string; readonly encryptedValues: { [key: string]: string; }; readonly folder: string; /** * The UUID of the RADIUS server profile */ readonly id: string; readonly name: string; readonly protocol: outputs.GetRadiusServerProfileProtocol; readonly retries: number; readonly servers: outputs.GetRadiusServerProfileServer[]; readonly snippet: string; readonly tfid: string; readonly timeout: number; } /** * RadiusServerProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const singleProfileById = scm.getRadiusServerProfile({ * id: "50e5f694-19a2-467b-90a8-9db168600327", * }); * export const singleRspDump = singleProfileById.then(singleProfileById => singleProfileById.name); * ``` */ export declare function getRadiusServerProfileOutput(args: GetRadiusServerProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRadiusServerProfile. */ export interface GetRadiusServerProfileOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * The UUID of the RADIUS server profile */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getRadiusServerProfile.d.ts.map