import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TsfConfigTemplateConfig extends cdktf.TerraformMetaArguments { /** * Configuration template description. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_config_template#config_template_desc TsfConfigTemplate#config_template_desc} */ readonly configTemplateDesc?: string; /** * Configuration template name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_config_template#config_template_name TsfConfigTemplate#config_template_name} */ readonly configTemplateName: string; /** * Configure the microservice framework corresponding to the template. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_config_template#config_template_type TsfConfigTemplate#config_template_type} */ readonly configTemplateType: string; /** * Configure template data. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_config_template#config_template_value TsfConfigTemplate#config_template_value} */ readonly configTemplateValue: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_config_template#id TsfConfigTemplate#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; /** * Program id list. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_config_template#program_id_list TsfConfigTemplate#program_id_list} */ readonly programIdList?: string[]; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_config_template tencentcloud_tsf_config_template} */ export declare class TsfConfigTemplate extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_tsf_config_template"; /** * Generates CDKTF code for importing a TsfConfigTemplate 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 TsfConfigTemplate to import * @param importFromId The id of the existing TsfConfigTemplate that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_config_template#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TsfConfigTemplate 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/tsf_config_template tencentcloud_tsf_config_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 TsfConfigTemplateConfig */ constructor(scope: Construct, id: string, config: TsfConfigTemplateConfig); private _configTemplateDesc?; get configTemplateDesc(): string; set configTemplateDesc(value: string); resetConfigTemplateDesc(): void; get configTemplateDescInput(): string; get configTemplateId(): any; private _configTemplateName?; get configTemplateName(): string; set configTemplateName(value: string); get configTemplateNameInput(): string; private _configTemplateType?; get configTemplateType(): string; set configTemplateType(value: string); get configTemplateTypeInput(): string; private _configTemplateValue?; get configTemplateValue(): string; set configTemplateValue(value: string); get configTemplateValueInput(): string; get createTime(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _programIdList?; get programIdList(): string[]; set programIdList(value: string[]); resetProgramIdList(): void; get programIdListInput(): string[]; get updateTime(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }