import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface MysqlRemoteBackupConfigConfig extends cdktf.TerraformMetaArguments { /** * Remote backup retention time, in days. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_remote_backup_config#expire_days MysqlRemoteBackupConfig#expire_days} */ readonly expireDays: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_remote_backup_config#id MysqlRemoteBackupConfig#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, in the format: 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/resources/mysql_remote_backup_config#instance_id MysqlRemoteBackupConfig#instance_id} */ readonly instanceId: string; /** * Remote data backup switch, off - disable remote backup, on - enable remote backup. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_remote_backup_config#remote_backup_save MysqlRemoteBackupConfig#remote_backup_save} */ readonly remoteBackupSave: string; /** * Off-site log backup switch, off - off off-site backup, on-on off-site backup, only when the parameter RemoteBackupSave is on, the RemoteBinlogSave parameter can be set to on. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_remote_backup_config#remote_binlog_save MysqlRemoteBackupConfig#remote_binlog_save} */ readonly remoteBinlogSave: string; /** * User settings off-site backup region list. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_remote_backup_config#remote_region MysqlRemoteBackupConfig#remote_region} */ readonly remoteRegion: string[]; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_remote_backup_config tencentcloud_mysql_remote_backup_config} */ export declare class MysqlRemoteBackupConfig extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_mysql_remote_backup_config"; /** * Generates CDKTF code for importing a MysqlRemoteBackupConfig 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 MysqlRemoteBackupConfig to import * @param importFromId The id of the existing MysqlRemoteBackupConfig that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mysql_remote_backup_config#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the MysqlRemoteBackupConfig 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/mysql_remote_backup_config tencentcloud_mysql_remote_backup_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 MysqlRemoteBackupConfigConfig */ constructor(scope: Construct, id: string, config: MysqlRemoteBackupConfigConfig); private _expireDays?; get expireDays(): number; set expireDays(value: number); get expireDaysInput(): number; 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 _remoteBackupSave?; get remoteBackupSave(): string; set remoteBackupSave(value: string); get remoteBackupSaveInput(): string; private _remoteBinlogSave?; get remoteBinlogSave(): string; set remoteBinlogSave(value: string); get remoteBinlogSaveInput(): string; private _remoteRegion?; get remoteRegion(): string[]; set remoteRegion(value: string[]); get remoteRegionInput(): string[]; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }