1. Packages
  2. Volcengine
  3. API Docs
  4. rds_postgresql
  5. DataBackups
Volcengine v0.0.43 published on Friday, Jan 16, 2026 by Volcengine
volcengine logo
Volcengine v0.0.43 published on Friday, Jan 16, 2026 by Volcengine
    Deprecated: volcengine.rds_postgresql.DataBackups has been deprecated in favor of volcengine.rds_postgresql.getDataBackups

    Use this data source to query detailed information of rds postgresql data backups

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as volcengine from "@pulumi/volcengine";
    
    const example = volcengine.rds_postgresql.getDataBackups({
        backupEndTime: "2025-12-15T23:59:59.999Z",
        backupId: "20251214-172343F",
        backupStartTime: "2025-12-01T00:00:00.000Z",
        instanceId: "postgres-72715e0d9f58",
    });
    
    import pulumi
    import pulumi_volcengine as volcengine
    
    example = volcengine.rds_postgresql.get_data_backups(backup_end_time="2025-12-15T23:59:59.999Z",
        backup_id="20251214-172343F",
        backup_start_time="2025-12-01T00:00:00.000Z",
        instance_id="postgres-72715e0d9f58")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/rds_postgresql"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := rds_postgresql.GetDataBackups(ctx, &rds_postgresql.GetDataBackupsArgs{
    			BackupEndTime:   pulumi.StringRef("2025-12-15T23:59:59.999Z"),
    			BackupId:        pulumi.StringRef("20251214-172343F"),
    			BackupStartTime: pulumi.StringRef("2025-12-01T00:00:00.000Z"),
    			InstanceId:      "postgres-72715e0d9f58",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Volcengine = Pulumi.Volcengine;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Volcengine.Rds_postgresql.GetDataBackups.Invoke(new()
        {
            BackupEndTime = "2025-12-15T23:59:59.999Z",
            BackupId = "20251214-172343F",
            BackupStartTime = "2025-12-01T00:00:00.000Z",
            InstanceId = "postgres-72715e0d9f58",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.volcengine.rds_postgresql.Rds_postgresqlFunctions;
    import com.pulumi.volcengine.rds_postgresql.inputs.GetDataBackupsArgs;
    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) {
            final var example = Rds_postgresqlFunctions.getDataBackups(GetDataBackupsArgs.builder()
                .backupEndTime("2025-12-15T23:59:59.999Z")
                .backupId("20251214-172343F")
                .backupStartTime("2025-12-01T00:00:00.000Z")
                .instanceId("postgres-72715e0d9f58")
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          Function: volcengine:rds_postgresql:getDataBackups
          Arguments:
            backupEndTime: 2025-12-15T23:59:59.999Z
            backupId: 20251214-172343F
            backupStartTime: 2025-12-01T00:00:00.000Z
            instanceId: postgres-72715e0d9f58
    

    Using DataBackups

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function dataBackups(args: DataBackupsArgs, opts?: InvokeOptions): Promise<DataBackupsResult>
    function dataBackupsOutput(args: DataBackupsOutputArgs, opts?: InvokeOptions): Output<DataBackupsResult>
    def data_backups(backup_database_name: Optional[str] = None,
                     backup_description: Optional[str] = None,
                     backup_end_time: Optional[str] = None,
                     backup_id: Optional[str] = None,
                     backup_method: Optional[str] = None,
                     backup_scope: Optional[str] = None,
                     backup_start_time: Optional[str] = None,
                     backup_status: Optional[str] = None,
                     backup_type: Optional[str] = None,
                     create_type: Optional[str] = None,
                     download_status: Optional[str] = None,
                     instance_id: Optional[str] = None,
                     output_file: Optional[str] = None,
                     opts: Optional[InvokeOptions] = None) -> DataBackupsResult
    def data_backups_output(backup_database_name: Optional[pulumi.Input[str]] = None,
                     backup_description: Optional[pulumi.Input[str]] = None,
                     backup_end_time: Optional[pulumi.Input[str]] = None,
                     backup_id: Optional[pulumi.Input[str]] = None,
                     backup_method: Optional[pulumi.Input[str]] = None,
                     backup_scope: Optional[pulumi.Input[str]] = None,
                     backup_start_time: Optional[pulumi.Input[str]] = None,
                     backup_status: Optional[pulumi.Input[str]] = None,
                     backup_type: Optional[pulumi.Input[str]] = None,
                     create_type: Optional[pulumi.Input[str]] = None,
                     download_status: Optional[pulumi.Input[str]] = None,
                     instance_id: Optional[pulumi.Input[str]] = None,
                     output_file: Optional[pulumi.Input[str]] = None,
                     opts: Optional[InvokeOptions] = None) -> Output[DataBackupsResult]
    func DataBackups(ctx *Context, args *DataBackupsArgs, opts ...InvokeOption) (*DataBackupsResult, error)
    func DataBackupsOutput(ctx *Context, args *DataBackupsOutputArgs, opts ...InvokeOption) DataBackupsResultOutput
    public static class DataBackups 
    {
        public static Task<DataBackupsResult> InvokeAsync(DataBackupsArgs args, InvokeOptions? opts = null)
        public static Output<DataBackupsResult> Invoke(DataBackupsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<DataBackupsResult> dataBackups(DataBackupsArgs args, InvokeOptions options)
    public static Output<DataBackupsResult> dataBackups(DataBackupsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: volcengine:rds_postgresql:DataBackups
      arguments:
        # arguments dictionary

    The following arguments are supported:

    InstanceId string
    The ID of the PostgreSQL instance.
    BackupDatabaseName string
    The name of the database included in the backup set. Only effective when the value of backup_method is Logical.
    BackupDescription string
    The description of the backup set.
    BackupEndTime string
    The latest time when the backup is created, in the format of yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    BackupId string
    The ID of the backup.
    BackupMethod string
    The method of the backup: Physical, Logical.
    BackupScope string
    The scope of the backup: Instance, Database.
    BackupStartTime string
    The earliest time when the backup is created, in the format of yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    BackupStatus string
    The status of the backup: Success, Failed, Running.
    BackupType string
    The type of the backup: Full, Increment.
    CreateType string
    The creation type of the backup: System, User.
    DownloadStatus string
    The downloadable status of the backup set. NotAllowed: download is not supported. NeedToPrepare: the backup set is in place and needs background preparation for backup. LinkReady: the backup set is ready for download.
    OutputFile string
    File name where to save data source results.
    InstanceId string
    The ID of the PostgreSQL instance.
    BackupDatabaseName string
    The name of the database included in the backup set. Only effective when the value of backup_method is Logical.
    BackupDescription string
    The description of the backup set.
    BackupEndTime string
    The latest time when the backup is created, in the format of yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    BackupId string
    The ID of the backup.
    BackupMethod string
    The method of the backup: Physical, Logical.
    BackupScope string
    The scope of the backup: Instance, Database.
    BackupStartTime string
    The earliest time when the backup is created, in the format of yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    BackupStatus string
    The status of the backup: Success, Failed, Running.
    BackupType string
    The type of the backup: Full, Increment.
    CreateType string
    The creation type of the backup: System, User.
    DownloadStatus string
    The downloadable status of the backup set. NotAllowed: download is not supported. NeedToPrepare: the backup set is in place and needs background preparation for backup. LinkReady: the backup set is ready for download.
    OutputFile string
    File name where to save data source results.
    instanceId String
    The ID of the PostgreSQL instance.
    backupDatabaseName String
    The name of the database included in the backup set. Only effective when the value of backup_method is Logical.
    backupDescription String
    The description of the backup set.
    backupEndTime String
    The latest time when the backup is created, in the format of yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    backupId String
    The ID of the backup.
    backupMethod String
    The method of the backup: Physical, Logical.
    backupScope String
    The scope of the backup: Instance, Database.
    backupStartTime String
    The earliest time when the backup is created, in the format of yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    backupStatus String
    The status of the backup: Success, Failed, Running.
    backupType String
    The type of the backup: Full, Increment.
    createType String
    The creation type of the backup: System, User.
    downloadStatus String
    The downloadable status of the backup set. NotAllowed: download is not supported. NeedToPrepare: the backup set is in place and needs background preparation for backup. LinkReady: the backup set is ready for download.
    outputFile String
    File name where to save data source results.
    instanceId string
    The ID of the PostgreSQL instance.
    backupDatabaseName string
    The name of the database included in the backup set. Only effective when the value of backup_method is Logical.
    backupDescription string
    The description of the backup set.
    backupEndTime string
    The latest time when the backup is created, in the format of yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    backupId string
    The ID of the backup.
    backupMethod string
    The method of the backup: Physical, Logical.
    backupScope string
    The scope of the backup: Instance, Database.
    backupStartTime string
    The earliest time when the backup is created, in the format of yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    backupStatus string
    The status of the backup: Success, Failed, Running.
    backupType string
    The type of the backup: Full, Increment.
    createType string
    The creation type of the backup: System, User.
    downloadStatus string
    The downloadable status of the backup set. NotAllowed: download is not supported. NeedToPrepare: the backup set is in place and needs background preparation for backup. LinkReady: the backup set is ready for download.
    outputFile string
    File name where to save data source results.
    instance_id str
    The ID of the PostgreSQL instance.
    backup_database_name str
    The name of the database included in the backup set. Only effective when the value of backup_method is Logical.
    backup_description str
    The description of the backup set.
    backup_end_time str
    The latest time when the backup is created, in the format of yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    backup_id str
    The ID of the backup.
    backup_method str
    The method of the backup: Physical, Logical.
    backup_scope str
    The scope of the backup: Instance, Database.
    backup_start_time str
    The earliest time when the backup is created, in the format of yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    backup_status str
    The status of the backup: Success, Failed, Running.
    backup_type str
    The type of the backup: Full, Increment.
    create_type str
    The creation type of the backup: System, User.
    download_status str
    The downloadable status of the backup set. NotAllowed: download is not supported. NeedToPrepare: the backup set is in place and needs background preparation for backup. LinkReady: the backup set is ready for download.
    output_file str
    File name where to save data source results.
    instanceId String
    The ID of the PostgreSQL instance.
    backupDatabaseName String
    The name of the database included in the backup set. Only effective when the value of backup_method is Logical.
    backupDescription String
    The description of the backup set.
    backupEndTime String
    The latest time when the backup is created, in the format of yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    backupId String
    The ID of the backup.
    backupMethod String
    The method of the backup: Physical, Logical.
    backupScope String
    The scope of the backup: Instance, Database.
    backupStartTime String
    The earliest time when the backup is created, in the format of yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    backupStatus String
    The status of the backup: Success, Failed, Running.
    backupType String
    The type of the backup: Full, Increment.
    createType String
    The creation type of the backup: System, User.
    downloadStatus String
    The downloadable status of the backup set. NotAllowed: download is not supported. NeedToPrepare: the backup set is in place and needs background preparation for backup. LinkReady: the backup set is ready for download.
    outputFile String
    File name where to save data source results.

    DataBackups Result

    The following output properties are available:

    Backups List<DataBackupsBackup>
    The collection of the query.
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceId string
    TotalCount int
    The total count of query.
    BackupDatabaseName string
    BackupDescription string
    The description of the backup set.
    BackupEndTime string
    The end time of the backup. The time format is yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    BackupId string
    The ID of the backup.
    BackupMethod string
    The method of the backup: Physical, Logical.
    BackupScope string
    The scope of the backup: Instance, Database.
    BackupStartTime string
    The start time of the backup. The time format is yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    BackupStatus string
    The status of the backup: Success, Failed, Running.
    BackupType string
    The type of the backup: Full, Increment.
    CreateType string
    The creation type of the backup: System, User.
    DownloadStatus string
    The downloadable status of the backup set.
    OutputFile string
    Backups []DataBackupsBackup
    The collection of the query.
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceId string
    TotalCount int
    The total count of query.
    BackupDatabaseName string
    BackupDescription string
    The description of the backup set.
    BackupEndTime string
    The end time of the backup. The time format is yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    BackupId string
    The ID of the backup.
    BackupMethod string
    The method of the backup: Physical, Logical.
    BackupScope string
    The scope of the backup: Instance, Database.
    BackupStartTime string
    The start time of the backup. The time format is yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    BackupStatus string
    The status of the backup: Success, Failed, Running.
    BackupType string
    The type of the backup: Full, Increment.
    CreateType string
    The creation type of the backup: System, User.
    DownloadStatus string
    The downloadable status of the backup set.
    OutputFile string
    backups List<DataBackupsBackup>
    The collection of the query.
    id String
    The provider-assigned unique ID for this managed resource.
    instanceId String
    totalCount Integer
    The total count of query.
    backupDatabaseName String
    backupDescription String
    The description of the backup set.
    backupEndTime String
    The end time of the backup. The time format is yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    backupId String
    The ID of the backup.
    backupMethod String
    The method of the backup: Physical, Logical.
    backupScope String
    The scope of the backup: Instance, Database.
    backupStartTime String
    The start time of the backup. The time format is yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    backupStatus String
    The status of the backup: Success, Failed, Running.
    backupType String
    The type of the backup: Full, Increment.
    createType String
    The creation type of the backup: System, User.
    downloadStatus String
    The downloadable status of the backup set.
    outputFile String
    backups DataBackupsBackup[]
    The collection of the query.
    id string
    The provider-assigned unique ID for this managed resource.
    instanceId string
    totalCount number
    The total count of query.
    backupDatabaseName string
    backupDescription string
    The description of the backup set.
    backupEndTime string
    The end time of the backup. The time format is yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    backupId string
    The ID of the backup.
    backupMethod string
    The method of the backup: Physical, Logical.
    backupScope string
    The scope of the backup: Instance, Database.
    backupStartTime string
    The start time of the backup. The time format is yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    backupStatus string
    The status of the backup: Success, Failed, Running.
    backupType string
    The type of the backup: Full, Increment.
    createType string
    The creation type of the backup: System, User.
    downloadStatus string
    The downloadable status of the backup set.
    outputFile string
    backups Sequence[DataBackupsBackup]
    The collection of the query.
    id str
    The provider-assigned unique ID for this managed resource.
    instance_id str
    total_count int
    The total count of query.
    backup_database_name str
    backup_description str
    The description of the backup set.
    backup_end_time str
    The end time of the backup. The time format is yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    backup_id str
    The ID of the backup.
    backup_method str
    The method of the backup: Physical, Logical.
    backup_scope str
    The scope of the backup: Instance, Database.
    backup_start_time str
    The start time of the backup. The time format is yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    backup_status str
    The status of the backup: Success, Failed, Running.
    backup_type str
    The type of the backup: Full, Increment.
    create_type str
    The creation type of the backup: System, User.
    download_status str
    The downloadable status of the backup set.
    output_file str
    backups List<Property Map>
    The collection of the query.
    id String
    The provider-assigned unique ID for this managed resource.
    instanceId String
    totalCount Number
    The total count of query.
    backupDatabaseName String
    backupDescription String
    The description of the backup set.
    backupEndTime String
    The end time of the backup. The time format is yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    backupId String
    The ID of the backup.
    backupMethod String
    The method of the backup: Physical, Logical.
    backupScope String
    The scope of the backup: Instance, Database.
    backupStartTime String
    The start time of the backup. The time format is yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    backupStatus String
    The status of the backup: Success, Failed, Running.
    backupType String
    The type of the backup: Full, Increment.
    createType String
    The creation type of the backup: System, User.
    downloadStatus String
    The downloadable status of the backup set.
    outputFile String

    Supporting Types

    DataBackupsBackup

    BackupDataSize int
    The original size of the data contained in the backup, in Bytes.
    BackupDescription string
    The description of the backup set.
    BackupEndTime string
    The latest time when the backup is created, in the format of yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    BackupFileName string
    The name of the backup file.
    BackupFileSize int
    The size of the backup file, in Byte.
    BackupId string
    The ID of the backup.
    BackupMetas List<DataBackupsBackupBackupMeta>
    The information about the databases included in the backup.
    BackupMethod string
    The method of the backup: Physical, Logical.
    BackupProgress int
    The progress of the backup. The unit is percentage.
    BackupScope string
    The scope of the backup: Instance, Database.
    BackupStartTime string
    The earliest time when the backup is created, in the format of yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    BackupStatus string
    The status of the backup: Success, Failed, Running.
    BackupType string
    The type of the backup: Full, Increment.
    CreateType string
    The creation type of the backup: System, User.
    DownloadStatus string
    The downloadable status of the backup set. NotAllowed: download is not supported. NeedToPrepare: the backup set is in place and needs background preparation for backup. LinkReady: the backup set is ready for download.
    BackupDataSize int
    The original size of the data contained in the backup, in Bytes.
    BackupDescription string
    The description of the backup set.
    BackupEndTime string
    The latest time when the backup is created, in the format of yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    BackupFileName string
    The name of the backup file.
    BackupFileSize int
    The size of the backup file, in Byte.
    BackupId string
    The ID of the backup.
    BackupMetas []DataBackupsBackupBackupMeta
    The information about the databases included in the backup.
    BackupMethod string
    The method of the backup: Physical, Logical.
    BackupProgress int
    The progress of the backup. The unit is percentage.
    BackupScope string
    The scope of the backup: Instance, Database.
    BackupStartTime string
    The earliest time when the backup is created, in the format of yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    BackupStatus string
    The status of the backup: Success, Failed, Running.
    BackupType string
    The type of the backup: Full, Increment.
    CreateType string
    The creation type of the backup: System, User.
    DownloadStatus string
    The downloadable status of the backup set. NotAllowed: download is not supported. NeedToPrepare: the backup set is in place and needs background preparation for backup. LinkReady: the backup set is ready for download.
    backupDataSize Integer
    The original size of the data contained in the backup, in Bytes.
    backupDescription String
    The description of the backup set.
    backupEndTime String
    The latest time when the backup is created, in the format of yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    backupFileName String
    The name of the backup file.
    backupFileSize Integer
    The size of the backup file, in Byte.
    backupId String
    The ID of the backup.
    backupMetas List<DataBackupsBackupBackupMeta>
    The information about the databases included in the backup.
    backupMethod String
    The method of the backup: Physical, Logical.
    backupProgress Integer
    The progress of the backup. The unit is percentage.
    backupScope String
    The scope of the backup: Instance, Database.
    backupStartTime String
    The earliest time when the backup is created, in the format of yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    backupStatus String
    The status of the backup: Success, Failed, Running.
    backupType String
    The type of the backup: Full, Increment.
    createType String
    The creation type of the backup: System, User.
    downloadStatus String
    The downloadable status of the backup set. NotAllowed: download is not supported. NeedToPrepare: the backup set is in place and needs background preparation for backup. LinkReady: the backup set is ready for download.
    backupDataSize number
    The original size of the data contained in the backup, in Bytes.
    backupDescription string
    The description of the backup set.
    backupEndTime string
    The latest time when the backup is created, in the format of yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    backupFileName string
    The name of the backup file.
    backupFileSize number
    The size of the backup file, in Byte.
    backupId string
    The ID of the backup.
    backupMetas DataBackupsBackupBackupMeta[]
    The information about the databases included in the backup.
    backupMethod string
    The method of the backup: Physical, Logical.
    backupProgress number
    The progress of the backup. The unit is percentage.
    backupScope string
    The scope of the backup: Instance, Database.
    backupStartTime string
    The earliest time when the backup is created, in the format of yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    backupStatus string
    The status of the backup: Success, Failed, Running.
    backupType string
    The type of the backup: Full, Increment.
    createType string
    The creation type of the backup: System, User.
    downloadStatus string
    The downloadable status of the backup set. NotAllowed: download is not supported. NeedToPrepare: the backup set is in place and needs background preparation for backup. LinkReady: the backup set is ready for download.
    backup_data_size int
    The original size of the data contained in the backup, in Bytes.
    backup_description str
    The description of the backup set.
    backup_end_time str
    The latest time when the backup is created, in the format of yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    backup_file_name str
    The name of the backup file.
    backup_file_size int
    The size of the backup file, in Byte.
    backup_id str
    The ID of the backup.
    backup_metas Sequence[DataBackupsBackupBackupMeta]
    The information about the databases included in the backup.
    backup_method str
    The method of the backup: Physical, Logical.
    backup_progress int
    The progress of the backup. The unit is percentage.
    backup_scope str
    The scope of the backup: Instance, Database.
    backup_start_time str
    The earliest time when the backup is created, in the format of yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    backup_status str
    The status of the backup: Success, Failed, Running.
    backup_type str
    The type of the backup: Full, Increment.
    create_type str
    The creation type of the backup: System, User.
    download_status str
    The downloadable status of the backup set. NotAllowed: download is not supported. NeedToPrepare: the backup set is in place and needs background preparation for backup. LinkReady: the backup set is ready for download.
    backupDataSize Number
    The original size of the data contained in the backup, in Bytes.
    backupDescription String
    The description of the backup set.
    backupEndTime String
    The latest time when the backup is created, in the format of yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    backupFileName String
    The name of the backup file.
    backupFileSize Number
    The size of the backup file, in Byte.
    backupId String
    The ID of the backup.
    backupMetas List<Property Map>
    The information about the databases included in the backup.
    backupMethod String
    The method of the backup: Physical, Logical.
    backupProgress Number
    The progress of the backup. The unit is percentage.
    backupScope String
    The scope of the backup: Instance, Database.
    backupStartTime String
    The earliest time when the backup is created, in the format of yyyy-MM-ddTHH:mm:ss.sssZ (UTC time).
    backupStatus String
    The status of the backup: Success, Failed, Running.
    backupType String
    The type of the backup: Full, Increment.
    createType String
    The creation type of the backup: System, User.
    downloadStatus String
    The downloadable status of the backup set. NotAllowed: download is not supported. NeedToPrepare: the backup set is in place and needs background preparation for backup. LinkReady: the backup set is ready for download.

    DataBackupsBackupBackupMeta

    DbName string
    The name of the database.
    DbName string
    The name of the database.
    dbName String
    The name of the database.
    dbName string
    The name of the database.
    db_name str
    The name of the database.
    dbName String
    The name of the database.

    Package Details

    Repository
    volcengine volcengine/pulumi-volcengine
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the volcengine Terraform Provider.
    volcengine logo
    Volcengine v0.0.43 published on Friday, Jan 16, 2026 by Volcengine
      Meet Neo: Your AI Platform Teammate