import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudAntiddosBgpBizTrendConfig extends cdktf.TerraformMetaArguments { /** * Dayu sub product code (bgpip represents advanced defense IP; net represents professional version of advanced defense IP). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/antiddos_bgp_biz_trend#business DataTencentcloudAntiddosBgpBizTrend#business} */ readonly business: string; /** * Statistic end time. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/antiddos_bgp_biz_trend#end_time DataTencentcloudAntiddosBgpBizTrend#end_time} */ readonly endTime: string; /** * 0 represents fixed time, 1 represents custom time. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/antiddos_bgp_biz_trend#flag DataTencentcloudAntiddosBgpBizTrend#flag} */ readonly flag: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/antiddos_bgp_biz_trend#id DataTencentcloudAntiddosBgpBizTrend#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; /** * Antiddos InstanceId. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/antiddos_bgp_biz_trend#instance_id DataTencentcloudAntiddosBgpBizTrend#instance_id} */ readonly instanceId: string; /** * Statistic metric name, for example: intraffic, outtraffic, inpkg, outpkg. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/antiddos_bgp_biz_trend#metric_name DataTencentcloudAntiddosBgpBizTrend#metric_name} */ readonly metricName: string; /** * Used to save results. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/antiddos_bgp_biz_trend#result_output_file DataTencentcloudAntiddosBgpBizTrend#result_output_file} */ readonly resultOutputFile?: string; /** * Statistic start time. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/antiddos_bgp_biz_trend#start_time DataTencentcloudAntiddosBgpBizTrend#start_time} */ readonly startTime: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/antiddos_bgp_biz_trend tencentcloud_antiddos_bgp_biz_trend} */ export declare class DataTencentcloudAntiddosBgpBizTrend extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_antiddos_bgp_biz_trend"; /** * Generates CDKTF code for importing a DataTencentcloudAntiddosBgpBizTrend 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 DataTencentcloudAntiddosBgpBizTrend to import * @param importFromId The id of the existing DataTencentcloudAntiddosBgpBizTrend that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/antiddos_bgp_biz_trend#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudAntiddosBgpBizTrend 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/antiddos_bgp_biz_trend tencentcloud_antiddos_bgp_biz_trend} 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 DataTencentcloudAntiddosBgpBizTrendConfig */ constructor(scope: Construct, id: string, config: DataTencentcloudAntiddosBgpBizTrendConfig); private _business?; get business(): string; set business(value: string); get businessInput(): string; get dataList(): any; private _endTime?; get endTime(): string; set endTime(value: string); get endTimeInput(): string; private _flag?; get flag(): number; set flag(value: number); get flagInput(): 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 maxData(): any; private _metricName?; get metricName(): string; set metricName(value: string); get metricNameInput(): string; private _resultOutputFile?; get resultOutputFile(): string; set resultOutputFile(value: string); resetResultOutputFile(): void; get resultOutputFileInput(): string; private _startTime?; get startTime(): string; set startTime(value: string); get startTimeInput(): string; get total(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }