import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getSystemMobileTunnel(args: GetSystemMobileTunnelArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetSystemMobileTunnel. */ export interface GetSystemMobileTunnelArgs { name: string; vdomparam?: string; } /** * A collection of values returned by GetSystemMobileTunnel. */ export interface GetSystemMobileTunnelResult { readonly hashAlgorithm: string; readonly homeAddress: string; readonly homeAgent: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly lifetime: number; readonly nMhaeKey: string; readonly nMhaeKeyType: string; readonly nMhaeSpi: number; readonly name: string; readonly networks: outputs.GetSystemMobileTunnelNetwork[]; readonly regInterval: number; readonly regRetry: number; readonly renewInterval: number; readonly roamingInterface: string; readonly status: string; readonly tunnelMode: string; readonly vdomparam?: string; } export declare function getSystemMobileTunnelOutput(args: GetSystemMobileTunnelOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetSystemMobileTunnel. */ export interface GetSystemMobileTunnelOutputArgs { name: pulumi.Input; vdomparam?: pulumi.Input; }