import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ClickhouseXmlConfigConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clickhouse_xml_config#id ClickhouseXmlConfig#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; /** * Cluster ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clickhouse_xml_config#instance_id ClickhouseXmlConfig#instance_id} */ readonly instanceId: string; /** * modify_conf_context block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clickhouse_xml_config#modify_conf_context ClickhouseXmlConfig#modify_conf_context} */ readonly modifyConfContext: ClickhouseXmlConfigModifyConfContext; } export interface ClickhouseXmlConfigModifyConfContext { /** * Configuration file name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clickhouse_xml_config#file_name ClickhouseXmlConfig#file_name} */ readonly fileName: string; /** * Path to save configuration file. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clickhouse_xml_config#file_path ClickhouseXmlConfig#file_path} */ readonly filePath?: string; /** * New content of configuration file, base64 encoded. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clickhouse_xml_config#new_conf_value ClickhouseXmlConfig#new_conf_value} */ readonly newConfValue: string; } export declare function clickhouseXmlConfigModifyConfContextToTerraform(struct?: ClickhouseXmlConfigModifyConfContextOutputReference | ClickhouseXmlConfigModifyConfContext): any; export declare function clickhouseXmlConfigModifyConfContextToHclTerraform(struct?: ClickhouseXmlConfigModifyConfContextOutputReference | ClickhouseXmlConfigModifyConfContext): any; export declare class ClickhouseXmlConfigModifyConfContextOutputReference 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(): ClickhouseXmlConfigModifyConfContext | undefined; set internalValue(value: ClickhouseXmlConfigModifyConfContext | undefined); private _fileName?; get fileName(): string; set fileName(value: string); get fileNameInput(): string; private _filePath?; get filePath(): string; set filePath(value: string); resetFilePath(): void; get filePathInput(): string; private _newConfValue?; get newConfValue(): string; set newConfValue(value: string); get newConfValueInput(): string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clickhouse_xml_config tencentcloud_clickhouse_xml_config} */ export declare class ClickhouseXmlConfig extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_clickhouse_xml_config"; /** * Generates CDKTF code for importing a ClickhouseXmlConfig 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 ClickhouseXmlConfig to import * @param importFromId The id of the existing ClickhouseXmlConfig that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clickhouse_xml_config#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the ClickhouseXmlConfig 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/clickhouse_xml_config tencentcloud_clickhouse_xml_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 ClickhouseXmlConfigConfig */ constructor(scope: Construct, id: string, config: ClickhouseXmlConfigConfig); 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 _modifyConfContext; get modifyConfContext(): ClickhouseXmlConfigModifyConfContextOutputReference; putModifyConfContext(value: ClickhouseXmlConfigModifyConfContext): void; get modifyConfContextInput(): ClickhouseXmlConfigModifyConfContext; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }