import * as pulumi from "@pulumi/pulumi"; export declare function getComputeresource(args: GetComputeresourceArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getComputeresource. */ export interface GetComputeresourceArgs { name: string; } /** * A collection of values returned by getComputeresource. */ export interface GetComputeresourceResult { readonly cachingenabled: boolean; readonly datacenter: string; readonly description: string; readonly displaytype: string; readonly hypervisor: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; readonly password: string; readonly server: string; readonly setconsolepassword: boolean; readonly url: string; readonly user: string; } export declare function getComputeresourceOutput(args: GetComputeresourceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getComputeresource. */ export interface GetComputeresourceOutputArgs { name: pulumi.Input; }