import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CfwBlockIgnoreConfig extends cdktf.TerraformMetaArguments { /** * Remarks information, length cannot exceed 50. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cfw_block_ignore#comment CfwBlockIgnore#comment} */ readonly comment?: string; /** * Rule direction, 0 outbound, 1 inbound, 3 intranet. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cfw_block_ignore#direction CfwBlockIgnore#direction} */ readonly direction: string; /** * Rule domain name, one of IP and Domain is required. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cfw_block_ignore#domain CfwBlockIgnore#domain} */ readonly domain?: string; /** * Rule end time, format: 2006-01-02 15:04:05, must be greater than the current time. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cfw_block_ignore#end_time CfwBlockIgnore#end_time} */ readonly endTime: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cfw_block_ignore#id CfwBlockIgnore#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; /** * Rule IP address, one of IP and Domain is required. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cfw_block_ignore#ip CfwBlockIgnore#ip} */ readonly ip?: string; /** * Rule type, 1 block, 2 ignore, domain block is not supported. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cfw_block_ignore#rule_type CfwBlockIgnore#rule_type} */ readonly ruleType: number; /** * Rule start time. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cfw_block_ignore#start_time CfwBlockIgnore#start_time} */ readonly startTime?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cfw_block_ignore tencentcloud_cfw_block_ignore} */ export declare class CfwBlockIgnore extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_cfw_block_ignore"; /** * Generates CDKTF code for importing a CfwBlockIgnore 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 CfwBlockIgnore to import * @param importFromId The id of the existing CfwBlockIgnore that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cfw_block_ignore#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CfwBlockIgnore 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/cfw_block_ignore tencentcloud_cfw_block_ignore} 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 CfwBlockIgnoreConfig */ constructor(scope: Construct, id: string, config: CfwBlockIgnoreConfig); private _comment?; get comment(): string; set comment(value: string); resetComment(): void; get commentInput(): string; private _direction?; get direction(): string; set direction(value: string); get directionInput(): string; private _domain?; get domain(): string; set domain(value: string); resetDomain(): void; get domainInput(): string; private _endTime?; get endTime(): string; set endTime(value: string); get endTimeInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _ip?; get ip(): string; set ip(value: string); resetIp(): void; get ipInput(): string; private _ruleType?; get ruleType(): number; set ruleType(value: number); get ruleTypeInput(): number; private _startTime?; get startTime(): string; set startTime(value: string); resetStartTime(): void; get startTimeInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }