import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface AntiddosDefaultAlarmThresholdConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/antiddos_default_alarm_threshold#id AntiddosDefaultAlarmThreshold#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; /** * Product type, value [bgp (represents advanced defense package product) bgpip (represents advanced defense IP product)]. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/antiddos_default_alarm_threshold#instance_type AntiddosDefaultAlarmThreshold#instance_type} */ readonly instanceType: string; /** * default_alarm_config block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/antiddos_default_alarm_threshold#default_alarm_config AntiddosDefaultAlarmThreshold#default_alarm_config} */ readonly defaultAlarmConfig: AntiddosDefaultAlarmThresholdDefaultAlarmConfig; } export interface AntiddosDefaultAlarmThresholdDefaultAlarmConfig { /** * Alarm threshold, in Mbps, with a value of>=0; When used as an input parameter, setting 0 will delete the alarm threshold configuration;. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/antiddos_default_alarm_threshold#alarm_threshold AntiddosDefaultAlarmThreshold#alarm_threshold} */ readonly alarmThreshold?: number; /** * Alarm threshold type, value [1 (incoming traffic alarm threshold) 2 (attack cleaning traffic alarm threshold)]. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/antiddos_default_alarm_threshold#alarm_type AntiddosDefaultAlarmThreshold#alarm_type} */ readonly alarmType?: number; } export declare function antiddosDefaultAlarmThresholdDefaultAlarmConfigToTerraform(struct?: AntiddosDefaultAlarmThresholdDefaultAlarmConfigOutputReference | AntiddosDefaultAlarmThresholdDefaultAlarmConfig): any; export declare function antiddosDefaultAlarmThresholdDefaultAlarmConfigToHclTerraform(struct?: AntiddosDefaultAlarmThresholdDefaultAlarmConfigOutputReference | AntiddosDefaultAlarmThresholdDefaultAlarmConfig): any; export declare class AntiddosDefaultAlarmThresholdDefaultAlarmConfigOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): AntiddosDefaultAlarmThresholdDefaultAlarmConfig | undefined; set internalValue(value: AntiddosDefaultAlarmThresholdDefaultAlarmConfig | undefined); private _alarmThreshold?; get alarmThreshold(): number; set alarmThreshold(value: number); resetAlarmThreshold(): void; get alarmThresholdInput(): number; private _alarmType?; get alarmType(): number; set alarmType(value: number); resetAlarmType(): void; get alarmTypeInput(): number; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/antiddos_default_alarm_threshold tencentcloud_antiddos_default_alarm_threshold} */ export declare class AntiddosDefaultAlarmThreshold extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_antiddos_default_alarm_threshold"; /** * Generates CDKTF code for importing a AntiddosDefaultAlarmThreshold 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 AntiddosDefaultAlarmThreshold to import * @param importFromId The id of the existing AntiddosDefaultAlarmThreshold that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/antiddos_default_alarm_threshold#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the AntiddosDefaultAlarmThreshold 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/antiddos_default_alarm_threshold tencentcloud_antiddos_default_alarm_threshold} 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 AntiddosDefaultAlarmThresholdConfig */ constructor(scope: Construct, id: string, config: AntiddosDefaultAlarmThresholdConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _instanceType?; get instanceType(): string; set instanceType(value: string); get instanceTypeInput(): string; private _defaultAlarmConfig; get defaultAlarmConfig(): AntiddosDefaultAlarmThresholdDefaultAlarmConfigOutputReference; putDefaultAlarmConfig(value: AntiddosDefaultAlarmThresholdDefaultAlarmConfig): void; get defaultAlarmConfigInput(): AntiddosDefaultAlarmThresholdDefaultAlarmConfig; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }