import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the CDP configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getCdp({}); * ``` */ export declare function getCdp(args?: GetCdpArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCdp. */ export interface GetCdpArgs { /** * A device name from the provider configuration. */ device?: string; } /** * A collection of values returned by getCdp. */ export interface GetCdpResult { /** * A device name from the provider configuration. */ readonly device?: string; /** * Apply tlv-list globally */ readonly filterTlvList: string; /** * Specify the holdtime (in sec) to be sent in packets */ readonly holdtime: number; /** * The path of the retrieved object. */ readonly id: string; /** * Enable CDP */ readonly run: boolean; /** * Specify the rate at which CDP packets are sent (in sec) */ readonly timer: number; /** * Configure tlv-list */ readonly tlvLists: outputs.GetCdpTlvList[]; } /** * This data source can read the CDP configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getCdp({}); * ``` */ export declare function getCdpOutput(args?: GetCdpOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getCdp. */ export interface GetCdpOutputArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; }