import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface OceanusWorkSpaceConfig extends cdktf.TerraformMetaArguments { /** * Workspace description. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/oceanus_work_space#description OceanusWorkSpace#description} */ readonly description?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/oceanus_work_space#id OceanusWorkSpace#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; /** * Workspace name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/oceanus_work_space#work_space_name OceanusWorkSpace#work_space_name} */ readonly workSpaceName: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/oceanus_work_space tencentcloud_oceanus_work_space} */ export declare class OceanusWorkSpace extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_oceanus_work_space"; /** * Generates CDKTF code for importing a OceanusWorkSpace 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 OceanusWorkSpace to import * @param importFromId The id of the existing OceanusWorkSpace that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/oceanus_work_space#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the OceanusWorkSpace 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/oceanus_work_space tencentcloud_oceanus_work_space} 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 OceanusWorkSpaceConfig */ constructor(scope: Construct, id: string, config: OceanusWorkSpaceConfig); get appId(): any; get createTime(): any; get creatorUin(): any; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; get jobsCount(): any; get ownerUin(): any; get roleAuthCount(): any; get serialId(): any; get status(): any; get updateTime(): any; get workSpaceId(): any; private _workSpaceName?; get workSpaceName(): string; set workSpaceName(value: string); get workSpaceNameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }