1. Registry
  2. Packages
  3. Alibaba Cloud Provider
  4. API Docs
  5. rds
  6. BackupPolicy
Viewing docs for Alibaba Cloud v3.106.0
published on Monday, Aug 24, 2026 by Pulumi
alicloud logo alicloud logo
Viewing docs for Alibaba Cloud v3.106.0
published on Monday, Aug 24, 2026 by Pulumi

    Provides an RDS instance backup policy resource and used to configure instance backup policy, see What is DB Backup Policy.

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

    NOTE: Available since v1.5.0.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const config = new pulumi.Config();
    const name = config.get("name") || "tf-example";
    const _default = alicloud.rds.getZones({
        engine: "MySQL",
        engineVersion: "5.6",
    });
    const defaultNetwork = new alicloud.vpc.Network("default", {
        vpcName: name,
        cidrBlock: "172.16.0.0/16",
    });
    const defaultSwitch = new alicloud.vpc.Switch("default", {
        vpcId: defaultNetwork.id,
        cidrBlock: "172.16.0.0/24",
        zoneId: _default.then(_default => _default.zones?.[0]?.id),
        vswitchName: name,
    });
    const instance = new alicloud.rds.Instance("instance", {
        engine: "MySQL",
        engineVersion: "5.6",
        instanceType: "rds.mysql.s1.small",
        instanceStorage: 10,
        vswitchId: defaultSwitch.id,
        instanceName: name,
    });
    const policy = new alicloud.rds.BackupPolicy("policy", {instanceId: instance.id});
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "tf-example"
    default = alicloud.rds.get_zones(engine="MySQL",
        engine_version="5.6")
    default_network = alicloud.vpc.Network("default",
        vpc_name=name,
        cidr_block="172.16.0.0/16")
    default_switch = alicloud.vpc.Switch("default",
        vpc_id=default_network.id,
        cidr_block="172.16.0.0/24",
        zone_id=default.zones[0].id,
        vswitch_name=name)
    instance = alicloud.rds.Instance("instance",
        engine="MySQL",
        engine_version="5.6",
        instance_type="rds.mysql.s1.small",
        instance_storage=10,
        vswitch_id=default_switch.id,
        instance_name=name)
    policy = alicloud.rds.BackupPolicy("policy", instance_id=instance.id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/rds"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		name := "tf-example"
    		if param := cfg.Get("name"); param != "" {
    			name = param
    		}
    		_default, err := rds.GetZones(ctx, &rds.GetZonesArgs{
    			Engine:        pulumi.StringRef("MySQL"),
    			EngineVersion: pulumi.StringRef("5.6"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		defaultNetwork, err := vpc.NewNetwork(ctx, "default", &vpc.NetworkArgs{
    			VpcName:   pulumi.String(name),
    			CidrBlock: pulumi.String("172.16.0.0/16"),
    		})
    		if err != nil {
    			return err
    		}
    		defaultSwitch, err := vpc.NewSwitch(ctx, "default", &vpc.SwitchArgs{
    			VpcId:       defaultNetwork.ID().ToIDOutput().ToStringOutput(),
    			CidrBlock:   pulumi.String("172.16.0.0/24"),
    			ZoneId:      pulumi.String(_default.Zones[0].Id),
    			VswitchName: pulumi.String(name),
    		})
    		if err != nil {
    			return err
    		}
    		instance, err := rds.NewInstance(ctx, "instance", &rds.InstanceArgs{
    			Engine:          pulumi.String("MySQL"),
    			EngineVersion:   pulumi.String("5.6"),
    			InstanceType:    pulumi.String("rds.mysql.s1.small"),
    			InstanceStorage: pulumi.Int(10),
    			VswitchId:       defaultSwitch.ID().ToIDOutput().ToStringOutput(),
    			InstanceName:    pulumi.String(name),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = rds.NewBackupPolicy(ctx, "policy", &rds.BackupPolicyArgs{
    			InstanceId: instance.ID().ToIDOutput().ToStringOutput(),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var name = config.Get("name") ?? "tf-example";
        var @default = AliCloud.Rds.GetZones.Invoke(new()
        {
            Engine = "MySQL",
            EngineVersion = "5.6",
        });
    
        var defaultNetwork = new AliCloud.Vpc.Network("default", new()
        {
            VpcName = name,
            CidrBlock = "172.16.0.0/16",
        });
    
        var defaultSwitch = new AliCloud.Vpc.Switch("default", new()
        {
            VpcId = defaultNetwork.Id,
            CidrBlock = "172.16.0.0/24",
            ZoneId = @default.Apply(@default => @default.Apply(getZonesResult => getZonesResult.Zones[0]?.Id)),
            VswitchName = name,
        });
    
        var instance = new AliCloud.Rds.Instance("instance", new()
        {
            Engine = "MySQL",
            EngineVersion = "5.6",
            InstanceType = "rds.mysql.s1.small",
            InstanceStorage = 10,
            VswitchId = defaultSwitch.Id,
            InstanceName = name,
        });
    
        var policy = new AliCloud.Rds.BackupPolicy("policy", new()
        {
            InstanceId = instance.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.rds.RdsFunctions;
    import com.pulumi.alicloud.rds.inputs.GetZonesArgs;
    import com.pulumi.alicloud.vpc.Network;
    import com.pulumi.alicloud.vpc.NetworkArgs;
    import com.pulumi.alicloud.vpc.Switch;
    import com.pulumi.alicloud.vpc.SwitchArgs;
    import com.pulumi.alicloud.rds.Instance;
    import com.pulumi.alicloud.rds.InstanceArgs;
    import com.pulumi.alicloud.rds.BackupPolicy;
    import com.pulumi.alicloud.rds.BackupPolicyArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 config = ctx.config();
            final var name = config.get("name").orElse("tf-example");
            final var default = RdsFunctions.getZones(GetZonesArgs.builder()
                .engine("MySQL")
                .engineVersion("5.6")
                .build());
    
            var defaultNetwork = new Network("defaultNetwork", NetworkArgs.builder()
                .vpcName(name)
                .cidrBlock("172.16.0.0/16")
                .build());
    
            var defaultSwitch = new Switch("defaultSwitch", SwitchArgs.builder()
                .vpcId(defaultNetwork.id())
                .cidrBlock("172.16.0.0/24")
                .zoneId(default_.zones()[0].id())
                .vswitchName(name)
                .build());
    
            var instance = new Instance("instance", InstanceArgs.builder()
                .engine("MySQL")
                .engineVersion("5.6")
                .instanceType("rds.mysql.s1.small")
                .instanceStorage(10)
                .vswitchId(defaultSwitch.id())
                .instanceName(name)
                .build());
    
            var policy = new BackupPolicy("policy", BackupPolicyArgs.builder()
                .instanceId(instance.id())
                .build());
    
        }
    }
    
    configuration:
      name:
        type: string
        default: tf-example
    resources:
      defaultNetwork:
        type: alicloud:vpc:Network
        name: default
        properties:
          vpcName: ${name}
          cidrBlock: 172.16.0.0/16
      defaultSwitch:
        type: alicloud:vpc:Switch
        name: default
        properties:
          vpcId: ${defaultNetwork.id}
          cidrBlock: 172.16.0.0/24
          zoneId: ${default.zones[0].id}
          vswitchName: ${name}
      instance:
        type: alicloud:rds:Instance
        properties:
          engine: MySQL
          engineVersion: '5.6'
          instanceType: rds.mysql.s1.small
          instanceStorage: '10'
          vswitchId: ${defaultSwitch.id}
          instanceName: ${name}
      policy:
        type: alicloud:rds:BackupPolicy
        properties:
          instanceId: ${instance.id}
    variables:
      default:
        fn::invoke:
          function: alicloud:rds:getZones
          arguments:
            engine: MySQL
            engineVersion: '5.6'
    
    pulumi {
      required_providers {
        alicloud = {
          source = "pulumi/alicloud"
        }
      }
    }
    
    data "alicloud_rds_getzones" "default" {
      engine         = "MySQL"
      engine_version = "5.6"
    }
    
    resource "alicloud_vpc_network" "default" {
      vpc_name   = var.name
      cidr_block = "172.16.0.0/16"
    }
    resource "alicloud_vpc_switch" "default" {
      vpc_id       = alicloud_vpc_network.default.id
      cidr_block   = "172.16.0.0/24"
      zone_id      = data.alicloud_rds_getzones.default.zones[0].id
      vswitch_name = var.name
    }
    resource "alicloud_rds_instance" "instance" {
      engine           = "MySQL"
      engine_version   = "5.6"
      instance_type    = "rds.mysql.s1.small"
      instance_storage = "10"
      vswitch_id       = alicloud_vpc_switch.default.id
      instance_name    = var.name
    }
    resource "alicloud_rds_backuppolicy" "policy" {
      instance_id = alicloud_rds_instance.instance.id
    }
    variable "name" {
      type    = string
      default = "tf-example"
    }
    

    📚 Need more examples? VIEW MORE EXAMPLES

    Create BackupPolicy Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new BackupPolicy(name: string, args: BackupPolicyArgs, opts?: CustomResourceOptions);
    @overload
    def BackupPolicy(resource_name: str,
                     args: BackupPolicyArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def BackupPolicy(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     instance_id: Optional[str] = None,
                     high_space_usage_protection: Optional[str] = None,
                     preferred_backup_time: Optional[str] = None,
                     backup_interval: Optional[str] = None,
                     backup_method: Optional[str] = None,
                     backup_periods: Optional[Sequence[str]] = None,
                     backup_priority: Optional[int] = None,
                     backup_retention_period: Optional[int] = None,
                     backup_time: Optional[str] = None,
                     category: Optional[str] = None,
                     compress_type: Optional[str] = None,
                     enable_backup_log: Optional[bool] = None,
                     inc_backup_interval: Optional[int] = None,
                     archive_backup_retention_period: Optional[int] = None,
                     enable_pitr_protection: Optional[bool] = None,
                     enable_increment_data_backup: Optional[bool] = None,
                     archive_backup_keep_policy: Optional[str] = None,
                     local_log_retention_hours: Optional[int] = None,
                     local_log_retention_space: Optional[int] = None,
                     log_backup: Optional[bool] = None,
                     log_backup_frequency: Optional[str] = None,
                     log_backup_local_retention_number: Optional[int] = None,
                     log_backup_retention_period: Optional[int] = None,
                     log_retention_period: Optional[int] = None,
                     preferred_backup_periods: Optional[Sequence[str]] = None,
                     archive_backup_keep_count: Optional[int] = None,
                     released_keep_policy: Optional[str] = None,
                     retention_period: Optional[int] = None)
    func NewBackupPolicy(ctx *Context, name string, args BackupPolicyArgs, opts ...ResourceOption) (*BackupPolicy, error)
    public BackupPolicy(string name, BackupPolicyArgs args, CustomResourceOptions? opts = null)
    public BackupPolicy(String name, BackupPolicyArgs args)
    public BackupPolicy(String name, BackupPolicyArgs args, CustomResourceOptions options)
    
    type: alicloud:rds:BackupPolicy
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "alicloud_rds_backup_policy" "name" {
        # resource properties
    }

    Parameters

    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.
    args BackupPolicyArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control 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.
    name String
    The unique name of the resource.
    args BackupPolicyArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var examplebackupPolicyResourceResourceFromRdsbackupPolicy = new AliCloud.Rds.BackupPolicy("examplebackupPolicyResourceResourceFromRdsbackupPolicy", new()
    {
        InstanceId = "string",
        HighSpaceUsageProtection = "string",
        PreferredBackupTime = "string",
        BackupInterval = "string",
        BackupMethod = "string",
        BackupPriority = 0,
        BackupRetentionPeriod = 0,
        Category = "string",
        CompressType = "string",
        EnableBackupLog = false,
        IncBackupInterval = 0,
        ArchiveBackupRetentionPeriod = 0,
        EnablePitrProtection = false,
        EnableIncrementDataBackup = false,
        ArchiveBackupKeepPolicy = "string",
        LocalLogRetentionHours = 0,
        LocalLogRetentionSpace = 0,
        LogBackupFrequency = "string",
        LogBackupLocalRetentionNumber = 0,
        LogBackupRetentionPeriod = 0,
        PreferredBackupPeriods = new[]
        {
            "string",
        },
        ArchiveBackupKeepCount = 0,
        ReleasedKeepPolicy = "string",
    });
    
    example, err := rds.NewBackupPolicy(ctx, "examplebackupPolicyResourceResourceFromRdsbackupPolicy", &rds.BackupPolicyArgs{
    	InstanceId:                    pulumi.String("string"),
    	HighSpaceUsageProtection:      pulumi.String("string"),
    	PreferredBackupTime:           pulumi.String("string"),
    	BackupInterval:                pulumi.String("string"),
    	BackupMethod:                  pulumi.String("string"),
    	BackupPriority:                pulumi.Int(0),
    	BackupRetentionPeriod:         pulumi.Int(0),
    	Category:                      pulumi.String("string"),
    	CompressType:                  pulumi.String("string"),
    	EnableBackupLog:               pulumi.Bool(false),
    	IncBackupInterval:             pulumi.Int(0),
    	ArchiveBackupRetentionPeriod:  pulumi.Int(0),
    	EnablePitrProtection:          pulumi.Bool(false),
    	EnableIncrementDataBackup:     pulumi.Bool(false),
    	ArchiveBackupKeepPolicy:       pulumi.String("string"),
    	LocalLogRetentionHours:        pulumi.Int(0),
    	LocalLogRetentionSpace:        pulumi.Int(0),
    	LogBackupFrequency:            pulumi.String("string"),
    	LogBackupLocalRetentionNumber: pulumi.Int(0),
    	LogBackupRetentionPeriod:      pulumi.Int(0),
    	PreferredBackupPeriods: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ArchiveBackupKeepCount: pulumi.Int(0),
    	ReleasedKeepPolicy:     pulumi.String("string"),
    })
    
    resource "alicloud_rds_backup_policy" "examplebackupPolicyResourceResourceFromRdsbackupPolicy" {
      lifecycle {
        create_before_destroy = true
      }
      instance_id                       = "string"
      high_space_usage_protection       = "string"
      preferred_backup_time             = "string"
      backup_interval                   = "string"
      backup_method                     = "string"
      backup_priority                   = 0
      backup_retention_period           = 0
      category                          = "string"
      compress_type                     = "string"
      enable_backup_log                 = false
      inc_backup_interval               = 0
      archive_backup_retention_period   = 0
      enable_pitr_protection            = false
      enable_increment_data_backup      = false
      archive_backup_keep_policy        = "string"
      local_log_retention_hours         = 0
      local_log_retention_space         = 0
      log_backup_frequency              = "string"
      log_backup_local_retention_number = 0
      log_backup_retention_period       = 0
      preferred_backup_periods          = ["string"]
      archive_backup_keep_count         = 0
      released_keep_policy              = "string"
    }
    
    var examplebackupPolicyResourceResourceFromRdsbackupPolicy = new com.pulumi.alicloud.rds.BackupPolicy("examplebackupPolicyResourceResourceFromRdsbackupPolicy", com.pulumi.alicloud.rds.BackupPolicyArgs.builder()
        .instanceId("string")
        .highSpaceUsageProtection("string")
        .preferredBackupTime("string")
        .backupInterval("string")
        .backupMethod("string")
        .backupPriority(0)
        .backupRetentionPeriod(0)
        .category("string")
        .compressType("string")
        .enableBackupLog(false)
        .incBackupInterval(0)
        .archiveBackupRetentionPeriod(0)
        .enablePitrProtection(false)
        .enableIncrementDataBackup(false)
        .archiveBackupKeepPolicy("string")
        .localLogRetentionHours(0)
        .localLogRetentionSpace(0)
        .logBackupFrequency("string")
        .logBackupLocalRetentionNumber(0)
        .logBackupRetentionPeriod(0)
        .preferredBackupPeriods("string")
        .archiveBackupKeepCount(0)
        .releasedKeepPolicy("string")
        .build());
    
    examplebackup_policy_resource_resource_from_rdsbackup_policy = alicloud.rds.BackupPolicy("examplebackupPolicyResourceResourceFromRdsbackupPolicy",
        instance_id="string",
        high_space_usage_protection="string",
        preferred_backup_time="string",
        backup_interval="string",
        backup_method="string",
        backup_priority=0,
        backup_retention_period=0,
        category="string",
        compress_type="string",
        enable_backup_log=False,
        inc_backup_interval=0,
        archive_backup_retention_period=0,
        enable_pitr_protection=False,
        enable_increment_data_backup=False,
        archive_backup_keep_policy="string",
        local_log_retention_hours=0,
        local_log_retention_space=0,
        log_backup_frequency="string",
        log_backup_local_retention_number=0,
        log_backup_retention_period=0,
        preferred_backup_periods=["string"],
        archive_backup_keep_count=0,
        released_keep_policy="string")
    
    const examplebackupPolicyResourceResourceFromRdsbackupPolicy = new alicloud.rds.BackupPolicy("examplebackupPolicyResourceResourceFromRdsbackupPolicy", {
        instanceId: "string",
        highSpaceUsageProtection: "string",
        preferredBackupTime: "string",
        backupInterval: "string",
        backupMethod: "string",
        backupPriority: 0,
        backupRetentionPeriod: 0,
        category: "string",
        compressType: "string",
        enableBackupLog: false,
        incBackupInterval: 0,
        archiveBackupRetentionPeriod: 0,
        enablePitrProtection: false,
        enableIncrementDataBackup: false,
        archiveBackupKeepPolicy: "string",
        localLogRetentionHours: 0,
        localLogRetentionSpace: 0,
        logBackupFrequency: "string",
        logBackupLocalRetentionNumber: 0,
        logBackupRetentionPeriod: 0,
        preferredBackupPeriods: ["string"],
        archiveBackupKeepCount: 0,
        releasedKeepPolicy: "string",
    });
    
    type: alicloud:rds:BackupPolicy
    properties:
        archiveBackupKeepCount: 0
        archiveBackupKeepPolicy: string
        archiveBackupRetentionPeriod: 0
        backupInterval: string
        backupMethod: string
        backupPriority: 0
        backupRetentionPeriod: 0
        category: string
        compressType: string
        enableBackupLog: false
        enableIncrementDataBackup: false
        enablePitrProtection: false
        highSpaceUsageProtection: string
        incBackupInterval: 0
        instanceId: string
        localLogRetentionHours: 0
        localLogRetentionSpace: 0
        logBackupFrequency: string
        logBackupLocalRetentionNumber: 0
        logBackupRetentionPeriod: 0
        preferredBackupPeriods:
            - string
        preferredBackupTime: string
        releasedKeepPolicy: string
    

    BackupPolicy Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The BackupPolicy resource accepts the following input properties:

    InstanceId string
    The ID of the instance that can run database.
    ArchiveBackupKeepCount int
    Instance archive backup keep count. Valid when the enableBackupLog is true and instance is MySQL local disk. When archiveBackupKeepPolicy is ByMonth, valid values: 1-31. When archiveBackupKeepPolicy is ByWeek, valid values: 1-7.
    ArchiveBackupKeepPolicy string
    Instance archive backup keep policy. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: ByMonth, ByWeek, KeepAll.
    ArchiveBackupRetentionPeriod int
    Instance archive backup retention days. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: 30-1095, and archiveBackupRetentionPeriod must larger than backupRetentionPeriod 730.
    BackupInterval string
    The frequency at which you want to perform a snapshot backup on the instance. Valid values:

    • -1: No backup frequencies are specified.
    BackupMethod string

    The backup method of the instance. Valid values:

    • Physical: physical backup
    • Snapshot: snapshot backup

    NOTE: This parameter takes effect only on instances that run SQL Server with cloud disks. This parameter takes effect only when BackupPolicyMode is set to DataBackupPolicy.

    NOTE: Currently, the SQLServer instance does not support to modify logBackupRetentionPeriod.

    BackupPeriods List<string>
    It has been deprecated from version 1.69.0, and use field preferredBackupPeriod instead.

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

    BackupPriority int
    Specifies whether the backup settings of a secondary instance are configured. Valid values:
    BackupRetentionPeriod int
    Instance backup retention days. Valid values: 7-730. Defaults to 7. But MySQL local disk is unlimited.
    BackupTime string
    It has been deprecated from version 1.69.0, and use field preferredBackupTime instead.

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

    Category string

    Whether to enable second level backup. Valid values: Flash, Standard. Note: It only takes effect when the BackupPolicyMode parameter is DataBackupPolicy.

    NOTE: You can configure a backup policy by using this parameter and the PreferredBackupPeriod parameter. For example, if you set the PreferredBackupPeriod parameter to Saturday,Sunday and the BackupInterval parameter to -1, a snapshot backup is performed on every Saturday and Sunday.If the instance runs PostgreSQL, the BackupInterval parameter is supported only when the instance is equipped with standard SSDs or enhanced SSDs (ESSDs).This parameter takes effect only when you set the BackupPolicyMode parameter to DataBackupPolicy.

    CompressType string
    The compress type of instance policy. Valid values: 1, 4, 8.
    EnableBackupLog bool
    Whether to backup instance log. Valid values: true, false. Defaults to true. Note: The Basic Edition category RDS instance does not support setting log backup. What is Basic Edition.
    EnableIncrementDataBackup bool
    Specifies whether to enable incremental backup. Valid values:
    EnablePitrProtection bool
    Specifies whether to enable PITR (Point-in-Time Recovery) on the MySQL instance. Valid values: true, false. This parameter takes effect only when enableBackupLog is true and BackupPolicyMode is set to DataBackupPolicy.
    HighSpaceUsageProtection string
    Instance high space usage protection policy. Valid when the enableBackupLog is true. Valid values: Enable, Disable. Defaults to Enable.
    IncBackupInterval int
    The frequency at which you want to perform incremental backup on the MySQL instance. Valid when the enableIncrementDataBackup is true and instance is MySQL local disk. Valid values: 60, 120, 240, 360, 720.
    LocalLogRetentionHours int
    Instance log backup local retention hours. Valid when the enableBackupLog is true. Valid values: 0-168.
    LocalLogRetentionSpace int
    Instance log backup local retention space. Valid when the enableBackupLog is true. Valid values: 0-50.
    LogBackup bool
    It has been deprecated from version 1.68.0, and use field enableBackupLog instead.

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

    LogBackupFrequency string
    Instance log backup frequency. Valid when the instance engine is SQLServer. Valid values: LogInterval.
    LogBackupLocalRetentionNumber int

    The number of binary log files that you want to retain on the instance. Defaults to 60. Valid values: 6-100.

    NOTE: This parameter takes effect only when you set the BackupPolicyMode parameter to LogBackupPolicy. If the instance runs MySQL, you can set this parameter to -1. The value -1 specifies that an unlimited number of binary log files can be retained on the instance.

    LogBackupRetentionPeriod int

    Instance log backup retention days. Valid when the enableBackupLog is true. Valid values: 7-730. Defaults to 7. It cannot be larger than backupRetentionPeriod.

    NOTE: A value larger than backupRetentionPeriod is not rejected with an error. Instead, whenever logBackupRetentionPeriod is created or changed, the provider replaces the configured value with backupRetentionPeriod in the API request. For example, with backupRetentionPeriod = 7 and logBackupRetentionPeriod = 30, the request carries 7 and the refreshed state records 7, while the configuration still asks for 30. As a result, pulumi up reports success without applying 30, and every later pulumi preview shows the same pending change for this attribute. To avoid this, set logBackupRetentionPeriod to a value less than or equal to backupRetentionPeriod.

    LogRetentionPeriod int
    It has been deprecated from version 1.69.0, and use field logBackupRetentionPeriod instead.

    Deprecated: Attribute 'log_retention_period' has been deprecated from version 1.69.0. Use logBackupRetentionPeriod 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.
    PreferredBackupTime string
    DB instance backup time, in the format of HH:mmZ-HH:mmZ. Time setting interval is one hour. Defaults to 02:00Z-03:00Z. China time is 8 hours behind it.
    ReleasedKeepPolicy string
    The policy based on which ApsaraDB RDS retains archived backup files if the instance is released. Defaults to None. Valid values:

    • None: No archived backup files are retained.
    • Lastest: Only the most recent archived backup file is retained.
    • All: All archived backup files are retained.
    RetentionPeriod int
    It has been deprecated from version 1.69.0, and use field backupRetentionPeriod instead.

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

    InstanceId string
    The ID of the instance that can run database.
    ArchiveBackupKeepCount int
    Instance archive backup keep count. Valid when the enableBackupLog is true and instance is MySQL local disk. When archiveBackupKeepPolicy is ByMonth, valid values: 1-31. When archiveBackupKeepPolicy is ByWeek, valid values: 1-7.
    ArchiveBackupKeepPolicy string
    Instance archive backup keep policy. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: ByMonth, ByWeek, KeepAll.
    ArchiveBackupRetentionPeriod int
    Instance archive backup retention days. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: 30-1095, and archiveBackupRetentionPeriod must larger than backupRetentionPeriod 730.
    BackupInterval string
    The frequency at which you want to perform a snapshot backup on the instance. Valid values:

    • -1: No backup frequencies are specified.
    BackupMethod string

    The backup method of the instance. Valid values:

    • Physical: physical backup
    • Snapshot: snapshot backup

    NOTE: This parameter takes effect only on instances that run SQL Server with cloud disks. This parameter takes effect only when BackupPolicyMode is set to DataBackupPolicy.

    NOTE: Currently, the SQLServer instance does not support to modify logBackupRetentionPeriod.

    BackupPeriods []string
    It has been deprecated from version 1.69.0, and use field preferredBackupPeriod instead.

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

    BackupPriority int
    Specifies whether the backup settings of a secondary instance are configured. Valid values:
    BackupRetentionPeriod int
    Instance backup retention days. Valid values: 7-730. Defaults to 7. But MySQL local disk is unlimited.
    BackupTime string
    It has been deprecated from version 1.69.0, and use field preferredBackupTime instead.

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

    Category string

    Whether to enable second level backup. Valid values: Flash, Standard. Note: It only takes effect when the BackupPolicyMode parameter is DataBackupPolicy.

    NOTE: You can configure a backup policy by using this parameter and the PreferredBackupPeriod parameter. For example, if you set the PreferredBackupPeriod parameter to Saturday,Sunday and the BackupInterval parameter to -1, a snapshot backup is performed on every Saturday and Sunday.If the instance runs PostgreSQL, the BackupInterval parameter is supported only when the instance is equipped with standard SSDs or enhanced SSDs (ESSDs).This parameter takes effect only when you set the BackupPolicyMode parameter to DataBackupPolicy.

    CompressType string
    The compress type of instance policy. Valid values: 1, 4, 8.
    EnableBackupLog bool
    Whether to backup instance log. Valid values: true, false. Defaults to true. Note: The Basic Edition category RDS instance does not support setting log backup. What is Basic Edition.
    EnableIncrementDataBackup bool
    Specifies whether to enable incremental backup. Valid values:
    EnablePitrProtection bool
    Specifies whether to enable PITR (Point-in-Time Recovery) on the MySQL instance. Valid values: true, false. This parameter takes effect only when enableBackupLog is true and BackupPolicyMode is set to DataBackupPolicy.
    HighSpaceUsageProtection string
    Instance high space usage protection policy. Valid when the enableBackupLog is true. Valid values: Enable, Disable. Defaults to Enable.
    IncBackupInterval int
    The frequency at which you want to perform incremental backup on the MySQL instance. Valid when the enableIncrementDataBackup is true and instance is MySQL local disk. Valid values: 60, 120, 240, 360, 720.
    LocalLogRetentionHours int
    Instance log backup local retention hours. Valid when the enableBackupLog is true. Valid values: 0-168.
    LocalLogRetentionSpace int
    Instance log backup local retention space. Valid when the enableBackupLog is true. Valid values: 0-50.
    LogBackup bool
    It has been deprecated from version 1.68.0, and use field enableBackupLog instead.

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

    LogBackupFrequency string
    Instance log backup frequency. Valid when the instance engine is SQLServer. Valid values: LogInterval.
    LogBackupLocalRetentionNumber int

    The number of binary log files that you want to retain on the instance. Defaults to 60. Valid values: 6-100.

    NOTE: This parameter takes effect only when you set the BackupPolicyMode parameter to LogBackupPolicy. If the instance runs MySQL, you can set this parameter to -1. The value -1 specifies that an unlimited number of binary log files can be retained on the instance.

    LogBackupRetentionPeriod int

    Instance log backup retention days. Valid when the enableBackupLog is true. Valid values: 7-730. Defaults to 7. It cannot be larger than backupRetentionPeriod.

    NOTE: A value larger than backupRetentionPeriod is not rejected with an error. Instead, whenever logBackupRetentionPeriod is created or changed, the provider replaces the configured value with backupRetentionPeriod in the API request. For example, with backupRetentionPeriod = 7 and logBackupRetentionPeriod = 30, the request carries 7 and the refreshed state records 7, while the configuration still asks for 30. As a result, pulumi up reports success without applying 30, and every later pulumi preview shows the same pending change for this attribute. To avoid this, set logBackupRetentionPeriod to a value less than or equal to backupRetentionPeriod.

    LogRetentionPeriod int
    It has been deprecated from version 1.69.0, and use field logBackupRetentionPeriod instead.

    Deprecated: Attribute 'log_retention_period' has been deprecated from version 1.69.0. Use logBackupRetentionPeriod 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.
    PreferredBackupTime string
    DB instance backup time, in the format of HH:mmZ-HH:mmZ. Time setting interval is one hour. Defaults to 02:00Z-03:00Z. China time is 8 hours behind it.
    ReleasedKeepPolicy string
    The policy based on which ApsaraDB RDS retains archived backup files if the instance is released. Defaults to None. Valid values:

    • None: No archived backup files are retained.
    • Lastest: Only the most recent archived backup file is retained.
    • All: All archived backup files are retained.
    RetentionPeriod int
    It has been deprecated from version 1.69.0, and use field backupRetentionPeriod instead.

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

    instance_id string
    The ID of the instance that can run database.
    archive_backup_keep_count number
    Instance archive backup keep count. Valid when the enableBackupLog is true and instance is MySQL local disk. When archiveBackupKeepPolicy is ByMonth, valid values: 1-31. When archiveBackupKeepPolicy is ByWeek, valid values: 1-7.
    archive_backup_keep_policy string
    Instance archive backup keep policy. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: ByMonth, ByWeek, KeepAll.
    archive_backup_retention_period number
    Instance archive backup retention days. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: 30-1095, and archiveBackupRetentionPeriod must larger than backupRetentionPeriod 730.
    backup_interval string
    The frequency at which you want to perform a snapshot backup on the instance. Valid values:

    • -1: No backup frequencies are specified.
    backup_method string

    The backup method of the instance. Valid values:

    • Physical: physical backup
    • Snapshot: snapshot backup

    NOTE: This parameter takes effect only on instances that run SQL Server with cloud disks. This parameter takes effect only when BackupPolicyMode is set to DataBackupPolicy.

    NOTE: Currently, the SQLServer instance does not support to modify logBackupRetentionPeriod.

    backup_periods list(string)
    It has been deprecated from version 1.69.0, and use field preferredBackupPeriod instead.

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

    backup_priority number
    Specifies whether the backup settings of a secondary instance are configured. Valid values:
    backup_retention_period number
    Instance backup retention days. Valid values: 7-730. Defaults to 7. But MySQL local disk is unlimited.
    backup_time string
    It has been deprecated from version 1.69.0, and use field preferredBackupTime instead.

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

    category string

    Whether to enable second level backup. Valid values: Flash, Standard. Note: It only takes effect when the BackupPolicyMode parameter is DataBackupPolicy.

    NOTE: You can configure a backup policy by using this parameter and the PreferredBackupPeriod parameter. For example, if you set the PreferredBackupPeriod parameter to Saturday,Sunday and the BackupInterval parameter to -1, a snapshot backup is performed on every Saturday and Sunday.If the instance runs PostgreSQL, the BackupInterval parameter is supported only when the instance is equipped with standard SSDs or enhanced SSDs (ESSDs).This parameter takes effect only when you set the BackupPolicyMode parameter to DataBackupPolicy.

    compress_type string
    The compress type of instance policy. Valid values: 1, 4, 8.
    enable_backup_log bool
    Whether to backup instance log. Valid values: true, false. Defaults to true. Note: The Basic Edition category RDS instance does not support setting log backup. What is Basic Edition.
    enable_increment_data_backup bool
    Specifies whether to enable incremental backup. Valid values:
    enable_pitr_protection bool
    Specifies whether to enable PITR (Point-in-Time Recovery) on the MySQL instance. Valid values: true, false. This parameter takes effect only when enableBackupLog is true and BackupPolicyMode is set to DataBackupPolicy.
    high_space_usage_protection string
    Instance high space usage protection policy. Valid when the enableBackupLog is true. Valid values: Enable, Disable. Defaults to Enable.
    inc_backup_interval number
    The frequency at which you want to perform incremental backup on the MySQL instance. Valid when the enableIncrementDataBackup is true and instance is MySQL local disk. Valid values: 60, 120, 240, 360, 720.
    local_log_retention_hours number
    Instance log backup local retention hours. Valid when the enableBackupLog is true. Valid values: 0-168.
    local_log_retention_space number
    Instance log backup local retention space. Valid when the enableBackupLog is true. Valid values: 0-50.
    log_backup bool
    It has been deprecated from version 1.68.0, and use field enableBackupLog instead.

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

    log_backup_frequency string
    Instance log backup frequency. Valid when the instance engine is SQLServer. Valid values: LogInterval.
    log_backup_local_retention_number number

    The number of binary log files that you want to retain on the instance. Defaults to 60. Valid values: 6-100.

    NOTE: This parameter takes effect only when you set the BackupPolicyMode parameter to LogBackupPolicy. If the instance runs MySQL, you can set this parameter to -1. The value -1 specifies that an unlimited number of binary log files can be retained on the instance.

    log_backup_retention_period number

    Instance log backup retention days. Valid when the enableBackupLog is true. Valid values: 7-730. Defaults to 7. It cannot be larger than backupRetentionPeriod.

    NOTE: A value larger than backupRetentionPeriod is not rejected with an error. Instead, whenever logBackupRetentionPeriod is created or changed, the provider replaces the configured value with backupRetentionPeriod in the API request. For example, with backupRetentionPeriod = 7 and logBackupRetentionPeriod = 30, the request carries 7 and the refreshed state records 7, while the configuration still asks for 30. As a result, pulumi up reports success without applying 30, and every later pulumi preview shows the same pending change for this attribute. To avoid this, set logBackupRetentionPeriod to a value less than or equal to backupRetentionPeriod.

    log_retention_period number
    It has been deprecated from version 1.69.0, and use field logBackupRetentionPeriod instead.

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

    preferred_backup_periods 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.
    preferred_backup_time string
    DB instance backup time, in the format of HH:mmZ-HH:mmZ. Time setting interval is one hour. Defaults to 02:00Z-03:00Z. China time is 8 hours behind it.
    released_keep_policy string
    The policy based on which ApsaraDB RDS retains archived backup files if the instance is released. Defaults to None. Valid values:

    • None: No archived backup files are retained.
    • Lastest: Only the most recent archived backup file is retained.
    • All: All archived backup files are retained.
    retention_period number
    It has been deprecated from version 1.69.0, and use field backupRetentionPeriod instead.

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

    instanceId String
    The ID of the instance that can run database.
    archiveBackupKeepCount Integer
    Instance archive backup keep count. Valid when the enableBackupLog is true and instance is MySQL local disk. When archiveBackupKeepPolicy is ByMonth, valid values: 1-31. When archiveBackupKeepPolicy is ByWeek, valid values: 1-7.
    archiveBackupKeepPolicy String
    Instance archive backup keep policy. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: ByMonth, ByWeek, KeepAll.
    archiveBackupRetentionPeriod Integer
    Instance archive backup retention days. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: 30-1095, and archiveBackupRetentionPeriod must larger than backupRetentionPeriod 730.
    backupInterval String
    The frequency at which you want to perform a snapshot backup on the instance. Valid values:

    • -1: No backup frequencies are specified.
    backupMethod String

    The backup method of the instance. Valid values:

    • Physical: physical backup
    • Snapshot: snapshot backup

    NOTE: This parameter takes effect only on instances that run SQL Server with cloud disks. This parameter takes effect only when BackupPolicyMode is set to DataBackupPolicy.

    NOTE: Currently, the SQLServer instance does not support to modify logBackupRetentionPeriod.

    backupPeriods List<String>
    It has been deprecated from version 1.69.0, and use field preferredBackupPeriod instead.

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

    backupPriority Integer
    Specifies whether the backup settings of a secondary instance are configured. Valid values:
    backupRetentionPeriod Integer
    Instance backup retention days. Valid values: 7-730. Defaults to 7. But MySQL local disk is unlimited.
    backupTime String
    It has been deprecated from version 1.69.0, and use field preferredBackupTime instead.

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

    category String

    Whether to enable second level backup. Valid values: Flash, Standard. Note: It only takes effect when the BackupPolicyMode parameter is DataBackupPolicy.

    NOTE: You can configure a backup policy by using this parameter and the PreferredBackupPeriod parameter. For example, if you set the PreferredBackupPeriod parameter to Saturday,Sunday and the BackupInterval parameter to -1, a snapshot backup is performed on every Saturday and Sunday.If the instance runs PostgreSQL, the BackupInterval parameter is supported only when the instance is equipped with standard SSDs or enhanced SSDs (ESSDs).This parameter takes effect only when you set the BackupPolicyMode parameter to DataBackupPolicy.

    compressType String
    The compress type of instance policy. Valid values: 1, 4, 8.
    enableBackupLog Boolean
    Whether to backup instance log. Valid values: true, false. Defaults to true. Note: The Basic Edition category RDS instance does not support setting log backup. What is Basic Edition.
    enableIncrementDataBackup Boolean
    Specifies whether to enable incremental backup. Valid values:
    enablePitrProtection Boolean
    Specifies whether to enable PITR (Point-in-Time Recovery) on the MySQL instance. Valid values: true, false. This parameter takes effect only when enableBackupLog is true and BackupPolicyMode is set to DataBackupPolicy.
    highSpaceUsageProtection String
    Instance high space usage protection policy. Valid when the enableBackupLog is true. Valid values: Enable, Disable. Defaults to Enable.
    incBackupInterval Integer
    The frequency at which you want to perform incremental backup on the MySQL instance. Valid when the enableIncrementDataBackup is true and instance is MySQL local disk. Valid values: 60, 120, 240, 360, 720.
    localLogRetentionHours Integer
    Instance log backup local retention hours. Valid when the enableBackupLog is true. Valid values: 0-168.
    localLogRetentionSpace Integer
    Instance log backup local retention space. Valid when the enableBackupLog is true. Valid values: 0-50.
    logBackup Boolean
    It has been deprecated from version 1.68.0, and use field enableBackupLog instead.

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

    logBackupFrequency String
    Instance log backup frequency. Valid when the instance engine is SQLServer. Valid values: LogInterval.
    logBackupLocalRetentionNumber Integer

    The number of binary log files that you want to retain on the instance. Defaults to 60. Valid values: 6-100.

    NOTE: This parameter takes effect only when you set the BackupPolicyMode parameter to LogBackupPolicy. If the instance runs MySQL, you can set this parameter to -1. The value -1 specifies that an unlimited number of binary log files can be retained on the instance.

    logBackupRetentionPeriod Integer

    Instance log backup retention days. Valid when the enableBackupLog is true. Valid values: 7-730. Defaults to 7. It cannot be larger than backupRetentionPeriod.

    NOTE: A value larger than backupRetentionPeriod is not rejected with an error. Instead, whenever logBackupRetentionPeriod is created or changed, the provider replaces the configured value with backupRetentionPeriod in the API request. For example, with backupRetentionPeriod = 7 and logBackupRetentionPeriod = 30, the request carries 7 and the refreshed state records 7, while the configuration still asks for 30. As a result, pulumi up reports success without applying 30, and every later pulumi preview shows the same pending change for this attribute. To avoid this, set logBackupRetentionPeriod to a value less than or equal to backupRetentionPeriod.

    logRetentionPeriod Integer
    It has been deprecated from version 1.69.0, and use field logBackupRetentionPeriod instead.

    Deprecated: Attribute 'log_retention_period' has been deprecated from version 1.69.0. Use logBackupRetentionPeriod 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.
    preferredBackupTime String
    DB instance backup time, in the format of HH:mmZ-HH:mmZ. Time setting interval is one hour. Defaults to 02:00Z-03:00Z. China time is 8 hours behind it.
    releasedKeepPolicy String
    The policy based on which ApsaraDB RDS retains archived backup files if the instance is released. Defaults to None. Valid values:

    • None: No archived backup files are retained.
    • Lastest: Only the most recent archived backup file is retained.
    • All: All archived backup files are retained.
    retentionPeriod Integer
    It has been deprecated from version 1.69.0, and use field backupRetentionPeriod instead.

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

    instanceId string
    The ID of the instance that can run database.
    archiveBackupKeepCount number
    Instance archive backup keep count. Valid when the enableBackupLog is true and instance is MySQL local disk. When archiveBackupKeepPolicy is ByMonth, valid values: 1-31. When archiveBackupKeepPolicy is ByWeek, valid values: 1-7.
    archiveBackupKeepPolicy string
    Instance archive backup keep policy. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: ByMonth, ByWeek, KeepAll.
    archiveBackupRetentionPeriod number
    Instance archive backup retention days. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: 30-1095, and archiveBackupRetentionPeriod must larger than backupRetentionPeriod 730.
    backupInterval string
    The frequency at which you want to perform a snapshot backup on the instance. Valid values:

    • -1: No backup frequencies are specified.
    backupMethod string

    The backup method of the instance. Valid values:

    • Physical: physical backup
    • Snapshot: snapshot backup

    NOTE: This parameter takes effect only on instances that run SQL Server with cloud disks. This parameter takes effect only when BackupPolicyMode is set to DataBackupPolicy.

    NOTE: Currently, the SQLServer instance does not support to modify logBackupRetentionPeriod.

    backupPeriods string[]
    It has been deprecated from version 1.69.0, and use field preferredBackupPeriod instead.

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

    backupPriority number
    Specifies whether the backup settings of a secondary instance are configured. Valid values:
    backupRetentionPeriod number
    Instance backup retention days. Valid values: 7-730. Defaults to 7. But MySQL local disk is unlimited.
    backupTime string
    It has been deprecated from version 1.69.0, and use field preferredBackupTime instead.

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

    category string

    Whether to enable second level backup. Valid values: Flash, Standard. Note: It only takes effect when the BackupPolicyMode parameter is DataBackupPolicy.

    NOTE: You can configure a backup policy by using this parameter and the PreferredBackupPeriod parameter. For example, if you set the PreferredBackupPeriod parameter to Saturday,Sunday and the BackupInterval parameter to -1, a snapshot backup is performed on every Saturday and Sunday.If the instance runs PostgreSQL, the BackupInterval parameter is supported only when the instance is equipped with standard SSDs or enhanced SSDs (ESSDs).This parameter takes effect only when you set the BackupPolicyMode parameter to DataBackupPolicy.

    compressType string
    The compress type of instance policy. Valid values: 1, 4, 8.
    enableBackupLog boolean
    Whether to backup instance log. Valid values: true, false. Defaults to true. Note: The Basic Edition category RDS instance does not support setting log backup. What is Basic Edition.
    enableIncrementDataBackup boolean
    Specifies whether to enable incremental backup. Valid values:
    enablePitrProtection boolean
    Specifies whether to enable PITR (Point-in-Time Recovery) on the MySQL instance. Valid values: true, false. This parameter takes effect only when enableBackupLog is true and BackupPolicyMode is set to DataBackupPolicy.
    highSpaceUsageProtection string
    Instance high space usage protection policy. Valid when the enableBackupLog is true. Valid values: Enable, Disable. Defaults to Enable.
    incBackupInterval number
    The frequency at which you want to perform incremental backup on the MySQL instance. Valid when the enableIncrementDataBackup is true and instance is MySQL local disk. Valid values: 60, 120, 240, 360, 720.
    localLogRetentionHours number
    Instance log backup local retention hours. Valid when the enableBackupLog is true. Valid values: 0-168.
    localLogRetentionSpace number
    Instance log backup local retention space. Valid when the enableBackupLog is true. Valid values: 0-50.
    logBackup boolean
    It has been deprecated from version 1.68.0, and use field enableBackupLog instead.

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

    logBackupFrequency string
    Instance log backup frequency. Valid when the instance engine is SQLServer. Valid values: LogInterval.
    logBackupLocalRetentionNumber number

    The number of binary log files that you want to retain on the instance. Defaults to 60. Valid values: 6-100.

    NOTE: This parameter takes effect only when you set the BackupPolicyMode parameter to LogBackupPolicy. If the instance runs MySQL, you can set this parameter to -1. The value -1 specifies that an unlimited number of binary log files can be retained on the instance.

    logBackupRetentionPeriod number

    Instance log backup retention days. Valid when the enableBackupLog is true. Valid values: 7-730. Defaults to 7. It cannot be larger than backupRetentionPeriod.

    NOTE: A value larger than backupRetentionPeriod is not rejected with an error. Instead, whenever logBackupRetentionPeriod is created or changed, the provider replaces the configured value with backupRetentionPeriod in the API request. For example, with backupRetentionPeriod = 7 and logBackupRetentionPeriod = 30, the request carries 7 and the refreshed state records 7, while the configuration still asks for 30. As a result, pulumi up reports success without applying 30, and every later pulumi preview shows the same pending change for this attribute. To avoid this, set logBackupRetentionPeriod to a value less than or equal to backupRetentionPeriod.

    logRetentionPeriod number
    It has been deprecated from version 1.69.0, and use field logBackupRetentionPeriod instead.

    Deprecated: Attribute 'log_retention_period' has been deprecated from version 1.69.0. Use logBackupRetentionPeriod 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.
    preferredBackupTime string
    DB instance backup time, in the format of HH:mmZ-HH:mmZ. Time setting interval is one hour. Defaults to 02:00Z-03:00Z. China time is 8 hours behind it.
    releasedKeepPolicy string
    The policy based on which ApsaraDB RDS retains archived backup files if the instance is released. Defaults to None. Valid values:

    • None: No archived backup files are retained.
    • Lastest: Only the most recent archived backup file is retained.
    • All: All archived backup files are retained.
    retentionPeriod number
    It has been deprecated from version 1.69.0, and use field backupRetentionPeriod instead.

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

    instance_id str
    The ID of the instance that can run database.
    archive_backup_keep_count int
    Instance archive backup keep count. Valid when the enableBackupLog is true and instance is MySQL local disk. When archiveBackupKeepPolicy is ByMonth, valid values: 1-31. When archiveBackupKeepPolicy is ByWeek, valid values: 1-7.
    archive_backup_keep_policy str
    Instance archive backup keep policy. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: ByMonth, ByWeek, KeepAll.
    archive_backup_retention_period int
    Instance archive backup retention days. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: 30-1095, and archiveBackupRetentionPeriod must larger than backupRetentionPeriod 730.
    backup_interval str
    The frequency at which you want to perform a snapshot backup on the instance. Valid values:

    • -1: No backup frequencies are specified.
    backup_method str

    The backup method of the instance. Valid values:

    • Physical: physical backup
    • Snapshot: snapshot backup

    NOTE: This parameter takes effect only on instances that run SQL Server with cloud disks. This parameter takes effect only when BackupPolicyMode is set to DataBackupPolicy.

    NOTE: Currently, the SQLServer instance does not support to modify logBackupRetentionPeriod.

    backup_periods Sequence[str]
    It has been deprecated from version 1.69.0, and use field preferredBackupPeriod instead.

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

    backup_priority int
    Specifies whether the backup settings of a secondary instance are configured. Valid values:
    backup_retention_period int
    Instance backup retention days. Valid values: 7-730. Defaults to 7. But MySQL local disk is unlimited.
    backup_time str
    It has been deprecated from version 1.69.0, and use field preferredBackupTime instead.

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

    category str

    Whether to enable second level backup. Valid values: Flash, Standard. Note: It only takes effect when the BackupPolicyMode parameter is DataBackupPolicy.

    NOTE: You can configure a backup policy by using this parameter and the PreferredBackupPeriod parameter. For example, if you set the PreferredBackupPeriod parameter to Saturday,Sunday and the BackupInterval parameter to -1, a snapshot backup is performed on every Saturday and Sunday.If the instance runs PostgreSQL, the BackupInterval parameter is supported only when the instance is equipped with standard SSDs or enhanced SSDs (ESSDs).This parameter takes effect only when you set the BackupPolicyMode parameter to DataBackupPolicy.

    compress_type str
    The compress type of instance policy. Valid values: 1, 4, 8.
    enable_backup_log bool
    Whether to backup instance log. Valid values: true, false. Defaults to true. Note: The Basic Edition category RDS instance does not support setting log backup. What is Basic Edition.
    enable_increment_data_backup bool
    Specifies whether to enable incremental backup. Valid values:
    enable_pitr_protection bool
    Specifies whether to enable PITR (Point-in-Time Recovery) on the MySQL instance. Valid values: true, false. This parameter takes effect only when enableBackupLog is true and BackupPolicyMode is set to DataBackupPolicy.
    high_space_usage_protection str
    Instance high space usage protection policy. Valid when the enableBackupLog is true. Valid values: Enable, Disable. Defaults to Enable.
    inc_backup_interval int
    The frequency at which you want to perform incremental backup on the MySQL instance. Valid when the enableIncrementDataBackup is true and instance is MySQL local disk. Valid values: 60, 120, 240, 360, 720.
    local_log_retention_hours int
    Instance log backup local retention hours. Valid when the enableBackupLog is true. Valid values: 0-168.
    local_log_retention_space int
    Instance log backup local retention space. Valid when the enableBackupLog is true. Valid values: 0-50.
    log_backup bool
    It has been deprecated from version 1.68.0, and use field enableBackupLog instead.

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

    log_backup_frequency str
    Instance log backup frequency. Valid when the instance engine is SQLServer. Valid values: LogInterval.
    log_backup_local_retention_number int

    The number of binary log files that you want to retain on the instance. Defaults to 60. Valid values: 6-100.

    NOTE: This parameter takes effect only when you set the BackupPolicyMode parameter to LogBackupPolicy. If the instance runs MySQL, you can set this parameter to -1. The value -1 specifies that an unlimited number of binary log files can be retained on the instance.

    log_backup_retention_period int

    Instance log backup retention days. Valid when the enableBackupLog is true. Valid values: 7-730. Defaults to 7. It cannot be larger than backupRetentionPeriod.

    NOTE: A value larger than backupRetentionPeriod is not rejected with an error. Instead, whenever logBackupRetentionPeriod is created or changed, the provider replaces the configured value with backupRetentionPeriod in the API request. For example, with backupRetentionPeriod = 7 and logBackupRetentionPeriod = 30, the request carries 7 and the refreshed state records 7, while the configuration still asks for 30. As a result, pulumi up reports success without applying 30, and every later pulumi preview shows the same pending change for this attribute. To avoid this, set logBackupRetentionPeriod to a value less than or equal to backupRetentionPeriod.

    log_retention_period int
    It has been deprecated from version 1.69.0, and use field logBackupRetentionPeriod instead.

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

    preferred_backup_periods Sequence[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.
    preferred_backup_time str
    DB instance backup time, in the format of HH:mmZ-HH:mmZ. Time setting interval is one hour. Defaults to 02:00Z-03:00Z. China time is 8 hours behind it.
    released_keep_policy str
    The policy based on which ApsaraDB RDS retains archived backup files if the instance is released. Defaults to None. Valid values:

    • None: No archived backup files are retained.
    • Lastest: Only the most recent archived backup file is retained.
    • All: All archived backup files are retained.
    retention_period int
    It has been deprecated from version 1.69.0, and use field backupRetentionPeriod instead.

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

    instanceId String
    The ID of the instance that can run database.
    archiveBackupKeepCount Number
    Instance archive backup keep count. Valid when the enableBackupLog is true and instance is MySQL local disk. When archiveBackupKeepPolicy is ByMonth, valid values: 1-31. When archiveBackupKeepPolicy is ByWeek, valid values: 1-7.
    archiveBackupKeepPolicy String
    Instance archive backup keep policy. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: ByMonth, ByWeek, KeepAll.
    archiveBackupRetentionPeriod Number
    Instance archive backup retention days. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: 30-1095, and archiveBackupRetentionPeriod must larger than backupRetentionPeriod 730.
    backupInterval String
    The frequency at which you want to perform a snapshot backup on the instance. Valid values:

    • -1: No backup frequencies are specified.
    backupMethod String

    The backup method of the instance. Valid values:

    • Physical: physical backup
    • Snapshot: snapshot backup

    NOTE: This parameter takes effect only on instances that run SQL Server with cloud disks. This parameter takes effect only when BackupPolicyMode is set to DataBackupPolicy.

    NOTE: Currently, the SQLServer instance does not support to modify logBackupRetentionPeriod.

    backupPeriods List<String>
    It has been deprecated from version 1.69.0, and use field preferredBackupPeriod instead.

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

    backupPriority Number
    Specifies whether the backup settings of a secondary instance are configured. Valid values:
    backupRetentionPeriod Number
    Instance backup retention days. Valid values: 7-730. Defaults to 7. But MySQL local disk is unlimited.
    backupTime String
    It has been deprecated from version 1.69.0, and use field preferredBackupTime instead.

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

    category String

    Whether to enable second level backup. Valid values: Flash, Standard. Note: It only takes effect when the BackupPolicyMode parameter is DataBackupPolicy.

    NOTE: You can configure a backup policy by using this parameter and the PreferredBackupPeriod parameter. For example, if you set the PreferredBackupPeriod parameter to Saturday,Sunday and the BackupInterval parameter to -1, a snapshot backup is performed on every Saturday and Sunday.If the instance runs PostgreSQL, the BackupInterval parameter is supported only when the instance is equipped with standard SSDs or enhanced SSDs (ESSDs).This parameter takes effect only when you set the BackupPolicyMode parameter to DataBackupPolicy.

    compressType String
    The compress type of instance policy. Valid values: 1, 4, 8.
    enableBackupLog Boolean
    Whether to backup instance log. Valid values: true, false. Defaults to true. Note: The Basic Edition category RDS instance does not support setting log backup. What is Basic Edition.
    enableIncrementDataBackup Boolean
    Specifies whether to enable incremental backup. Valid values:
    enablePitrProtection Boolean
    Specifies whether to enable PITR (Point-in-Time Recovery) on the MySQL instance. Valid values: true, false. This parameter takes effect only when enableBackupLog is true and BackupPolicyMode is set to DataBackupPolicy.
    highSpaceUsageProtection String
    Instance high space usage protection policy. Valid when the enableBackupLog is true. Valid values: Enable, Disable. Defaults to Enable.
    incBackupInterval Number
    The frequency at which you want to perform incremental backup on the MySQL instance. Valid when the enableIncrementDataBackup is true and instance is MySQL local disk. Valid values: 60, 120, 240, 360, 720.
    localLogRetentionHours Number
    Instance log backup local retention hours. Valid when the enableBackupLog is true. Valid values: 0-168.
    localLogRetentionSpace Number
    Instance log backup local retention space. Valid when the enableBackupLog is true. Valid values: 0-50.
    logBackup Boolean
    It has been deprecated from version 1.68.0, and use field enableBackupLog instead.

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

    logBackupFrequency String
    Instance log backup frequency. Valid when the instance engine is SQLServer. Valid values: LogInterval.
    logBackupLocalRetentionNumber Number

    The number of binary log files that you want to retain on the instance. Defaults to 60. Valid values: 6-100.

    NOTE: This parameter takes effect only when you set the BackupPolicyMode parameter to LogBackupPolicy. If the instance runs MySQL, you can set this parameter to -1. The value -1 specifies that an unlimited number of binary log files can be retained on the instance.

    logBackupRetentionPeriod Number

    Instance log backup retention days. Valid when the enableBackupLog is true. Valid values: 7-730. Defaults to 7. It cannot be larger than backupRetentionPeriod.

    NOTE: A value larger than backupRetentionPeriod is not rejected with an error. Instead, whenever logBackupRetentionPeriod is created or changed, the provider replaces the configured value with backupRetentionPeriod in the API request. For example, with backupRetentionPeriod = 7 and logBackupRetentionPeriod = 30, the request carries 7 and the refreshed state records 7, while the configuration still asks for 30. As a result, pulumi up reports success without applying 30, and every later pulumi preview shows the same pending change for this attribute. To avoid this, set logBackupRetentionPeriod to a value less than or equal to backupRetentionPeriod.

    logRetentionPeriod Number
    It has been deprecated from version 1.69.0, and use field logBackupRetentionPeriod instead.

    Deprecated: Attribute 'log_retention_period' has been deprecated from version 1.69.0. Use logBackupRetentionPeriod 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.
    preferredBackupTime String
    DB instance backup time, in the format of HH:mmZ-HH:mmZ. Time setting interval is one hour. Defaults to 02:00Z-03:00Z. China time is 8 hours behind it.
    releasedKeepPolicy String
    The policy based on which ApsaraDB RDS retains archived backup files if the instance is released. Defaults to None. Valid values:

    • None: No archived backup files are retained.
    • Lastest: Only the most recent archived backup file is retained.
    • All: All archived backup files are retained.
    retentionPeriod Number
    It has been deprecated from version 1.69.0, and use field backupRetentionPeriod instead.

    Deprecated: Attribute 'retention_period' has been deprecated from version 1.69.0. Use backupRetentionPeriod 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 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.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up 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
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            archive_backup_keep_count: Optional[int] = None,
            archive_backup_keep_policy: Optional[str] = None,
            archive_backup_retention_period: Optional[int] = None,
            backup_interval: Optional[str] = None,
            backup_method: Optional[str] = None,
            backup_periods: Optional[Sequence[str]] = None,
            backup_priority: Optional[int] = None,
            backup_retention_period: Optional[int] = None,
            backup_time: Optional[str] = None,
            category: Optional[str] = None,
            compress_type: Optional[str] = None,
            enable_backup_log: Optional[bool] = None,
            enable_increment_data_backup: Optional[bool] = None,
            enable_pitr_protection: Optional[bool] = None,
            high_space_usage_protection: Optional[str] = None,
            inc_backup_interval: Optional[int] = None,
            instance_id: Optional[str] = None,
            local_log_retention_hours: Optional[int] = None,
            local_log_retention_space: Optional[int] = None,
            log_backup: Optional[bool] = None,
            log_backup_frequency: Optional[str] = None,
            log_backup_local_retention_number: Optional[int] = None,
            log_backup_retention_period: Optional[int] = None,
            log_retention_period: Optional[int] = None,
            preferred_backup_periods: Optional[Sequence[str]] = None,
            preferred_backup_time: Optional[str] = None,
            released_keep_policy: Optional[str] = None,
            retention_period: Optional[int] = None) -> BackupPolicy
    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)
    public static BackupPolicy get(String name, Output<String> id, BackupPolicyState state, CustomResourceOptions options)
    resources:  _:    type: alicloud:rds:BackupPolicy    get:      id: ${id}
    import {
      to = alicloud_rds_backup_policy.example
      id = "${id}"
    }
    
    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.
    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 enableBackupLog is true and instance is MySQL local disk. When archiveBackupKeepPolicy is ByMonth, valid values: 1-31. When archiveBackupKeepPolicy is ByWeek, valid values: 1-7.
    ArchiveBackupKeepPolicy string
    Instance archive backup keep policy. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: ByMonth, ByWeek, KeepAll.
    ArchiveBackupRetentionPeriod int
    Instance archive backup retention days. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: 30-1095, and archiveBackupRetentionPeriod must larger than backupRetentionPeriod 730.
    BackupInterval string
    The frequency at which you want to perform a snapshot backup on the instance. Valid values:

    • -1: No backup frequencies are specified.
    BackupMethod string

    The backup method of the instance. Valid values:

    • Physical: physical backup
    • Snapshot: snapshot backup

    NOTE: This parameter takes effect only on instances that run SQL Server with cloud disks. This parameter takes effect only when BackupPolicyMode is set to DataBackupPolicy.

    NOTE: Currently, the SQLServer instance does not support to modify logBackupRetentionPeriod.

    BackupPeriods List<string>
    It has been deprecated from version 1.69.0, and use field preferredBackupPeriod instead.

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

    BackupPriority int
    Specifies whether the backup settings of a secondary instance are configured. Valid values:
    BackupRetentionPeriod int
    Instance backup retention days. Valid values: 7-730. Defaults to 7. But MySQL local disk is unlimited.
    BackupTime string
    It has been deprecated from version 1.69.0, and use field preferredBackupTime instead.

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

    Category string

    Whether to enable second level backup. Valid values: Flash, Standard. Note: It only takes effect when the BackupPolicyMode parameter is DataBackupPolicy.

    NOTE: You can configure a backup policy by using this parameter and the PreferredBackupPeriod parameter. For example, if you set the PreferredBackupPeriod parameter to Saturday,Sunday and the BackupInterval parameter to -1, a snapshot backup is performed on every Saturday and Sunday.If the instance runs PostgreSQL, the BackupInterval parameter is supported only when the instance is equipped with standard SSDs or enhanced SSDs (ESSDs).This parameter takes effect only when you set the BackupPolicyMode parameter to DataBackupPolicy.

    CompressType string
    The compress type of instance policy. Valid values: 1, 4, 8.
    EnableBackupLog bool
    Whether to backup instance log. Valid values: true, false. Defaults to true. Note: The Basic Edition category RDS instance does not support setting log backup. What is Basic Edition.
    EnableIncrementDataBackup bool
    Specifies whether to enable incremental backup. Valid values:
    EnablePitrProtection bool
    Specifies whether to enable PITR (Point-in-Time Recovery) on the MySQL instance. Valid values: true, false. This parameter takes effect only when enableBackupLog is true and BackupPolicyMode is set to DataBackupPolicy.
    HighSpaceUsageProtection string
    Instance high space usage protection policy. Valid when the enableBackupLog is true. Valid values: Enable, Disable. Defaults to Enable.
    IncBackupInterval int
    The frequency at which you want to perform incremental backup on the MySQL instance. Valid when the enableIncrementDataBackup is true and instance is MySQL local disk. Valid values: 60, 120, 240, 360, 720.
    InstanceId string
    The ID of the instance that can run database.
    LocalLogRetentionHours int
    Instance log backup local retention hours. Valid when the enableBackupLog is true. Valid values: 0-168.
    LocalLogRetentionSpace int
    Instance log backup local retention space. Valid when the enableBackupLog is true. Valid values: 0-50.
    LogBackup bool
    It has been deprecated from version 1.68.0, and use field enableBackupLog instead.

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

    LogBackupFrequency string
    Instance log backup frequency. Valid when the instance engine is SQLServer. Valid values: LogInterval.
    LogBackupLocalRetentionNumber int

    The number of binary log files that you want to retain on the instance. Defaults to 60. Valid values: 6-100.

    NOTE: This parameter takes effect only when you set the BackupPolicyMode parameter to LogBackupPolicy. If the instance runs MySQL, you can set this parameter to -1. The value -1 specifies that an unlimited number of binary log files can be retained on the instance.

    LogBackupRetentionPeriod int

    Instance log backup retention days. Valid when the enableBackupLog is true. Valid values: 7-730. Defaults to 7. It cannot be larger than backupRetentionPeriod.

    NOTE: A value larger than backupRetentionPeriod is not rejected with an error. Instead, whenever logBackupRetentionPeriod is created or changed, the provider replaces the configured value with backupRetentionPeriod in the API request. For example, with backupRetentionPeriod = 7 and logBackupRetentionPeriod = 30, the request carries 7 and the refreshed state records 7, while the configuration still asks for 30. As a result, pulumi up reports success without applying 30, and every later pulumi preview shows the same pending change for this attribute. To avoid this, set logBackupRetentionPeriod to a value less than or equal to backupRetentionPeriod.

    LogRetentionPeriod int
    It has been deprecated from version 1.69.0, and use field logBackupRetentionPeriod instead.

    Deprecated: Attribute 'log_retention_period' has been deprecated from version 1.69.0. Use logBackupRetentionPeriod 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.
    PreferredBackupTime string
    DB instance backup time, in the format of HH:mmZ-HH:mmZ. Time setting interval is one hour. Defaults to 02:00Z-03:00Z. China time is 8 hours behind it.
    ReleasedKeepPolicy string
    The policy based on which ApsaraDB RDS retains archived backup files if the instance is released. Defaults to None. Valid values:

    • None: No archived backup files are retained.
    • Lastest: Only the most recent archived backup file is retained.
    • All: All archived backup files are retained.
    RetentionPeriod int
    It has been deprecated from version 1.69.0, and use field backupRetentionPeriod instead.

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

    ArchiveBackupKeepCount int
    Instance archive backup keep count. Valid when the enableBackupLog is true and instance is MySQL local disk. When archiveBackupKeepPolicy is ByMonth, valid values: 1-31. When archiveBackupKeepPolicy is ByWeek, valid values: 1-7.
    ArchiveBackupKeepPolicy string
    Instance archive backup keep policy. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: ByMonth, ByWeek, KeepAll.
    ArchiveBackupRetentionPeriod int
    Instance archive backup retention days. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: 30-1095, and archiveBackupRetentionPeriod must larger than backupRetentionPeriod 730.
    BackupInterval string
    The frequency at which you want to perform a snapshot backup on the instance. Valid values:

    • -1: No backup frequencies are specified.
    BackupMethod string

    The backup method of the instance. Valid values:

    • Physical: physical backup
    • Snapshot: snapshot backup

    NOTE: This parameter takes effect only on instances that run SQL Server with cloud disks. This parameter takes effect only when BackupPolicyMode is set to DataBackupPolicy.

    NOTE: Currently, the SQLServer instance does not support to modify logBackupRetentionPeriod.

    BackupPeriods []string
    It has been deprecated from version 1.69.0, and use field preferredBackupPeriod instead.

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

    BackupPriority int
    Specifies whether the backup settings of a secondary instance are configured. Valid values:
    BackupRetentionPeriod int
    Instance backup retention days. Valid values: 7-730. Defaults to 7. But MySQL local disk is unlimited.
    BackupTime string
    It has been deprecated from version 1.69.0, and use field preferredBackupTime instead.

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

    Category string

    Whether to enable second level backup. Valid values: Flash, Standard. Note: It only takes effect when the BackupPolicyMode parameter is DataBackupPolicy.

    NOTE: You can configure a backup policy by using this parameter and the PreferredBackupPeriod parameter. For example, if you set the PreferredBackupPeriod parameter to Saturday,Sunday and the BackupInterval parameter to -1, a snapshot backup is performed on every Saturday and Sunday.If the instance runs PostgreSQL, the BackupInterval parameter is supported only when the instance is equipped with standard SSDs or enhanced SSDs (ESSDs).This parameter takes effect only when you set the BackupPolicyMode parameter to DataBackupPolicy.

    CompressType string
    The compress type of instance policy. Valid values: 1, 4, 8.
    EnableBackupLog bool
    Whether to backup instance log. Valid values: true, false. Defaults to true. Note: The Basic Edition category RDS instance does not support setting log backup. What is Basic Edition.
    EnableIncrementDataBackup bool
    Specifies whether to enable incremental backup. Valid values:
    EnablePitrProtection bool
    Specifies whether to enable PITR (Point-in-Time Recovery) on the MySQL instance. Valid values: true, false. This parameter takes effect only when enableBackupLog is true and BackupPolicyMode is set to DataBackupPolicy.
    HighSpaceUsageProtection string
    Instance high space usage protection policy. Valid when the enableBackupLog is true. Valid values: Enable, Disable. Defaults to Enable.
    IncBackupInterval int
    The frequency at which you want to perform incremental backup on the MySQL instance. Valid when the enableIncrementDataBackup is true and instance is MySQL local disk. Valid values: 60, 120, 240, 360, 720.
    InstanceId string
    The ID of the instance that can run database.
    LocalLogRetentionHours int
    Instance log backup local retention hours. Valid when the enableBackupLog is true. Valid values: 0-168.
    LocalLogRetentionSpace int
    Instance log backup local retention space. Valid when the enableBackupLog is true. Valid values: 0-50.
    LogBackup bool
    It has been deprecated from version 1.68.0, and use field enableBackupLog instead.

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

    LogBackupFrequency string
    Instance log backup frequency. Valid when the instance engine is SQLServer. Valid values: LogInterval.
    LogBackupLocalRetentionNumber int

    The number of binary log files that you want to retain on the instance. Defaults to 60. Valid values: 6-100.

    NOTE: This parameter takes effect only when you set the BackupPolicyMode parameter to LogBackupPolicy. If the instance runs MySQL, you can set this parameter to -1. The value -1 specifies that an unlimited number of binary log files can be retained on the instance.

    LogBackupRetentionPeriod int

    Instance log backup retention days. Valid when the enableBackupLog is true. Valid values: 7-730. Defaults to 7. It cannot be larger than backupRetentionPeriod.

    NOTE: A value larger than backupRetentionPeriod is not rejected with an error. Instead, whenever logBackupRetentionPeriod is created or changed, the provider replaces the configured value with backupRetentionPeriod in the API request. For example, with backupRetentionPeriod = 7 and logBackupRetentionPeriod = 30, the request carries 7 and the refreshed state records 7, while the configuration still asks for 30. As a result, pulumi up reports success without applying 30, and every later pulumi preview shows the same pending change for this attribute. To avoid this, set logBackupRetentionPeriod to a value less than or equal to backupRetentionPeriod.

    LogRetentionPeriod int
    It has been deprecated from version 1.69.0, and use field logBackupRetentionPeriod instead.

    Deprecated: Attribute 'log_retention_period' has been deprecated from version 1.69.0. Use logBackupRetentionPeriod 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.
    PreferredBackupTime string
    DB instance backup time, in the format of HH:mmZ-HH:mmZ. Time setting interval is one hour. Defaults to 02:00Z-03:00Z. China time is 8 hours behind it.
    ReleasedKeepPolicy string
    The policy based on which ApsaraDB RDS retains archived backup files if the instance is released. Defaults to None. Valid values:

    • None: No archived backup files are retained.
    • Lastest: Only the most recent archived backup file is retained.
    • All: All archived backup files are retained.
    RetentionPeriod int
    It has been deprecated from version 1.69.0, and use field backupRetentionPeriod instead.

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

    archive_backup_keep_count number
    Instance archive backup keep count. Valid when the enableBackupLog is true and instance is MySQL local disk. When archiveBackupKeepPolicy is ByMonth, valid values: 1-31. When archiveBackupKeepPolicy is ByWeek, valid values: 1-7.
    archive_backup_keep_policy string
    Instance archive backup keep policy. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: ByMonth, ByWeek, KeepAll.
    archive_backup_retention_period number
    Instance archive backup retention days. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: 30-1095, and archiveBackupRetentionPeriod must larger than backupRetentionPeriod 730.
    backup_interval string
    The frequency at which you want to perform a snapshot backup on the instance. Valid values:

    • -1: No backup frequencies are specified.
    backup_method string

    The backup method of the instance. Valid values:

    • Physical: physical backup
    • Snapshot: snapshot backup

    NOTE: This parameter takes effect only on instances that run SQL Server with cloud disks. This parameter takes effect only when BackupPolicyMode is set to DataBackupPolicy.

    NOTE: Currently, the SQLServer instance does not support to modify logBackupRetentionPeriod.

    backup_periods list(string)
    It has been deprecated from version 1.69.0, and use field preferredBackupPeriod instead.

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

    backup_priority number
    Specifies whether the backup settings of a secondary instance are configured. Valid values:
    backup_retention_period number
    Instance backup retention days. Valid values: 7-730. Defaults to 7. But MySQL local disk is unlimited.
    backup_time string
    It has been deprecated from version 1.69.0, and use field preferredBackupTime instead.

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

    category string

    Whether to enable second level backup. Valid values: Flash, Standard. Note: It only takes effect when the BackupPolicyMode parameter is DataBackupPolicy.

    NOTE: You can configure a backup policy by using this parameter and the PreferredBackupPeriod parameter. For example, if you set the PreferredBackupPeriod parameter to Saturday,Sunday and the BackupInterval parameter to -1, a snapshot backup is performed on every Saturday and Sunday.If the instance runs PostgreSQL, the BackupInterval parameter is supported only when the instance is equipped with standard SSDs or enhanced SSDs (ESSDs).This parameter takes effect only when you set the BackupPolicyMode parameter to DataBackupPolicy.

    compress_type string
    The compress type of instance policy. Valid values: 1, 4, 8.
    enable_backup_log bool
    Whether to backup instance log. Valid values: true, false. Defaults to true. Note: The Basic Edition category RDS instance does not support setting log backup. What is Basic Edition.
    enable_increment_data_backup bool
    Specifies whether to enable incremental backup. Valid values:
    enable_pitr_protection bool
    Specifies whether to enable PITR (Point-in-Time Recovery) on the MySQL instance. Valid values: true, false. This parameter takes effect only when enableBackupLog is true and BackupPolicyMode is set to DataBackupPolicy.
    high_space_usage_protection string
    Instance high space usage protection policy. Valid when the enableBackupLog is true. Valid values: Enable, Disable. Defaults to Enable.
    inc_backup_interval number
    The frequency at which you want to perform incremental backup on the MySQL instance. Valid when the enableIncrementDataBackup is true and instance is MySQL local disk. Valid values: 60, 120, 240, 360, 720.
    instance_id string
    The ID of the instance that can run database.
    local_log_retention_hours number
    Instance log backup local retention hours. Valid when the enableBackupLog is true. Valid values: 0-168.
    local_log_retention_space number
    Instance log backup local retention space. Valid when the enableBackupLog is true. Valid values: 0-50.
    log_backup bool
    It has been deprecated from version 1.68.0, and use field enableBackupLog instead.

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

    log_backup_frequency string
    Instance log backup frequency. Valid when the instance engine is SQLServer. Valid values: LogInterval.
    log_backup_local_retention_number number

    The number of binary log files that you want to retain on the instance. Defaults to 60. Valid values: 6-100.

    NOTE: This parameter takes effect only when you set the BackupPolicyMode parameter to LogBackupPolicy. If the instance runs MySQL, you can set this parameter to -1. The value -1 specifies that an unlimited number of binary log files can be retained on the instance.

    log_backup_retention_period number

    Instance log backup retention days. Valid when the enableBackupLog is true. Valid values: 7-730. Defaults to 7. It cannot be larger than backupRetentionPeriod.

    NOTE: A value larger than backupRetentionPeriod is not rejected with an error. Instead, whenever logBackupRetentionPeriod is created or changed, the provider replaces the configured value with backupRetentionPeriod in the API request. For example, with backupRetentionPeriod = 7 and logBackupRetentionPeriod = 30, the request carries 7 and the refreshed state records 7, while the configuration still asks for 30. As a result, pulumi up reports success without applying 30, and every later pulumi preview shows the same pending change for this attribute. To avoid this, set logBackupRetentionPeriod to a value less than or equal to backupRetentionPeriod.

    log_retention_period number
    It has been deprecated from version 1.69.0, and use field logBackupRetentionPeriod instead.

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

    preferred_backup_periods 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.
    preferred_backup_time string
    DB instance backup time, in the format of HH:mmZ-HH:mmZ. Time setting interval is one hour. Defaults to 02:00Z-03:00Z. China time is 8 hours behind it.
    released_keep_policy string
    The policy based on which ApsaraDB RDS retains archived backup files if the instance is released. Defaults to None. Valid values:

    • None: No archived backup files are retained.
    • Lastest: Only the most recent archived backup file is retained.
    • All: All archived backup files are retained.
    retention_period number
    It has been deprecated from version 1.69.0, and use field backupRetentionPeriod instead.

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

    archiveBackupKeepCount Integer
    Instance archive backup keep count. Valid when the enableBackupLog is true and instance is MySQL local disk. When archiveBackupKeepPolicy is ByMonth, valid values: 1-31. When archiveBackupKeepPolicy is ByWeek, valid values: 1-7.
    archiveBackupKeepPolicy String
    Instance archive backup keep policy. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: ByMonth, ByWeek, KeepAll.
    archiveBackupRetentionPeriod Integer
    Instance archive backup retention days. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: 30-1095, and archiveBackupRetentionPeriod must larger than backupRetentionPeriod 730.
    backupInterval String
    The frequency at which you want to perform a snapshot backup on the instance. Valid values:

    • -1: No backup frequencies are specified.
    backupMethod String

    The backup method of the instance. Valid values:

    • Physical: physical backup
    • Snapshot: snapshot backup

    NOTE: This parameter takes effect only on instances that run SQL Server with cloud disks. This parameter takes effect only when BackupPolicyMode is set to DataBackupPolicy.

    NOTE: Currently, the SQLServer instance does not support to modify logBackupRetentionPeriod.

    backupPeriods List<String>
    It has been deprecated from version 1.69.0, and use field preferredBackupPeriod instead.

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

    backupPriority Integer
    Specifies whether the backup settings of a secondary instance are configured. Valid values:
    backupRetentionPeriod Integer
    Instance backup retention days. Valid values: 7-730. Defaults to 7. But MySQL local disk is unlimited.
    backupTime String
    It has been deprecated from version 1.69.0, and use field preferredBackupTime instead.

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

    category String

    Whether to enable second level backup. Valid values: Flash, Standard. Note: It only takes effect when the BackupPolicyMode parameter is DataBackupPolicy.

    NOTE: You can configure a backup policy by using this parameter and the PreferredBackupPeriod parameter. For example, if you set the PreferredBackupPeriod parameter to Saturday,Sunday and the BackupInterval parameter to -1, a snapshot backup is performed on every Saturday and Sunday.If the instance runs PostgreSQL, the BackupInterval parameter is supported only when the instance is equipped with standard SSDs or enhanced SSDs (ESSDs).This parameter takes effect only when you set the BackupPolicyMode parameter to DataBackupPolicy.

    compressType String
    The compress type of instance policy. Valid values: 1, 4, 8.
    enableBackupLog Boolean
    Whether to backup instance log. Valid values: true, false. Defaults to true. Note: The Basic Edition category RDS instance does not support setting log backup. What is Basic Edition.
    enableIncrementDataBackup Boolean
    Specifies whether to enable incremental backup. Valid values:
    enablePitrProtection Boolean
    Specifies whether to enable PITR (Point-in-Time Recovery) on the MySQL instance. Valid values: true, false. This parameter takes effect only when enableBackupLog is true and BackupPolicyMode is set to DataBackupPolicy.
    highSpaceUsageProtection String
    Instance high space usage protection policy. Valid when the enableBackupLog is true. Valid values: Enable, Disable. Defaults to Enable.
    incBackupInterval Integer
    The frequency at which you want to perform incremental backup on the MySQL instance. Valid when the enableIncrementDataBackup is true and instance is MySQL local disk. Valid values: 60, 120, 240, 360, 720.
    instanceId String
    The ID of the instance that can run database.
    localLogRetentionHours Integer
    Instance log backup local retention hours. Valid when the enableBackupLog is true. Valid values: 0-168.
    localLogRetentionSpace Integer
    Instance log backup local retention space. Valid when the enableBackupLog is true. Valid values: 0-50.
    logBackup Boolean
    It has been deprecated from version 1.68.0, and use field enableBackupLog instead.

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

    logBackupFrequency String
    Instance log backup frequency. Valid when the instance engine is SQLServer. Valid values: LogInterval.
    logBackupLocalRetentionNumber Integer

    The number of binary log files that you want to retain on the instance. Defaults to 60. Valid values: 6-100.

    NOTE: This parameter takes effect only when you set the BackupPolicyMode parameter to LogBackupPolicy. If the instance runs MySQL, you can set this parameter to -1. The value -1 specifies that an unlimited number of binary log files can be retained on the instance.

    logBackupRetentionPeriod Integer

    Instance log backup retention days. Valid when the enableBackupLog is true. Valid values: 7-730. Defaults to 7. It cannot be larger than backupRetentionPeriod.

    NOTE: A value larger than backupRetentionPeriod is not rejected with an error. Instead, whenever logBackupRetentionPeriod is created or changed, the provider replaces the configured value with backupRetentionPeriod in the API request. For example, with backupRetentionPeriod = 7 and logBackupRetentionPeriod = 30, the request carries 7 and the refreshed state records 7, while the configuration still asks for 30. As a result, pulumi up reports success without applying 30, and every later pulumi preview shows the same pending change for this attribute. To avoid this, set logBackupRetentionPeriod to a value less than or equal to backupRetentionPeriod.

    logRetentionPeriod Integer
    It has been deprecated from version 1.69.0, and use field logBackupRetentionPeriod instead.

    Deprecated: Attribute 'log_retention_period' has been deprecated from version 1.69.0. Use logBackupRetentionPeriod 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.
    preferredBackupTime String
    DB instance backup time, in the format of HH:mmZ-HH:mmZ. Time setting interval is one hour. Defaults to 02:00Z-03:00Z. China time is 8 hours behind it.
    releasedKeepPolicy String
    The policy based on which ApsaraDB RDS retains archived backup files if the instance is released. Defaults to None. Valid values:

    • None: No archived backup files are retained.
    • Lastest: Only the most recent archived backup file is retained.
    • All: All archived backup files are retained.
    retentionPeriod Integer
    It has been deprecated from version 1.69.0, and use field backupRetentionPeriod instead.

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

    archiveBackupKeepCount number
    Instance archive backup keep count. Valid when the enableBackupLog is true and instance is MySQL local disk. When archiveBackupKeepPolicy is ByMonth, valid values: 1-31. When archiveBackupKeepPolicy is ByWeek, valid values: 1-7.
    archiveBackupKeepPolicy string
    Instance archive backup keep policy. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: ByMonth, ByWeek, KeepAll.
    archiveBackupRetentionPeriod number
    Instance archive backup retention days. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: 30-1095, and archiveBackupRetentionPeriod must larger than backupRetentionPeriod 730.
    backupInterval string
    The frequency at which you want to perform a snapshot backup on the instance. Valid values:

    • -1: No backup frequencies are specified.
    backupMethod string

    The backup method of the instance. Valid values:

    • Physical: physical backup
    • Snapshot: snapshot backup

    NOTE: This parameter takes effect only on instances that run SQL Server with cloud disks. This parameter takes effect only when BackupPolicyMode is set to DataBackupPolicy.

    NOTE: Currently, the SQLServer instance does not support to modify logBackupRetentionPeriod.

    backupPeriods string[]
    It has been deprecated from version 1.69.0, and use field preferredBackupPeriod instead.

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

    backupPriority number
    Specifies whether the backup settings of a secondary instance are configured. Valid values:
    backupRetentionPeriod number
    Instance backup retention days. Valid values: 7-730. Defaults to 7. But MySQL local disk is unlimited.
    backupTime string
    It has been deprecated from version 1.69.0, and use field preferredBackupTime instead.

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

    category string

    Whether to enable second level backup. Valid values: Flash, Standard. Note: It only takes effect when the BackupPolicyMode parameter is DataBackupPolicy.

    NOTE: You can configure a backup policy by using this parameter and the PreferredBackupPeriod parameter. For example, if you set the PreferredBackupPeriod parameter to Saturday,Sunday and the BackupInterval parameter to -1, a snapshot backup is performed on every Saturday and Sunday.If the instance runs PostgreSQL, the BackupInterval parameter is supported only when the instance is equipped with standard SSDs or enhanced SSDs (ESSDs).This parameter takes effect only when you set the BackupPolicyMode parameter to DataBackupPolicy.

    compressType string
    The compress type of instance policy. Valid values: 1, 4, 8.
    enableBackupLog boolean
    Whether to backup instance log. Valid values: true, false. Defaults to true. Note: The Basic Edition category RDS instance does not support setting log backup. What is Basic Edition.
    enableIncrementDataBackup boolean
    Specifies whether to enable incremental backup. Valid values:
    enablePitrProtection boolean
    Specifies whether to enable PITR (Point-in-Time Recovery) on the MySQL instance. Valid values: true, false. This parameter takes effect only when enableBackupLog is true and BackupPolicyMode is set to DataBackupPolicy.
    highSpaceUsageProtection string
    Instance high space usage protection policy. Valid when the enableBackupLog is true. Valid values: Enable, Disable. Defaults to Enable.
    incBackupInterval number
    The frequency at which you want to perform incremental backup on the MySQL instance. Valid when the enableIncrementDataBackup is true and instance is MySQL local disk. Valid values: 60, 120, 240, 360, 720.
    instanceId string
    The ID of the instance that can run database.
    localLogRetentionHours number
    Instance log backup local retention hours. Valid when the enableBackupLog is true. Valid values: 0-168.
    localLogRetentionSpace number
    Instance log backup local retention space. Valid when the enableBackupLog is true. Valid values: 0-50.
    logBackup boolean
    It has been deprecated from version 1.68.0, and use field enableBackupLog instead.

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

    logBackupFrequency string
    Instance log backup frequency. Valid when the instance engine is SQLServer. Valid values: LogInterval.
    logBackupLocalRetentionNumber number

    The number of binary log files that you want to retain on the instance. Defaults to 60. Valid values: 6-100.

    NOTE: This parameter takes effect only when you set the BackupPolicyMode parameter to LogBackupPolicy. If the instance runs MySQL, you can set this parameter to -1. The value -1 specifies that an unlimited number of binary log files can be retained on the instance.

    logBackupRetentionPeriod number

    Instance log backup retention days. Valid when the enableBackupLog is true. Valid values: 7-730. Defaults to 7. It cannot be larger than backupRetentionPeriod.

    NOTE: A value larger than backupRetentionPeriod is not rejected with an error. Instead, whenever logBackupRetentionPeriod is created or changed, the provider replaces the configured value with backupRetentionPeriod in the API request. For example, with backupRetentionPeriod = 7 and logBackupRetentionPeriod = 30, the request carries 7 and the refreshed state records 7, while the configuration still asks for 30. As a result, pulumi up reports success without applying 30, and every later pulumi preview shows the same pending change for this attribute. To avoid this, set logBackupRetentionPeriod to a value less than or equal to backupRetentionPeriod.

    logRetentionPeriod number
    It has been deprecated from version 1.69.0, and use field logBackupRetentionPeriod instead.

    Deprecated: Attribute 'log_retention_period' has been deprecated from version 1.69.0. Use logBackupRetentionPeriod 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.
    preferredBackupTime string
    DB instance backup time, in the format of HH:mmZ-HH:mmZ. Time setting interval is one hour. Defaults to 02:00Z-03:00Z. China time is 8 hours behind it.
    releasedKeepPolicy string
    The policy based on which ApsaraDB RDS retains archived backup files if the instance is released. Defaults to None. Valid values:

    • None: No archived backup files are retained.
    • Lastest: Only the most recent archived backup file is retained.
    • All: All archived backup files are retained.
    retentionPeriod number
    It has been deprecated from version 1.69.0, and use field backupRetentionPeriod instead.

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

    archive_backup_keep_count int
    Instance archive backup keep count. Valid when the enableBackupLog is true and instance is MySQL local disk. When archiveBackupKeepPolicy is ByMonth, valid values: 1-31. When archiveBackupKeepPolicy is ByWeek, valid values: 1-7.
    archive_backup_keep_policy str
    Instance archive backup keep policy. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: ByMonth, ByWeek, KeepAll.
    archive_backup_retention_period int
    Instance archive backup retention days. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: 30-1095, and archiveBackupRetentionPeriod must larger than backupRetentionPeriod 730.
    backup_interval str
    The frequency at which you want to perform a snapshot backup on the instance. Valid values:

    • -1: No backup frequencies are specified.
    backup_method str

    The backup method of the instance. Valid values:

    • Physical: physical backup
    • Snapshot: snapshot backup

    NOTE: This parameter takes effect only on instances that run SQL Server with cloud disks. This parameter takes effect only when BackupPolicyMode is set to DataBackupPolicy.

    NOTE: Currently, the SQLServer instance does not support to modify logBackupRetentionPeriod.

    backup_periods Sequence[str]
    It has been deprecated from version 1.69.0, and use field preferredBackupPeriod instead.

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

    backup_priority int
    Specifies whether the backup settings of a secondary instance are configured. Valid values:
    backup_retention_period int
    Instance backup retention days. Valid values: 7-730. Defaults to 7. But MySQL local disk is unlimited.
    backup_time str
    It has been deprecated from version 1.69.0, and use field preferredBackupTime instead.

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

    category str

    Whether to enable second level backup. Valid values: Flash, Standard. Note: It only takes effect when the BackupPolicyMode parameter is DataBackupPolicy.

    NOTE: You can configure a backup policy by using this parameter and the PreferredBackupPeriod parameter. For example, if you set the PreferredBackupPeriod parameter to Saturday,Sunday and the BackupInterval parameter to -1, a snapshot backup is performed on every Saturday and Sunday.If the instance runs PostgreSQL, the BackupInterval parameter is supported only when the instance is equipped with standard SSDs or enhanced SSDs (ESSDs).This parameter takes effect only when you set the BackupPolicyMode parameter to DataBackupPolicy.

    compress_type str
    The compress type of instance policy. Valid values: 1, 4, 8.
    enable_backup_log bool
    Whether to backup instance log. Valid values: true, false. Defaults to true. Note: The Basic Edition category RDS instance does not support setting log backup. What is Basic Edition.
    enable_increment_data_backup bool
    Specifies whether to enable incremental backup. Valid values:
    enable_pitr_protection bool
    Specifies whether to enable PITR (Point-in-Time Recovery) on the MySQL instance. Valid values: true, false. This parameter takes effect only when enableBackupLog is true and BackupPolicyMode is set to DataBackupPolicy.
    high_space_usage_protection str
    Instance high space usage protection policy. Valid when the enableBackupLog is true. Valid values: Enable, Disable. Defaults to Enable.
    inc_backup_interval int
    The frequency at which you want to perform incremental backup on the MySQL instance. Valid when the enableIncrementDataBackup is true and instance is MySQL local disk. Valid values: 60, 120, 240, 360, 720.
    instance_id str
    The ID of the instance that can run database.
    local_log_retention_hours int
    Instance log backup local retention hours. Valid when the enableBackupLog is true. Valid values: 0-168.
    local_log_retention_space int
    Instance log backup local retention space. Valid when the enableBackupLog is true. Valid values: 0-50.
    log_backup bool
    It has been deprecated from version 1.68.0, and use field enableBackupLog instead.

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

    log_backup_frequency str
    Instance log backup frequency. Valid when the instance engine is SQLServer. Valid values: LogInterval.
    log_backup_local_retention_number int

    The number of binary log files that you want to retain on the instance. Defaults to 60. Valid values: 6-100.

    NOTE: This parameter takes effect only when you set the BackupPolicyMode parameter to LogBackupPolicy. If the instance runs MySQL, you can set this parameter to -1. The value -1 specifies that an unlimited number of binary log files can be retained on the instance.

    log_backup_retention_period int

    Instance log backup retention days. Valid when the enableBackupLog is true. Valid values: 7-730. Defaults to 7. It cannot be larger than backupRetentionPeriod.

    NOTE: A value larger than backupRetentionPeriod is not rejected with an error. Instead, whenever logBackupRetentionPeriod is created or changed, the provider replaces the configured value with backupRetentionPeriod in the API request. For example, with backupRetentionPeriod = 7 and logBackupRetentionPeriod = 30, the request carries 7 and the refreshed state records 7, while the configuration still asks for 30. As a result, pulumi up reports success without applying 30, and every later pulumi preview shows the same pending change for this attribute. To avoid this, set logBackupRetentionPeriod to a value less than or equal to backupRetentionPeriod.

    log_retention_period int
    It has been deprecated from version 1.69.0, and use field logBackupRetentionPeriod instead.

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

    preferred_backup_periods Sequence[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.
    preferred_backup_time str
    DB instance backup time, in the format of HH:mmZ-HH:mmZ. Time setting interval is one hour. Defaults to 02:00Z-03:00Z. China time is 8 hours behind it.
    released_keep_policy str
    The policy based on which ApsaraDB RDS retains archived backup files if the instance is released. Defaults to None. Valid values:

    • None: No archived backup files are retained.
    • Lastest: Only the most recent archived backup file is retained.
    • All: All archived backup files are retained.
    retention_period int
    It has been deprecated from version 1.69.0, and use field backupRetentionPeriod instead.

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

    archiveBackupKeepCount Number
    Instance archive backup keep count. Valid when the enableBackupLog is true and instance is MySQL local disk. When archiveBackupKeepPolicy is ByMonth, valid values: 1-31. When archiveBackupKeepPolicy is ByWeek, valid values: 1-7.
    archiveBackupKeepPolicy String
    Instance archive backup keep policy. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: ByMonth, ByWeek, KeepAll.
    archiveBackupRetentionPeriod Number
    Instance archive backup retention days. Valid when the enableBackupLog is true and instance is MySQL local disk. Valid values: 30-1095, and archiveBackupRetentionPeriod must larger than backupRetentionPeriod 730.
    backupInterval String
    The frequency at which you want to perform a snapshot backup on the instance. Valid values:

    • -1: No backup frequencies are specified.
    backupMethod String

    The backup method of the instance. Valid values:

    • Physical: physical backup
    • Snapshot: snapshot backup

    NOTE: This parameter takes effect only on instances that run SQL Server with cloud disks. This parameter takes effect only when BackupPolicyMode is set to DataBackupPolicy.

    NOTE: Currently, the SQLServer instance does not support to modify logBackupRetentionPeriod.

    backupPeriods List<String>
    It has been deprecated from version 1.69.0, and use field preferredBackupPeriod instead.

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

    backupPriority Number
    Specifies whether the backup settings of a secondary instance are configured. Valid values:
    backupRetentionPeriod Number
    Instance backup retention days. Valid values: 7-730. Defaults to 7. But MySQL local disk is unlimited.
    backupTime String
    It has been deprecated from version 1.69.0, and use field preferredBackupTime instead.

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

    category String

    Whether to enable second level backup. Valid values: Flash, Standard. Note: It only takes effect when the BackupPolicyMode parameter is DataBackupPolicy.

    NOTE: You can configure a backup policy by using this parameter and the PreferredBackupPeriod parameter. For example, if you set the PreferredBackupPeriod parameter to Saturday,Sunday and the BackupInterval parameter to -1, a snapshot backup is performed on every Saturday and Sunday.If the instance runs PostgreSQL, the BackupInterval parameter is supported only when the instance is equipped with standard SSDs or enhanced SSDs (ESSDs).This parameter takes effect only when you set the BackupPolicyMode parameter to DataBackupPolicy.

    compressType String
    The compress type of instance policy. Valid values: 1, 4, 8.
    enableBackupLog Boolean
    Whether to backup instance log. Valid values: true, false. Defaults to true. Note: The Basic Edition category RDS instance does not support setting log backup. What is Basic Edition.
    enableIncrementDataBackup Boolean
    Specifies whether to enable incremental backup. Valid values:
    enablePitrProtection Boolean
    Specifies whether to enable PITR (Point-in-Time Recovery) on the MySQL instance. Valid values: true, false. This parameter takes effect only when enableBackupLog is true and BackupPolicyMode is set to DataBackupPolicy.
    highSpaceUsageProtection String
    Instance high space usage protection policy. Valid when the enableBackupLog is true. Valid values: Enable, Disable. Defaults to Enable.
    incBackupInterval Number
    The frequency at which you want to perform incremental backup on the MySQL instance. Valid when the enableIncrementDataBackup is true and instance is MySQL local disk. Valid values: 60, 120, 240, 360, 720.
    instanceId String
    The ID of the instance that can run database.
    localLogRetentionHours Number
    Instance log backup local retention hours. Valid when the enableBackupLog is true. Valid values: 0-168.
    localLogRetentionSpace Number
    Instance log backup local retention space. Valid when the enableBackupLog is true. Valid values: 0-50.
    logBackup Boolean
    It has been deprecated from version 1.68.0, and use field enableBackupLog instead.

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

    logBackupFrequency String
    Instance log backup frequency. Valid when the instance engine is SQLServer. Valid values: LogInterval.
    logBackupLocalRetentionNumber Number

    The number of binary log files that you want to retain on the instance. Defaults to 60. Valid values: 6-100.

    NOTE: This parameter takes effect only when you set the BackupPolicyMode parameter to LogBackupPolicy. If the instance runs MySQL, you can set this parameter to -1. The value -1 specifies that an unlimited number of binary log files can be retained on the instance.

    logBackupRetentionPeriod Number

    Instance log backup retention days. Valid when the enableBackupLog is true. Valid values: 7-730. Defaults to 7. It cannot be larger than backupRetentionPeriod.

    NOTE: A value larger than backupRetentionPeriod is not rejected with an error. Instead, whenever logBackupRetentionPeriod is created or changed, the provider replaces the configured value with backupRetentionPeriod in the API request. For example, with backupRetentionPeriod = 7 and logBackupRetentionPeriod = 30, the request carries 7 and the refreshed state records 7, while the configuration still asks for 30. As a result, pulumi up reports success without applying 30, and every later pulumi preview shows the same pending change for this attribute. To avoid this, set logBackupRetentionPeriod to a value less than or equal to backupRetentionPeriod.

    logRetentionPeriod Number
    It has been deprecated from version 1.69.0, and use field logBackupRetentionPeriod instead.

    Deprecated: Attribute 'log_retention_period' has been deprecated from version 1.69.0. Use logBackupRetentionPeriod 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.
    preferredBackupTime String
    DB instance backup time, in the format of HH:mmZ-HH:mmZ. Time setting interval is one hour. Defaults to 02:00Z-03:00Z. China time is 8 hours behind it.
    releasedKeepPolicy String
    The policy based on which ApsaraDB RDS retains archived backup files if the instance is released. Defaults to None. Valid values:

    • None: No archived backup files are retained.
    • Lastest: Only the most recent archived backup file is retained.
    • All: All archived backup files are retained.
    retentionPeriod Number
    It has been deprecated from version 1.69.0, and use field backupRetentionPeriod instead.

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

    Import

    RDS backup policy can be imported using the id or instance id, e.g.

    $ pulumi import alicloud:rds/backupPolicy:BackupPolicy example "rm-12345678"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Alibaba Cloud pulumi/pulumi-alicloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the alicloud Terraform Provider.
    alicloud logo alicloud logo
    Viewing docs for Alibaba Cloud v3.106.0
    published on Monday, Aug 24, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial