import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the BGP L2VPN EVPN Neighbor configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getBgpL2vpnEvpnNeighbor({ * asn: "65000", * ip: "3.3.3.3", * }); * ``` */ export declare function getBgpL2vpnEvpnNeighbor(args: GetBgpL2vpnEvpnNeighborArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBgpL2vpnEvpnNeighbor. */ export interface GetBgpL2vpnEvpnNeighborArgs { asn: string; /** * A device name from the provider configuration. */ device?: string; ip: string; } /** * A collection of values returned by getBgpL2vpnEvpnNeighbor. */ export interface GetBgpL2vpnEvpnNeighborResult { /** * Enable the address family for this neighbor */ readonly activate: boolean; readonly asn: string; /** * A device name from the provider configuration. */ readonly device?: string; /** * The path of the retrieved object. */ readonly id: string; readonly ip: string; /** * Configure a neighbor as Route Reflector client */ readonly routeReflectorClient: boolean; readonly sendCommunity: string; } /** * This data source can read the BGP L2VPN EVPN Neighbor configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getBgpL2vpnEvpnNeighbor({ * asn: "65000", * ip: "3.3.3.3", * }); * ``` */ export declare function getBgpL2vpnEvpnNeighborOutput(args: GetBgpL2vpnEvpnNeighborOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getBgpL2vpnEvpnNeighbor. */ export interface GetBgpL2vpnEvpnNeighborOutputArgs { asn: pulumi.Input; /** * A device name from the provider configuration. */ device?: pulumi.Input; ip: pulumi.Input; }