import * as pulumi from "@pulumi/pulumi"; /** * Resource project (Project) provides a mechanism for resource group management, helping you achieve logical resource isolation. You can use resource projects for project-based authorization, billing, and other operations. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcenginecc from "@volcengine/pulumi-volcenginecc"; * * const iAMProjectDemo = new volcenginecc.iam.Project("IAMProjectDemo", { * description: "IAMProjectDemo description", * projectName: "default", * displayName: "IAMProjectDemo", * parentProjectName: "default", * }); * ``` * * ## Import * * ```sh * $ pulumi import volcenginecc:iam/project:Project example "project_name" * ``` */ 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; /** * Account ID */ readonly accountId: pulumi.Output; /** * Creation Time */ readonly createdTime: pulumi.Output; /** * Description */ readonly description: pulumi.Output; /** * Display Name */ readonly displayName: pulumi.Output; /** * Visible */ readonly hasPermission: pulumi.Output; /** * Parent Project Name */ readonly parentProjectName: pulumi.Output; /** * Project Path */ readonly path: pulumi.Output; /** * Project Name */ readonly projectName: pulumi.Output; /** * Enabled Status */ readonly status: pulumi.Output; /** * Update Time */ readonly updatedTime: 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 { /** * Account ID */ accountId?: pulumi.Input; /** * Creation Time */ createdTime?: pulumi.Input; /** * Description */ description?: pulumi.Input; /** * Display Name */ displayName?: pulumi.Input; /** * Visible */ hasPermission?: pulumi.Input; /** * Parent Project Name */ parentProjectName?: pulumi.Input; /** * Project Path */ path?: pulumi.Input; /** * Project Name */ projectName?: pulumi.Input; /** * Enabled Status */ status?: pulumi.Input; /** * Update Time */ updatedTime?: pulumi.Input; } /** * The set of arguments for constructing a Project resource. */ export interface ProjectArgs { /** * Description */ description?: pulumi.Input; /** * Display Name */ displayName?: pulumi.Input; /** * Parent Project Name */ parentProjectName?: pulumi.Input; /** * Project Name */ projectName: pulumi.Input; }