Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi
alicloud.gpdb.getDataBackups
Explore with Pulumi AI
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)
public static Output<GetDataBackupsResult> getDataBackups(GetDataBackupsArgs args, InvokeOptions options)
fn::invoke:
function: alicloud:gpdb/getDataBackups:getDataBackups
arguments:
# arguments dictionary
The following arguments are supported:
- Db
Instance Id This property is required. string - 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
Changes to this property will trigger replacement.
- 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 Id This property is required. string - 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
Changes to this property will trigger replacement.
- 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 Id This property is required. String - 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
Changes to this property will trigger replacement.
- 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 Id This property is required. string - 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
Changes to this property will trigger replacement.
- 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_ 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_ 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
Changes to this property will trigger replacement.
- 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 Id This property is required. String - 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
Changes to this property will trigger replacement.
- 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 Time This property is required. string - The backup end time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
- Backup
End Time Local This property is required. string - The end time of the backup (local time).
- Backup
Method This property is required. string - Backup method. Value Description:-Physical: Physical backup.-Snapshot: the Snapshot backup.
- Backup
Mode 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.
- Backup
Set Id This property is required. string - 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. string - The backup start time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
- Backup
Start Time Local This property is required. string - The start time of the backup (local time).
- Bakset
Name This property is required. string - 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. string - The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
- Db
Instance Id 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. string - The backup end time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
- Backup
End Time Local This property is required. string - The end time of the backup (local time).
- Backup
Method This property is required. string - Backup method. Value Description:-Physical: Physical backup.-Snapshot: the Snapshot backup.
- Backup
Mode 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.
- Backup
Set Id This property is required. string - 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. string - The backup start time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
- Backup
Start Time Local This property is required. string - The start time of the backup (local time).
- Bakset
Name This property is required. string - 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. string - The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
- Db
Instance Id 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. String - The backup end time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
- backup
End Time Local This property is required. String - The end time of the backup (local time).
- backup
Method This property is required. String - Backup method. Value Description:-Physical: Physical backup.-Snapshot: the Snapshot backup.
- backup
Mode 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.
- backup
Set Id This property is required. String - The ID of the backup set.
- backup
Size This property is required. Integer - The size of the backup file. Unit: Byte.
- backup
Start Time This property is required. String - The backup start time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
- backup
Start Time Local This property is required. String - The start time of the backup (local time).
- bakset
Name This property is required. String - The name of the recovery point or full backup set.
- consistent
Time 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.
- data
Type This property is required. String - The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
- db
Instance Id 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. string - The backup end time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
- backup
End Time Local This property is required. string - The end time of the backup (local time).
- backup
Method This property is required. string - Backup method. Value Description:-Physical: Physical backup.-Snapshot: the Snapshot backup.
- backup
Mode 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.
- backup
Set Id This property is required. string - The ID of the backup set.
- backup
Size This property is required. number - The size of the backup file. Unit: Byte.
- backup
Start Time This property is required. string - The backup start time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
- backup
Start Time Local This property is required. string - The start time of the backup (local time).
- bakset
Name This property is required. string - The name of the recovery point or full backup set.
- consistent
Time 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.
- data
Type This property is required. string - The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
- db
Instance Id 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.
- backup
End Time This property is required. String - The backup end time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
- backup
End Time Local This property is required. String - The end time of the backup (local time).
- backup
Method This property is required. String - Backup method. Value Description:-Physical: Physical backup.-Snapshot: the Snapshot backup.
- backup
Mode 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.
- backup
Set Id This property is required. String - The ID of the backup set.
- backup
Size This property is required. Number - The size of the backup file. Unit: Byte.
- backup
Start Time This property is required. String - The backup start time. Format: yyyy-MM-ddTHH:mm:ssZ(UTC time).
- backup
Start Time Local This property is required. String - The start time of the backup (local time).
- bakset
Name This property is required. String - The name of the recovery point or full backup set.
- consistent
Time 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.
- data
Type This property is required. String - The backup type. Value Description:-DATA: Full backup.-RESTOREPOI: Recoverable point.
- db
Instance Id 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.