import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * LldpProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const profileData = scm.getLldpProfile({ * id: "e46f6246-fd4a-4211-a18f-948b09f474bd", * }); * export const fetchedProfile = profileData; * ``` */ export declare function getLldpProfile(args: GetLldpProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLldpProfile. */ export interface GetLldpProfileArgs { /** * 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 getLldpProfile. */ export interface GetLldpProfileResult { /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; /** * UUID of the resource */ readonly id: string; readonly mode: string; readonly name: string; readonly optionTlvs: outputs.GetLldpProfileOptionTlvs; readonly snippet: string; readonly snmpSyslogNotification: boolean; readonly tfid: string; } /** * LldpProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const profileData = scm.getLldpProfile({ * id: "e46f6246-fd4a-4211-a18f-948b09f474bd", * }); * export const fetchedProfile = profileData; * ``` */ export declare function getLldpProfileOutput(args: GetLldpProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLldpProfile. */ export interface GetLldpProfileOutputArgs { /** * 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=getLldpProfile.d.ts.map