import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface RumProjectConfig extends cdktf.TerraformMetaArguments { /** * Description of the created project (optional and up to 1,000 characters). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/rum_project#desc RumProject#desc} */ readonly desc?: string; /** * Whether to enable aggregation. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/rum_project#enable_url_group RumProject#enable_url_group} */ readonly enableUrlGroup: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/rum_project#id RumProject#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; /** * Business system ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/rum_project#instance_id RumProject#instance_id} */ readonly instanceId: string; /** * Name of the created project (required and up to 200 characters). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/rum_project#name RumProject#name} */ readonly name: string; /** * Project sampling rate (greater than or equal to 0). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/rum_project#rate RumProject#rate} */ readonly rate: string; /** * Repository address of the project (optional and up to 256 characters). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/rum_project#repo RumProject#repo} */ readonly repo?: string; /** * Project type (valid values: `web`, `mp`, `android`, `ios`, `node`, `hippy`, `weex`, `viola`, `rn`). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/rum_project#type RumProject#type} */ readonly type: string; /** * Webpage address of the project (optional and up to 256 characters). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/rum_project#url RumProject#url} */ readonly url?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/rum_project tencentcloud_rum_project} */ export declare class RumProject extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_rum_project"; /** * Generates CDKTF code for importing a RumProject 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 RumProject to import * @param importFromId The id of the existing RumProject that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/rum_project#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the RumProject 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/rum_project tencentcloud_rum_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 RumProjectConfig */ constructor(scope: Construct, id: string, config: RumProjectConfig); get createTime(): any; get creator(): any; private _desc?; get desc(): string; set desc(value: string); resetDesc(): void; get descInput(): string; private _enableUrlGroup?; get enableUrlGroup(): number; set enableUrlGroup(value: number); get enableUrlGroupInput(): number; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _instanceId?; get instanceId(): string; set instanceId(value: string); get instanceIdInput(): string; get instanceKey(): any; get instanceName(): any; get isStar(): any; get key(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; get projectStatus(): any; private _rate?; get rate(): string; set rate(value: string); get rateInput(): string; private _repo?; get repo(): string; set repo(value: string); resetRepo(): void; get repoInput(): string; private _type?; get type(): string; set type(value: string); get typeInput(): string; private _url?; get url(): string; set url(value: string); resetUrl(): void; get urlInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }