import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface WafOwaspRuleStatusConfigConfig extends cdktf.TerraformMetaArguments { /** * Domain name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_owasp_rule_status_config#domain WafOwaspRuleStatusConfig#domain} */ readonly domain: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_owasp_rule_status_config#id WafOwaspRuleStatusConfig#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; /** * Reason for modification. valid values: 0: none (compatibility record is empty). 1: avoid false positives due to business characteristics. 2: reporting of rule-based false positives. 3: gray release of core business rules. 4: others. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_owasp_rule_status_config#reason WafOwaspRuleStatusConfig#reason} */ readonly reason?: number; /** * Rule ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_owasp_rule_status_config#rule_id WafOwaspRuleStatusConfig#rule_id} */ readonly ruleId: string; /** * Rule switch. valid values: 0 (disabled), 1 (enabled), 2 (observation only). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_owasp_rule_status_config#rule_status WafOwaspRuleStatusConfig#rule_status} */ readonly ruleStatus: number; /** * If reverse requires the input of data type. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_owasp_rule_status_config#type_id WafOwaspRuleStatusConfig#type_id} */ readonly typeId?: number; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_owasp_rule_status_config tencentcloud_waf_owasp_rule_status_config} */ export declare class WafOwaspRuleStatusConfig extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_waf_owasp_rule_status_config"; /** * Generates CDKTF code for importing a WafOwaspRuleStatusConfig 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 WafOwaspRuleStatusConfig to import * @param importFromId The id of the existing WafOwaspRuleStatusConfig that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_owasp_rule_status_config#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the WafOwaspRuleStatusConfig 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_owasp_rule_status_config tencentcloud_waf_owasp_rule_status_config} 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 WafOwaspRuleStatusConfigConfig */ constructor(scope: Construct, id: string, config: WafOwaspRuleStatusConfigConfig); get cveId(): any; get description(): any; 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; get level(): any; get locked(): any; private _reason?; get reason(): number; set reason(value: number); resetReason(): void; get reasonInput(): number; private _ruleId?; get ruleId(): string; set ruleId(value: string); get ruleIdInput(): string; private _ruleStatus?; get ruleStatus(): number; set ruleStatus(value: number); get ruleStatusInput(): number; private _typeId?; get typeId(): number; set typeId(value: number); resetTypeId(): void; get typeIdInput(): number; get vulLevel(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }