import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface WafProtectionModeConfig extends cdktf.TerraformMetaArguments { /** * Domain. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_protection_mode#domain WafProtectionMode#domain} */ readonly domain: string; /** * WAF edition. clb-waf means clb-waf, sparta-waf means saas-waf, default is sparta-waf. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_protection_mode#edition WafProtectionMode#edition} */ readonly edition?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_protection_mode#id WafProtectionMode#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; /** * Protection status:10: Rule observation; AI off mode, 11: Rule observation; AI observation mode, 12: Rule observation; AI interception mode20: Rule interception; AI off mode, 21: Rule interception; AI observation mode, 22: Rule interception; AI interception mode. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_protection_mode#mode WafProtectionMode#mode} */ readonly mode: number; /** * 0 is to modify the rule engine status, 1 is to modify the AI status. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_protection_mode#type WafProtectionMode#type} */ readonly type?: number; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_protection_mode tencentcloud_waf_protection_mode} */ export declare class WafProtectionMode extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_waf_protection_mode"; /** * Generates CDKTF code for importing a WafProtectionMode 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 WafProtectionMode to import * @param importFromId The id of the existing WafProtectionMode that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_protection_mode#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the WafProtectionMode 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/waf_protection_mode tencentcloud_waf_protection_mode} 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 WafProtectionModeConfig */ constructor(scope: Construct, id: string, config: WafProtectionModeConfig); private _domain?; get domain(): string; set domain(value: string); get domainInput(): string; private _edition?; get edition(): string; set edition(value: string); resetEdition(): void; get editionInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _mode?; get mode(): number; set mode(value: number); get modeInput(): number; private _type?; get type(): number; set type(value: number); resetType(): void; get typeInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }