import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CdwpgDbconfigConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cdwpg_dbconfig#id CdwpgDbconfig#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; /** * Instance id. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cdwpg_dbconfig#instance_id CdwpgDbconfig#instance_id} */ readonly instanceId: string; /** * node_config_params block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cdwpg_dbconfig#node_config_params CdwpgDbconfig#node_config_params} */ readonly nodeConfigParams?: CdwpgDbconfigNodeConfigParams[] | cdktf.IResolvable; } export interface CdwpgDbconfigNodeConfigParams { /** * Node type. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cdwpg_dbconfig#node_type CdwpgDbconfig#node_type} */ readonly nodeType: string; /** * Parameter name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cdwpg_dbconfig#parameter_name CdwpgDbconfig#parameter_name} */ readonly parameterName?: string; /** * Parameter value. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cdwpg_dbconfig#parameter_value CdwpgDbconfig#parameter_value} */ readonly parameterValue?: string; } export declare function cdwpgDbconfigNodeConfigParamsToTerraform(struct?: CdwpgDbconfigNodeConfigParams | cdktf.IResolvable): any; export declare function cdwpgDbconfigNodeConfigParamsToHclTerraform(struct?: CdwpgDbconfigNodeConfigParams | cdktf.IResolvable): any; export declare class CdwpgDbconfigNodeConfigParamsOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): CdwpgDbconfigNodeConfigParams | cdktf.IResolvable | undefined; set internalValue(value: CdwpgDbconfigNodeConfigParams | cdktf.IResolvable | undefined); private _nodeType?; get nodeType(): string; set nodeType(value: string); get nodeTypeInput(): string; private _parameterName?; get parameterName(): string; set parameterName(value: string); resetParameterName(): void; get parameterNameInput(): string; private _parameterValue?; get parameterValue(): string; set parameterValue(value: string); resetParameterValue(): void; get parameterValueInput(): string; } export declare class CdwpgDbconfigNodeConfigParamsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: CdwpgDbconfigNodeConfigParams[] | cdktf.IResolvable; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): CdwpgDbconfigNodeConfigParamsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cdwpg_dbconfig tencentcloud_cdwpg_dbconfig} */ export declare class CdwpgDbconfig extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_cdwpg_dbconfig"; /** * Generates CDKTF code for importing a CdwpgDbconfig 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 CdwpgDbconfig to import * @param importFromId The id of the existing CdwpgDbconfig that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cdwpg_dbconfig#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CdwpgDbconfig 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/cdwpg_dbconfig tencentcloud_cdwpg_dbconfig} 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 CdwpgDbconfigConfig */ constructor(scope: Construct, id: string, config: CdwpgDbconfigConfig); 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 _nodeConfigParams; get nodeConfigParams(): CdwpgDbconfigNodeConfigParamsList; putNodeConfigParams(value: CdwpgDbconfigNodeConfigParams[] | cdktf.IResolvable): void; resetNodeConfigParams(): void; get nodeConfigParamsInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }