import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Describes Projects * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const projects = nutanix.getProjects({}); * ``` * */ export declare function getProjects(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getProjects. */ export interface GetProjectsResult { /** * version of the API */ readonly apiVersion: string; /** * List of Projects */ readonly entities: outputs.GetProjectsEntity[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * Describes Projects * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const projects = nutanix.getProjects({}); * ``` * */ export declare function getProjectsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output; //# sourceMappingURL=getProjects.d.ts.map