import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudCatMetricDataConfig extends cdktf.TerraformMetaArguments { /** * Analysis of task type, supported types: `AnalyzeTaskType_Network`: network quality, `AnalyzeTaskType_Browse`: page performance, `AnalyzeTaskType_Transport`: port performance, `AnalyzeTaskType_UploadDownload`: file transport, `AnalyzeTaskType_MediaStream`: audiovisual experience. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cat_metric_data#analyze_task_type DataTencentcloudCatMetricData#analyze_task_type} */ readonly analyzeTaskType: string; /** * Detailed fields of metrics, specified metrics can be passed or aggregate metrics, such as avg(ping_time) means entire delay. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cat_metric_data#field DataTencentcloudCatMetricData#field} */ readonly field: string; /** * Filter conditions can be passed as a single filter or multiple parameters concatenated together. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cat_metric_data#filter DataTencentcloudCatMetricData#filter} */ readonly filter?: string; /** * Multiple condition filtering, supports combining multiple filtering conditions for query. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cat_metric_data#filters DataTencentcloudCatMetricData#filters} */ readonly filters: string[]; /** * Aggregation time, such as 1m, 1d, 30d, and so on. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cat_metric_data#group_by DataTencentcloudCatMetricData#group_by} */ readonly groupBy?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cat_metric_data#id DataTencentcloudCatMetricData#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; /** * Metric type, metrics queries are passed with gauge by default. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cat_metric_data#metric_type DataTencentcloudCatMetricData#metric_type} */ readonly metricType: string; /** * Used to save results. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cat_metric_data#result_output_file DataTencentcloudCatMetricData#result_output_file} */ readonly resultOutputFile?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cat_metric_data tencentcloud_cat_metric_data} */ export declare class DataTencentcloudCatMetricData extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_cat_metric_data"; /** * Generates CDKTF code for importing a DataTencentcloudCatMetricData 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 DataTencentcloudCatMetricData to import * @param importFromId The id of the existing DataTencentcloudCatMetricData that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cat_metric_data#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudCatMetricData 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/cat_metric_data tencentcloud_cat_metric_data} 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 DataTencentcloudCatMetricDataConfig */ constructor(scope: Construct, id: string, config: DataTencentcloudCatMetricDataConfig); private _analyzeTaskType?; get analyzeTaskType(): string; set analyzeTaskType(value: string); get analyzeTaskTypeInput(): string; private _field?; get field(): string; set field(value: string); get fieldInput(): string; private _filter?; get filter(): string; set filter(value: string); resetFilter(): void; get filterInput(): string; private _filters?; get filters(): string[]; set filters(value: string[]); get filtersInput(): string[]; private _groupBy?; get groupBy(): string; set groupBy(value: string); resetGroupBy(): void; get groupByInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; get metricSet(): any; private _metricType?; get metricType(): string; set metricType(value: string); get metricTypeInput(): string; private _resultOutputFile?; get resultOutputFile(): string; set resultOutputFile(value: string); resetResultOutputFile(): void; get resultOutputFileInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }