import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CfwAddressTemplateConfig extends cdktf.TerraformMetaArguments { /** * Template Detail. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cfw_address_template#detail CfwAddressTemplate#detail} */ readonly detail: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cfw_address_template#id CfwAddressTemplate#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; /** * Type is 1, ip template eg: 1.1.1.1,2.2.2.2; Type is 5, domain name template eg: www.qq.com, www.tencent.com. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cfw_address_template#ip_string CfwAddressTemplate#ip_string} */ readonly ipString: string; /** * Template name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cfw_address_template#name CfwAddressTemplate#name} */ readonly name: string; /** * 1: ip template; 5: domain name templates. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cfw_address_template#type CfwAddressTemplate#type} */ readonly type: number; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cfw_address_template tencentcloud_cfw_address_template} */ export declare class CfwAddressTemplate extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_cfw_address_template"; /** * Generates CDKTF code for importing a CfwAddressTemplate 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 CfwAddressTemplate to import * @param importFromId The id of the existing CfwAddressTemplate that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cfw_address_template#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CfwAddressTemplate 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_address_template tencentcloud_cfw_address_template} 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 CfwAddressTemplateConfig */ constructor(scope: Construct, id: string, config: CfwAddressTemplateConfig); private _detail?; get detail(): string; set detail(value: string); get detailInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _ipString?; get ipString(): string; set ipString(value: string); get ipStringInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _type?; get type(): number; set type(value: number); get typeInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }