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