import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getComputeprofile(args: GetComputeprofileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getComputeprofile. */ export interface GetComputeprofileArgs { name: string; } /** * A collection of values returned by getComputeprofile. */ export interface GetComputeprofileResult { readonly computeAttributes: outputs.GetComputeprofileComputeAttribute[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; } export declare function getComputeprofileOutput(args: GetComputeprofileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getComputeprofile. */ export interface GetComputeprofileOutputArgs { name: pulumi.Input; }