import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface AntiddosDdosGeoIpBlockConfigConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/antiddos_ddos_geo_ip_block_config#id AntiddosDdosGeoIpBlockConfig#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; /** * InstanceId. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/antiddos_ddos_geo_ip_block_config#instance_id AntiddosDdosGeoIpBlockConfig#instance_id} */ readonly instanceId: string; /** * ddos_geo_ip_block_config block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/antiddos_ddos_geo_ip_block_config#ddos_geo_ip_block_config AntiddosDdosGeoIpBlockConfig#ddos_geo_ip_block_config} */ readonly ddosGeoIpBlockConfig: AntiddosDdosGeoIpBlockConfigDdosGeoIpBlockConfig; } export interface AntiddosDdosGeoIpBlockConfigDdosGeoIpBlockConfig { /** * Blocking action, value [drop (intercept) trans (release)]. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/antiddos_ddos_geo_ip_block_config#action AntiddosDdosGeoIpBlockConfig#action} */ readonly action: string; /** * When RegionType is customized, an AreaList must be filled in, with a maximum of 128 entries;. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/antiddos_ddos_geo_ip_block_config#area_list AntiddosDdosGeoIpBlockConfig#area_list} */ readonly areaList?: number[]; /** * Region type, value [oversea (overseas) China (domestic) customized (custom region)]. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/antiddos_ddos_geo_ip_block_config#region_type AntiddosDdosGeoIpBlockConfig#region_type} */ readonly regionType: string; } export declare function antiddosDdosGeoIpBlockConfigDdosGeoIpBlockConfigToTerraform(struct?: AntiddosDdosGeoIpBlockConfigDdosGeoIpBlockConfigOutputReference | AntiddosDdosGeoIpBlockConfigDdosGeoIpBlockConfig): any; export declare function antiddosDdosGeoIpBlockConfigDdosGeoIpBlockConfigToHclTerraform(struct?: AntiddosDdosGeoIpBlockConfigDdosGeoIpBlockConfigOutputReference | AntiddosDdosGeoIpBlockConfigDdosGeoIpBlockConfig): any; export declare class AntiddosDdosGeoIpBlockConfigDdosGeoIpBlockConfigOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): AntiddosDdosGeoIpBlockConfigDdosGeoIpBlockConfig | undefined; set internalValue(value: AntiddosDdosGeoIpBlockConfigDdosGeoIpBlockConfig | undefined); private _action?; get action(): string; set action(value: string); get actionInput(): string; private _areaList?; get areaList(): number[]; set areaList(value: number[]); resetAreaList(): void; get areaListInput(): number[]; private _regionType?; get regionType(): string; set regionType(value: string); get regionTypeInput(): string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/antiddos_ddos_geo_ip_block_config tencentcloud_antiddos_ddos_geo_ip_block_config} */ export declare class AntiddosDdosGeoIpBlockConfig extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_antiddos_ddos_geo_ip_block_config"; /** * Generates CDKTF code for importing a AntiddosDdosGeoIpBlockConfig 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 AntiddosDdosGeoIpBlockConfig to import * @param importFromId The id of the existing AntiddosDdosGeoIpBlockConfig that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/antiddos_ddos_geo_ip_block_config#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the AntiddosDdosGeoIpBlockConfig 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/antiddos_ddos_geo_ip_block_config tencentcloud_antiddos_ddos_geo_ip_block_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 AntiddosDdosGeoIpBlockConfigConfig */ constructor(scope: Construct, id: string, config: AntiddosDdosGeoIpBlockConfigConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _instanceId?; get instanceId(): string; set instanceId(value: string); get instanceIdInput(): string; private _ddosGeoIpBlockConfig; get ddosGeoIpBlockConfig(): AntiddosDdosGeoIpBlockConfigDdosGeoIpBlockConfigOutputReference; putDdosGeoIpBlockConfig(value: AntiddosDdosGeoIpBlockConfigDdosGeoIpBlockConfig): void; get ddosGeoIpBlockConfigInput(): AntiddosDdosGeoIpBlockConfigDdosGeoIpBlockConfig; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }