import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * OspfAuthProfile data source */ export declare function getOspfAuthProfile(args: GetOspfAuthProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOspfAuthProfile. */ export interface GetOspfAuthProfileArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * UUID of the resource */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getOspfAuthProfile. */ export interface GetOspfAuthProfileResult { /** * The device in which the resource is defined */ readonly device: string; readonly encryptedValues: { [key: string]: string; }; readonly folder: string; /** * UUID of the resource */ readonly id: string; readonly md5s: outputs.GetOspfAuthProfileMd5[]; readonly name: string; readonly password: string; readonly snippet: string; readonly tfid: string; } /** * OspfAuthProfile data source */ export declare function getOspfAuthProfileOutput(args: GetOspfAuthProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOspfAuthProfile. */ export interface GetOspfAuthProfileOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * UUID of the resource */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getOspfAuthProfile.d.ts.map