import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the BFD configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getBfd({}); * ``` */ export declare function getBfd(args?: GetBfdArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBfd. */ export interface GetBfdArgs { /** * A device name from the provider configuration. */ device?: string; } /** * A collection of values returned by getBfd. */ export interface GetBfdResult { /** * A device name from the provider configuration. */ readonly device?: string; /** * The path of the retrieved object. */ readonly id: string; /** * IPv4 Address Family with vrf */ readonly ipv4BothVrfs: outputs.GetBfdIpv4BothVrf[]; /** * IPv4 Address Family with vrf */ readonly ipv4WithDstVrfs: outputs.GetBfdIpv4WithDstVrf[]; /** * IPv4 Address Family with vrf */ readonly ipv4WithSrcVrfs: outputs.GetBfdIpv4WithSrcVrf[]; /** * IPv4 Address Family with vrf */ readonly ipv4WithoutVrfs: outputs.GetBfdIpv4WithoutVrf[]; /** * IPv6 Address Family with vrf */ readonly ipv6WithBothVrfs: outputs.GetBfdIpv6WithBothVrf[]; /** * IPv6 Address Family with vrf */ readonly ipv6WithDstVrfs: outputs.GetBfdIpv6WithDstVrf[]; /** * IPv6 Address Family with vrf */ readonly ipv6WithSrcVrfs: outputs.GetBfdIpv6WithSrcVrf[]; /** * IPv6 Address Family with vrf */ readonly ipv6WithoutVrfs: outputs.GetBfdIpv6WithoutVrf[]; /** * Value in ms to use for slow timers */ readonly slowTimers: number; } /** * This data source can read the BFD configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getBfd({}); * ``` */ export declare function getBfdOutput(args?: GetBfdOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getBfd. */ export interface GetBfdOutputArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; }