Alibaba Cloud v3.88.0 published on Saturday, Nov 1, 2025 by Pulumi
alicloud.gpdb.getDataBackups
Start a Neo task
Explain and create an alicloud.gpdb.getDataBackups resource
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.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)
public static Output<GetDataBackupsResult> getDataBackups(GetDataBackupsArgs args, InvokeOptions options)
fn::invoke:
function: alicloud:gpdb/getDataBackups:getDataBackups
arguments:
# arguments dictionaryThe following arguments are supported:
- Db
Instance stringId - The instance ID.
- Backup
Mode 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.
- Data
Backup stringId - The first ID of the resource
- Data
Type string - The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
- End
Time 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.
- Output
File string - 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 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 stringId - The instance ID.
- Backup
Mode 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.
- Data
Backup stringId - The first ID of the resource
- Data
Type string - The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
- End
Time 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.
- Output
File string - 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 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 StringId - The instance ID.
- backup
Mode 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.
- data
Backup StringId - The first ID of the resource
- data
Type String - The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
- end
Time 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.
- output
File String - File name where to save data source results (after running
pulumi preview). - page
Number Integer - Current page number.
- page
Size Integer - Number of records per page.
- start
Time 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 stringId - The instance ID.
- backup
Mode 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.
- data
Backup stringId - The first ID of the resource
- data
Type string - The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
- end
Time 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.
- output
File string - File name where to save data source results (after running
pulumi preview). - page
Number number - Current page number.
- page
Size number - Number of records per page.
- start
Time 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_ strid - 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_ strid - 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.
- db
Instance StringId - The instance ID.
- backup
Mode 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.
- data
Backup StringId - The first ID of the resource
- data
Type String - The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
- end
Time 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.
- output
File String - File name where to save data source results (after running
pulumi preview). - page
Number Number - Current page number.
- page
Size Number - Number of records per page.
- start
Time 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.
Ali Cloud. Gpdb. Outputs. Get Data Backups Backup> - A list of Data Backup Entries. Each element contains the following attributes:
- Db
Instance stringId - The instance ID.
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids List<string>
- A list of Data Backup IDs.
- Backup
Mode 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.
- Data
Backup stringId - Data
Type string - The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
- End
Time string - Output
File string - Page
Number int - Page
Size int - Start
Time string - Status string
- Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.
- Backups
[]Get
Data Backups Backup - A list of Data Backup Entries. Each element contains the following attributes:
- Db
Instance stringId - The instance ID.
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids []string
- A list of Data Backup IDs.
- Backup
Mode 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.
- Data
Backup stringId - Data
Type string - The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
- End
Time string - Output
File string - Page
Number int - Page
Size int - Start
Time string - Status string
- Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.
- backups
List<Get
Data Backups Backup> - A list of Data Backup Entries. Each element contains the following attributes:
- db
Instance StringId - The instance ID.
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- A list of Data Backup IDs.
- backup
Mode 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.
- data
Backup StringId - data
Type String - The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
- end
Time String - output
File String - page
Number Integer - page
Size Integer - start
Time String - status String
- Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.
- backups
Get
Data Backups Backup[] - A list of Data Backup Entries. Each element contains the following attributes:
- db
Instance stringId - The instance ID.
- id string
- The provider-assigned unique ID for this managed resource.
- ids string[]
- A list of Data Backup IDs.
- backup
Mode 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.
- data
Backup stringId - data
Type string - The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
- end
Time string - output
File string - page
Number number - page
Size number - start
Time string - status string
- Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.
- backups
Sequence[Get
Data Backups Backup] - A list of Data Backup Entries. Each element contains the following attributes:
- db_
instance_ strid - 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_ strid - 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:
- db
Instance StringId - The instance ID.
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- A list of Data Backup IDs.
- backup
Mode 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.
- data
Backup StringId - data
Type String - The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
- end
Time String - output
File String - page
Number Number - page
Size Number - start
Time String - status String
- Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.
Supporting Types
GetDataBackupsBackup
- Backup
End stringTime - The backup end time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
- Backup
End stringTime Local - The end time of the backup (local time).
- Backup
Method string - Backup method. Value Description:-Physical: Physical backup.-Snapshot: the Snapshot backup.
- Backup
Mode 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.
- Backup
Set stringId - The ID of the backup set.
- Backup
Size int - The size of the backup file. Unit: Byte.
- Backup
Start stringTime - The backup start time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
- Backup
Start stringTime Local - The start time of the backup (local time).
- Bakset
Name string - 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 string - The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
- Db
Instance stringId - 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 stringTime - The backup end time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
- Backup
End stringTime Local - The end time of the backup (local time).
- Backup
Method string - Backup method. Value Description:-Physical: Physical backup.-Snapshot: the Snapshot backup.
- Backup
Mode 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.
- Backup
Set stringId - The ID of the backup set.
- Backup
Size int - The size of the backup file. Unit: Byte.
- Backup
Start stringTime - The backup start time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
- Backup
Start stringTime Local - The start time of the backup (local time).
- Bakset
Name string - 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 string - The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
- Db
Instance stringId - 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 StringTime - The backup end time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
- backup
End StringTime Local - The end time of the backup (local time).
- backup
Method String - Backup method. Value Description:-Physical: Physical backup.-Snapshot: the Snapshot backup.
- backup
Mode 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.
- backup
Set StringId - The ID of the backup set.
- backup
Size Integer - The size of the backup file. Unit: Byte.
- backup
Start StringTime - The backup start time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
- backup
Start StringTime Local - The start time of the backup (local time).
- bakset
Name String - The name of the recovery point or full backup set.
- consistent
Time Integer - -Full backup: Returns the timestamp of the consistent point in time.-Recoverable point: Returns the timestamp of the recoverable point in time.
- data
Type String - The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
- db
Instance StringId - 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 stringTime - The backup end time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
- backup
End stringTime Local - The end time of the backup (local time).
- backup
Method string - Backup method. Value Description:-Physical: Physical backup.-Snapshot: the Snapshot backup.
- backup
Mode 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.
- backup
Set stringId - The ID of the backup set.
- backup
Size number - The size of the backup file. Unit: Byte.
- backup
Start stringTime - The backup start time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
- backup
Start stringTime Local - The start time of the backup (local time).
- bakset
Name string - The name of the recovery point or full backup set.
- consistent
Time number - -Full backup: Returns the timestamp of the consistent point in time.-Recoverable point: Returns the timestamp of the recoverable point in time.
- data
Type string - The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
- db
Instance stringId - 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_ strtime - The backup end time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
- backup_
end_ strtime_ local - 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_ strid - The ID of the backup set.
- backup_
size int - The size of the backup file. Unit: Byte.
- backup_
start_ strtime - The backup start time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
- backup_
start_ strtime_ local - 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_ strid - The instance ID.
- status str
- Backup set status. Value Description:-Success: The backup has been completed.-Failed: Backup Failed.If not, return all.
- backup
End StringTime - The backup end time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
- backup
End StringTime Local - The end time of the backup (local time).
- backup
Method String - Backup method. Value Description:-Physical: Physical backup.-Snapshot: the Snapshot backup.
- backup
Mode 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.
- backup
Set StringId - The ID of the backup set.
- backup
Size Number - The size of the backup file. Unit: Byte.
- backup
Start StringTime - The backup start time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
- backup
Start StringTime Local - The start time of the backup (local time).
- bakset
Name String - The name of the recovery point or full backup set.
- consistent
Time Number - -Full backup: Returns the timestamp of the consistent point in time.-Recoverable point: Returns the timestamp of the recoverable point in time.
- data
Type String - The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
- db
Instance StringId - 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
alicloudTerraform Provider.
