import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudMysqlRollbackRangeTimeConfig extends cdktf.TerraformMetaArguments { /** * If the clone instance is not in the same region as the source instance, fill in the region where the clone instance is located, for example: ap-guangzhou. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/mysql_rollback_range_time#backup_region DataTencentcloudMysqlRollbackRangeTime#backup_region} */ readonly backupRegion?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/mysql_rollback_range_time#id DataTencentcloudMysqlRollbackRangeTime#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; /** * A list of instance IDs, the format of a single instance ID is: cdb-c1nl9rpv. Same instance ID as displayed in the ApsaraDB for Console page. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/mysql_rollback_range_time#instance_ids DataTencentcloudMysqlRollbackRangeTime#instance_ids} */ readonly instanceIds: string[]; /** * Whether the clone instance is in the same zone as the source instance, yes: `false`, no: `true`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/mysql_rollback_range_time#is_remote_zone DataTencentcloudMysqlRollbackRangeTime#is_remote_zone} */ readonly isRemoteZone?: string; /** * Used to save results. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/mysql_rollback_range_time#result_output_file DataTencentcloudMysqlRollbackRangeTime#result_output_file} */ readonly resultOutputFile?: string; } export interface DataTencentcloudMysqlRollbackRangeTimeItemsTimes { } export declare function dataTencentcloudMysqlRollbackRangeTimeItemsTimesToTerraform(struct?: DataTencentcloudMysqlRollbackRangeTimeItemsTimes): any; export declare function dataTencentcloudMysqlRollbackRangeTimeItemsTimesToHclTerraform(struct?: DataTencentcloudMysqlRollbackRangeTimeItemsTimes): any; export declare class DataTencentcloudMysqlRollbackRangeTimeItemsTimesOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @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(): DataTencentcloudMysqlRollbackRangeTimeItemsTimes | undefined; set internalValue(value: DataTencentcloudMysqlRollbackRangeTimeItemsTimes | undefined); get begin(): any; get end(): any; } export declare class DataTencentcloudMysqlRollbackRangeTimeItemsTimesList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @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): DataTencentcloudMysqlRollbackRangeTimeItemsTimesOutputReference; } export interface DataTencentcloudMysqlRollbackRangeTimeItems { } export declare function dataTencentcloudMysqlRollbackRangeTimeItemsToTerraform(struct?: DataTencentcloudMysqlRollbackRangeTimeItems): any; export declare function dataTencentcloudMysqlRollbackRangeTimeItemsToHclTerraform(struct?: DataTencentcloudMysqlRollbackRangeTimeItems): any; export declare class DataTencentcloudMysqlRollbackRangeTimeItemsOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @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(): DataTencentcloudMysqlRollbackRangeTimeItems | undefined; set internalValue(value: DataTencentcloudMysqlRollbackRangeTimeItems | undefined); get code(): any; get instanceId(): any; get message(): any; private _times; get times(): DataTencentcloudMysqlRollbackRangeTimeItemsTimesList; } export declare class DataTencentcloudMysqlRollbackRangeTimeItemsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @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): DataTencentcloudMysqlRollbackRangeTimeItemsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/mysql_rollback_range_time tencentcloud_mysql_rollback_range_time} */ export declare class DataTencentcloudMysqlRollbackRangeTime extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_mysql_rollback_range_time"; /** * Generates CDKTF code for importing a DataTencentcloudMysqlRollbackRangeTime 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 DataTencentcloudMysqlRollbackRangeTime to import * @param importFromId The id of the existing DataTencentcloudMysqlRollbackRangeTime that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/mysql_rollback_range_time#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudMysqlRollbackRangeTime 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/data-sources/mysql_rollback_range_time tencentcloud_mysql_rollback_range_time} Data Source * * @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 DataTencentcloudMysqlRollbackRangeTimeConfig */ constructor(scope: Construct, id: string, config: DataTencentcloudMysqlRollbackRangeTimeConfig); private _backupRegion?; get backupRegion(): string; set backupRegion(value: string); resetBackupRegion(): void; get backupRegionInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _instanceIds?; get instanceIds(): string[]; set instanceIds(value: string[]); get instanceIdsInput(): string[]; private _isRemoteZone?; get isRemoteZone(): string; set isRemoteZone(value: string); resetIsRemoteZone(): void; get isRemoteZoneInput(): string; private _items; get items(): DataTencentcloudMysqlRollbackRangeTimeItemsList; private _resultOutputFile?; get resultOutputFile(): string; set resultOutputFile(value: string); resetResultOutputFile(): void; get resultOutputFileInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }