published on Thursday, May 14, 2026 by Volcengine
published on Thursday, May 14, 2026 by Volcengine
Backups are important runtime files for the database. Based on backup files, the database can achieve disaster recovery and restoration. MySQL Cloud Database provides two backup capabilities: data backup and log backup. Data backup allows you to restore the database to a specific backup set, while log backup enables restoration to a specified point in time
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
const rdsmysqlbackupDemo = new volcenginecc.rdsmysql.Backup("rdsmysqlbackupDemo", {
instanceId: "mysql-9e2c59****",
backupMethod: "Logical",
backupMetas: [{
database: "test",
tables: [],
}],
});
import pulumi
import pulumi_volcenginecc as volcenginecc
rdsmysqlbackup_demo = volcenginecc.rdsmysql.Backup("rdsmysqlbackupDemo",
instance_id="mysql-9e2c59****",
backup_method="Logical",
backup_metas=[{
"database": "test",
"tables": [],
}])
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcenginecc/sdk/go/volcenginecc/rdsmysql"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := rdsmysql.NewBackup(ctx, "rdsmysqlbackupDemo", &rdsmysql.BackupArgs{
InstanceId: pulumi.String("mysql-9e2c59****"),
BackupMethod: pulumi.String("Logical"),
BackupMetas: rdsmysql.BackupBackupMetaArray{
&rdsmysql.BackupBackupMetaArgs{
Database: pulumi.String("test"),
Tables: pulumi.StringArray{},
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcenginecc = Volcengine.Pulumi.Volcenginecc;
return await Deployment.RunAsync(() =>
{
var rdsmysqlbackupDemo = new Volcenginecc.Rdsmysql.Backup("rdsmysqlbackupDemo", new()
{
InstanceId = "mysql-9e2c59****",
BackupMethod = "Logical",
BackupMetas = new[]
{
new Volcenginecc.Rdsmysql.Inputs.BackupBackupMetaArgs
{
Database = "test",
Tables = new() { },
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.volcengine.volcenginecc.rdsmysql.Backup;
import com.volcengine.volcenginecc.rdsmysql.BackupArgs;
import com.pulumi.volcenginecc.rdsmysql.inputs.BackupBackupMetaArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var rdsmysqlbackupDemo = new Backup("rdsmysqlbackupDemo", BackupArgs.builder()
.instanceId("mysql-9e2c59****")
.backupMethod("Logical")
.backupMetas(BackupBackupMetaArgs.builder()
.database("test")
.tables()
.build())
.build());
}
}
resources:
rdsmysqlbackupDemo:
type: volcenginecc:rdsmysql:Backup
properties:
instanceId: mysql-9e2c59****
backupMethod: Logical
backupMetas:
- database: test
tables: []
Example coming soon!
Create Backup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Backup(name: string, args: BackupArgs, opts?: CustomResourceOptions);@overload
def Backup(resource_name: str,
args: BackupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Backup(resource_name: str,
opts: Optional[ResourceOptions] = None,
instance_id: Optional[str] = None,
backup_metas: Optional[Sequence[BackupBackupMetaArgs]] = None,
backup_method: Optional[str] = None,
backup_type: Optional[str] = None)func NewBackup(ctx *Context, name string, args BackupArgs, opts ...ResourceOption) (*Backup, error)public Backup(string name, BackupArgs args, CustomResourceOptions? opts = null)
public Backup(String name, BackupArgs args)
public Backup(String name, BackupArgs args, CustomResourceOptions options)
type: volcenginecc:rdsmysql:Backup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "volcenginecc_rdsmysql_backup" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args BackupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args BackupArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args BackupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BackupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BackupArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var backupResource = new Volcenginecc.Rdsmysql.Backup("backupResource", new()
{
InstanceId = "string",
BackupMetas = new[]
{
new Volcenginecc.Rdsmysql.Inputs.BackupBackupMetaArgs
{
Database = "string",
Tables = new[]
{
"string",
},
},
},
BackupMethod = "string",
BackupType = "string",
});
example, err := rdsmysql.NewBackup(ctx, "backupResource", &rdsmysql.BackupArgs{
InstanceId: pulumi.String("string"),
BackupMetas: rdsmysql.BackupBackupMetaArray{
&rdsmysql.BackupBackupMetaArgs{
Database: pulumi.String("string"),
Tables: pulumi.StringArray{
pulumi.String("string"),
},
},
},
BackupMethod: pulumi.String("string"),
BackupType: pulumi.String("string"),
})
resource "volcenginecc_rdsmysql_backup" "backupResource" {
instance_id = "string"
backup_metas {
database = "string"
tables = ["string"]
}
backup_method = "string"
backup_type = "string"
}
var backupResource = new com.volcengine.volcenginecc.rdsmysql.Backup("backupResource", com.volcengine.volcenginecc.rdsmysql.BackupArgs.builder()
.instanceId("string")
.backupMetas(BackupBackupMetaArgs.builder()
.database("string")
.tables("string")
.build())
.backupMethod("string")
.backupType("string")
.build());
backup_resource = volcenginecc.rdsmysql.Backup("backupResource",
instance_id="string",
backup_metas=[{
"database": "string",
"tables": ["string"],
}],
backup_method="string",
backup_type="string")
const backupResource = new volcenginecc.rdsmysql.Backup("backupResource", {
instanceId: "string",
backupMetas: [{
database: "string",
tables: ["string"],
}],
backupMethod: "string",
backupType: "string",
});
type: volcenginecc:rdsmysql:Backup
properties:
backupMetas:
- database: string
tables:
- string
backupMethod: string
backupType: string
instanceId: string
Backup Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Backup resource accepts the following input properties:
- Instance
Id string - Instance ID
- Backup
Metas List<Volcengine.Backup Backup Meta> - Backup
Method string - Backup type. Values: Physical (physical backup), Logical (logical backup), Snapshot (snapshot backup)
- Backup
Type string - Backup method. Values: Full (full/database table backup), Increment (incremental backup), DumpAll (full database backup)
- Instance
Id string - Instance ID
- Backup
Metas []BackupBackup Meta Args - Backup
Method string - Backup type. Values: Physical (physical backup), Logical (logical backup), Snapshot (snapshot backup)
- Backup
Type string - Backup method. Values: Full (full/database table backup), Increment (incremental backup), DumpAll (full database backup)
- instance_
id string - Instance ID
- backup_
metas list(object) - backup_
method string - Backup type. Values: Physical (physical backup), Logical (logical backup), Snapshot (snapshot backup)
- backup_
type string - Backup method. Values: Full (full/database table backup), Increment (incremental backup), DumpAll (full database backup)
- instance
Id String - Instance ID
- backup
Metas List<BackupBackup Meta> - backup
Method String - Backup type. Values: Physical (physical backup), Logical (logical backup), Snapshot (snapshot backup)
- backup
Type String - Backup method. Values: Full (full/database table backup), Increment (incremental backup), DumpAll (full database backup)
- instance
Id string - Instance ID
- backup
Metas BackupBackup Meta[] - backup
Method string - Backup type. Values: Physical (physical backup), Logical (logical backup), Snapshot (snapshot backup)
- backup
Type string - Backup method. Values: Full (full/database table backup), Increment (incremental backup), DumpAll (full database backup)
- instance_
id str - Instance ID
- backup_
metas Sequence[BackupBackup Meta Args] - backup_
method str - Backup type. Values: Physical (physical backup), Logical (logical backup), Snapshot (snapshot backup)
- backup_
type str - Backup method. Values: Full (full/database table backup), Increment (incremental backup), DumpAll (full database backup)
- instance
Id String - Instance ID
- backup
Metas List<Property Map> - backup
Method String - Backup type. Values: Physical (physical backup), Logical (logical backup), Snapshot (snapshot backup)
- backup
Type String - Backup method. Values: Full (full/database table backup), Increment (incremental backup), DumpAll (full database backup)
Outputs
All input properties are implicitly available as output properties. Additionally, the Backup resource produces the following output properties:
- Backup
End stringTime - Backup creation end time (UTC)
- Backup
File stringName - Backup file name
- Backup
File intSize - Backup file size (bytes)
- Backup
Id string - Backup ID
- Backup
Name string - Backup name
- Backup
Region string - Backup region
- Backup
Start stringTime - Backup creation start time (UTC)
- Backup
Status string - Backup status. Values: Success, Failed, Running
- Consistent
Time string - Consistency time point
- Create
Type string - Backup creator. Values: System (system), User (user)
- Db
Engine stringVersion - Compatible version. Values: MySQL57: MySQL 5.7 version; MySQL80: MySQL 8.0 version
- Db
Table List<Volcengine.Infos Backup Db Table Info> - Download
Status string - Download status
- Engine
Type string - Database engine type. Values: InnoDB: InnoDB engine; RocksDB: RocksDB engine
- Error
Message string - Error message for backup failure
- Expired
Time string - Backup expiration time (UTC)
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Encrypted bool - Whether encrypted
- Is
Expired bool - Whether expired
- Backup
End stringTime - Backup creation end time (UTC)
- Backup
File stringName - Backup file name
- Backup
File intSize - Backup file size (bytes)
- Backup
Id string - Backup ID
- Backup
Name string - Backup name
- Backup
Region string - Backup region
- Backup
Start stringTime - Backup creation start time (UTC)
- Backup
Status string - Backup status. Values: Success, Failed, Running
- Consistent
Time string - Consistency time point
- Create
Type string - Backup creator. Values: System (system), User (user)
- Db
Engine stringVersion - Compatible version. Values: MySQL57: MySQL 5.7 version; MySQL80: MySQL 8.0 version
- Db
Table []BackupInfos Db Table Info - Download
Status string - Download status
- Engine
Type string - Database engine type. Values: InnoDB: InnoDB engine; RocksDB: RocksDB engine
- Error
Message string - Error message for backup failure
- Expired
Time string - Backup expiration time (UTC)
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Encrypted bool - Whether encrypted
- Is
Expired bool - Whether expired
- backup_
end_ stringtime - Backup creation end time (UTC)
- backup_
file_ stringname - Backup file name
- backup_
file_ numbersize - Backup file size (bytes)
- backup_
id string - Backup ID
- backup_
name string - Backup name
- backup_
region string - Backup region
- backup_
start_ stringtime - Backup creation start time (UTC)
- backup_
status string - Backup status. Values: Success, Failed, Running
- consistent_
time string - Consistency time point
- create_
type string - Backup creator. Values: System (system), User (user)
- db_
engine_ stringversion - Compatible version. Values: MySQL57: MySQL 5.7 version; MySQL80: MySQL 8.0 version
- db_
table_ list(object)infos - download_
status string - Download status
- engine_
type string - Database engine type. Values: InnoDB: InnoDB engine; RocksDB: RocksDB engine
- error_
message string - Error message for backup failure
- expired_
time string - Backup expiration time (UTC)
- id string
- The provider-assigned unique ID for this managed resource.
- is_
encrypted bool - Whether encrypted
- is_
expired bool - Whether expired
- backup
End StringTime - Backup creation end time (UTC)
- backup
File StringName - Backup file name
- backup
File IntegerSize - Backup file size (bytes)
- backup
Id String - Backup ID
- backup
Name String - Backup name
- backup
Region String - Backup region
- backup
Start StringTime - Backup creation start time (UTC)
- backup
Status String - Backup status. Values: Success, Failed, Running
- consistent
Time String - Consistency time point
- create
Type String - Backup creator. Values: System (system), User (user)
- db
Engine StringVersion - Compatible version. Values: MySQL57: MySQL 5.7 version; MySQL80: MySQL 8.0 version
- db
Table List<BackupInfos Db Table Info> - download
Status String - Download status
- engine
Type String - Database engine type. Values: InnoDB: InnoDB engine; RocksDB: RocksDB engine
- error
Message String - Error message for backup failure
- expired
Time String - Backup expiration time (UTC)
- id String
- The provider-assigned unique ID for this managed resource.
- is
Encrypted Boolean - Whether encrypted
- is
Expired Boolean - Whether expired
- backup
End stringTime - Backup creation end time (UTC)
- backup
File stringName - Backup file name
- backup
File numberSize - Backup file size (bytes)
- backup
Id string - Backup ID
- backup
Name string - Backup name
- backup
Region string - Backup region
- backup
Start stringTime - Backup creation start time (UTC)
- backup
Status string - Backup status. Values: Success, Failed, Running
- consistent
Time string - Consistency time point
- create
Type string - Backup creator. Values: System (system), User (user)
- db
Engine stringVersion - Compatible version. Values: MySQL57: MySQL 5.7 version; MySQL80: MySQL 8.0 version
- db
Table BackupInfos Db Table Info[] - download
Status string - Download status
- engine
Type string - Database engine type. Values: InnoDB: InnoDB engine; RocksDB: RocksDB engine
- error
Message string - Error message for backup failure
- expired
Time string - Backup expiration time (UTC)
- id string
- The provider-assigned unique ID for this managed resource.
- is
Encrypted boolean - Whether encrypted
- is
Expired boolean - Whether expired
- backup_
end_ strtime - Backup creation end time (UTC)
- backup_
file_ strname - Backup file name
- backup_
file_ intsize - Backup file size (bytes)
- backup_
id str - Backup ID
- backup_
name str - Backup name
- backup_
region str - Backup region
- backup_
start_ strtime - Backup creation start time (UTC)
- backup_
status str - Backup status. Values: Success, Failed, Running
- consistent_
time str - Consistency time point
- create_
type str - Backup creator. Values: System (system), User (user)
- db_
engine_ strversion - Compatible version. Values: MySQL57: MySQL 5.7 version; MySQL80: MySQL 8.0 version
- db_
table_ Sequence[Backupinfos Db Table Info] - download_
status str - Download status
- engine_
type str - Database engine type. Values: InnoDB: InnoDB engine; RocksDB: RocksDB engine
- error_
message str - Error message for backup failure
- expired_
time str - Backup expiration time (UTC)
- id str
- The provider-assigned unique ID for this managed resource.
- is_
encrypted bool - Whether encrypted
- is_
expired bool - Whether expired
- backup
End StringTime - Backup creation end time (UTC)
- backup
File StringName - Backup file name
- backup
File NumberSize - Backup file size (bytes)
- backup
Id String - Backup ID
- backup
Name String - Backup name
- backup
Region String - Backup region
- backup
Start StringTime - Backup creation start time (UTC)
- backup
Status String - Backup status. Values: Success, Failed, Running
- consistent
Time String - Consistency time point
- create
Type String - Backup creator. Values: System (system), User (user)
- db
Engine StringVersion - Compatible version. Values: MySQL57: MySQL 5.7 version; MySQL80: MySQL 8.0 version
- db
Table List<Property Map>Infos - download
Status String - Download status
- engine
Type String - Database engine type. Values: InnoDB: InnoDB engine; RocksDB: RocksDB engine
- error
Message String - Error message for backup failure
- expired
Time String - Backup expiration time (UTC)
- id String
- The provider-assigned unique ID for this managed resource.
- is
Encrypted Boolean - Whether encrypted
- is
Expired Boolean - Whether expired
Look up Existing Backup Resource
Get an existing Backup resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: BackupState, opts?: CustomResourceOptions): Backup@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
backup_end_time: Optional[str] = None,
backup_file_name: Optional[str] = None,
backup_file_size: Optional[int] = None,
backup_id: Optional[str] = None,
backup_metas: Optional[Sequence[BackupBackupMetaArgs]] = None,
backup_method: Optional[str] = None,
backup_name: Optional[str] = None,
backup_region: Optional[str] = None,
backup_start_time: Optional[str] = None,
backup_status: Optional[str] = None,
backup_type: Optional[str] = None,
consistent_time: Optional[str] = None,
create_type: Optional[str] = None,
db_engine_version: Optional[str] = None,
db_table_infos: Optional[Sequence[BackupDbTableInfoArgs]] = None,
download_status: Optional[str] = None,
engine_type: Optional[str] = None,
error_message: Optional[str] = None,
expired_time: Optional[str] = None,
instance_id: Optional[str] = None,
is_encrypted: Optional[bool] = None,
is_expired: Optional[bool] = None) -> Backupfunc GetBackup(ctx *Context, name string, id IDInput, state *BackupState, opts ...ResourceOption) (*Backup, error)public static Backup Get(string name, Input<string> id, BackupState? state, CustomResourceOptions? opts = null)public static Backup get(String name, Output<String> id, BackupState state, CustomResourceOptions options)resources: _: type: volcenginecc:rdsmysql:Backup get: id: ${id}import {
to = volcenginecc_rdsmysql_backup.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Backup
End stringTime - Backup creation end time (UTC)
- Backup
File stringName - Backup file name
- Backup
File intSize - Backup file size (bytes)
- Backup
Id string - Backup ID
- Backup
Metas List<Volcengine.Backup Backup Meta> - Backup
Method string - Backup type. Values: Physical (physical backup), Logical (logical backup), Snapshot (snapshot backup)
- Backup
Name string - Backup name
- Backup
Region string - Backup region
- Backup
Start stringTime - Backup creation start time (UTC)
- Backup
Status string - Backup status. Values: Success, Failed, Running
- Backup
Type string - Backup method. Values: Full (full/database table backup), Increment (incremental backup), DumpAll (full database backup)
- Consistent
Time string - Consistency time point
- Create
Type string - Backup creator. Values: System (system), User (user)
- Db
Engine stringVersion - Compatible version. Values: MySQL57: MySQL 5.7 version; MySQL80: MySQL 8.0 version
- Db
Table List<Volcengine.Infos Backup Db Table Info> - Download
Status string - Download status
- Engine
Type string - Database engine type. Values: InnoDB: InnoDB engine; RocksDB: RocksDB engine
- Error
Message string - Error message for backup failure
- Expired
Time string - Backup expiration time (UTC)
- Instance
Id string - Instance ID
- Is
Encrypted bool - Whether encrypted
- Is
Expired bool - Whether expired
- Backup
End stringTime - Backup creation end time (UTC)
- Backup
File stringName - Backup file name
- Backup
File intSize - Backup file size (bytes)
- Backup
Id string - Backup ID
- Backup
Metas []BackupBackup Meta Args - Backup
Method string - Backup type. Values: Physical (physical backup), Logical (logical backup), Snapshot (snapshot backup)
- Backup
Name string - Backup name
- Backup
Region string - Backup region
- Backup
Start stringTime - Backup creation start time (UTC)
- Backup
Status string - Backup status. Values: Success, Failed, Running
- Backup
Type string - Backup method. Values: Full (full/database table backup), Increment (incremental backup), DumpAll (full database backup)
- Consistent
Time string - Consistency time point
- Create
Type string - Backup creator. Values: System (system), User (user)
- Db
Engine stringVersion - Compatible version. Values: MySQL57: MySQL 5.7 version; MySQL80: MySQL 8.0 version
- Db
Table []BackupInfos Db Table Info Args - Download
Status string - Download status
- Engine
Type string - Database engine type. Values: InnoDB: InnoDB engine; RocksDB: RocksDB engine
- Error
Message string - Error message for backup failure
- Expired
Time string - Backup expiration time (UTC)
- Instance
Id string - Instance ID
- Is
Encrypted bool - Whether encrypted
- Is
Expired bool - Whether expired
- backup_
end_ stringtime - Backup creation end time (UTC)
- backup_
file_ stringname - Backup file name
- backup_
file_ numbersize - Backup file size (bytes)
- backup_
id string - Backup ID
- backup_
metas list(object) - backup_
method string - Backup type. Values: Physical (physical backup), Logical (logical backup), Snapshot (snapshot backup)
- backup_
name string - Backup name
- backup_
region string - Backup region
- backup_
start_ stringtime - Backup creation start time (UTC)
- backup_
status string - Backup status. Values: Success, Failed, Running
- backup_
type string - Backup method. Values: Full (full/database table backup), Increment (incremental backup), DumpAll (full database backup)
- consistent_
time string - Consistency time point
- create_
type string - Backup creator. Values: System (system), User (user)
- db_
engine_ stringversion - Compatible version. Values: MySQL57: MySQL 5.7 version; MySQL80: MySQL 8.0 version
- db_
table_ list(object)infos - download_
status string - Download status
- engine_
type string - Database engine type. Values: InnoDB: InnoDB engine; RocksDB: RocksDB engine
- error_
message string - Error message for backup failure
- expired_
time string - Backup expiration time (UTC)
- instance_
id string - Instance ID
- is_
encrypted bool - Whether encrypted
- is_
expired bool - Whether expired
- backup
End StringTime - Backup creation end time (UTC)
- backup
File StringName - Backup file name
- backup
File IntegerSize - Backup file size (bytes)
- backup
Id String - Backup ID
- backup
Metas List<BackupBackup Meta> - backup
Method String - Backup type. Values: Physical (physical backup), Logical (logical backup), Snapshot (snapshot backup)
- backup
Name String - Backup name
- backup
Region String - Backup region
- backup
Start StringTime - Backup creation start time (UTC)
- backup
Status String - Backup status. Values: Success, Failed, Running
- backup
Type String - Backup method. Values: Full (full/database table backup), Increment (incremental backup), DumpAll (full database backup)
- consistent
Time String - Consistency time point
- create
Type String - Backup creator. Values: System (system), User (user)
- db
Engine StringVersion - Compatible version. Values: MySQL57: MySQL 5.7 version; MySQL80: MySQL 8.0 version
- db
Table List<BackupInfos Db Table Info> - download
Status String - Download status
- engine
Type String - Database engine type. Values: InnoDB: InnoDB engine; RocksDB: RocksDB engine
- error
Message String - Error message for backup failure
- expired
Time String - Backup expiration time (UTC)
- instance
Id String - Instance ID
- is
Encrypted Boolean - Whether encrypted
- is
Expired Boolean - Whether expired
- backup
End stringTime - Backup creation end time (UTC)
- backup
File stringName - Backup file name
- backup
File numberSize - Backup file size (bytes)
- backup
Id string - Backup ID
- backup
Metas BackupBackup Meta[] - backup
Method string - Backup type. Values: Physical (physical backup), Logical (logical backup), Snapshot (snapshot backup)
- backup
Name string - Backup name
- backup
Region string - Backup region
- backup
Start stringTime - Backup creation start time (UTC)
- backup
Status string - Backup status. Values: Success, Failed, Running
- backup
Type string - Backup method. Values: Full (full/database table backup), Increment (incremental backup), DumpAll (full database backup)
- consistent
Time string - Consistency time point
- create
Type string - Backup creator. Values: System (system), User (user)
- db
Engine stringVersion - Compatible version. Values: MySQL57: MySQL 5.7 version; MySQL80: MySQL 8.0 version
- db
Table BackupInfos Db Table Info[] - download
Status string - Download status
- engine
Type string - Database engine type. Values: InnoDB: InnoDB engine; RocksDB: RocksDB engine
- error
Message string - Error message for backup failure
- expired
Time string - Backup expiration time (UTC)
- instance
Id string - Instance ID
- is
Encrypted boolean - Whether encrypted
- is
Expired boolean - Whether expired
- backup_
end_ strtime - Backup creation end time (UTC)
- backup_
file_ strname - Backup file name
- backup_
file_ intsize - Backup file size (bytes)
- backup_
id str - Backup ID
- backup_
metas Sequence[BackupBackup Meta Args] - backup_
method str - Backup type. Values: Physical (physical backup), Logical (logical backup), Snapshot (snapshot backup)
- backup_
name str - Backup name
- backup_
region str - Backup region
- backup_
start_ strtime - Backup creation start time (UTC)
- backup_
status str - Backup status. Values: Success, Failed, Running
- backup_
type str - Backup method. Values: Full (full/database table backup), Increment (incremental backup), DumpAll (full database backup)
- consistent_
time str - Consistency time point
- create_
type str - Backup creator. Values: System (system), User (user)
- db_
engine_ strversion - Compatible version. Values: MySQL57: MySQL 5.7 version; MySQL80: MySQL 8.0 version
- db_
table_ Sequence[Backupinfos Db Table Info Args] - download_
status str - Download status
- engine_
type str - Database engine type. Values: InnoDB: InnoDB engine; RocksDB: RocksDB engine
- error_
message str - Error message for backup failure
- expired_
time str - Backup expiration time (UTC)
- instance_
id str - Instance ID
- is_
encrypted bool - Whether encrypted
- is_
expired bool - Whether expired
- backup
End StringTime - Backup creation end time (UTC)
- backup
File StringName - Backup file name
- backup
File NumberSize - Backup file size (bytes)
- backup
Id String - Backup ID
- backup
Metas List<Property Map> - backup
Method String - Backup type. Values: Physical (physical backup), Logical (logical backup), Snapshot (snapshot backup)
- backup
Name String - Backup name
- backup
Region String - Backup region
- backup
Start StringTime - Backup creation start time (UTC)
- backup
Status String - Backup status. Values: Success, Failed, Running
- backup
Type String - Backup method. Values: Full (full/database table backup), Increment (incremental backup), DumpAll (full database backup)
- consistent
Time String - Consistency time point
- create
Type String - Backup creator. Values: System (system), User (user)
- db
Engine StringVersion - Compatible version. Values: MySQL57: MySQL 5.7 version; MySQL80: MySQL 8.0 version
- db
Table List<Property Map>Infos - download
Status String - Download status
- engine
Type String - Database engine type. Values: InnoDB: InnoDB engine; RocksDB: RocksDB engine
- error
Message String - Error message for backup failure
- expired
Time String - Backup expiration time (UTC)
- instance
Id String - Instance ID
- is
Encrypted Boolean - Whether encrypted
- is
Expired Boolean - Whether expired
Supporting Types
BackupBackupMeta, BackupBackupMetaArgs
BackupDbTableInfo, BackupDbTableInfoArgs
Import
$ pulumi import volcenginecc:rdsmysql/backup:Backup example "instance_id|backup_id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- volcenginecc volcengine/pulumi-volcenginecc
- License
- MPL-2.0
- Notes
- This Pulumi package is based on the
volcengineccTerraform Provider.
published on Thursday, May 14, 2026 by Volcengine
