alicloud.rds.getCrossRegionBackups
Explore with Pulumi AI
This data source provides the Rds Parameter Groups of the current Alibaba Cloud user.
NOTE: Available in v1.196.0+.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const backups = alicloud.rds.getCrossRegionBackups({
    dbInstanceId: "example_value",
    startTime: "2022-12-01T00:00:00Z",
    endTime: "2022-12-16T00:00:00Z",
});
export const firstRdsCrossRegionBackups = backups.then(backups => backups.backups?.[0]?.id);
import pulumi
import pulumi_alicloud as alicloud
backups = alicloud.rds.get_cross_region_backups(db_instance_id="example_value",
    start_time="2022-12-01T00:00:00Z",
    end_time="2022-12-16T00:00:00Z")
pulumi.export("firstRdsCrossRegionBackups", backups.backups[0].id)
package main
import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/rds"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		backups, err := rds.GetCrossRegionBackups(ctx, &rds.GetCrossRegionBackupsArgs{
			DbInstanceId: "example_value",
			StartTime:    pulumi.StringRef("2022-12-01T00:00:00Z"),
			EndTime:      pulumi.StringRef("2022-12-16T00:00:00Z"),
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("firstRdsCrossRegionBackups", backups.Backups[0].Id)
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() => 
{
    var backups = AliCloud.Rds.GetCrossRegionBackups.Invoke(new()
    {
        DbInstanceId = "example_value",
        StartTime = "2022-12-01T00:00:00Z",
        EndTime = "2022-12-16T00:00:00Z",
    });
    return new Dictionary<string, object?>
    {
        ["firstRdsCrossRegionBackups"] = backups.Apply(getCrossRegionBackupsResult => getCrossRegionBackupsResult.Backups[0]?.Id),
    };
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.rds.RdsFunctions;
import com.pulumi.alicloud.rds.inputs.GetCrossRegionBackupsArgs;
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 backups = RdsFunctions.getCrossRegionBackups(GetCrossRegionBackupsArgs.builder()
            .dbInstanceId("example_value")
            .startTime("2022-12-01T00:00:00Z")
            .endTime("2022-12-16T00:00:00Z")
            .build());
        ctx.export("firstRdsCrossRegionBackups", backups.applyValue(getCrossRegionBackupsResult -> getCrossRegionBackupsResult.backups()[0].id()));
    }
}
variables:
  backups:
    fn::invoke:
      Function: alicloud:rds:getCrossRegionBackups
      Arguments:
        dbInstanceId: example_value
        startTime: 2022-12-01T00:00:00Z
        endTime: 2022-12-16T00:00:00Z
outputs:
  firstRdsCrossRegionBackups: ${backups.backups[0].id}
Using getCrossRegionBackups
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 getCrossRegionBackups(args: GetCrossRegionBackupsArgs, opts?: InvokeOptions): Promise<GetCrossRegionBackupsResult>
function getCrossRegionBackupsOutput(args: GetCrossRegionBackupsOutputArgs, opts?: InvokeOptions): Output<GetCrossRegionBackupsResult>def get_cross_region_backups(backup_id: Optional[str] = None,
                             cross_backup_id: Optional[str] = None,
                             cross_backup_region: Optional[str] = None,
                             db_instance_id: Optional[str] = None,
                             end_time: Optional[str] = None,
                             ids: Optional[Sequence[str]] = None,
                             output_file: Optional[str] = None,
                             resource_group_id: Optional[str] = None,
                             start_time: Optional[str] = None,
                             opts: Optional[InvokeOptions] = None) -> GetCrossRegionBackupsResult
def get_cross_region_backups_output(backup_id: Optional[pulumi.Input[str]] = None,
                             cross_backup_id: Optional[pulumi.Input[str]] = None,
                             cross_backup_region: 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,
                             resource_group_id: Optional[pulumi.Input[str]] = None,
                             start_time: Optional[pulumi.Input[str]] = None,
                             opts: Optional[InvokeOptions] = None) -> Output[GetCrossRegionBackupsResult]func GetCrossRegionBackups(ctx *Context, args *GetCrossRegionBackupsArgs, opts ...InvokeOption) (*GetCrossRegionBackupsResult, error)
func GetCrossRegionBackupsOutput(ctx *Context, args *GetCrossRegionBackupsOutputArgs, opts ...InvokeOption) GetCrossRegionBackupsResultOutput> Note: This function is named GetCrossRegionBackups in the Go SDK.
public static class GetCrossRegionBackups 
{
    public static Task<GetCrossRegionBackupsResult> InvokeAsync(GetCrossRegionBackupsArgs args, InvokeOptions? opts = null)
    public static Output<GetCrossRegionBackupsResult> Invoke(GetCrossRegionBackupsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetCrossRegionBackupsResult> getCrossRegionBackups(GetCrossRegionBackupsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
  function: alicloud:rds/getCrossRegionBackups:getCrossRegionBackups
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Db
Instance stringId  - The db instance id.
 - Backup
Id string - The ID of the cross-region data backup file.
 - Cross
Backup stringId  - The ID of the cross-region data backup file.
 - Cross
Backup stringRegion  The ID of the destination region where the cross-region data backup file is stored.
NOTE: Note You must specify the
cross_backup_idparameter. Alternatively, you must specify thestart_timeandend_timeparameters.- End
Time string - The end of the time range to query. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.
 - Ids List<string>
 - A list of Cross Region Backup IDs.
 - Output
File string - File name where to save data source results (after running 
pulumi preview). - Resource
Group stringId  - The ID of the resource group.
 - Start
Time string - The beginning of the time range to query. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.
 
- Db
Instance stringId  - The db instance id.
 - Backup
Id string - The ID of the cross-region data backup file.
 - Cross
Backup stringId  - The ID of the cross-region data backup file.
 - Cross
Backup stringRegion  The ID of the destination region where the cross-region data backup file is stored.
NOTE: Note You must specify the
cross_backup_idparameter. Alternatively, you must specify thestart_timeandend_timeparameters.- End
Time string - The end of the time range to query. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.
 - Ids []string
 - A list of Cross Region Backup IDs.
 - Output
File string - File name where to save data source results (after running 
pulumi preview). - Resource
Group stringId  - The ID of the resource group.
 - Start
Time string - The beginning of the time range to query. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.
 
- db
Instance StringId  - The db instance id.
 - backup
Id String - The ID of the cross-region data backup file.
 - cross
Backup StringId  - The ID of the cross-region data backup file.
 - cross
Backup StringRegion  The ID of the destination region where the cross-region data backup file is stored.
NOTE: Note You must specify the
cross_backup_idparameter. Alternatively, you must specify thestart_timeandend_timeparameters.- end
Time String - The end of the time range to query. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.
 - ids List<String>
 - A list of Cross Region Backup IDs.
 - output
File String - File name where to save data source results (after running 
pulumi preview). - resource
Group StringId  - The ID of the resource group.
 - start
Time String - The beginning of the time range to query. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.
 
- db
Instance stringId  - The db instance id.
 - backup
Id string - The ID of the cross-region data backup file.
 - cross
Backup stringId  - The ID of the cross-region data backup file.
 - cross
Backup stringRegion  The ID of the destination region where the cross-region data backup file is stored.
NOTE: Note You must specify the
cross_backup_idparameter. Alternatively, you must specify thestart_timeandend_timeparameters.- end
Time string - The end of the time range to query. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.
 - ids string[]
 - A list of Cross Region Backup IDs.
 - output
File string - File name where to save data source results (after running 
pulumi preview). - resource
Group stringId  - The ID of the resource group.
 - start
Time string - The beginning of the time range to query. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.
 
- db_
instance_ strid  - The db instance id.
 - backup_
id str - The ID of the cross-region data backup file.
 - cross_
backup_ strid  - The ID of the cross-region data backup file.
 - cross_
backup_ strregion  The ID of the destination region where the cross-region data backup file is stored.
NOTE: Note You must specify the
cross_backup_idparameter. Alternatively, you must specify thestart_timeandend_timeparameters.- end_
time str - The end of the time range to query. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.
 - ids Sequence[str]
 - A list of Cross Region Backup IDs.
 - output_
file str - File name where to save data source results (after running 
pulumi preview). - resource_
group_ strid  - The ID of the resource group.
 - start_
time str - The beginning of the time range to query. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.
 
- db
Instance StringId  - The db instance id.
 - backup
Id String - The ID of the cross-region data backup file.
 - cross
Backup StringId  - The ID of the cross-region data backup file.
 - cross
Backup StringRegion  The ID of the destination region where the cross-region data backup file is stored.
NOTE: Note You must specify the
cross_backup_idparameter. Alternatively, you must specify thestart_timeandend_timeparameters.- end
Time String - The end of the time range to query. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.
 - ids List<String>
 - A list of Cross Region Backup IDs.
 - output
File String - File name where to save data source results (after running 
pulumi preview). - resource
Group StringId  - The ID of the resource group.
 - start
Time String - The beginning of the time range to query. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.
 
getCrossRegionBackups Result
The following output properties are available:
- Backups
List<Pulumi.
Ali Cloud. Rds. Outputs. Get Cross Region Backups Backup>  - Db
Instance stringId  - Id string
 - The provider-assigned unique ID for this managed resource.
 - Ids List<string>
 - Backup
Id string - Cross
Backup stringId  - Cross
Backup stringRegion  - End
Time string - Output
File string - Resource
Group stringId  - Start
Time string 
- Backups
[]Get
Cross Region Backups Backup  - Db
Instance stringId  - Id string
 - The provider-assigned unique ID for this managed resource.
 - Ids []string
 - Backup
Id string - Cross
Backup stringId  - Cross
Backup stringRegion  - End
Time string - Output
File string - Resource
Group stringId  - Start
Time string 
- backups
List<Get
Cross Region Backups Backup>  - db
Instance StringId  - id String
 - The provider-assigned unique ID for this managed resource.
 - ids List<String>
 - backup
Id String - cross
Backup StringId  - cross
Backup StringRegion  - end
Time String - output
File String - resource
Group StringId  - start
Time String 
- backups
Get
Cross Region Backups Backup[]  - db
Instance stringId  - id string
 - The provider-assigned unique ID for this managed resource.
 - ids string[]
 - backup
Id string - cross
Backup stringId  - cross
Backup stringRegion  - end
Time string - output
File string - resource
Group stringId  - start
Time string 
- backups
Sequence[Get
Cross Region Backups Backup]  - db_
instance_ strid  - id str
 - The provider-assigned unique ID for this managed resource.
 - ids Sequence[str]
 - backup_
id str - cross_
backup_ strid  - cross_
backup_ strregion  - end_
time str - output_
file str - resource_
group_ strid  - start_
time str 
- backups List<Property Map>
 - db
Instance StringId  - id String
 - The provider-assigned unique ID for this managed resource.
 - ids List<String>
 - backup
Id String - cross
Backup StringId  - cross
Backup StringRegion  - end
Time String - output
File String - resource
Group StringId  - start
Time String 
Supporting Types
GetCrossRegionBackupsBackup    
- Backup
End stringTime  - The time when the cross-region data backup file was generated.
 - Backup
Method string - The method that is used to generate the cross-region data backup file. Valid values:
L- logical backup.P- physical backup. - Backup
Set stringScale  - The level at which the cross-region data backup file is generated.
0- instance-level backup.1- database-level backup. - Backup
Set intStatus  - TThe status of the cross-region data backup. Valid values:
0- The cross-region data backup is successful.1- The cross-region data backup failed. - Backup
Start stringTime  - The time when the cross-region data backup started.
 - Backup
Type string - The type of the cross-region data backup. Valid values:F: full data backup
F- full data backup.I- incremental data backup. - Category string
 - The RDS edition of the instance. Valid values:
Basic- Basic Edition.HighAvailability- High-availability Edition.Finance- Enterprise Edition. This edition is supported only by the China site (aliyun.com). - Consistent
Time string - The point in time that is indicated by the data in the cross-region data backup file.
 - Cross
Backup stringDownload Link  - The external URL from which you can download the cross-region data backup file.
 - Cross
Backup stringId  - The ID of the cross-region data backup file.
 - Cross
Backup stringRegion  - The ID of the destination region where the cross-region data backup file of the instance is stored.
 - Cross
Backup stringSet File  - The name of the compressed package that contains the cross-region data backup file.
 - Cross
Backup stringSet Location  - The location where the cross-region data backup file is stored.
 - Cross
Backup intSet Size  - The size of the cross-region data backup file. Unit: bytes.
 - Db
Instance stringStorage Type  - The storage type.
 - Engine string
 - The engine of the database.
 - Engine
Version string - The version of the database engine.
 - Id string
 - The ID of the cross-region data backup file.
 - Instance
Id int - The ID of the instance. This parameter is used to determine whether the instance that generates the cross-region data backup file is a primary or secondary instance.
 - Recovery
Begin stringTime  - The start time to which data can be restored. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
 - Recovery
End stringTime  - The end time to which data can be restored. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
 - Restore
Regions List<string> - An array that consists of the regions to which the cross-region data backup file can be restored.
 
- Backup
End stringTime  - The time when the cross-region data backup file was generated.
 - Backup
Method string - The method that is used to generate the cross-region data backup file. Valid values:
L- logical backup.P- physical backup. - Backup
Set stringScale  - The level at which the cross-region data backup file is generated.
0- instance-level backup.1- database-level backup. - Backup
Set intStatus  - TThe status of the cross-region data backup. Valid values:
0- The cross-region data backup is successful.1- The cross-region data backup failed. - Backup
Start stringTime  - The time when the cross-region data backup started.
 - Backup
Type string - The type of the cross-region data backup. Valid values:F: full data backup
F- full data backup.I- incremental data backup. - Category string
 - The RDS edition of the instance. Valid values:
Basic- Basic Edition.HighAvailability- High-availability Edition.Finance- Enterprise Edition. This edition is supported only by the China site (aliyun.com). - Consistent
Time string - The point in time that is indicated by the data in the cross-region data backup file.
 - Cross
Backup stringDownload Link  - The external URL from which you can download the cross-region data backup file.
 - Cross
Backup stringId  - The ID of the cross-region data backup file.
 - Cross
Backup stringRegion  - The ID of the destination region where the cross-region data backup file of the instance is stored.
 - Cross
Backup stringSet File  - The name of the compressed package that contains the cross-region data backup file.
 - Cross
Backup stringSet Location  - The location where the cross-region data backup file is stored.
 - Cross
Backup intSet Size  - The size of the cross-region data backup file. Unit: bytes.
 - Db
Instance stringStorage Type  - The storage type.
 - Engine string
 - The engine of the database.
 - Engine
Version string - The version of the database engine.
 - Id string
 - The ID of the cross-region data backup file.
 - Instance
Id int - The ID of the instance. This parameter is used to determine whether the instance that generates the cross-region data backup file is a primary or secondary instance.
 - Recovery
Begin stringTime  - The start time to which data can be restored. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
 - Recovery
End stringTime  - The end time to which data can be restored. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
 - Restore
Regions []string - An array that consists of the regions to which the cross-region data backup file can be restored.
 
- backup
End StringTime  - The time when the cross-region data backup file was generated.
 - backup
Method String - The method that is used to generate the cross-region data backup file. Valid values:
L- logical backup.P- physical backup. - backup
Set StringScale  - The level at which the cross-region data backup file is generated.
0- instance-level backup.1- database-level backup. - backup
Set IntegerStatus  - TThe status of the cross-region data backup. Valid values:
0- The cross-region data backup is successful.1- The cross-region data backup failed. - backup
Start StringTime  - The time when the cross-region data backup started.
 - backup
Type String - The type of the cross-region data backup. Valid values:F: full data backup
F- full data backup.I- incremental data backup. - category String
 - The RDS edition of the instance. Valid values:
Basic- Basic Edition.HighAvailability- High-availability Edition.Finance- Enterprise Edition. This edition is supported only by the China site (aliyun.com). - consistent
Time String - The point in time that is indicated by the data in the cross-region data backup file.
 - cross
Backup StringDownload Link  - The external URL from which you can download the cross-region data backup file.
 - cross
Backup StringId  - The ID of the cross-region data backup file.
 - cross
Backup StringRegion  - The ID of the destination region where the cross-region data backup file of the instance is stored.
 - cross
Backup StringSet File  - The name of the compressed package that contains the cross-region data backup file.
 - cross
Backup StringSet Location  - The location where the cross-region data backup file is stored.
 - cross
Backup IntegerSet Size  - The size of the cross-region data backup file. Unit: bytes.
 - db
Instance StringStorage Type  - The storage type.
 - engine String
 - The engine of the database.
 - engine
Version String - The version of the database engine.
 - id String
 - The ID of the cross-region data backup file.
 - instance
Id Integer - The ID of the instance. This parameter is used to determine whether the instance that generates the cross-region data backup file is a primary or secondary instance.
 - recovery
Begin StringTime  - The start time to which data can be restored. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
 - recovery
End StringTime  - The end time to which data can be restored. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
 - restore
Regions List<String> - An array that consists of the regions to which the cross-region data backup file can be restored.
 
- backup
End stringTime  - The time when the cross-region data backup file was generated.
 - backup
Method string - The method that is used to generate the cross-region data backup file. Valid values:
L- logical backup.P- physical backup. - backup
Set stringScale  - The level at which the cross-region data backup file is generated.
0- instance-level backup.1- database-level backup. - backup
Set numberStatus  - TThe status of the cross-region data backup. Valid values:
0- The cross-region data backup is successful.1- The cross-region data backup failed. - backup
Start stringTime  - The time when the cross-region data backup started.
 - backup
Type string - The type of the cross-region data backup. Valid values:F: full data backup
F- full data backup.I- incremental data backup. - category string
 - The RDS edition of the instance. Valid values:
Basic- Basic Edition.HighAvailability- High-availability Edition.Finance- Enterprise Edition. This edition is supported only by the China site (aliyun.com). - consistent
Time string - The point in time that is indicated by the data in the cross-region data backup file.
 - cross
Backup stringDownload Link  - The external URL from which you can download the cross-region data backup file.
 - cross
Backup stringId  - The ID of the cross-region data backup file.
 - cross
Backup stringRegion  - The ID of the destination region where the cross-region data backup file of the instance is stored.
 - cross
Backup stringSet File  - The name of the compressed package that contains the cross-region data backup file.
 - cross
Backup stringSet Location  - The location where the cross-region data backup file is stored.
 - cross
Backup numberSet Size  - The size of the cross-region data backup file. Unit: bytes.
 - db
Instance stringStorage Type  - The storage type.
 - engine string
 - The engine of the database.
 - engine
Version string - The version of the database engine.
 - id string
 - The ID of the cross-region data backup file.
 - instance
Id number - The ID of the instance. This parameter is used to determine whether the instance that generates the cross-region data backup file is a primary or secondary instance.
 - recovery
Begin stringTime  - The start time to which data can be restored. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
 - recovery
End stringTime  - The end time to which data can be restored. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
 - restore
Regions string[] - An array that consists of the regions to which the cross-region data backup file can be restored.
 
- backup_
end_ strtime  - The time when the cross-region data backup file was generated.
 - backup_
method str - The method that is used to generate the cross-region data backup file. Valid values:
L- logical backup.P- physical backup. - backup_
set_ strscale  - The level at which the cross-region data backup file is generated.
0- instance-level backup.1- database-level backup. - backup_
set_ intstatus  - TThe status of the cross-region data backup. Valid values:
0- The cross-region data backup is successful.1- The cross-region data backup failed. - backup_
start_ strtime  - The time when the cross-region data backup started.
 - backup_
type str - The type of the cross-region data backup. Valid values:F: full data backup
F- full data backup.I- incremental data backup. - category str
 - The RDS edition of the instance. Valid values:
Basic- Basic Edition.HighAvailability- High-availability Edition.Finance- Enterprise Edition. This edition is supported only by the China site (aliyun.com). - consistent_
time str - The point in time that is indicated by the data in the cross-region data backup file.
 - cross_
backup_ strdownload_ link  - The external URL from which you can download the cross-region data backup file.
 - cross_
backup_ strid  - The ID of the cross-region data backup file.
 - cross_
backup_ strregion  - The ID of the destination region where the cross-region data backup file of the instance is stored.
 - cross_
backup_ strset_ file  - The name of the compressed package that contains the cross-region data backup file.
 - cross_
backup_ strset_ location  - The location where the cross-region data backup file is stored.
 - cross_
backup_ intset_ size  - The size of the cross-region data backup file. Unit: bytes.
 - db_
instance_ strstorage_ type  - The storage type.
 - engine str
 - The engine of the database.
 - engine_
version str - The version of the database engine.
 - id str
 - The ID of the cross-region data backup file.
 - instance_
id int - The ID of the instance. This parameter is used to determine whether the instance that generates the cross-region data backup file is a primary or secondary instance.
 - recovery_
begin_ strtime  - The start time to which data can be restored. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
 - recovery_
end_ strtime  - The end time to which data can be restored. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
 - restore_
regions Sequence[str] - An array that consists of the regions to which the cross-region data backup file can be restored.
 
- backup
End StringTime  - The time when the cross-region data backup file was generated.
 - backup
Method String - The method that is used to generate the cross-region data backup file. Valid values:
L- logical backup.P- physical backup. - backup
Set StringScale  - The level at which the cross-region data backup file is generated.
0- instance-level backup.1- database-level backup. - backup
Set NumberStatus  - TThe status of the cross-region data backup. Valid values:
0- The cross-region data backup is successful.1- The cross-region data backup failed. - backup
Start StringTime  - The time when the cross-region data backup started.
 - backup
Type String - The type of the cross-region data backup. Valid values:F: full data backup
F- full data backup.I- incremental data backup. - category String
 - The RDS edition of the instance. Valid values:
Basic- Basic Edition.HighAvailability- High-availability Edition.Finance- Enterprise Edition. This edition is supported only by the China site (aliyun.com). - consistent
Time String - The point in time that is indicated by the data in the cross-region data backup file.
 - cross
Backup StringDownload Link  - The external URL from which you can download the cross-region data backup file.
 - cross
Backup StringId  - The ID of the cross-region data backup file.
 - cross
Backup StringRegion  - The ID of the destination region where the cross-region data backup file of the instance is stored.
 - cross
Backup StringSet File  - The name of the compressed package that contains the cross-region data backup file.
 - cross
Backup StringSet Location  - The location where the cross-region data backup file is stored.
 - cross
Backup NumberSet Size  - The size of the cross-region data backup file. Unit: bytes.
 - db
Instance StringStorage Type  - The storage type.
 - engine String
 - The engine of the database.
 - engine
Version String - The version of the database engine.
 - id String
 - The ID of the cross-region data backup file.
 - instance
Id Number - The ID of the instance. This parameter is used to determine whether the instance that generates the cross-region data backup file is a primary or secondary instance.
 - recovery
Begin StringTime  - The start time to which data can be restored. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
 - recovery
End StringTime  - The end time to which data can be restored. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
 - restore
Regions List<String> - An array that consists of the regions to which the cross-region data backup file can be restored.
 
Package Details
- Repository
 - Alibaba Cloud pulumi/pulumi-alicloud
 - License
 - Apache-2.0
 - Notes
 - This Pulumi package is based on the 
alicloudTerraform Provider.