1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. gpdb
  5. getDataBackups
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

alicloud.gpdb.getDataBackups

Explore with Pulumi AI

Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

This data source provides Gpdb Data Backup available to the user.What is Data Backup

NOTE: Available since v1.231.0.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";

const _default = alicloud.gpdb.getInstances({
    nameRegex: "^default-NODELETING$",
});
const defaultGetDataBackups = _default.then(_default => alicloud.gpdb.getDataBackups({
    dbInstanceId: _default.ids?.[0],
}));
export const alicloudGpdbDataBackupExampleId = defaultGetDataBackups.then(defaultGetDataBackups => defaultGetDataBackups.backups?.[0]?.dbInstanceId);
Copy
import pulumi
import pulumi_alicloud as alicloud

default = alicloud.gpdb.get_instances(name_regex="^default-NODELETING$")
default_get_data_backups = alicloud.gpdb.get_data_backups(db_instance_id=default.ids[0])
pulumi.export("alicloudGpdbDataBackupExampleId", default_get_data_backups.backups[0].db_instance_id)
Copy
package main

import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/gpdb"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_default, err := gpdb.GetInstances(ctx, &gpdb.GetInstancesArgs{
			NameRegex: pulumi.StringRef("^default-NODELETING$"),
		}, nil)
		if err != nil {
			return err
		}
		defaultGetDataBackups, err := gpdb.GetDataBackups(ctx, &gpdb.GetDataBackupsArgs{
			DbInstanceId: _default.Ids[0],
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("alicloudGpdbDataBackupExampleId", defaultGetDataBackups.Backups[0].DbInstanceId)
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;

return await Deployment.RunAsync(() => 
{
    var @default = AliCloud.Gpdb.GetInstances.Invoke(new()
    {
        NameRegex = "^default-NODELETING$",
    });

    var defaultGetDataBackups = AliCloud.Gpdb.GetDataBackups.Invoke(new()
    {
        DbInstanceId = @default.Apply(getInstancesResult => getInstancesResult.Ids[0]),
    });

    return new Dictionary<string, object?>
    {
        ["alicloudGpdbDataBackupExampleId"] = defaultGetDataBackups.Apply(getDataBackupsResult => getDataBackupsResult.Backups[0]?.DbInstanceId),
    };
});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.gpdb.GpdbFunctions;
import com.pulumi.alicloud.gpdb.inputs.GetInstancesArgs;
import com.pulumi.alicloud.gpdb.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 default = GpdbFunctions.getInstances(GetInstancesArgs.builder()
            .nameRegex("^default-NODELETING$")
            .build());

        final var defaultGetDataBackups = GpdbFunctions.getDataBackups(GetDataBackupsArgs.builder()
            .dbInstanceId(default_.ids()[0])
            .build());

        ctx.export("alicloudGpdbDataBackupExampleId", defaultGetDataBackups.applyValue(getDataBackupsResult -> getDataBackupsResult.backups()[0].dbInstanceId()));
    }
}
Copy
variables:
  default:
    fn::invoke:
      function: alicloud:gpdb:getInstances
      arguments:
        nameRegex: ^default-NODELETING$
  defaultGetDataBackups:
    fn::invoke:
      function: alicloud:gpdb:getDataBackups
      arguments:
        dbInstanceId: ${default.ids[0]}
outputs:
  alicloudGpdbDataBackupExampleId: ${defaultGetDataBackups.backups[0].dbInstanceId}
Copy

Using getDataBackups

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 getDataBackups(args: GetDataBackupsArgs, opts?: InvokeOptions): Promise<GetDataBackupsResult>
function getDataBackupsOutput(args: GetDataBackupsOutputArgs, opts?: InvokeOptions): Output<GetDataBackupsResult>
Copy
def get_data_backups(backup_mode: Optional[str] = None,
                     data_backup_id: Optional[str] = None,
                     data_type: Optional[str] = None,
                     db_instance_id: Optional[str] = None,
                     end_time: Optional[str] = None,
                     ids: Optional[Sequence[str]] = None,
                     output_file: Optional[str] = None,
                     page_number: Optional[int] = None,
                     page_size: Optional[int] = None,
                     start_time: Optional[str] = None,
                     status: Optional[str] = None,
                     opts: Optional[InvokeOptions] = None) -> GetDataBackupsResult
def get_data_backups_output(backup_mode: Optional[pulumi.Input[str]] = None,
                     data_backup_id: Optional[pulumi.Input[str]] = None,
                     data_type: Optional[pulumi.Input[str]] = None,
                     db_instance_id: Optional[pulumi.Input[str]] = None,
                     end_time: Optional[pulumi.Input[str]] = None,
                     ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                     output_file: Optional[pulumi.Input[str]] = None,
                     page_number: Optional[pulumi.Input[int]] = None,
                     page_size: Optional[pulumi.Input[int]] = None,
                     start_time: Optional[pulumi.Input[str]] = None,
                     status: Optional[pulumi.Input[str]] = None,
                     opts: Optional[InvokeOptions] = None) -> Output[GetDataBackupsResult]
Copy
func GetDataBackups(ctx *Context, args *GetDataBackupsArgs, opts ...InvokeOption) (*GetDataBackupsResult, error)
func GetDataBackupsOutput(ctx *Context, args *GetDataBackupsOutputArgs, opts ...InvokeOption) GetDataBackupsResultOutput
Copy

> Note: This function is named GetDataBackups in the Go SDK.

public static class GetDataBackups 
{
    public static Task<GetDataBackupsResult> InvokeAsync(GetDataBackupsArgs args, InvokeOptions? opts = null)
    public static Output<GetDataBackupsResult> Invoke(GetDataBackupsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetDataBackupsResult> getDataBackups(GetDataBackupsArgs args, InvokeOptions options)
public static Output<GetDataBackupsResult> getDataBackups(GetDataBackupsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: alicloud:gpdb/getDataBackups:getDataBackups
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

DbInstanceId This property is required. string
The instance ID.
BackupMode string
Backup mode.Full Backup Value Description:-Automated: The system is automatically backed up.-Manual: Manual backup.Recovery point value description:-Automated: The recovery point after a full backup.-Manual: The recovery point triggered manually by the user.-Period: The recovery point triggered periodically because of the backup policy.
DataBackupId string
The first ID of the resource
DataType string
The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
EndTime string
The query end time, which must be greater than the query start time. Format: yyyy-MM-ddTHH:mmZ(UTC time).
Ids Changes to this property will trigger replacement. List<string>
A list of Databackup IDs.
OutputFile string
File name where to save data source results (after running pulumi preview).
PageNumber int
Current page number.
PageSize int
Number of records per page.
StartTime string
The query start time. Format: yyyy-MM-ddTHH:mmZ(UTC time).
Status string
Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.
DbInstanceId This property is required. string
The instance ID.
BackupMode string
Backup mode.Full Backup Value Description:-Automated: The system is automatically backed up.-Manual: Manual backup.Recovery point value description:-Automated: The recovery point after a full backup.-Manual: The recovery point triggered manually by the user.-Period: The recovery point triggered periodically because of the backup policy.
DataBackupId string
The first ID of the resource
DataType string
The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
EndTime string
The query end time, which must be greater than the query start time. Format: yyyy-MM-ddTHH:mmZ(UTC time).
Ids Changes to this property will trigger replacement. []string
A list of Databackup IDs.
OutputFile string
File name where to save data source results (after running pulumi preview).
PageNumber int
Current page number.
PageSize int
Number of records per page.
StartTime string
The query start time. Format: yyyy-MM-ddTHH:mmZ(UTC time).
Status string
Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.
dbInstanceId This property is required. String
The instance ID.
backupMode String
Backup mode.Full Backup Value Description:-Automated: The system is automatically backed up.-Manual: Manual backup.Recovery point value description:-Automated: The recovery point after a full backup.-Manual: The recovery point triggered manually by the user.-Period: The recovery point triggered periodically because of the backup policy.
dataBackupId String
The first ID of the resource
dataType String
The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
endTime String
The query end time, which must be greater than the query start time. Format: yyyy-MM-ddTHH:mmZ(UTC time).
ids Changes to this property will trigger replacement. List<String>
A list of Databackup IDs.
outputFile String
File name where to save data source results (after running pulumi preview).
pageNumber Integer
Current page number.
pageSize Integer
Number of records per page.
startTime String
The query start time. Format: yyyy-MM-ddTHH:mmZ(UTC time).
status String
Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.
dbInstanceId This property is required. string
The instance ID.
backupMode string
Backup mode.Full Backup Value Description:-Automated: The system is automatically backed up.-Manual: Manual backup.Recovery point value description:-Automated: The recovery point after a full backup.-Manual: The recovery point triggered manually by the user.-Period: The recovery point triggered periodically because of the backup policy.
dataBackupId string
The first ID of the resource
dataType string
The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
endTime string
The query end time, which must be greater than the query start time. Format: yyyy-MM-ddTHH:mmZ(UTC time).
ids Changes to this property will trigger replacement. string[]
A list of Databackup IDs.
outputFile string
File name where to save data source results (after running pulumi preview).
pageNumber number
Current page number.
pageSize number
Number of records per page.
startTime string
The query start time. Format: yyyy-MM-ddTHH:mmZ(UTC time).
status string
Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.
db_instance_id This property is required. str
The instance ID.
backup_mode str
Backup mode.Full Backup Value Description:-Automated: The system is automatically backed up.-Manual: Manual backup.Recovery point value description:-Automated: The recovery point after a full backup.-Manual: The recovery point triggered manually by the user.-Period: The recovery point triggered periodically because of the backup policy.
data_backup_id str
The first ID of the resource
data_type str
The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
end_time str
The query end time, which must be greater than the query start time. Format: yyyy-MM-ddTHH:mmZ(UTC time).
ids Changes to this property will trigger replacement. Sequence[str]
A list of Databackup IDs.
output_file str
File name where to save data source results (after running pulumi preview).
page_number int
Current page number.
page_size int
Number of records per page.
start_time str
The query start time. Format: yyyy-MM-ddTHH:mmZ(UTC time).
status str
Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.
dbInstanceId This property is required. String
The instance ID.
backupMode String
Backup mode.Full Backup Value Description:-Automated: The system is automatically backed up.-Manual: Manual backup.Recovery point value description:-Automated: The recovery point after a full backup.-Manual: The recovery point triggered manually by the user.-Period: The recovery point triggered periodically because of the backup policy.
dataBackupId String
The first ID of the resource
dataType String
The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
endTime String
The query end time, which must be greater than the query start time. Format: yyyy-MM-ddTHH:mmZ(UTC time).
ids Changes to this property will trigger replacement. List<String>
A list of Databackup IDs.
outputFile String
File name where to save data source results (after running pulumi preview).
pageNumber Number
Current page number.
pageSize Number
Number of records per page.
startTime String
The query start time. Format: yyyy-MM-ddTHH:mmZ(UTC time).
status String
Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.

getDataBackups Result

The following output properties are available:

Backups List<Pulumi.AliCloud.Gpdb.Outputs.GetDataBackupsBackup>
A list of Data Backup Entries. Each element contains the following attributes:
DbInstanceId string
The instance ID.
Id string
The provider-assigned unique ID for this managed resource.
Ids List<string>
A list of Data Backup IDs.
BackupMode string
Backup mode.Full Backup Value Description:-Automated: The system is automatically backed up.-Manual: Manual backup.Recovery point value description:-Automated: The recovery point after a full backup.-Manual: The recovery point triggered manually by the user.-Period: The recovery point triggered periodically because of the backup policy.
DataBackupId string
DataType string
The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
EndTime string
OutputFile string
PageNumber int
PageSize int
StartTime string
Status string
Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.
Backups []GetDataBackupsBackup
A list of Data Backup Entries. Each element contains the following attributes:
DbInstanceId string
The instance ID.
Id string
The provider-assigned unique ID for this managed resource.
Ids []string
A list of Data Backup IDs.
BackupMode string
Backup mode.Full Backup Value Description:-Automated: The system is automatically backed up.-Manual: Manual backup.Recovery point value description:-Automated: The recovery point after a full backup.-Manual: The recovery point triggered manually by the user.-Period: The recovery point triggered periodically because of the backup policy.
DataBackupId string
DataType string
The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
EndTime string
OutputFile string
PageNumber int
PageSize int
StartTime string
Status string
Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.
backups List<GetDataBackupsBackup>
A list of Data Backup Entries. Each element contains the following attributes:
dbInstanceId String
The instance ID.
id String
The provider-assigned unique ID for this managed resource.
ids List<String>
A list of Data Backup IDs.
backupMode String
Backup mode.Full Backup Value Description:-Automated: The system is automatically backed up.-Manual: Manual backup.Recovery point value description:-Automated: The recovery point after a full backup.-Manual: The recovery point triggered manually by the user.-Period: The recovery point triggered periodically because of the backup policy.
dataBackupId String
dataType String
The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
endTime String
outputFile String
pageNumber Integer
pageSize Integer
startTime String
status String
Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.
backups GetDataBackupsBackup[]
A list of Data Backup Entries. Each element contains the following attributes:
dbInstanceId string
The instance ID.
id string
The provider-assigned unique ID for this managed resource.
ids string[]
A list of Data Backup IDs.
backupMode string
Backup mode.Full Backup Value Description:-Automated: The system is automatically backed up.-Manual: Manual backup.Recovery point value description:-Automated: The recovery point after a full backup.-Manual: The recovery point triggered manually by the user.-Period: The recovery point triggered periodically because of the backup policy.
dataBackupId string
dataType string
The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
endTime string
outputFile string
pageNumber number
pageSize number
startTime string
status string
Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.
backups Sequence[GetDataBackupsBackup]
A list of Data Backup Entries. Each element contains the following attributes:
db_instance_id str
The instance ID.
id str
The provider-assigned unique ID for this managed resource.
ids Sequence[str]
A list of Data Backup IDs.
backup_mode str
Backup mode.Full Backup Value Description:-Automated: The system is automatically backed up.-Manual: Manual backup.Recovery point value description:-Automated: The recovery point after a full backup.-Manual: The recovery point triggered manually by the user.-Period: The recovery point triggered periodically because of the backup policy.
data_backup_id str
data_type str
The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
end_time str
output_file str
page_number int
page_size int
start_time str
status str
Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.
backups List<Property Map>
A list of Data Backup Entries. Each element contains the following attributes:
dbInstanceId String
The instance ID.
id String
The provider-assigned unique ID for this managed resource.
ids List<String>
A list of Data Backup IDs.
backupMode String
Backup mode.Full Backup Value Description:-Automated: The system is automatically backed up.-Manual: Manual backup.Recovery point value description:-Automated: The recovery point after a full backup.-Manual: The recovery point triggered manually by the user.-Period: The recovery point triggered periodically because of the backup policy.
dataBackupId String
dataType String
The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
endTime String
outputFile String
pageNumber Number
pageSize Number
startTime String
status String
Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.

Supporting Types

GetDataBackupsBackup

BackupEndTime This property is required. string
The backup end time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
BackupEndTimeLocal This property is required. string
The end time of the backup (local time).
BackupMethod This property is required. string
Backup method. Value Description:-Physical: Physical backup.-Snapshot: the Snapshot backup.
BackupMode This property is required. string
Backup mode.Full Backup Value Description:-Automated: The system is automatically backed up.-Manual: Manual backup.Recovery point value description:-Automated: The recovery point after a full backup.-Manual: The recovery point triggered manually by the user.-Period: The recovery point triggered periodically because of the backup policy.
BackupSetId This property is required. string
The ID of the backup set.
BackupSize This property is required. int
The size of the backup file. Unit: Byte.
BackupStartTime This property is required. string
The backup start time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
BackupStartTimeLocal This property is required. string
The start time of the backup (local time).
BaksetName This property is required. string
The name of the recovery point or full backup set.
ConsistentTime This property is required. int
-Full backup: Returns the timestamp of the consistent point in time.-Recoverable point: Returns the timestamp of the recoverable point in time.
DataType This property is required. string
The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
DbInstanceId This property is required. string
The instance ID.
Status This property is required. string
Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.
BackupEndTime This property is required. string
The backup end time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
BackupEndTimeLocal This property is required. string
The end time of the backup (local time).
BackupMethod This property is required. string
Backup method. Value Description:-Physical: Physical backup.-Snapshot: the Snapshot backup.
BackupMode This property is required. string
Backup mode.Full Backup Value Description:-Automated: The system is automatically backed up.-Manual: Manual backup.Recovery point value description:-Automated: The recovery point after a full backup.-Manual: The recovery point triggered manually by the user.-Period: The recovery point triggered periodically because of the backup policy.
BackupSetId This property is required. string
The ID of the backup set.
BackupSize This property is required. int
The size of the backup file. Unit: Byte.
BackupStartTime This property is required. string
The backup start time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
BackupStartTimeLocal This property is required. string
The start time of the backup (local time).
BaksetName This property is required. string
The name of the recovery point or full backup set.
ConsistentTime This property is required. int
-Full backup: Returns the timestamp of the consistent point in time.-Recoverable point: Returns the timestamp of the recoverable point in time.
DataType This property is required. string
The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
DbInstanceId This property is required. string
The instance ID.
Status This property is required. string
Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.
backupEndTime This property is required. String
The backup end time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
backupEndTimeLocal This property is required. String
The end time of the backup (local time).
backupMethod This property is required. String
Backup method. Value Description:-Physical: Physical backup.-Snapshot: the Snapshot backup.
backupMode This property is required. String
Backup mode.Full Backup Value Description:-Automated: The system is automatically backed up.-Manual: Manual backup.Recovery point value description:-Automated: The recovery point after a full backup.-Manual: The recovery point triggered manually by the user.-Period: The recovery point triggered periodically because of the backup policy.
backupSetId This property is required. String
The ID of the backup set.
backupSize This property is required. Integer
The size of the backup file. Unit: Byte.
backupStartTime This property is required. String
The backup start time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
backupStartTimeLocal This property is required. String
The start time of the backup (local time).
baksetName This property is required. String
The name of the recovery point or full backup set.
consistentTime This property is required. Integer
-Full backup: Returns the timestamp of the consistent point in time.-Recoverable point: Returns the timestamp of the recoverable point in time.
dataType This property is required. String
The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
dbInstanceId This property is required. String
The instance ID.
status This property is required. String
Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.
backupEndTime This property is required. string
The backup end time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
backupEndTimeLocal This property is required. string
The end time of the backup (local time).
backupMethod This property is required. string
Backup method. Value Description:-Physical: Physical backup.-Snapshot: the Snapshot backup.
backupMode This property is required. string
Backup mode.Full Backup Value Description:-Automated: The system is automatically backed up.-Manual: Manual backup.Recovery point value description:-Automated: The recovery point after a full backup.-Manual: The recovery point triggered manually by the user.-Period: The recovery point triggered periodically because of the backup policy.
backupSetId This property is required. string
The ID of the backup set.
backupSize This property is required. number
The size of the backup file. Unit: Byte.
backupStartTime This property is required. string
The backup start time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
backupStartTimeLocal This property is required. string
The start time of the backup (local time).
baksetName This property is required. string
The name of the recovery point or full backup set.
consistentTime This property is required. number
-Full backup: Returns the timestamp of the consistent point in time.-Recoverable point: Returns the timestamp of the recoverable point in time.
dataType This property is required. string
The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
dbInstanceId This property is required. string
The instance ID.
status This property is required. string
Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.
backup_end_time This property is required. str
The backup end time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
backup_end_time_local This property is required. str
The end time of the backup (local time).
backup_method This property is required. str
Backup method. Value Description:-Physical: Physical backup.-Snapshot: the Snapshot backup.
backup_mode This property is required. str
Backup mode.Full Backup Value Description:-Automated: The system is automatically backed up.-Manual: Manual backup.Recovery point value description:-Automated: The recovery point after a full backup.-Manual: The recovery point triggered manually by the user.-Period: The recovery point triggered periodically because of the backup policy.
backup_set_id This property is required. str
The ID of the backup set.
backup_size This property is required. int
The size of the backup file. Unit: Byte.
backup_start_time This property is required. str
The backup start time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
backup_start_time_local This property is required. str
The start time of the backup (local time).
bakset_name This property is required. str
The name of the recovery point or full backup set.
consistent_time This property is required. int
-Full backup: Returns the timestamp of the consistent point in time.-Recoverable point: Returns the timestamp of the recoverable point in time.
data_type This property is required. str
The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
db_instance_id This property is required. str
The instance ID.
status This property is required. str
Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.
backupEndTime This property is required. String
The backup end time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
backupEndTimeLocal This property is required. String
The end time of the backup (local time).
backupMethod This property is required. String
Backup method. Value Description:-Physical: Physical backup.-Snapshot: the Snapshot backup.
backupMode This property is required. String
Backup mode.Full Backup Value Description:-Automated: The system is automatically backed up.-Manual: Manual backup.Recovery point value description:-Automated: The recovery point after a full backup.-Manual: The recovery point triggered manually by the user.-Period: The recovery point triggered periodically because of the backup policy.
backupSetId This property is required. String
The ID of the backup set.
backupSize This property is required. Number
The size of the backup file. Unit: Byte.
backupStartTime This property is required. String
The backup start time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
backupStartTimeLocal This property is required. String
The start time of the backup (local time).
baksetName This property is required. String
The name of the recovery point or full backup set.
consistentTime This property is required. Number
-Full backup: Returns the timestamp of the consistent point in time.-Recoverable point: Returns the timestamp of the recoverable point in time.
dataType This property is required. String
The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
dbInstanceId This property is required. String
The instance ID.
status This property is required. String
Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.

Package Details

Repository
Alibaba Cloud pulumi/pulumi-alicloud
License
Apache-2.0
Notes
This Pulumi package is based on the alicloud Terraform Provider.
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi