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