1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. clickhouse
  5. BackupPolicy
Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

alicloud.clickhouse.BackupPolicy

Explore with Pulumi AI

Provides a Click House Backup Policy resource.

For information about Click House Backup Policy and how to use it, see What is Backup Policy.

NOTE: Available since v1.147.0.

NOTE: Only the cloud database ClickHouse cluster version 20.3 supports data backup.

Example Usage

Basic 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.clickhouse.getRegions({
    current: true,
});
const defaultNetwork = new alicloud.vpc.Network("default", {
    vpcName: name,
    cidrBlock: "10.4.0.0/16",
});
const defaultSwitch = new alicloud.vpc.Switch("default", {
    vswitchName: name,
    cidrBlock: "10.4.0.0/24",
    vpcId: defaultNetwork.id,
    zoneId: _default.then(_default => _default.regions?.[0]?.zoneIds?.[1]?.zoneId),
});
const defaultDbCluster = new alicloud.clickhouse.DbCluster("default", {
    dbClusterVersion: "22.8.5.29",
    status: "Running",
    category: "Basic",
    dbClusterClass: "S8",
    dbClusterNetworkType: "vpc",
    dbNodeGroupCount: 1,
    paymentType: "PayAsYouGo",
    dbNodeStorage: "500",
    storageType: "cloud_essd",
    vswitchId: defaultSwitch.id,
    vpcId: defaultNetwork.id,
});
const defaultBackupPolicy = new alicloud.clickhouse.BackupPolicy("default", {
    dbClusterId: defaultDbCluster.id,
    preferredBackupPeriods: [
        "Monday",
        "Friday",
    ],
    preferredBackupTime: "00:00Z-01:00Z",
    backupRetentionPeriod: 7,
});
Copy
import pulumi
import pulumi_alicloud as alicloud

config = pulumi.Config()
name = config.get("name")
if name is None:
    name = "tf-example"
default = alicloud.clickhouse.get_regions(current=True)
default_network = alicloud.vpc.Network("default",
    vpc_name=name,
    cidr_block="10.4.0.0/16")
default_switch = alicloud.vpc.Switch("default",
    vswitch_name=name,
    cidr_block="10.4.0.0/24",
    vpc_id=default_network.id,
    zone_id=default.regions[0].zone_ids[1].zone_id)
default_db_cluster = alicloud.clickhouse.DbCluster("default",
    db_cluster_version="22.8.5.29",
    status="Running",
    category="Basic",
    db_cluster_class="S8",
    db_cluster_network_type="vpc",
    db_node_group_count=1,
    payment_type="PayAsYouGo",
    db_node_storage="500",
    storage_type="cloud_essd",
    vswitch_id=default_switch.id,
    vpc_id=default_network.id)
default_backup_policy = alicloud.clickhouse.BackupPolicy("default",
    db_cluster_id=default_db_cluster.id,
    preferred_backup_periods=[
        "Monday",
        "Friday",
    ],
    preferred_backup_time="00:00Z-01:00Z",
    backup_retention_period=7)
Copy
package main

import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/clickhouse"
	"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 := clickhouse.GetRegions(ctx, &clickhouse.GetRegionsArgs{
			Current: pulumi.BoolRef(true),
		}, nil)
		if err != nil {
			return err
		}
		defaultNetwork, err := vpc.NewNetwork(ctx, "default", &vpc.NetworkArgs{
			VpcName:   pulumi.String(name),
			CidrBlock: pulumi.String("10.4.0.0/16"),
		})
		if err != nil {
			return err
		}
		defaultSwitch, err := vpc.NewSwitch(ctx, "default", &vpc.SwitchArgs{
			VswitchName: pulumi.String(name),
			CidrBlock:   pulumi.String("10.4.0.0/24"),
			VpcId:       defaultNetwork.ID(),
			ZoneId:      pulumi.String(_default.Regions[0].ZoneIds[1].ZoneId),
		})
		if err != nil {
			return err
		}
		defaultDbCluster, err := clickhouse.NewDbCluster(ctx, "default", &clickhouse.DbClusterArgs{
			DbClusterVersion:     pulumi.String("22.8.5.29"),
			Status:               pulumi.String("Running"),
			Category:             pulumi.String("Basic"),
			DbClusterClass:       pulumi.String("S8"),
			DbClusterNetworkType: pulumi.String("vpc"),
			DbNodeGroupCount:     pulumi.Int(1),
			PaymentType:          pulumi.String("PayAsYouGo"),
			DbNodeStorage:        pulumi.String("500"),
			StorageType:          pulumi.String("cloud_essd"),
			VswitchId:            defaultSwitch.ID(),
			VpcId:                defaultNetwork.ID(),
		})
		if err != nil {
			return err
		}
		_, err = clickhouse.NewBackupPolicy(ctx, "default", &clickhouse.BackupPolicyArgs{
			DbClusterId: defaultDbCluster.ID(),
			PreferredBackupPeriods: pulumi.StringArray{
				pulumi.String("Monday"),
				pulumi.String("Friday"),
			},
			PreferredBackupTime:   pulumi.String("00:00Z-01:00Z"),
			BackupRetentionPeriod: pulumi.Int(7),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
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.ClickHouse.GetRegions.Invoke(new()
    {
        Current = true,
    });

    var defaultNetwork = new AliCloud.Vpc.Network("default", new()
    {
        VpcName = name,
        CidrBlock = "10.4.0.0/16",
    });

    var defaultSwitch = new AliCloud.Vpc.Switch("default", new()
    {
        VswitchName = name,
        CidrBlock = "10.4.0.0/24",
        VpcId = defaultNetwork.Id,
        ZoneId = @default.Apply(@default => @default.Apply(getRegionsResult => getRegionsResult.Regions[0]?.ZoneIds[1]?.ZoneId)),
    });

    var defaultDbCluster = new AliCloud.ClickHouse.DbCluster("default", new()
    {
        DbClusterVersion = "22.8.5.29",
        Status = "Running",
        Category = "Basic",
        DbClusterClass = "S8",
        DbClusterNetworkType = "vpc",
        DbNodeGroupCount = 1,
        PaymentType = "PayAsYouGo",
        DbNodeStorage = "500",
        StorageType = "cloud_essd",
        VswitchId = defaultSwitch.Id,
        VpcId = defaultNetwork.Id,
    });

    var defaultBackupPolicy = new AliCloud.ClickHouse.BackupPolicy("default", new()
    {
        DbClusterId = defaultDbCluster.Id,
        PreferredBackupPeriods = new[]
        {
            "Monday",
            "Friday",
        },
        PreferredBackupTime = "00:00Z-01:00Z",
        BackupRetentionPeriod = 7,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.clickhouse.ClickhouseFunctions;
import com.pulumi.alicloud.clickhouse.inputs.GetRegionsArgs;
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.clickhouse.DbCluster;
import com.pulumi.alicloud.clickhouse.DbClusterArgs;
import com.pulumi.alicloud.clickhouse.BackupPolicy;
import com.pulumi.alicloud.clickhouse.BackupPolicyArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var config = ctx.config();
        final var name = config.get("name").orElse("tf-example");
        final var default = ClickhouseFunctions.getRegions(GetRegionsArgs.builder()
            .current(true)
            .build());

        var defaultNetwork = new Network("defaultNetwork", NetworkArgs.builder()
            .vpcName(name)
            .cidrBlock("10.4.0.0/16")
            .build());

        var defaultSwitch = new Switch("defaultSwitch", SwitchArgs.builder()
            .vswitchName(name)
            .cidrBlock("10.4.0.0/24")
            .vpcId(defaultNetwork.id())
            .zoneId(default_.regions()[0].zoneIds()[1].zoneId())
            .build());

        var defaultDbCluster = new DbCluster("defaultDbCluster", DbClusterArgs.builder()
            .dbClusterVersion("22.8.5.29")
            .status("Running")
            .category("Basic")
            .dbClusterClass("S8")
            .dbClusterNetworkType("vpc")
            .dbNodeGroupCount("1")
            .paymentType("PayAsYouGo")
            .dbNodeStorage("500")
            .storageType("cloud_essd")
            .vswitchId(defaultSwitch.id())
            .vpcId(defaultNetwork.id())
            .build());

        var defaultBackupPolicy = new BackupPolicy("defaultBackupPolicy", BackupPolicyArgs.builder()
            .dbClusterId(defaultDbCluster.id())
            .preferredBackupPeriods(            
                "Monday",
                "Friday")
            .preferredBackupTime("00:00Z-01:00Z")
            .backupRetentionPeriod(7)
            .build());

    }
}
Copy
configuration:
  name:
    type: string
    default: tf-example
resources:
  defaultNetwork:
    type: alicloud:vpc:Network
    name: default
    properties:
      vpcName: ${name}
      cidrBlock: 10.4.0.0/16
  defaultSwitch:
    type: alicloud:vpc:Switch
    name: default
    properties:
      vswitchName: ${name}
      cidrBlock: 10.4.0.0/24
      vpcId: ${defaultNetwork.id}
      zoneId: ${default.regions[0].zoneIds[1].zoneId}
  defaultDbCluster:
    type: alicloud:clickhouse:DbCluster
    name: default
    properties:
      dbClusterVersion: 22.8.5.29
      status: Running
      category: Basic
      dbClusterClass: S8
      dbClusterNetworkType: vpc
      dbNodeGroupCount: '1'
      paymentType: PayAsYouGo
      dbNodeStorage: '500'
      storageType: cloud_essd
      vswitchId: ${defaultSwitch.id}
      vpcId: ${defaultNetwork.id}
  defaultBackupPolicy:
    type: alicloud:clickhouse:BackupPolicy
    name: default
    properties:
      dbClusterId: ${defaultDbCluster.id}
      preferredBackupPeriods:
        - Monday
        - Friday
      preferredBackupTime: 00:00Z-01:00Z
      backupRetentionPeriod: 7
variables:
  default:
    fn::invoke:
      function: alicloud:clickhouse:getRegions
      arguments:
        current: true
Copy

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,
                 db_cluster_id: Optional[str] = None,
                 preferred_backup_periods: Optional[Sequence[str]] = None,
                 preferred_backup_time: Optional[str] = None,
                 backup_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:clickhouse:BackupPolicy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. BackupPolicyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. BackupPolicyArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. BackupPolicyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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 alicloudBackupPolicyResource = new AliCloud.ClickHouse.BackupPolicy("alicloudBackupPolicyResource", new()
{
    DbClusterId = "string",
    PreferredBackupPeriods = new[]
    {
        "string",
    },
    PreferredBackupTime = "string",
    BackupRetentionPeriod = 0,
});
Copy
example, err := clickhouse.NewBackupPolicy(ctx, "alicloudBackupPolicyResource", &clickhouse.BackupPolicyArgs{
	DbClusterId: pulumi.String("string"),
	PreferredBackupPeriods: pulumi.StringArray{
		pulumi.String("string"),
	},
	PreferredBackupTime:   pulumi.String("string"),
	BackupRetentionPeriod: pulumi.Int(0),
})
Copy
var alicloudBackupPolicyResource = new com.pulumi.alicloud.clickhouse.BackupPolicy("alicloudBackupPolicyResource", com.pulumi.alicloud.clickhouse.BackupPolicyArgs.builder()
    .dbClusterId("string")
    .preferredBackupPeriods("string")
    .preferredBackupTime("string")
    .backupRetentionPeriod(0)
    .build());
Copy
alicloud_backup_policy_resource = alicloud.clickhouse.BackupPolicy("alicloudBackupPolicyResource",
    db_cluster_id="string",
    preferred_backup_periods=["string"],
    preferred_backup_time="string",
    backup_retention_period=0)
Copy
const alicloudBackupPolicyResource = new alicloud.clickhouse.BackupPolicy("alicloudBackupPolicyResource", {
    dbClusterId: "string",
    preferredBackupPeriods: ["string"],
    preferredBackupTime: "string",
    backupRetentionPeriod: 0,
});
Copy
type: alicloud:clickhouse:BackupPolicy
properties:
    backupRetentionPeriod: 0
    dbClusterId: string
    preferredBackupPeriods:
        - string
    preferredBackupTime: string
Copy

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:

DbClusterId
This property is required.
Changes to this property will trigger replacement.
string
The id of the DBCluster.
PreferredBackupPeriods This property is required. List<string>
DBCluster Backup period. A list of DBCluster Backup period. Valid values: ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"].
PreferredBackupTime This property is required. string
DBCluster backup time, in the format of HH:mmZ-HH:mmZ. Time setting interval is one hour. China time is 8 hours behind it.
BackupRetentionPeriod int
Data backup days. Valid values: 7 to 730.
DbClusterId
This property is required.
Changes to this property will trigger replacement.
string
The id of the DBCluster.
PreferredBackupPeriods This property is required. []string
DBCluster Backup period. A list of DBCluster Backup period. Valid values: ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"].
PreferredBackupTime This property is required. string
DBCluster backup time, in the format of HH:mmZ-HH:mmZ. Time setting interval is one hour. China time is 8 hours behind it.
BackupRetentionPeriod int
Data backup days. Valid values: 7 to 730.
dbClusterId
This property is required.
Changes to this property will trigger replacement.
String
The id of the DBCluster.
preferredBackupPeriods This property is required. List<String>
DBCluster Backup period. A list of DBCluster Backup period. Valid values: ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"].
preferredBackupTime This property is required. String
DBCluster backup time, in the format of HH:mmZ-HH:mmZ. Time setting interval is one hour. China time is 8 hours behind it.
backupRetentionPeriod Integer
Data backup days. Valid values: 7 to 730.
dbClusterId
This property is required.
Changes to this property will trigger replacement.
string
The id of the DBCluster.
preferredBackupPeriods This property is required. string[]
DBCluster Backup period. A list of DBCluster Backup period. Valid values: ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"].
preferredBackupTime This property is required. string
DBCluster backup time, in the format of HH:mmZ-HH:mmZ. Time setting interval is one hour. China time is 8 hours behind it.
backupRetentionPeriod number
Data backup days. Valid values: 7 to 730.
db_cluster_id
This property is required.
Changes to this property will trigger replacement.
str
The id of the DBCluster.
preferred_backup_periods This property is required. Sequence[str]
DBCluster Backup period. A list of DBCluster Backup period. Valid values: ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"].
preferred_backup_time This property is required. str
DBCluster backup time, in the format of HH:mmZ-HH:mmZ. Time setting interval is one hour. China time is 8 hours behind it.
backup_retention_period int
Data backup days. Valid values: 7 to 730.
dbClusterId
This property is required.
Changes to this property will trigger replacement.
String
The id of the DBCluster.
preferredBackupPeriods This property is required. List<String>
DBCluster Backup period. A list of DBCluster Backup period. Valid values: ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"].
preferredBackupTime This property is required. String
DBCluster backup time, in the format of HH:mmZ-HH:mmZ. Time setting interval is one hour. China time is 8 hours behind it.
backupRetentionPeriod Number
Data backup days. Valid values: 7 to 730.

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.
Status string
The status of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Status string
The status of the resource.
id String
The provider-assigned unique ID for this managed resource.
status String
The status of the resource.
id string
The provider-assigned unique ID for this managed resource.
status string
The status of the resource.
id str
The provider-assigned unique ID for this managed resource.
status str
The status of the resource.
id String
The provider-assigned unique ID for this managed resource.
status String
The status of the 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,
        backup_retention_period: Optional[int] = None,
        db_cluster_id: Optional[str] = None,
        preferred_backup_periods: Optional[Sequence[str]] = None,
        preferred_backup_time: Optional[str] = None,
        status: Optional[str] = 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:clickhouse:BackupPolicy    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
BackupRetentionPeriod int
Data backup days. Valid values: 7 to 730.
DbClusterId Changes to this property will trigger replacement. string
The id of the DBCluster.
PreferredBackupPeriods List<string>
DBCluster Backup period. A list of DBCluster Backup period. Valid values: ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"].
PreferredBackupTime string
DBCluster backup time, in the format of HH:mmZ-HH:mmZ. Time setting interval is one hour. China time is 8 hours behind it.
Status string
The status of the resource.
BackupRetentionPeriod int
Data backup days. Valid values: 7 to 730.
DbClusterId Changes to this property will trigger replacement. string
The id of the DBCluster.
PreferredBackupPeriods []string
DBCluster Backup period. A list of DBCluster Backup period. Valid values: ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"].
PreferredBackupTime string
DBCluster backup time, in the format of HH:mmZ-HH:mmZ. Time setting interval is one hour. China time is 8 hours behind it.
Status string
The status of the resource.
backupRetentionPeriod Integer
Data backup days. Valid values: 7 to 730.
dbClusterId Changes to this property will trigger replacement. String
The id of the DBCluster.
preferredBackupPeriods List<String>
DBCluster Backup period. A list of DBCluster Backup period. Valid values: ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"].
preferredBackupTime String
DBCluster backup time, in the format of HH:mmZ-HH:mmZ. Time setting interval is one hour. China time is 8 hours behind it.
status String
The status of the resource.
backupRetentionPeriod number
Data backup days. Valid values: 7 to 730.
dbClusterId Changes to this property will trigger replacement. string
The id of the DBCluster.
preferredBackupPeriods string[]
DBCluster Backup period. A list of DBCluster Backup period. Valid values: ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"].
preferredBackupTime string
DBCluster backup time, in the format of HH:mmZ-HH:mmZ. Time setting interval is one hour. China time is 8 hours behind it.
status string
The status of the resource.
backup_retention_period int
Data backup days. Valid values: 7 to 730.
db_cluster_id Changes to this property will trigger replacement. str
The id of the DBCluster.
preferred_backup_periods Sequence[str]
DBCluster Backup period. A list of DBCluster Backup period. Valid values: ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"].
preferred_backup_time str
DBCluster backup time, in the format of HH:mmZ-HH:mmZ. Time setting interval is one hour. China time is 8 hours behind it.
status str
The status of the resource.
backupRetentionPeriod Number
Data backup days. Valid values: 7 to 730.
dbClusterId Changes to this property will trigger replacement. String
The id of the DBCluster.
preferredBackupPeriods List<String>
DBCluster Backup period. A list of DBCluster Backup period. Valid values: ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"].
preferredBackupTime String
DBCluster backup time, in the format of HH:mmZ-HH:mmZ. Time setting interval is one hour. China time is 8 hours behind it.
status String
The status of the resource.

Import

Click House Backup Policy can be imported using the id, e.g.

$ pulumi import alicloud:clickhouse/backupPolicy:BackupPolicy example <db_cluster_id>
Copy

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.