import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ProjectConfig extends cdktf.TerraformMetaArguments { /** * If disable project. 1 means disable, 0 means enable. Default 0. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/project#disable Project#disable} */ readonly disable?: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/project#id Project#id} * * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. */ readonly id?: string; /** * Description of project. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/project#info Project#info} */ readonly info?: string; /** * Name of project. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/project#project_name Project#project_name} */ readonly projectName: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/project tencentcloud_project} */ export declare class Project extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_project"; /** * Generates CDKTF code for importing a Project resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the Project to import * @param importFromId The id of the existing Project that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/project#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the Project to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/project tencentcloud_project} Resource * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options ProjectConfig */ constructor(scope: Construct, id: string, config: ProjectConfig); get createTime(): any; get creatorUin(): any; private _disable?; get disable(): number; set disable(value: number); resetDisable(): void; get disableInput(): number; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _info?; get info(): string; set info(value: string); resetInfo(): void; get infoInput(): string; private _projectName?; get projectName(): string; set projectName(value: string); get projectNameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }