import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the Interface MPLS configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getInterfaceMpls({ * name: "1", * type: "Loopback", * }); * ``` */ export declare function getInterfaceMpls(args: GetInterfaceMplsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getInterfaceMpls. */ export interface GetInterfaceMplsArgs { /** * A device name from the provider configuration. */ device?: string; name: string; /** * Interface type */ type: string; } /** * A collection of values returned by getInterfaceMpls. */ export interface GetInterfaceMplsResult { /** * A device name from the provider configuration. */ readonly device?: string; /** * The path of the retrieved object. */ readonly id: string; /** * Configure dynamic MPLS forwarding for IP */ readonly ip: boolean; /** * Set MPLS Maximum Transmission Unit */ readonly mtu: string; readonly name: string; /** * Interface type */ readonly type: string; } /** * This data source can read the Interface MPLS configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getInterfaceMpls({ * name: "1", * type: "Loopback", * }); * ``` */ export declare function getInterfaceMplsOutput(args: GetInterfaceMplsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getInterfaceMpls. */ export interface GetInterfaceMplsOutputArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; name: pulumi.Input; /** * Interface type */ type: pulumi.Input; }