import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TsfApplicationPublicConfigConfig extends cdktf.TerraformMetaArguments { /** * Config Name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_application_public_config#config_name TsfApplicationPublicConfig#config_name} */ readonly configName: string; /** * Config type. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_application_public_config#config_type TsfApplicationPublicConfig#config_type} */ readonly configType?: string; /** * config value, only yaml file allowed. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_application_public_config#config_value TsfApplicationPublicConfig#config_value} */ readonly configValue: string; /** * config version. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_application_public_config#config_version TsfApplicationPublicConfig#config_version} */ readonly configVersion: string; /** * Config version description. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_application_public_config#config_version_desc TsfApplicationPublicConfig#config_version_desc} */ readonly configVersionDesc?: string; /** * the config value is encoded with base64 or not. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_application_public_config#encode_with_base64 TsfApplicationPublicConfig#encode_with_base64} */ readonly encodeWithBase64?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_application_public_config#id TsfApplicationPublicConfig#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; /** * datasource for auth. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_application_public_config#program_id_list TsfApplicationPublicConfig#program_id_list} */ readonly programIdList?: string[]; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_application_public_config tencentcloud_tsf_application_public_config} */ export declare class TsfApplicationPublicConfig extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_tsf_application_public_config"; /** * Generates CDKTF code for importing a TsfApplicationPublicConfig 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 TsfApplicationPublicConfig to import * @param importFromId The id of the existing TsfApplicationPublicConfig that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tsf_application_public_config#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TsfApplicationPublicConfig 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_application_public_config tencentcloud_tsf_application_public_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 TsfApplicationPublicConfigConfig */ constructor(scope: Construct, id: string, config: TsfApplicationPublicConfigConfig); private _configName?; get configName(): string; set configName(value: string); get configNameInput(): string; private _configType?; get configType(): string; set configType(value: string); resetConfigType(): void; get configTypeInput(): string; private _configValue?; get configValue(): string; set configValue(value: string); get configValueInput(): string; private _configVersion?; get configVersion(): string; set configVersion(value: string); get configVersionInput(): string; private _configVersionDesc?; get configVersionDesc(): string; set configVersionDesc(value: string); resetConfigVersionDesc(): void; get configVersionDescInput(): string; private _encodeWithBase64?; get encodeWithBase64(): boolean | cdktf.IResolvable; set encodeWithBase64(value: boolean | cdktf.IResolvable); resetEncodeWithBase64(): void; get encodeWithBase64Input(): 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[]; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }