import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface WafModuleStatusConfig extends cdktf.TerraformMetaArguments { /** * ACL module status, 0:closed, 1:opened. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_module_status#access_control WafModuleStatus#access_control} */ readonly accessControl: number; /** * Anti leakage module status, 0:closed, 1:opened. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_module_status#anti_leakage WafModuleStatus#anti_leakage} */ readonly antiLeakage?: number; /** * Anti tamper module status, 0:closed, 1:opened. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_module_status#anti_tamper WafModuleStatus#anti_tamper} */ readonly antiTamper?: number; /** * API security module status, 0:closed, 1:opened. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_module_status#api_protection WafModuleStatus#api_protection} */ readonly apiProtection: number; /** * CC module status, 0:closed, 1:opened. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_module_status#cc_protection WafModuleStatus#cc_protection} */ readonly ccProtection: number; /** * Domain. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_module_status#domain WafModuleStatus#domain} */ readonly domain: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_module_status#id WafModuleStatus#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; /** * WEB security module status, 0:closed, 1:opened. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_module_status#web_security WafModuleStatus#web_security} */ readonly webSecurity: number; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_module_status tencentcloud_waf_module_status} */ export declare class WafModuleStatus extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_waf_module_status"; /** * Generates CDKTF code for importing a WafModuleStatus 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 WafModuleStatus to import * @param importFromId The id of the existing WafModuleStatus that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_module_status#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the WafModuleStatus 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_module_status tencentcloud_waf_module_status} 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 WafModuleStatusConfig */ constructor(scope: Construct, id: string, config: WafModuleStatusConfig); private _accessControl?; get accessControl(): number; set accessControl(value: number); get accessControlInput(): number; private _antiLeakage?; get antiLeakage(): number; set antiLeakage(value: number); resetAntiLeakage(): void; get antiLeakageInput(): number; private _antiTamper?; get antiTamper(): number; set antiTamper(value: number); resetAntiTamper(): void; get antiTamperInput(): number; private _apiProtection?; get apiProtection(): number; set apiProtection(value: number); get apiProtectionInput(): number; private _ccProtection?; get ccProtection(): number; set ccProtection(value: number); get ccProtectionInput(): number; private _domain?; get domain(): string; set domain(value: string); get domainInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _webSecurity?; get webSecurity(): number; set webSecurity(value: number); get webSecurityInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }