import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare function getConfigurator(args?: GetConfiguratorArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getConfigurator. */ export interface GetConfiguratorArgs { cpuFrequency?: string; /** * @deprecated Deprecated */ diskType?: string; id?: string; location?: string; presetType?: string; requirements?: inputs.GetConfiguratorRequirement[]; } /** * A collection of values returned by getConfigurator. */ export interface GetConfiguratorResult { readonly cpuFrequency: string; /** * @deprecated Deprecated */ readonly diskType: string; readonly id: string; readonly location: string; readonly presetType: string; readonly requirements?: outputs.GetConfiguratorRequirement[]; } export declare function getConfiguratorOutput(args?: GetConfiguratorOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getConfigurator. */ export interface GetConfiguratorOutputArgs { cpuFrequency?: pulumi.Input; /** * @deprecated Deprecated */ diskType?: pulumi.Input; id?: pulumi.Input; location?: pulumi.Input; presetType?: pulumi.Input; requirements?: pulumi.Input[]>; }