import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DlcRollbackDataEngineImageOperationConfig extends cdktf.TerraformMetaArguments { /** * Engine ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_rollback_data_engine_image_operation#data_engine_id DlcRollbackDataEngineImageOperation#data_engine_id} */ readonly dataEngineId: string; /** * FromRecordId parameters returned by the API for checking the availability of rolling back. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_rollback_data_engine_image_operation#from_record_id DlcRollbackDataEngineImageOperation#from_record_id} */ readonly fromRecordId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_rollback_data_engine_image_operation#id DlcRollbackDataEngineImageOperation#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; /** * ToRecordId parameters returned by the API for checking the availability of rolling back. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_rollback_data_engine_image_operation#to_record_id DlcRollbackDataEngineImageOperation#to_record_id} */ readonly toRecordId?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_rollback_data_engine_image_operation tencentcloud_dlc_rollback_data_engine_image_operation} */ export declare class DlcRollbackDataEngineImageOperation extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_dlc_rollback_data_engine_image_operation"; /** * Generates CDKTF code for importing a DlcRollbackDataEngineImageOperation 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 DlcRollbackDataEngineImageOperation to import * @param importFromId The id of the existing DlcRollbackDataEngineImageOperation that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_rollback_data_engine_image_operation#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DlcRollbackDataEngineImageOperation 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/dlc_rollback_data_engine_image_operation tencentcloud_dlc_rollback_data_engine_image_operation} 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 DlcRollbackDataEngineImageOperationConfig */ constructor(scope: Construct, id: string, config: DlcRollbackDataEngineImageOperationConfig); private _dataEngineId?; get dataEngineId(): string; set dataEngineId(value: string); get dataEngineIdInput(): string; private _fromRecordId?; get fromRecordId(): string; set fromRecordId(value: string); resetFromRecordId(): void; get fromRecordIdInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _toRecordId?; get toRecordId(): string; set toRecordId(value: string); resetToRecordId(): void; get toRecordIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }