import * as pulumi from "@pulumi/pulumi"; export declare function getSystemManagementTunnel(args?: GetSystemManagementTunnelArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetSystemManagementTunnel. */ export interface GetSystemManagementTunnelArgs { vdomparam?: string; } /** * A collection of values returned by GetSystemManagementTunnel. */ export interface GetSystemManagementTunnelResult { readonly allowCollectStatistics: string; readonly allowConfigRestore: string; readonly allowPushConfiguration: string; readonly allowPushFirmware: string; readonly authorizedManagerOnly: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly serialNumber: string; readonly status: string; readonly vdomparam?: string; } export declare function getSystemManagementTunnelOutput(args?: GetSystemManagementTunnelOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetSystemManagementTunnel. */ export interface GetSystemManagementTunnelOutputArgs { vdomparam?: pulumi.Input; }