1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. gpdb
  5. getDataBackups
Alibaba Cloud v3.66.0 published on Friday, Nov 15, 2024 by Pulumi

alicloud.gpdb.getDataBackups

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.66.0 published on Friday, Nov 15, 2024 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);
    
    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)
    
    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
    	})
    }
    
    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),
        };
    });
    
    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()));
        }
    }
    
    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}
    

    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>
    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]
    func GetDataBackups(ctx *Context, args *GetDataBackupsArgs, opts ...InvokeOption) (*GetDataBackupsResult, error)
    func GetDataBackupsOutput(ctx *Context, args *GetDataBackupsOutputArgs, opts ...InvokeOption) GetDataBackupsResultOutput

    > 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)
    }
    public static CompletableFuture<GetDataBackupsResult> getDataBackups(GetDataBackupsArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: alicloud:gpdb/getDataBackups:getDataBackups
      arguments:
        # arguments dictionary

    The following arguments are supported:

    DbInstanceId 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 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 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 []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 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 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 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 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 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 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 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 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 string
    The backup end time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
    BackupEndTimeLocal string
    The end time of the backup (local time).
    BackupMethod string
    Backup method. Value Description:-Physical: Physical backup.-Snapshot: the Snapshot backup.
    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.
    BackupSetId string
    The ID of the backup set.
    BackupSize int
    The size of the backup file. Unit: Byte.
    BackupStartTime string
    The backup start time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
    BackupStartTimeLocal string
    The start time of the backup (local time).
    BaksetName string
    The name of the recovery point or full backup set.
    ConsistentTime int
    -Full backup: Returns the timestamp of the consistent point in time.-Recoverable point: Returns the timestamp of the recoverable point in time.
    DataType string
    The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
    DbInstanceId string
    The instance ID.
    Status string
    Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.
    BackupEndTime string
    The backup end time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
    BackupEndTimeLocal string
    The end time of the backup (local time).
    BackupMethod string
    Backup method. Value Description:-Physical: Physical backup.-Snapshot: the Snapshot backup.
    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.
    BackupSetId string
    The ID of the backup set.
    BackupSize int
    The size of the backup file. Unit: Byte.
    BackupStartTime string
    The backup start time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
    BackupStartTimeLocal string
    The start time of the backup (local time).
    BaksetName string
    The name of the recovery point or full backup set.
    ConsistentTime int
    -Full backup: Returns the timestamp of the consistent point in time.-Recoverable point: Returns the timestamp of the recoverable point in time.
    DataType string
    The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
    DbInstanceId string
    The instance ID.
    Status string
    Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.
    backupEndTime String
    The backup end time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
    backupEndTimeLocal String
    The end time of the backup (local time).
    backupMethod String
    Backup method. Value Description:-Physical: Physical backup.-Snapshot: the Snapshot backup.
    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.
    backupSetId String
    The ID of the backup set.
    backupSize Integer
    The size of the backup file. Unit: Byte.
    backupStartTime String
    The backup start time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
    backupStartTimeLocal String
    The start time of the backup (local time).
    baksetName String
    The name of the recovery point or full backup set.
    consistentTime Integer
    -Full backup: Returns the timestamp of the consistent point in time.-Recoverable point: Returns the timestamp of the recoverable point in time.
    dataType String
    The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
    dbInstanceId String
    The instance ID.
    status String
    Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.
    backupEndTime string
    The backup end time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
    backupEndTimeLocal string
    The end time of the backup (local time).
    backupMethod string
    Backup method. Value Description:-Physical: Physical backup.-Snapshot: the Snapshot backup.
    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.
    backupSetId string
    The ID of the backup set.
    backupSize number
    The size of the backup file. Unit: Byte.
    backupStartTime string
    The backup start time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
    backupStartTimeLocal string
    The start time of the backup (local time).
    baksetName string
    The name of the recovery point or full backup set.
    consistentTime number
    -Full backup: Returns the timestamp of the consistent point in time.-Recoverable point: Returns the timestamp of the recoverable point in time.
    dataType string
    The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
    dbInstanceId string
    The instance ID.
    status string
    Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.
    backup_end_time str
    The backup end time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
    backup_end_time_local str
    The end time of the backup (local time).
    backup_method str
    Backup method. Value Description:-Physical: Physical backup.-Snapshot: the Snapshot backup.
    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.
    backup_set_id str
    The ID of the backup set.
    backup_size int
    The size of the backup file. Unit: Byte.
    backup_start_time str
    The backup start time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
    backup_start_time_local str
    The start time of the backup (local time).
    bakset_name str
    The name of the recovery point or full backup set.
    consistent_time 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 str
    The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
    db_instance_id str
    The instance ID.
    status str
    Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.
    backupEndTime String
    The backup end time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
    backupEndTimeLocal String
    The end time of the backup (local time).
    backupMethod String
    Backup method. Value Description:-Physical: Physical backup.-Snapshot: the Snapshot backup.
    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.
    backupSetId String
    The ID of the backup set.
    backupSize Number
    The size of the backup file. Unit: Byte.
    backupStartTime String
    The backup start time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
    backupStartTimeLocal String
    The start time of the backup (local time).
    baksetName String
    The name of the recovery point or full backup set.
    consistentTime Number
    -Full backup: Returns the timestamp of the consistent point in time.-Recoverable point: Returns the timestamp of the recoverable point in time.
    dataType String
    The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
    dbInstanceId String
    The instance ID.
    status 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.
    alicloud logo
    Alibaba Cloud v3.66.0 published on Friday, Nov 15, 2024 by Pulumi