import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the BGP configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getBgp({ * asn: "65000", * }); * ``` */ export declare function getBgp(args: GetBgpArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBgp. */ export interface GetBgpArgs { asn: string; /** * A device name from the provider configuration. */ device?: string; } /** * A collection of values returned by getBgp. */ export interface GetBgpResult { readonly asn: string; /** * Activate ipv4-unicast for a peer by default */ readonly defaultIpv4Unicast: boolean; /** * A device name from the provider configuration. */ readonly device?: string; /** * The path of the retrieved object. */ readonly id: string; /** * Log neighbor up/down and reset reason */ readonly logNeighborChanges: boolean; /** * Loopback interface */ readonly routerIdLoopback: number; } /** * This data source can read the BGP configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getBgp({ * asn: "65000", * }); * ``` */ export declare function getBgpOutput(args: GetBgpOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getBgp. */ export interface GetBgpOutputArgs { asn: pulumi.Input; /** * A device name from the provider configuration. */ device?: pulumi.Input; }