import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface WafClbInstanceConfig extends cdktf.TerraformMetaArguments { /** * Whether to purchase API Security, 1: yes, 0: no. Default is 0. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_clb_instance#api_security WafClbInstance#api_security} */ readonly apiSecurity?: number; /** * Auto renew flag, 1: enable, 0: disable. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_clb_instance#auto_renew_flag WafClbInstance#auto_renew_flag} */ readonly autoRenewFlag?: number; /** * Whether to purchase Bot management, 1: yes, 0: no. Default is 0. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_clb_instance#bot_management WafClbInstance#bot_management} */ readonly botManagement?: number; /** * Is elastic billing enabled, 1: enable, 0: disable. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_clb_instance#elastic_mode WafClbInstance#elastic_mode} */ readonly elasticMode?: number; /** * Billing order parameters. support: premium_clb, enterprise_clb, ultimate_clb. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_clb_instance#goods_category WafClbInstance#goods_category} */ readonly goodsCategory: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_clb_instance#id WafClbInstance#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; /** * Waf instance name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_clb_instance#instance_name WafClbInstance#instance_name} */ readonly instanceName?: string; /** * QPS Limit, Minimum setting 10000. Only `elastic_mode` is 1, can be set. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_clb_instance#qps_limit WafClbInstance#qps_limit} */ readonly qpsLimit?: number; /** * Time interval. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_clb_instance#time_span WafClbInstance#time_span} */ readonly timeSpan?: number; /** * Time unit, support d, m, y. d: day, m: month, y: year. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_clb_instance#time_unit WafClbInstance#time_unit} */ readonly timeUnit?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_clb_instance tencentcloud_waf_clb_instance} */ export declare class WafClbInstance extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_waf_clb_instance"; /** * Generates CDKTF code for importing a WafClbInstance 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 WafClbInstance to import * @param importFromId The id of the existing WafClbInstance that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_clb_instance#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the WafClbInstance 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_clb_instance tencentcloud_waf_clb_instance} 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 WafClbInstanceConfig */ constructor(scope: Construct, id: string, config: WafClbInstanceConfig); private _apiSecurity?; get apiSecurity(): number; set apiSecurity(value: number); resetApiSecurity(): void; get apiSecurityInput(): number; private _autoRenewFlag?; get autoRenewFlag(): number; set autoRenewFlag(value: number); resetAutoRenewFlag(): void; get autoRenewFlagInput(): number; get beginTime(): any; private _botManagement?; get botManagement(): number; set botManagement(value: number); resetBotManagement(): void; get botManagementInput(): number; get edition(): any; private _elasticMode?; get elasticMode(): number; set elasticMode(value: number); resetElasticMode(): void; get elasticModeInput(): number; private _goodsCategory?; get goodsCategory(): string; set goodsCategory(value: string); get goodsCategoryInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; get instanceId(): any; private _instanceName?; get instanceName(): string; set instanceName(value: string); resetInstanceName(): void; get instanceNameInput(): string; private _qpsLimit?; get qpsLimit(): number; set qpsLimit(value: number); resetQpsLimit(): void; get qpsLimitInput(): number; get status(): any; private _timeSpan?; get timeSpan(): number; set timeSpan(value: number); resetTimeSpan(): void; get timeSpanInput(): number; private _timeUnit?; get timeUnit(): string; set timeUnit(value: string); resetTimeUnit(): void; get timeUnitInput(): string; get validTime(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }