import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get the details of your public cloud projects. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const projects = ovh.Cloud.getProjects({}); * ``` */ export declare function getProjects(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getProjects. */ export interface GetProjectsResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly projects: outputs.Cloud.GetProjectsProject[]; } /** * Get the details of your public cloud projects. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const projects = ovh.Cloud.getProjects({}); * ``` */ export declare function getProjectsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output;