import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the UDLD configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getUdld({}); * ``` */ export declare function getUdld(args?: GetUdldArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getUdld. */ export interface GetUdldArgs { /** * A device name from the provider configuration. */ device?: string; } /** * A collection of values returned by getUdld. */ export interface GetUdldResult { /** * Enable UDLD protocol in aggressive mode on fiber ports exceptwhere locally configured */ readonly aggressive: boolean; /** * A device name from the provider configuration. */ readonly device?: string; /** * Enable UDLD protocol on fiber ports except where locally configured */ readonly enable: boolean; /** * The path of the retrieved object. */ readonly id: string; /** * Set UDLD message time period */ readonly messageTime: number; /** * timer-interval(sec) */ readonly recoveryInterval: number; } /** * This data source can read the UDLD configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getUdld({}); * ``` */ export declare function getUdldOutput(args?: GetUdldOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getUdld. */ export interface GetUdldOutputArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; }