import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the BGP IPv4 Unicast Neighbor configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getBgpIpv4UnicastNeighbor({ * asn: "65000", * ip: "3.3.3.3", * }); * ``` */ export declare function getBgpIpv4UnicastNeighbor(args: GetBgpIpv4UnicastNeighborArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBgpIpv4UnicastNeighbor. */ export interface GetBgpIpv4UnicastNeighborArgs { asn: string; /** * A device name from the provider configuration. */ device?: string; ip: string; } /** * A collection of values returned by getBgpIpv4UnicastNeighbor. */ export interface GetBgpIpv4UnicastNeighborResult { /** * 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; /** * Apply route map to neighbor */ readonly routeMaps: outputs.GetBgpIpv4UnicastNeighborRouteMap[]; /** * Configure a neighbor as Route Reflector client */ readonly routeReflectorClient: boolean; readonly sendCommunity: string; } /** * This data source can read the BGP IPv4 Unicast Neighbor configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getBgpIpv4UnicastNeighbor({ * asn: "65000", * ip: "3.3.3.3", * }); * ``` */ export declare function getBgpIpv4UnicastNeighborOutput(args: GetBgpIpv4UnicastNeighborOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getBgpIpv4UnicastNeighbor. */ export interface GetBgpIpv4UnicastNeighborOutputArgs { asn: pulumi.Input; /** * A device name from the provider configuration. */ device?: pulumi.Input; ip: pulumi.Input; }