import * as pulumi from "@pulumi/pulumi"; export declare function getSystemAutoInstall(args?: GetSystemAutoInstallArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetSystemAutoInstall. */ export interface GetSystemAutoInstallArgs { vdomparam?: string; } /** * A collection of values returned by GetSystemAutoInstall. */ export interface GetSystemAutoInstallResult { readonly autoInstallConfig: string; readonly autoInstallImage: string; readonly defaultConfigFile: string; readonly defaultImageFile: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly vdomparam?: string; } export declare function getSystemAutoInstallOutput(args?: GetSystemAutoInstallOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetSystemAutoInstall. */ export interface GetSystemAutoInstallOutputArgs { vdomparam?: pulumi.Input; }