import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the BGP Address Family IPv6 configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getBgpAddressFamilyIpv6({ * afName: "unicast", * asn: "65000", * }); * ``` */ export declare function getBgpAddressFamilyIpv6(args: GetBgpAddressFamilyIpv6Args, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBgpAddressFamilyIpv6. */ export interface GetBgpAddressFamilyIpv6Args { afName: string; asn: string; /** * A device name from the provider configuration. */ device?: string; } /** * A collection of values returned by getBgpAddressFamilyIpv6. */ export interface GetBgpAddressFamilyIpv6Result { readonly afName: string; readonly asn: string; /** * A device name from the provider configuration. */ readonly device?: string; /** * The path of the retrieved object. */ readonly id: string; /** * Specify a network to announce via BGP */ readonly ipv6UnicastNetworks: outputs.GetBgpAddressFamilyIpv6Ipv6UnicastNetwork[]; /** * Connected */ readonly ipv6UnicastRedistributeConnected: boolean; /** * Static routes */ readonly ipv6UnicastRedistributeStatic: boolean; } /** * This data source can read the BGP Address Family IPv6 configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getBgpAddressFamilyIpv6({ * afName: "unicast", * asn: "65000", * }); * ``` */ export declare function getBgpAddressFamilyIpv6Output(args: GetBgpAddressFamilyIpv6OutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getBgpAddressFamilyIpv6. */ export interface GetBgpAddressFamilyIpv6OutputArgs { afName: pulumi.Input; asn: pulumi.Input; /** * A device name from the provider configuration. */ device?: pulumi.Input; }