import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the Interface NVE configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getInterfaceNve({ * name: 1, * }); * ``` */ export declare function getInterfaceNve(args: GetInterfaceNveArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getInterfaceNve. */ export interface GetInterfaceNveArgs { /** * A device name from the provider configuration. */ device?: string; name: number; } /** * A collection of values returned by getInterfaceNve. */ export interface GetInterfaceNveResult { /** * Interface specific description */ readonly description: string; /** * A device name from the provider configuration. */ readonly device?: string; readonly hostReachabilityProtocolBgp: boolean; /** * The path of the retrieved object. */ readonly id: string; readonly name: number; /** * Shutdown the selected interface */ readonly shutdown: boolean; /** * Loopback interface */ readonly sourceInterfaceLoopback: number; /** * Configure VNI information */ readonly vniVrfs: outputs.GetInterfaceNveVniVrf[]; /** * Configure VNI information */ readonly vnis: outputs.GetInterfaceNveVni[]; } /** * This data source can read the Interface NVE configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getInterfaceNve({ * name: 1, * }); * ``` */ export declare function getInterfaceNveOutput(args: GetInterfaceNveOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getInterfaceNve. */ export interface GetInterfaceNveOutputArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; name: pulumi.Input; }