import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudRumReportCountConfig extends cdktf.TerraformMetaArguments { /** * End time but is represented using a timestamp in seconds. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/rum_report_count#end_time DataTencentcloudRumReportCount#end_time} */ readonly endTime: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/rum_report_count#id DataTencentcloudRumReportCount#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; /** * Instance ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/rum_report_count#instance_id DataTencentcloudRumReportCount#instance_id} */ readonly instanceId?: string; /** * Project ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/rum_report_count#project_id DataTencentcloudRumReportCount#project_id} */ readonly projectId: number; /** * Report type, empty is meaning all type count. `log`:log report count, `pv`:pv report count, `event`:event report count, `speed`:speed report count, `performance`:performance report count, `custom`:custom report count, `webvitals`:webvitals report count, `miniProgramData`:miniProgramData report count. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/rum_report_count#report_type DataTencentcloudRumReportCount#report_type} */ readonly reportType?: string; /** * Used to save results. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/rum_report_count#result_output_file DataTencentcloudRumReportCount#result_output_file} */ readonly resultOutputFile?: string; /** * Start time but is represented using a timestamp in seconds. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/rum_report_count#start_time DataTencentcloudRumReportCount#start_time} */ readonly startTime: number; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/rum_report_count tencentcloud_rum_report_count} */ export declare class DataTencentcloudRumReportCount extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_rum_report_count"; /** * Generates CDKTF code for importing a DataTencentcloudRumReportCount 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 DataTencentcloudRumReportCount to import * @param importFromId The id of the existing DataTencentcloudRumReportCount that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/rum_report_count#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudRumReportCount 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/data-sources/rum_report_count tencentcloud_rum_report_count} Data Source * * @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 DataTencentcloudRumReportCountConfig */ constructor(scope: Construct, id: string, config: DataTencentcloudRumReportCountConfig); private _endTime?; get endTime(): number; set endTime(value: number); get endTimeInput(): number; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _instanceId?; get instanceId(): string; set instanceId(value: string); resetInstanceId(): void; get instanceIdInput(): string; private _projectId?; get projectId(): number; set projectId(value: number); get projectIdInput(): number; private _reportType?; get reportType(): string; set reportType(value: string); resetReportType(): void; get reportTypeInput(): string; get result(): any; private _resultOutputFile?; get resultOutputFile(): string; set resultOutputFile(value: string); resetResultOutputFile(): void; get resultOutputFileInput(): string; private _startTime?; get startTime(): number; set startTime(value: number); get startTimeInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }