1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. clickhouse
  5. BackupPolicy
Alibaba Cloud v3.53.0 published on Wednesday, Apr 17, 2024 by Pulumi

alicloud.clickhouse.BackupPolicy

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.53.0 published on Wednesday, Apr 17, 2024 by Pulumi

    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 defaultRegions = alicloud.clickhouse.getRegions({
        current: true,
    });
    const defaultNetwork = new alicloud.vpc.Network("defaultNetwork", {
        vpcName: name,
        cidrBlock: "10.4.0.0/16",
    });
    const defaultSwitch = new alicloud.vpc.Switch("defaultSwitch", {
        vswitchName: name,
        cidrBlock: "10.4.0.0/24",
        vpcId: defaultNetwork.id,
        zoneId: defaultRegions.then(defaultRegions => defaultRegions.regions?.[0]?.zoneIds?.[0]?.zoneId),
    });
    const defaultDbCluster = new alicloud.clickhouse.DbCluster("defaultDbCluster", {
        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("defaultBackupPolicy", {
        dbClusterId: defaultDbCluster.id,
        preferredBackupPeriods: [
            "Monday",
            "Friday",
        ],
        preferredBackupTime: "00:00Z-01:00Z",
        backupRetentionPeriod: 7,
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "tf-example"
    default_regions = alicloud.clickhouse.get_regions(current=True)
    default_network = alicloud.vpc.Network("defaultNetwork",
        vpc_name=name,
        cidr_block="10.4.0.0/16")
    default_switch = alicloud.vpc.Switch("defaultSwitch",
        vswitch_name=name,
        cidr_block="10.4.0.0/24",
        vpc_id=default_network.id,
        zone_id=default_regions.regions[0].zone_ids[0].zone_id)
    default_db_cluster = alicloud.clickhouse.DbCluster("defaultDbCluster",
        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("defaultBackupPolicy",
        db_cluster_id=default_db_cluster.id,
        preferred_backup_periods=[
            "Monday",
            "Friday",
        ],
        preferred_backup_time="00:00Z-01:00Z",
        backup_retention_period=7)
    
    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
    		}
    		defaultRegions, err := clickhouse.GetRegions(ctx, &clickhouse.GetRegionsArgs{
    			Current: pulumi.BoolRef(true),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		defaultNetwork, err := vpc.NewNetwork(ctx, "defaultNetwork", &vpc.NetworkArgs{
    			VpcName:   pulumi.String(name),
    			CidrBlock: pulumi.String("10.4.0.0/16"),
    		})
    		if err != nil {
    			return err
    		}
    		defaultSwitch, err := vpc.NewSwitch(ctx, "defaultSwitch", &vpc.SwitchArgs{
    			VswitchName: pulumi.String(name),
    			CidrBlock:   pulumi.String("10.4.0.0/24"),
    			VpcId:       defaultNetwork.ID(),
    			ZoneId:      pulumi.String(defaultRegions.Regions[0].ZoneIds[0].ZoneId),
    		})
    		if err != nil {
    			return err
    		}
    		defaultDbCluster, err := clickhouse.NewDbCluster(ctx, "defaultDbCluster", &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, "defaultBackupPolicy", &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
    	})
    }
    
    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 defaultRegions = AliCloud.ClickHouse.GetRegions.Invoke(new()
        {
            Current = true,
        });
    
        var defaultNetwork = new AliCloud.Vpc.Network("defaultNetwork", new()
        {
            VpcName = name,
            CidrBlock = "10.4.0.0/16",
        });
    
        var defaultSwitch = new AliCloud.Vpc.Switch("defaultSwitch", new()
        {
            VswitchName = name,
            CidrBlock = "10.4.0.0/24",
            VpcId = defaultNetwork.Id,
            ZoneId = defaultRegions.Apply(getRegionsResult => getRegionsResult.Regions[0]?.ZoneIds[0]?.ZoneId),
        });
    
        var defaultDbCluster = new AliCloud.ClickHouse.DbCluster("defaultDbCluster", 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("defaultBackupPolicy", new()
        {
            DbClusterId = defaultDbCluster.Id,
            PreferredBackupPeriods = new[]
            {
                "Monday",
                "Friday",
            },
            PreferredBackupTime = "00:00Z-01:00Z",
            BackupRetentionPeriod = 7,
        });
    
    });
    
    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 defaultRegions = 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(defaultRegions.applyValue(getRegionsResult -> getRegionsResult.regions()[0].zoneIds()[0].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());
    
        }
    }
    
    configuration:
      name:
        type: string
        default: tf-example
    resources:
      defaultNetwork:
        type: alicloud:vpc:Network
        properties:
          vpcName: ${name}
          cidrBlock: 10.4.0.0/16
      defaultSwitch:
        type: alicloud:vpc:Switch
        properties:
          vswitchName: ${name}
          cidrBlock: 10.4.0.0/24
          vpcId: ${defaultNetwork.id}
          zoneId: ${defaultRegions.regions[0].zoneIds[0].zoneId}
      defaultDbCluster:
        type: alicloud:clickhouse:DbCluster
        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
        properties:
          dbClusterId: ${defaultDbCluster.id}
          preferredBackupPeriods:
            - Monday
            - Friday
          preferredBackupTime: 00:00Z-01:00Z
          backupRetentionPeriod: 7
    variables:
      defaultRegions:
        fn::invoke:
          Function: alicloud:clickhouse:getRegions
          Arguments:
            current: true
    

    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 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.

    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,
    });
    
    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),
    })
    
    var alicloudBackupPolicyResource = new BackupPolicy("alicloudBackupPolicyResource", BackupPolicyArgs.builder()        
        .dbClusterId("string")
        .preferredBackupPeriods("string")
        .preferredBackupTime("string")
        .backupRetentionPeriod(0)
        .build());
    
    alicloud_backup_policy_resource = alicloud.clickhouse.BackupPolicy("alicloudBackupPolicyResource",
        db_cluster_id="string",
        preferred_backup_periods=["string"],
        preferred_backup_time="string",
        backup_retention_period=0)
    
    const alicloudBackupPolicyResource = new alicloud.clickhouse.BackupPolicy("alicloudBackupPolicyResource", {
        dbClusterId: "string",
        preferredBackupPeriods: ["string"],
        preferredBackupTime: "string",
        backupRetentionPeriod: 0,
    });
    
    type: alicloud:clickhouse:BackupPolicy
    properties:
        backupRetentionPeriod: 0
        dbClusterId: string
        preferredBackupPeriods:
            - string
        preferredBackupTime: 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

    The BackupPolicy resource accepts the following input properties:

    DbClusterId 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.
    BackupRetentionPeriod int
    Data backup days. Valid values: 7 to 730.
    DbClusterId 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.
    BackupRetentionPeriod int
    Data backup days. Valid values: 7 to 730.
    dbClusterId 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.
    backupRetentionPeriod Integer
    Data backup days. Valid values: 7 to 730.
    dbClusterId 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.
    backupRetentionPeriod number
    Data backup days. Valid values: 7 to 730.
    db_cluster_id 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.
    backup_retention_period int
    Data backup days. Valid values: 7 to 730.
    dbClusterId 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.
    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)
    Resource lookup is not supported in YAML
    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:
    BackupRetentionPeriod int
    Data backup days. Valid values: 7 to 730.
    DbClusterId 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 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 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 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 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 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>
    

    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
    Alibaba Cloud v3.53.0 published on Wednesday, Apr 17, 2024 by Pulumi