import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Provides a Nutanix Project resource to Create a Project. * * > **Note:** When removing the acps from the project, the ACP blocks are index-based. Removing an ACP from the middle of the list causes Terraform to shift subsequent ACPs. While the backend update succeeds without impact, the plan may show unexpected updates due to index reordering. */ export declare class Project extends pulumi.CustomResource { /** * Get an existing Project resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ProjectState, opts?: pulumi.CustomResourceOptions): Project; /** * Returns true if the given object is an instance of Project. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Project; readonly accountReferenceLists: pulumi.Output; readonly acps: pulumi.Output; readonly apiVersion: pulumi.Output; /** * - (Optional) The category values represented as a dictionary of key > list of values. */ readonly categories: pulumi.Output; readonly clusterReferenceLists: pulumi.Output; /** * The UUID of cluster. (Required when using projectInternal flag). */ readonly clusterUuid: pulumi.Output; readonly defaultEnvironmentReference: pulumi.Output; readonly defaultSubnetReference: pulumi.Output; /** * A description for project. */ readonly description: pulumi.Output; /** * flag to allow collaboration of projects. (Use with projectInternal flag) */ readonly enableCollab: pulumi.Output; readonly environmentReferenceLists: pulumi.Output; readonly externalNetworkLists: pulumi.Output; readonly externalUserGroupReferenceLists: pulumi.Output; readonly isDefault: pulumi.Output; readonly metadata: pulumi.Output<{ [key: string]: string; }>; /** * The name for the project. */ readonly name: pulumi.Output; readonly ownerReference: pulumi.Output<{ [key: string]: string; }>; readonly projectReference: pulumi.Output<{ [key: string]: string; }>; /** * @deprecated Deprecated since v2.4.0. Prism Central no longer supports `resourceDomain` for projects; remove this block from your configuration/scripts. */ readonly resourceDomain: pulumi.Output; readonly state: pulumi.Output; readonly subnetReferenceLists: pulumi.Output; readonly tunnelReferenceLists: pulumi.Output; /** * flag to use project internal for user role mapping */ readonly useProjectInternal: pulumi.Output; readonly userGroupLists: pulumi.Output; readonly userLists: pulumi.Output; /** * List of Reference of users. */ readonly userReferenceLists: pulumi.Output; readonly vpcReferenceLists: pulumi.Output; /** * Create a Project resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ProjectArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Project resources. */ export interface ProjectState { accountReferenceLists?: pulumi.Input[] | undefined>; acps?: pulumi.Input[] | undefined>; apiVersion?: pulumi.Input; /** * - (Optional) The category values represented as a dictionary of key > list of values. */ categories?: pulumi.Input[] | undefined>; clusterReferenceLists?: pulumi.Input[] | undefined>; /** * The UUID of cluster. (Required when using projectInternal flag). */ clusterUuid?: pulumi.Input; defaultEnvironmentReference?: pulumi.Input; defaultSubnetReference?: pulumi.Input; /** * A description for project. */ description?: pulumi.Input; /** * flag to allow collaboration of projects. (Use with projectInternal flag) */ enableCollab?: pulumi.Input; environmentReferenceLists?: pulumi.Input[] | undefined>; externalNetworkLists?: pulumi.Input[] | undefined>; externalUserGroupReferenceLists?: pulumi.Input[] | undefined>; isDefault?: pulumi.Input; metadata?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * The name for the project. */ name?: pulumi.Input; ownerReference?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; projectReference?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * @deprecated Deprecated since v2.4.0. Prism Central no longer supports `resourceDomain` for projects; remove this block from your configuration/scripts. */ resourceDomain?: pulumi.Input; state?: pulumi.Input; subnetReferenceLists?: pulumi.Input[] | undefined>; tunnelReferenceLists?: pulumi.Input[] | undefined>; /** * flag to use project internal for user role mapping */ useProjectInternal?: pulumi.Input; userGroupLists?: pulumi.Input[] | undefined>; userLists?: pulumi.Input[] | undefined>; /** * List of Reference of users. */ userReferenceLists?: pulumi.Input[] | undefined>; vpcReferenceLists?: pulumi.Input[] | undefined>; } /** * The set of arguments for constructing a Project resource. */ export interface ProjectArgs { accountReferenceLists?: pulumi.Input[] | undefined>; acps?: pulumi.Input[] | undefined>; apiVersion?: pulumi.Input; /** * - (Optional) The category values represented as a dictionary of key > list of values. */ categories?: pulumi.Input[] | undefined>; clusterReferenceLists?: pulumi.Input[] | undefined>; /** * The UUID of cluster. (Required when using projectInternal flag). */ clusterUuid?: pulumi.Input; defaultEnvironmentReference?: pulumi.Input; defaultSubnetReference: pulumi.Input; /** * A description for project. */ description: pulumi.Input; /** * flag to allow collaboration of projects. (Use with projectInternal flag) */ enableCollab?: pulumi.Input; environmentReferenceLists?: pulumi.Input[] | undefined>; externalNetworkLists?: pulumi.Input[] | undefined>; externalUserGroupReferenceLists?: pulumi.Input[] | undefined>; /** * The name for the project. */ name?: pulumi.Input; ownerReference?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; projectReference?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * @deprecated Deprecated since v2.4.0. Prism Central no longer supports `resourceDomain` for projects; remove this block from your configuration/scripts. */ resourceDomain?: pulumi.Input; subnetReferenceLists?: pulumi.Input[] | undefined>; tunnelReferenceLists?: pulumi.Input[] | undefined>; /** * flag to use project internal for user role mapping */ useProjectInternal?: pulumi.Input; userGroupLists?: pulumi.Input[] | undefined>; userLists?: pulumi.Input[] | undefined>; /** * List of Reference of users. */ userReferenceLists?: pulumi.Input[] | undefined>; vpcReferenceLists?: pulumi.Input[] | undefined>; } //# sourceMappingURL=project.d.ts.map