import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the BGP Address Family L2VPN configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getBgpAddressFamilyL2vpn({ * afName: "evpn", * asn: "65000", * }); * ``` */ export declare function getBgpAddressFamilyL2vpn(args: GetBgpAddressFamilyL2vpnArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBgpAddressFamilyL2vpn. */ export interface GetBgpAddressFamilyL2vpnArgs { afName: string; asn: string; /** * A device name from the provider configuration. */ device?: string; } /** * A collection of values returned by getBgpAddressFamilyL2vpn. */ export interface GetBgpAddressFamilyL2vpnResult { 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; } /** * This data source can read the BGP Address Family L2VPN configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getBgpAddressFamilyL2vpn({ * afName: "evpn", * asn: "65000", * }); * ``` */ export declare function getBgpAddressFamilyL2vpnOutput(args: GetBgpAddressFamilyL2vpnOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getBgpAddressFamilyL2vpn. */ export interface GetBgpAddressFamilyL2vpnOutputArgs { afName: pulumi.Input; asn: pulumi.Input; /** * A device name from the provider configuration. */ device?: pulumi.Input; }