BackupPolicy

Provides an RDS instance backup policy resource and used to configure instance backup policy.

NOTE: Each DB instance has a backup policy and it will be set default values when destroying the resource.

Example Usage

using Pulumi;
using AliCloud = Pulumi.AliCloud;

class MyStack : Stack
{
    public MyStack()
    {
        var config = new Config();
        var creation = config.Get("creation") ?? "Rds";
        var name = config.Get("name") ?? "dbbackuppolicybasic";
        var defaultZones = Output.Create(AliCloud.GetZones.InvokeAsync(new AliCloud.GetZonesArgs
        {
            AvailableResourceCreation = creation,
        }));
        var defaultNetwork = new AliCloud.Vpc.Network("defaultNetwork", new AliCloud.Vpc.NetworkArgs
        {
            CidrBlock = "172.16.0.0/16",
        });
        var defaultSwitch = new AliCloud.Vpc.Switch("defaultSwitch", new AliCloud.Vpc.SwitchArgs
        {
            AvailabilityZone = defaultZones.Apply(defaultZones => defaultZones.Zones[0].Id),
            CidrBlock = "172.16.0.0/24",
            VpcId = defaultNetwork.Id,
        });
        var instance = new AliCloud.Rds.Instance("instance", new AliCloud.Rds.InstanceArgs
        {
            Engine = "MySQL",
            EngineVersion = "5.6",
            InstanceName = name,
            InstanceStorage = 10,
            InstanceType = "rds.mysql.s1.small",
            VswitchId = defaultSwitch.Id,
        });
        var policy = new AliCloud.Rds.BackupPolicy("policy", new AliCloud.Rds.BackupPolicyArgs
        {
            InstanceId = instance.Id,
        });
    }

}

Coming soon!

import pulumi
import pulumi_alicloud as alicloud

config = pulumi.Config()
creation = config.get("creation")
if creation is None:
    creation = "Rds"
name = config.get("name")
if name is None:
    name = "dbbackuppolicybasic"
default_zones = alicloud.get_zones(available_resource_creation=creation)
default_network = alicloud.vpc.Network("defaultNetwork", cidr_block="172.16.0.0/16")
default_switch = alicloud.vpc.Switch("defaultSwitch",
    availability_zone=default_zones.zones[0]["id"],
    cidr_block="172.16.0.0/24",
    vpc_id=default_network.id)
instance = alicloud.rds.Instance("instance",
    engine="MySQL",
    engine_version="5.6",
    instance_name=name,
    instance_storage="10",
    instance_type="rds.mysql.s1.small",
    vswitch_id=default_switch.id)
policy = alicloud.rds.BackupPolicy("policy", instance_id=instance.id)
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";

const config = new pulumi.Config();
const creation = config.get("creation") || "Rds";
const name = config.get("name") || "dbbackuppolicybasic";

const defaultZones = pulumi.output(alicloud.getZones({
    availableResourceCreation: creation,
}, { async: true }));
const defaultNetwork = new alicloud.vpc.Network("default", {
    cidrBlock: "172.16.0.0/16",
});
const defaultSwitch = new alicloud.vpc.Switch("default", {
    availabilityZone: defaultZones.zones[0].id,
    cidrBlock: "172.16.0.0/24",
    vpcId: defaultNetwork.id,
});
const instance = new alicloud.rds.Instance("instance", {
    engine: "MySQL",
    engineVersion: "5.6",
    instanceName: name,
    instanceStorage: 10,
    instanceType: "rds.mysql.s1.small",
    vswitchId: defaultSwitch.id,
});
const policy = new alicloud.rds.BackupPolicy("policy", {
    instanceId: instance.id,
});

Create a BackupPolicy Resource

def BackupPolicy(resource_name, opts=None, archive_backup_keep_count=None, archive_backup_keep_policy=None, archive_backup_retention_period=None, backup_periods=None, backup_retention_period=None, backup_time=None, compress_type=None, enable_backup_log=None, high_space_usage_protection=None, instance_id=None, local_log_retention_hours=None, local_log_retention_space=None, log_backup=None, log_backup_frequency=None, log_backup_retention_period=None, log_retention_period=None, preferred_backup_periods=None, preferred_backup_time=None, retention_period=None, __props__=None);
func NewBackupPolicy(ctx *Context, name string, args BackupPolicyArgs, opts ...ResourceOption) (*BackupPolicy, error)
name string
The unique name of the resource.
args BackupPolicyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
opts ResourceOptions
A bag of options that control this resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args BackupPolicyArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args BackupPolicyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.

BackupPolicy Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.

Inputs

The BackupPolicy resource accepts the following input properties:

InstanceId string

The Id of instance that can run database.

ArchiveBackupKeepCount int

Instance archive backup keep count. Valid when the enable_backup_log is true and instance is mysql local disk. When archive_backup_keep_policy is ByMonth Valid values: [1-31]. When archive_backup_keep_policy is ByWeek Valid values: [1-7].

ArchiveBackupKeepPolicy string

Instance archive backup keep policy. Valid when the enable_backup_log is true and instance is mysql local disk. Valid values are ByMonth, Disable, KeepAll.

ArchiveBackupRetentionPeriod int

Instance archive backup retention days. Valid when the enable_backup_log is true and instance is mysql local disk. Valid values: [30-1095], and archive_backup_retention_period must larger than backup_retention_period 730.

BackupPeriods List<string>

It has been deprecated from version 1.69.0, and use field ‘preferred_backup_period’ instead.

Deprecated: Attribute 'backup_period' has been deprecated from version 1.69.0. Use preferred_backup_period instead

BackupRetentionPeriod int

Instance backup retention days. Valid values: [7-730]. Default to 7. But mysql local disk is unlimited.

BackupTime string

It has been deprecated from version 1.69.0, and use field ‘preferred_backup_time’ instead.

Deprecated: Attribute 'backup_time' has been deprecated from version 1.69.0. Use preferred_backup_time instead

CompressType string

The compress type of instance policy. Valid values are 1, 4, 8.

EnableBackupLog bool

Whether to backup instance log. Valid values are true, false, Default to true. Note: The ‘Basic Edition’ category Rds instance does not support setting log backup. What is Basic Edition.

HighSpaceUsageProtection string

Instance high space usage protection policy. Valid when the enable_backup_log is true. Valid values are Enable, Disable.

LocalLogRetentionHours int

Instance log backup local retention hours. Valid when the enable_backup_log is true. Valid values: [0-7*24].

LocalLogRetentionSpace int

Instance log backup local retention space. Valid when the enable_backup_log is true. Valid values: [5-50].

LogBackup bool

It has been deprecated from version 1.68.0, and use field ‘enable_backup_log’ instead.

Deprecated: Attribute 'log_backup' has been deprecated from version 1.68.0. Use enable_backup_log instead

LogBackupFrequency string

Instance log backup frequency. Valid when the instance engine is SQLServer. Valid values are LogInterval.

LogBackupRetentionPeriod int

Instance log backup retention days. Valid when the enable_backup_log is 1. Valid values: [7-730]. Default to 7. It cannot be larger than backup_retention_period.

LogRetentionPeriod int

It has been deprecated from version 1.69.0, and use field ‘log_backup_retention_period’ instead.

Deprecated: Attribute 'log_retention_period' has been deprecated from version 1.69.0. Use log_backup_retention_period instead

PreferredBackupPeriods List<string>

DB Instance backup period. Please set at least two days to ensure backing up at least twice a week. Valid values: [Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday]. Default to [“Monday”, “Tuesday”, “Wednesday”, “Thursday”, “Friday”, “Saturday”, “Sunday”].

PreferredBackupTime string

DB instance backup time, in the format of HH:mmZ- HH:mmZ. Time setting interval is one hour. Default to “02:00Z-03:00Z”. China time is 8 hours behind it.

RetentionPeriod int

It has been deprecated from version 1.69.0, and use field ‘backup_retention_period’ instead.

Deprecated: Attribute 'retention_period' has been deprecated from version 1.69.0. Use backup_retention_period instead

InstanceId string

The Id of instance that can run database.

ArchiveBackupKeepCount int

Instance archive backup keep count. Valid when the enable_backup_log is true and instance is mysql local disk. When archive_backup_keep_policy is ByMonth Valid values: [1-31]. When archive_backup_keep_policy is ByWeek Valid values: [1-7].

ArchiveBackupKeepPolicy string

Instance archive backup keep policy. Valid when the enable_backup_log is true and instance is mysql local disk. Valid values are ByMonth, Disable, KeepAll.

ArchiveBackupRetentionPeriod int

Instance archive backup retention days. Valid when the enable_backup_log is true and instance is mysql local disk. Valid values: [30-1095], and archive_backup_retention_period must larger than backup_retention_period 730.

BackupPeriods []string

It has been deprecated from version 1.69.0, and use field ‘preferred_backup_period’ instead.

Deprecated: Attribute 'backup_period' has been deprecated from version 1.69.0. Use preferred_backup_period instead

BackupRetentionPeriod int

Instance backup retention days. Valid values: [7-730]. Default to 7. But mysql local disk is unlimited.

BackupTime string

It has been deprecated from version 1.69.0, and use field ‘preferred_backup_time’ instead.

Deprecated: Attribute 'backup_time' has been deprecated from version 1.69.0. Use preferred_backup_time instead

CompressType string

The compress type of instance policy. Valid values are 1, 4, 8.

EnableBackupLog bool

Whether to backup instance log. Valid values are true, false, Default to true. Note: The ‘Basic Edition’ category Rds instance does not support setting log backup. What is Basic Edition.

HighSpaceUsageProtection string

Instance high space usage protection policy. Valid when the enable_backup_log is true. Valid values are Enable, Disable.

LocalLogRetentionHours int

Instance log backup local retention hours. Valid when the enable_backup_log is true. Valid values: [0-7*24].

LocalLogRetentionSpace int

Instance log backup local retention space. Valid when the enable_backup_log is true. Valid values: [5-50].

LogBackup bool

It has been deprecated from version 1.68.0, and use field ‘enable_backup_log’ instead.

Deprecated: Attribute 'log_backup' has been deprecated from version 1.68.0. Use enable_backup_log instead

LogBackupFrequency string

Instance log backup frequency. Valid when the instance engine is SQLServer. Valid values are LogInterval.

LogBackupRetentionPeriod int

Instance log backup retention days. Valid when the enable_backup_log is 1. Valid values: [7-730]. Default to 7. It cannot be larger than backup_retention_period.

LogRetentionPeriod int

It has been deprecated from version 1.69.0, and use field ‘log_backup_retention_period’ instead.

Deprecated: Attribute 'log_retention_period' has been deprecated from version 1.69.0. Use log_backup_retention_period instead

PreferredBackupPeriods []string

DB Instance backup period. Please set at least two days to ensure backing up at least twice a week. Valid values: [Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday]. Default to [“Monday”, “Tuesday”, “Wednesday”, “Thursday”, “Friday”, “Saturday”, “Sunday”].

PreferredBackupTime string

DB instance backup time, in the format of HH:mmZ- HH:mmZ. Time setting interval is one hour. Default to “02:00Z-03:00Z”. China time is 8 hours behind it.

RetentionPeriod int

It has been deprecated from version 1.69.0, and use field ‘backup_retention_period’ instead.

Deprecated: Attribute 'retention_period' has been deprecated from version 1.69.0. Use backup_retention_period instead

instanceId string

The Id of instance that can run database.

archiveBackupKeepCount number

Instance archive backup keep count. Valid when the enable_backup_log is true and instance is mysql local disk. When archive_backup_keep_policy is ByMonth Valid values: [1-31]. When archive_backup_keep_policy is ByWeek Valid values: [1-7].

archiveBackupKeepPolicy string

Instance archive backup keep policy. Valid when the enable_backup_log is true and instance is mysql local disk. Valid values are ByMonth, Disable, KeepAll.

archiveBackupRetentionPeriod number

Instance archive backup retention days. Valid when the enable_backup_log is true and instance is mysql local disk. Valid values: [30-1095], and archive_backup_retention_period must larger than backup_retention_period 730.

backupPeriods string[]

It has been deprecated from version 1.69.0, and use field ‘preferred_backup_period’ instead.

Deprecated: Attribute 'backup_period' has been deprecated from version 1.69.0. Use preferred_backup_period instead

backupRetentionPeriod number

Instance backup retention days. Valid values: [7-730]. Default to 7. But mysql local disk is unlimited.

backupTime string

It has been deprecated from version 1.69.0, and use field ‘preferred_backup_time’ instead.

Deprecated: Attribute 'backup_time' has been deprecated from version 1.69.0. Use preferred_backup_time instead

compressType string

The compress type of instance policy. Valid values are 1, 4, 8.

enableBackupLog boolean

Whether to backup instance log. Valid values are true, false, Default to true. Note: The ‘Basic Edition’ category Rds instance does not support setting log backup. What is Basic Edition.

highSpaceUsageProtection string

Instance high space usage protection policy. Valid when the enable_backup_log is true. Valid values are Enable, Disable.

localLogRetentionHours number

Instance log backup local retention hours. Valid when the enable_backup_log is true. Valid values: [0-7*24].

localLogRetentionSpace number

Instance log backup local retention space. Valid when the enable_backup_log is true. Valid values: [5-50].

logBackup boolean

It has been deprecated from version 1.68.0, and use field ‘enable_backup_log’ instead.

Deprecated: Attribute 'log_backup' has been deprecated from version 1.68.0. Use enable_backup_log instead

logBackupFrequency string

Instance log backup frequency. Valid when the instance engine is SQLServer. Valid values are LogInterval.

logBackupRetentionPeriod number

Instance log backup retention days. Valid when the enable_backup_log is 1. Valid values: [7-730]. Default to 7. It cannot be larger than backup_retention_period.

logRetentionPeriod number

It has been deprecated from version 1.69.0, and use field ‘log_backup_retention_period’ instead.

Deprecated: Attribute 'log_retention_period' has been deprecated from version 1.69.0. Use log_backup_retention_period instead

preferredBackupPeriods string[]

DB Instance backup period. Please set at least two days to ensure backing up at least twice a week. Valid values: [Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday]. Default to [“Monday”, “Tuesday”, “Wednesday”, “Thursday”, “Friday”, “Saturday”, “Sunday”].

preferredBackupTime string

DB instance backup time, in the format of HH:mmZ- HH:mmZ. Time setting interval is one hour. Default to “02:00Z-03:00Z”. China time is 8 hours behind it.

retentionPeriod number

It has been deprecated from version 1.69.0, and use field ‘backup_retention_period’ instead.

Deprecated: Attribute 'retention_period' has been deprecated from version 1.69.0. Use backup_retention_period instead

instance_id str

The Id of instance that can run database.

archive_backup_keep_count float

Instance archive backup keep count. Valid when the enable_backup_log is true and instance is mysql local disk. When archive_backup_keep_policy is ByMonth Valid values: [1-31]. When archive_backup_keep_policy is ByWeek Valid values: [1-7].

archive_backup_keep_policy str

Instance archive backup keep policy. Valid when the enable_backup_log is true and instance is mysql local disk. Valid values are ByMonth, Disable, KeepAll.

archive_backup_retention_period float

Instance archive backup retention days. Valid when the enable_backup_log is true and instance is mysql local disk. Valid values: [30-1095], and archive_backup_retention_period must larger than backup_retention_period 730.

backup_periods List[str]

It has been deprecated from version 1.69.0, and use field ‘preferred_backup_period’ instead.

Deprecated: Attribute 'backup_period' has been deprecated from version 1.69.0. Use preferred_backup_period instead

backup_retention_period float

Instance backup retention days. Valid values: [7-730]. Default to 7. But mysql local disk is unlimited.

backup_time str

It has been deprecated from version 1.69.0, and use field ‘preferred_backup_time’ instead.

Deprecated: Attribute 'backup_time' has been deprecated from version 1.69.0. Use preferred_backup_time instead

compress_type str

The compress type of instance policy. Valid values are 1, 4, 8.

enable_backup_log bool

Whether to backup instance log. Valid values are true, false, Default to true. Note: The ‘Basic Edition’ category Rds instance does not support setting log backup. What is Basic Edition.

high_space_usage_protection str

Instance high space usage protection policy. Valid when the enable_backup_log is true. Valid values are Enable, Disable.

local_log_retention_hours float

Instance log backup local retention hours. Valid when the enable_backup_log is true. Valid values: [0-7*24].

local_log_retention_space float

Instance log backup local retention space. Valid when the enable_backup_log is true. Valid values: [5-50].

log_backup bool

It has been deprecated from version 1.68.0, and use field ‘enable_backup_log’ instead.

Deprecated: Attribute 'log_backup' has been deprecated from version 1.68.0. Use enable_backup_log instead

log_backup_frequency str

Instance log backup frequency. Valid when the instance engine is SQLServer. Valid values are LogInterval.

log_backup_retention_period float

Instance log backup retention days. Valid when the enable_backup_log is 1. Valid values: [7-730]. Default to 7. It cannot be larger than backup_retention_period.

log_retention_period float

It has been deprecated from version 1.69.0, and use field ‘log_backup_retention_period’ instead.

Deprecated: Attribute 'log_retention_period' has been deprecated from version 1.69.0. Use log_backup_retention_period instead

preferred_backup_periods List[str]

DB Instance backup period. Please set at least two days to ensure backing up at least twice a week. Valid values: [Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday]. Default to [“Monday”, “Tuesday”, “Wednesday”, “Thursday”, “Friday”, “Saturday”, “Sunday”].

preferred_backup_time str

DB instance backup time, in the format of HH:mmZ- HH:mmZ. Time setting interval is one hour. Default to “02:00Z-03:00Z”. China time is 8 hours behind it.

retention_period float

It has been deprecated from version 1.69.0, and use field ‘backup_retention_period’ instead.

Deprecated: Attribute 'retention_period' has been deprecated from version 1.69.0. Use backup_retention_period instead

Outputs

All input properties are implicitly available as output properties. Additionally, the BackupPolicy resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.

Look up an Existing BackupPolicy Resource

Get an existing BackupPolicy resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: BackupPolicyState, opts?: CustomResourceOptions): BackupPolicy
static get(resource_name, id, opts=None, archive_backup_keep_count=None, archive_backup_keep_policy=None, archive_backup_retention_period=None, backup_periods=None, backup_retention_period=None, backup_time=None, compress_type=None, enable_backup_log=None, high_space_usage_protection=None, instance_id=None, local_log_retention_hours=None, local_log_retention_space=None, log_backup=None, log_backup_frequency=None, log_backup_retention_period=None, log_retention_period=None, preferred_backup_periods=None, preferred_backup_time=None, retention_period=None, __props__=None);
func GetBackupPolicy(ctx *Context, name string, id IDInput, state *BackupPolicyState, opts ...ResourceOption) (*BackupPolicy, error)
public static BackupPolicy Get(string name, Input<string> id, BackupPolicyState? state, CustomResourceOptions? opts = null)
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.

The following state arguments are supported:

ArchiveBackupKeepCount int

Instance archive backup keep count. Valid when the enable_backup_log is true and instance is mysql local disk. When archive_backup_keep_policy is ByMonth Valid values: [1-31]. When archive_backup_keep_policy is ByWeek Valid values: [1-7].

ArchiveBackupKeepPolicy string

Instance archive backup keep policy. Valid when the enable_backup_log is true and instance is mysql local disk. Valid values are ByMonth, Disable, KeepAll.

ArchiveBackupRetentionPeriod int

Instance archive backup retention days. Valid when the enable_backup_log is true and instance is mysql local disk. Valid values: [30-1095], and archive_backup_retention_period must larger than backup_retention_period 730.

BackupPeriods List<string>

It has been deprecated from version 1.69.0, and use field ‘preferred_backup_period’ instead.

Deprecated: Attribute 'backup_period' has been deprecated from version 1.69.0. Use preferred_backup_period instead

BackupRetentionPeriod int

Instance backup retention days. Valid values: [7-730]. Default to 7. But mysql local disk is unlimited.

BackupTime string

It has been deprecated from version 1.69.0, and use field ‘preferred_backup_time’ instead.

Deprecated: Attribute 'backup_time' has been deprecated from version 1.69.0. Use preferred_backup_time instead

CompressType string

The compress type of instance policy. Valid values are 1, 4, 8.

EnableBackupLog bool

Whether to backup instance log. Valid values are true, false, Default to true. Note: The ‘Basic Edition’ category Rds instance does not support setting log backup. What is Basic Edition.

HighSpaceUsageProtection string

Instance high space usage protection policy. Valid when the enable_backup_log is true. Valid values are Enable, Disable.

InstanceId string

The Id of instance that can run database.

LocalLogRetentionHours int

Instance log backup local retention hours. Valid when the enable_backup_log is true. Valid values: [0-7*24].

LocalLogRetentionSpace int

Instance log backup local retention space. Valid when the enable_backup_log is true. Valid values: [5-50].

LogBackup bool

It has been deprecated from version 1.68.0, and use field ‘enable_backup_log’ instead.

Deprecated: Attribute 'log_backup' has been deprecated from version 1.68.0. Use enable_backup_log instead

LogBackupFrequency string

Instance log backup frequency. Valid when the instance engine is SQLServer. Valid values are LogInterval.

LogBackupRetentionPeriod int

Instance log backup retention days. Valid when the enable_backup_log is 1. Valid values: [7-730]. Default to 7. It cannot be larger than backup_retention_period.

LogRetentionPeriod int

It has been deprecated from version 1.69.0, and use field ‘log_backup_retention_period’ instead.

Deprecated: Attribute 'log_retention_period' has been deprecated from version 1.69.0. Use log_backup_retention_period instead

PreferredBackupPeriods List<string>

DB Instance backup period. Please set at least two days to ensure backing up at least twice a week. Valid values: [Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday]. Default to [“Monday”, “Tuesday”, “Wednesday”, “Thursday”, “Friday”, “Saturday”, “Sunday”].

PreferredBackupTime string

DB instance backup time, in the format of HH:mmZ- HH:mmZ. Time setting interval is one hour. Default to “02:00Z-03:00Z”. China time is 8 hours behind it.

RetentionPeriod int

It has been deprecated from version 1.69.0, and use field ‘backup_retention_period’ instead.

Deprecated: Attribute 'retention_period' has been deprecated from version 1.69.0. Use backup_retention_period instead

ArchiveBackupKeepCount int

Instance archive backup keep count. Valid when the enable_backup_log is true and instance is mysql local disk. When archive_backup_keep_policy is ByMonth Valid values: [1-31]. When archive_backup_keep_policy is ByWeek Valid values: [1-7].

ArchiveBackupKeepPolicy string

Instance archive backup keep policy. Valid when the enable_backup_log is true and instance is mysql local disk. Valid values are ByMonth, Disable, KeepAll.

ArchiveBackupRetentionPeriod int

Instance archive backup retention days. Valid when the enable_backup_log is true and instance is mysql local disk. Valid values: [30-1095], and archive_backup_retention_period must larger than backup_retention_period 730.

BackupPeriods []string

It has been deprecated from version 1.69.0, and use field ‘preferred_backup_period’ instead.

Deprecated: Attribute 'backup_period' has been deprecated from version 1.69.0. Use preferred_backup_period instead

BackupRetentionPeriod int

Instance backup retention days. Valid values: [7-730]. Default to 7. But mysql local disk is unlimited.

BackupTime string

It has been deprecated from version 1.69.0, and use field ‘preferred_backup_time’ instead.

Deprecated: Attribute 'backup_time' has been deprecated from version 1.69.0. Use preferred_backup_time instead

CompressType string

The compress type of instance policy. Valid values are 1, 4, 8.

EnableBackupLog bool

Whether to backup instance log. Valid values are true, false, Default to true. Note: The ‘Basic Edition’ category Rds instance does not support setting log backup. What is Basic Edition.

HighSpaceUsageProtection string

Instance high space usage protection policy. Valid when the enable_backup_log is true. Valid values are Enable, Disable.

InstanceId string

The Id of instance that can run database.

LocalLogRetentionHours int

Instance log backup local retention hours. Valid when the enable_backup_log is true. Valid values: [0-7*24].

LocalLogRetentionSpace int

Instance log backup local retention space. Valid when the enable_backup_log is true. Valid values: [5-50].

LogBackup bool

It has been deprecated from version 1.68.0, and use field ‘enable_backup_log’ instead.

Deprecated: Attribute 'log_backup' has been deprecated from version 1.68.0. Use enable_backup_log instead

LogBackupFrequency string

Instance log backup frequency. Valid when the instance engine is SQLServer. Valid values are LogInterval.

LogBackupRetentionPeriod int

Instance log backup retention days. Valid when the enable_backup_log is 1. Valid values: [7-730]. Default to 7. It cannot be larger than backup_retention_period.

LogRetentionPeriod int

It has been deprecated from version 1.69.0, and use field ‘log_backup_retention_period’ instead.

Deprecated: Attribute 'log_retention_period' has been deprecated from version 1.69.0. Use log_backup_retention_period instead

PreferredBackupPeriods []string

DB Instance backup period. Please set at least two days to ensure backing up at least twice a week. Valid values: [Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday]. Default to [“Monday”, “Tuesday”, “Wednesday”, “Thursday”, “Friday”, “Saturday”, “Sunday”].

PreferredBackupTime string

DB instance backup time, in the format of HH:mmZ- HH:mmZ. Time setting interval is one hour. Default to “02:00Z-03:00Z”. China time is 8 hours behind it.

RetentionPeriod int

It has been deprecated from version 1.69.0, and use field ‘backup_retention_period’ instead.

Deprecated: Attribute 'retention_period' has been deprecated from version 1.69.0. Use backup_retention_period instead

archiveBackupKeepCount number

Instance archive backup keep count. Valid when the enable_backup_log is true and instance is mysql local disk. When archive_backup_keep_policy is ByMonth Valid values: [1-31]. When archive_backup_keep_policy is ByWeek Valid values: [1-7].

archiveBackupKeepPolicy string

Instance archive backup keep policy. Valid when the enable_backup_log is true and instance is mysql local disk. Valid values are ByMonth, Disable, KeepAll.

archiveBackupRetentionPeriod number

Instance archive backup retention days. Valid when the enable_backup_log is true and instance is mysql local disk. Valid values: [30-1095], and archive_backup_retention_period must larger than backup_retention_period 730.

backupPeriods string[]

It has been deprecated from version 1.69.0, and use field ‘preferred_backup_period’ instead.

Deprecated: Attribute 'backup_period' has been deprecated from version 1.69.0. Use preferred_backup_period instead

backupRetentionPeriod number

Instance backup retention days. Valid values: [7-730]. Default to 7. But mysql local disk is unlimited.

backupTime string

It has been deprecated from version 1.69.0, and use field ‘preferred_backup_time’ instead.

Deprecated: Attribute 'backup_time' has been deprecated from version 1.69.0. Use preferred_backup_time instead

compressType string

The compress type of instance policy. Valid values are 1, 4, 8.

enableBackupLog boolean

Whether to backup instance log. Valid values are true, false, Default to true. Note: The ‘Basic Edition’ category Rds instance does not support setting log backup. What is Basic Edition.

highSpaceUsageProtection string

Instance high space usage protection policy. Valid when the enable_backup_log is true. Valid values are Enable, Disable.

instanceId string

The Id of instance that can run database.

localLogRetentionHours number

Instance log backup local retention hours. Valid when the enable_backup_log is true. Valid values: [0-7*24].

localLogRetentionSpace number

Instance log backup local retention space. Valid when the enable_backup_log is true. Valid values: [5-50].

logBackup boolean

It has been deprecated from version 1.68.0, and use field ‘enable_backup_log’ instead.

Deprecated: Attribute 'log_backup' has been deprecated from version 1.68.0. Use enable_backup_log instead

logBackupFrequency string

Instance log backup frequency. Valid when the instance engine is SQLServer. Valid values are LogInterval.

logBackupRetentionPeriod number

Instance log backup retention days. Valid when the enable_backup_log is 1. Valid values: [7-730]. Default to 7. It cannot be larger than backup_retention_period.

logRetentionPeriod number

It has been deprecated from version 1.69.0, and use field ‘log_backup_retention_period’ instead.

Deprecated: Attribute 'log_retention_period' has been deprecated from version 1.69.0. Use log_backup_retention_period instead

preferredBackupPeriods string[]

DB Instance backup period. Please set at least two days to ensure backing up at least twice a week. Valid values: [Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday]. Default to [“Monday”, “Tuesday”, “Wednesday”, “Thursday”, “Friday”, “Saturday”, “Sunday”].

preferredBackupTime string

DB instance backup time, in the format of HH:mmZ- HH:mmZ. Time setting interval is one hour. Default to “02:00Z-03:00Z”. China time is 8 hours behind it.

retentionPeriod number

It has been deprecated from version 1.69.0, and use field ‘backup_retention_period’ instead.

Deprecated: Attribute 'retention_period' has been deprecated from version 1.69.0. Use backup_retention_period instead

archive_backup_keep_count float

Instance archive backup keep count. Valid when the enable_backup_log is true and instance is mysql local disk. When archive_backup_keep_policy is ByMonth Valid values: [1-31]. When archive_backup_keep_policy is ByWeek Valid values: [1-7].

archive_backup_keep_policy str

Instance archive backup keep policy. Valid when the enable_backup_log is true and instance is mysql local disk. Valid values are ByMonth, Disable, KeepAll.

archive_backup_retention_period float

Instance archive backup retention days. Valid when the enable_backup_log is true and instance is mysql local disk. Valid values: [30-1095], and archive_backup_retention_period must larger than backup_retention_period 730.

backup_periods List[str]

It has been deprecated from version 1.69.0, and use field ‘preferred_backup_period’ instead.

Deprecated: Attribute 'backup_period' has been deprecated from version 1.69.0. Use preferred_backup_period instead

backup_retention_period float

Instance backup retention days. Valid values: [7-730]. Default to 7. But mysql local disk is unlimited.

backup_time str

It has been deprecated from version 1.69.0, and use field ‘preferred_backup_time’ instead.

Deprecated: Attribute 'backup_time' has been deprecated from version 1.69.0. Use preferred_backup_time instead

compress_type str

The compress type of instance policy. Valid values are 1, 4, 8.

enable_backup_log bool

Whether to backup instance log. Valid values are true, false, Default to true. Note: The ‘Basic Edition’ category Rds instance does not support setting log backup. What is Basic Edition.

high_space_usage_protection str

Instance high space usage protection policy. Valid when the enable_backup_log is true. Valid values are Enable, Disable.

instance_id str

The Id of instance that can run database.

local_log_retention_hours float

Instance log backup local retention hours. Valid when the enable_backup_log is true. Valid values: [0-7*24].

local_log_retention_space float

Instance log backup local retention space. Valid when the enable_backup_log is true. Valid values: [5-50].

log_backup bool

It has been deprecated from version 1.68.0, and use field ‘enable_backup_log’ instead.

Deprecated: Attribute 'log_backup' has been deprecated from version 1.68.0. Use enable_backup_log instead

log_backup_frequency str

Instance log backup frequency. Valid when the instance engine is SQLServer. Valid values are LogInterval.

log_backup_retention_period float

Instance log backup retention days. Valid when the enable_backup_log is 1. Valid values: [7-730]. Default to 7. It cannot be larger than backup_retention_period.

log_retention_period float

It has been deprecated from version 1.69.0, and use field ‘log_backup_retention_period’ instead.

Deprecated: Attribute 'log_retention_period' has been deprecated from version 1.69.0. Use log_backup_retention_period instead

preferred_backup_periods List[str]

DB Instance backup period. Please set at least two days to ensure backing up at least twice a week. Valid values: [Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday]. Default to [“Monday”, “Tuesday”, “Wednesday”, “Thursday”, “Friday”, “Saturday”, “Sunday”].

preferred_backup_time str

DB instance backup time, in the format of HH:mmZ- HH:mmZ. Time setting interval is one hour. Default to “02:00Z-03:00Z”. China time is 8 hours behind it.

retention_period float

It has been deprecated from version 1.69.0, and use field ‘backup_retention_period’ instead.

Deprecated: Attribute 'retention_period' has been deprecated from version 1.69.0. Use backup_retention_period instead

Package Details

Repository
https://github.com/pulumi/pulumi-alicloud
License
Apache-2.0
Notes
This Pulumi package is based on the alicloud Terraform Provider.