import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the BGP Address Family IPv6 VRF configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getBgpAddressFamilyIpv6Vrf({ * afName: "unicast", * asn: "65000", * }); * ``` */ export declare function getBgpAddressFamilyIpv6Vrf(args: GetBgpAddressFamilyIpv6VrfArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBgpAddressFamilyIpv6Vrf. */ export interface GetBgpAddressFamilyIpv6VrfArgs { afName: string; asn: string; /** * A device name from the provider configuration. */ device?: string; } /** * A collection of values returned by getBgpAddressFamilyIpv6Vrf. */ export interface GetBgpAddressFamilyIpv6VrfResult { 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; readonly vrfs: outputs.GetBgpAddressFamilyIpv6VrfVrf[]; } /** * This data source can read the BGP Address Family IPv6 VRF configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getBgpAddressFamilyIpv6Vrf({ * afName: "unicast", * asn: "65000", * }); * ``` */ export declare function getBgpAddressFamilyIpv6VrfOutput(args: GetBgpAddressFamilyIpv6VrfOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getBgpAddressFamilyIpv6Vrf. */ export interface GetBgpAddressFamilyIpv6VrfOutputArgs { afName: pulumi.Input; asn: pulumi.Input; /** * A device name from the provider configuration. */ device?: pulumi.Input; }