import * as pulumi from "@pulumi/pulumi"; export declare function getSystemPppoeInterface(args: GetSystemPppoeInterfaceArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetSystemPppoeInterface. */ export interface GetSystemPppoeInterfaceArgs { name: string; vdomparam?: string; } /** * A collection of values returned by GetSystemPppoeInterface. */ export interface GetSystemPppoeInterfaceResult { readonly acName: string; readonly authType: string; readonly device: string; readonly dialOnDemand: string; readonly discRetryTimeout: number; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly idleTimeout: number; readonly ipunnumbered: string; readonly ipv6: string; readonly lcpEchoInterval: number; readonly lcpMaxEchoFails: number; readonly name: string; readonly padtRetryTimeout: number; readonly password: string; readonly pppoeUnnumberedNegotiate: string; readonly serviceName: string; readonly username: string; readonly vdomparam?: string; } export declare function getSystemPppoeInterfaceOutput(args: GetSystemPppoeInterfaceOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetSystemPppoeInterface. */ export interface GetSystemPppoeInterfaceOutputArgs { name: pulumi.Input; vdomparam?: pulumi.Input; }