1. Packages
  2. Volcengine
  3. API Docs
  4. redis
  5. Instance
Volcengine v0.0.24 published on Tuesday, Jun 25, 2024 by Volcengine

volcengine.redis.Instance

Explore with Pulumi AI

volcengine logo
Volcengine v0.0.24 published on Tuesday, Jun 25, 2024 by Volcengine

    Import

    redis instance can be imported using the id, e.g.

     $ pulumi import volcengine:redis/instance:Instance default redis-n769ewmjjqyqh5dv
    

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Volcengine = Pulumi.Volcengine;
    
    return await Deployment.RunAsync(() => 
    {
        var fooZones = Volcengine.Ecs.Zones.Invoke();
    
        var fooVpc = new Volcengine.Vpc.Vpc("fooVpc", new()
        {
            VpcName = "acc-test-vpc",
            CidrBlock = "172.16.0.0/16",
        });
    
        var fooSubnet = new Volcengine.Vpc.Subnet("fooSubnet", new()
        {
            SubnetName = "acc-test-subnet",
            CidrBlock = "172.16.0.0/24",
            ZoneId = fooZones.Apply(zonesResult => zonesResult.Zones[0]?.Id),
            VpcId = fooVpc.Id,
        });
    
        var fooInstance = new Volcengine.Redis.Instance("fooInstance", new()
        {
            ZoneIds = new[]
            {
                fooZones.Apply(zonesResult => zonesResult.Zones[0]?.Id),
            },
            InstanceName = "tf-test",
            ShardedCluster = 1,
            Password = "1qaz!QAZ12",
            NodeNumber = 2,
            ShardCapacity = 1024,
            ShardNumber = 2,
            EngineVersion = "5.0",
            SubnetId = fooSubnet.Id,
            DeletionProtection = "disabled",
            VpcAuthMode = "close",
            ChargeType = "PostPaid",
            Port = 6381,
            ProjectName = "default",
            Tags = new[]
            {
                new Volcengine.Redis.Inputs.InstanceTagArgs
                {
                    Key = "k1",
                    Value = "v1",
                },
                new Volcengine.Redis.Inputs.InstanceTagArgs
                {
                    Key = "k3",
                    Value = "v3",
                },
            },
            ParamValues = new[]
            {
                new Volcengine.Redis.Inputs.InstanceParamValueArgs
                {
                    Name = "active-defrag-cycle-min",
                    Value = "5",
                },
                new Volcengine.Redis.Inputs.InstanceParamValueArgs
                {
                    Name = "active-defrag-cycle-max",
                    Value = "28",
                },
            },
            BackupPeriods = new[]
            {
                1,
                2,
                3,
            },
            BackupHour = 6,
            BackupActive = true,
            CreateBackup = false,
            ApplyImmediately = true,
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/ecs"
    	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/redis"
    	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/vpc"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		fooZones, err := ecs.Zones(ctx, nil, nil)
    		if err != nil {
    			return err
    		}
    		fooVpc, err := vpc.NewVpc(ctx, "fooVpc", &vpc.VpcArgs{
    			VpcName:   pulumi.String("acc-test-vpc"),
    			CidrBlock: pulumi.String("172.16.0.0/16"),
    		})
    		if err != nil {
    			return err
    		}
    		fooSubnet, err := vpc.NewSubnet(ctx, "fooSubnet", &vpc.SubnetArgs{
    			SubnetName: pulumi.String("acc-test-subnet"),
    			CidrBlock:  pulumi.String("172.16.0.0/24"),
    			ZoneId:     *pulumi.String(fooZones.Zones[0].Id),
    			VpcId:      fooVpc.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = redis.NewInstance(ctx, "fooInstance", &redis.InstanceArgs{
    			ZoneIds: pulumi.StringArray{
    				*pulumi.String(fooZones.Zones[0].Id),
    			},
    			InstanceName:       pulumi.String("tf-test"),
    			ShardedCluster:     pulumi.Int(1),
    			Password:           pulumi.String("1qaz!QAZ12"),
    			NodeNumber:         pulumi.Int(2),
    			ShardCapacity:      pulumi.Int(1024),
    			ShardNumber:        pulumi.Int(2),
    			EngineVersion:      pulumi.String("5.0"),
    			SubnetId:           fooSubnet.ID(),
    			DeletionProtection: pulumi.String("disabled"),
    			VpcAuthMode:        pulumi.String("close"),
    			ChargeType:         pulumi.String("PostPaid"),
    			Port:               pulumi.Int(6381),
    			ProjectName:        pulumi.String("default"),
    			Tags: redis.InstanceTagArray{
    				&redis.InstanceTagArgs{
    					Key:   pulumi.String("k1"),
    					Value: pulumi.String("v1"),
    				},
    				&redis.InstanceTagArgs{
    					Key:   pulumi.String("k3"),
    					Value: pulumi.String("v3"),
    				},
    			},
    			ParamValues: redis.InstanceParamValueArray{
    				&redis.InstanceParamValueArgs{
    					Name:  pulumi.String("active-defrag-cycle-min"),
    					Value: pulumi.String("5"),
    				},
    				&redis.InstanceParamValueArgs{
    					Name:  pulumi.String("active-defrag-cycle-max"),
    					Value: pulumi.String("28"),
    				},
    			},
    			BackupPeriods: pulumi.IntArray{
    				pulumi.Int(1),
    				pulumi.Int(2),
    				pulumi.Int(3),
    			},
    			BackupHour:       pulumi.Int(6),
    			BackupActive:     pulumi.Bool(true),
    			CreateBackup:     pulumi.Bool(false),
    			ApplyImmediately: pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.volcengine.ecs.EcsFunctions;
    import com.pulumi.volcengine.ecs.inputs.ZonesArgs;
    import com.pulumi.volcengine.vpc.Vpc;
    import com.pulumi.volcengine.vpc.VpcArgs;
    import com.pulumi.volcengine.vpc.Subnet;
    import com.pulumi.volcengine.vpc.SubnetArgs;
    import com.pulumi.volcengine.redis.Instance;
    import com.pulumi.volcengine.redis.InstanceArgs;
    import com.pulumi.volcengine.redis.inputs.InstanceTagArgs;
    import com.pulumi.volcengine.redis.inputs.InstanceParamValueArgs;
    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 fooZones = EcsFunctions.Zones();
    
            var fooVpc = new Vpc("fooVpc", VpcArgs.builder()        
                .vpcName("acc-test-vpc")
                .cidrBlock("172.16.0.0/16")
                .build());
    
            var fooSubnet = new Subnet("fooSubnet", SubnetArgs.builder()        
                .subnetName("acc-test-subnet")
                .cidrBlock("172.16.0.0/24")
                .zoneId(fooZones.applyValue(zonesResult -> zonesResult.zones()[0].id()))
                .vpcId(fooVpc.id())
                .build());
    
            var fooInstance = new Instance("fooInstance", InstanceArgs.builder()        
                .zoneIds(fooZones.applyValue(zonesResult -> zonesResult.zones()[0].id()))
                .instanceName("tf-test")
                .shardedCluster(1)
                .password("1qaz!QAZ12")
                .nodeNumber(2)
                .shardCapacity(1024)
                .shardNumber(2)
                .engineVersion("5.0")
                .subnetId(fooSubnet.id())
                .deletionProtection("disabled")
                .vpcAuthMode("close")
                .chargeType("PostPaid")
                .port(6381)
                .projectName("default")
                .tags(            
                    InstanceTagArgs.builder()
                        .key("k1")
                        .value("v1")
                        .build(),
                    InstanceTagArgs.builder()
                        .key("k3")
                        .value("v3")
                        .build())
                .paramValues(            
                    InstanceParamValueArgs.builder()
                        .name("active-defrag-cycle-min")
                        .value("5")
                        .build(),
                    InstanceParamValueArgs.builder()
                        .name("active-defrag-cycle-max")
                        .value("28")
                        .build())
                .backupPeriods(            
                    1,
                    2,
                    3)
                .backupHour(6)
                .backupActive(true)
                .createBackup(false)
                .applyImmediately(true)
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_volcengine as volcengine
    
    foo_zones = volcengine.ecs.zones()
    foo_vpc = volcengine.vpc.Vpc("fooVpc",
        vpc_name="acc-test-vpc",
        cidr_block="172.16.0.0/16")
    foo_subnet = volcengine.vpc.Subnet("fooSubnet",
        subnet_name="acc-test-subnet",
        cidr_block="172.16.0.0/24",
        zone_id=foo_zones.zones[0].id,
        vpc_id=foo_vpc.id)
    foo_instance = volcengine.redis.Instance("fooInstance",
        zone_ids=[foo_zones.zones[0].id],
        instance_name="tf-test",
        sharded_cluster=1,
        password="1qaz!QAZ12",
        node_number=2,
        shard_capacity=1024,
        shard_number=2,
        engine_version="5.0",
        subnet_id=foo_subnet.id,
        deletion_protection="disabled",
        vpc_auth_mode="close",
        charge_type="PostPaid",
        port=6381,
        project_name="default",
        tags=[
            volcengine.redis.InstanceTagArgs(
                key="k1",
                value="v1",
            ),
            volcengine.redis.InstanceTagArgs(
                key="k3",
                value="v3",
            ),
        ],
        param_values=[
            volcengine.redis.InstanceParamValueArgs(
                name="active-defrag-cycle-min",
                value="5",
            ),
            volcengine.redis.InstanceParamValueArgs(
                name="active-defrag-cycle-max",
                value="28",
            ),
        ],
        backup_periods=[
            1,
            2,
            3,
        ],
        backup_hour=6,
        backup_active=True,
        create_backup=False,
        apply_immediately=True)
    
    import * as pulumi from "@pulumi/pulumi";
    import * as volcengine from "@pulumi/volcengine";
    import * as volcengine from "@volcengine/pulumi";
    
    const fooZones = volcengine.ecs.Zones({});
    const fooVpc = new volcengine.vpc.Vpc("fooVpc", {
        vpcName: "acc-test-vpc",
        cidrBlock: "172.16.0.0/16",
    });
    const fooSubnet = new volcengine.vpc.Subnet("fooSubnet", {
        subnetName: "acc-test-subnet",
        cidrBlock: "172.16.0.0/24",
        zoneId: fooZones.then(fooZones => fooZones.zones?.[0]?.id),
        vpcId: fooVpc.id,
    });
    const fooInstance = new volcengine.redis.Instance("fooInstance", {
        zoneIds: [fooZones.then(fooZones => fooZones.zones?.[0]?.id)],
        instanceName: "tf-test",
        shardedCluster: 1,
        password: "1qaz!QAZ12",
        nodeNumber: 2,
        shardCapacity: 1024,
        shardNumber: 2,
        engineVersion: "5.0",
        subnetId: fooSubnet.id,
        deletionProtection: "disabled",
        vpcAuthMode: "close",
        chargeType: "PostPaid",
        port: 6381,
        projectName: "default",
        tags: [
            {
                key: "k1",
                value: "v1",
            },
            {
                key: "k3",
                value: "v3",
            },
        ],
        paramValues: [
            {
                name: "active-defrag-cycle-min",
                value: "5",
            },
            {
                name: "active-defrag-cycle-max",
                value: "28",
            },
        ],
        backupPeriods: [
            1,
            2,
            3,
        ],
        backupHour: 6,
        backupActive: true,
        createBackup: false,
        applyImmediately: true,
    });
    
    resources:
      fooVpc:
        type: volcengine:vpc:Vpc
        properties:
          vpcName: acc-test-vpc
          cidrBlock: 172.16.0.0/16
      fooSubnet:
        type: volcengine:vpc:Subnet
        properties:
          subnetName: acc-test-subnet
          cidrBlock: 172.16.0.0/24
          zoneId: ${fooZones.zones[0].id}
          vpcId: ${fooVpc.id}
      fooInstance:
        type: volcengine:redis:Instance
        properties:
          zoneIds:
            - ${fooZones.zones[0].id}
          instanceName: tf-test
          shardedCluster: 1
          password: 1qaz!QAZ12
          nodeNumber: 2
          shardCapacity: 1024
          shardNumber: 2
          engineVersion: '5.0'
          subnetId: ${fooSubnet.id}
          deletionProtection: disabled
          vpcAuthMode: close
          chargeType: PostPaid
          port: 6381
          projectName: default
          tags:
            - key: k1
              value: v1
            - key: k3
              value: v3
          paramValues:
            - name: active-defrag-cycle-min
              value: '5'
            - name: active-defrag-cycle-max
              value: '28'
          backupPeriods:
            - 1
            - 2
            - 3
          backupHour: 6
          backupActive: true
          createBackup: false
          applyImmediately: true
    variables:
      fooZones:
        fn::invoke:
          Function: volcengine:ecs:Zones
          Arguments: {}
    

    Create Instance Resource

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

    Constructor syntax

    new Instance(name: string, args: InstanceArgs, opts?: CustomResourceOptions);
    @overload
    def Instance(resource_name: str,
                 args: InstanceArgs,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def Instance(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 engine_version: Optional[str] = None,
                 zone_ids: Optional[Sequence[str]] = None,
                 subnet_id: Optional[str] = None,
                 sharded_cluster: Optional[int] = None,
                 shard_capacity: Optional[int] = None,
                 password: Optional[str] = None,
                 node_number: Optional[int] = None,
                 charge_type: Optional[str] = None,
                 project_name: Optional[str] = None,
                 instance_name: Optional[str] = None,
                 create_backup: Optional[bool] = None,
                 param_values: Optional[Sequence[InstanceParamValueArgs]] = None,
                 apply_immediately: Optional[bool] = None,
                 port: Optional[int] = None,
                 deletion_protection: Optional[str] = None,
                 purchase_months: Optional[int] = None,
                 backup_periods: Optional[Sequence[int]] = None,
                 shard_number: Optional[int] = None,
                 backup_hour: Optional[int] = None,
                 backup_active: Optional[bool] = None,
                 tags: Optional[Sequence[InstanceTagArgs]] = None,
                 vpc_auth_mode: Optional[str] = None,
                 auto_renew: Optional[bool] = None)
    func NewInstance(ctx *Context, name string, args InstanceArgs, opts ...ResourceOption) (*Instance, error)
    public Instance(string name, InstanceArgs args, CustomResourceOptions? opts = null)
    public Instance(String name, InstanceArgs args)
    public Instance(String name, InstanceArgs args, CustomResourceOptions options)
    
    type: volcengine:redis:Instance
    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 InstanceArgs
    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 InstanceArgs
    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 InstanceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args InstanceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args InstanceArgs
    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 exampleinstanceResourceResourceFromRedisinstance = new Volcengine.Redis.Instance("exampleinstanceResourceResourceFromRedisinstance", new()
    {
        EngineVersion = "string",
        ZoneIds = new[]
        {
            "string",
        },
        SubnetId = "string",
        ShardedCluster = 0,
        ShardCapacity = 0,
        Password = "string",
        NodeNumber = 0,
        ChargeType = "string",
        ProjectName = "string",
        InstanceName = "string",
        CreateBackup = false,
        ParamValues = new[]
        {
            new Volcengine.Redis.Inputs.InstanceParamValueArgs
            {
                Name = "string",
                Value = "string",
            },
        },
        ApplyImmediately = false,
        Port = 0,
        DeletionProtection = "string",
        PurchaseMonths = 0,
        BackupPeriods = new[]
        {
            0,
        },
        ShardNumber = 0,
        BackupHour = 0,
        BackupActive = false,
        Tags = new[]
        {
            new Volcengine.Redis.Inputs.InstanceTagArgs
            {
                Key = "string",
                Value = "string",
            },
        },
        VpcAuthMode = "string",
        AutoRenew = false,
    });
    
    example, err := redis.NewInstance(ctx, "exampleinstanceResourceResourceFromRedisinstance", &redis.InstanceArgs{
    	EngineVersion: pulumi.String("string"),
    	ZoneIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	SubnetId:       pulumi.String("string"),
    	ShardedCluster: pulumi.Int(0),
    	ShardCapacity:  pulumi.Int(0),
    	Password:       pulumi.String("string"),
    	NodeNumber:     pulumi.Int(0),
    	ChargeType:     pulumi.String("string"),
    	ProjectName:    pulumi.String("string"),
    	InstanceName:   pulumi.String("string"),
    	CreateBackup:   pulumi.Bool(false),
    	ParamValues: redis.InstanceParamValueArray{
    		&redis.InstanceParamValueArgs{
    			Name:  pulumi.String("string"),
    			Value: pulumi.String("string"),
    		},
    	},
    	ApplyImmediately:   pulumi.Bool(false),
    	Port:               pulumi.Int(0),
    	DeletionProtection: pulumi.String("string"),
    	PurchaseMonths:     pulumi.Int(0),
    	BackupPeriods: pulumi.IntArray{
    		pulumi.Int(0),
    	},
    	ShardNumber:  pulumi.Int(0),
    	BackupHour:   pulumi.Int(0),
    	BackupActive: pulumi.Bool(false),
    	Tags: redis.InstanceTagArray{
    		&redis.InstanceTagArgs{
    			Key:   pulumi.String("string"),
    			Value: pulumi.String("string"),
    		},
    	},
    	VpcAuthMode: pulumi.String("string"),
    	AutoRenew:   pulumi.Bool(false),
    })
    
    var exampleinstanceResourceResourceFromRedisinstance = new Instance("exampleinstanceResourceResourceFromRedisinstance", InstanceArgs.builder()
        .engineVersion("string")
        .zoneIds("string")
        .subnetId("string")
        .shardedCluster(0)
        .shardCapacity(0)
        .password("string")
        .nodeNumber(0)
        .chargeType("string")
        .projectName("string")
        .instanceName("string")
        .createBackup(false)
        .paramValues(InstanceParamValueArgs.builder()
            .name("string")
            .value("string")
            .build())
        .applyImmediately(false)
        .port(0)
        .deletionProtection("string")
        .purchaseMonths(0)
        .backupPeriods(0)
        .shardNumber(0)
        .backupHour(0)
        .backupActive(false)
        .tags(InstanceTagArgs.builder()
            .key("string")
            .value("string")
            .build())
        .vpcAuthMode("string")
        .autoRenew(false)
        .build());
    
    exampleinstance_resource_resource_from_redisinstance = volcengine.redis.Instance("exampleinstanceResourceResourceFromRedisinstance",
        engine_version="string",
        zone_ids=["string"],
        subnet_id="string",
        sharded_cluster=0,
        shard_capacity=0,
        password="string",
        node_number=0,
        charge_type="string",
        project_name="string",
        instance_name="string",
        create_backup=False,
        param_values=[volcengine.redis.InstanceParamValueArgs(
            name="string",
            value="string",
        )],
        apply_immediately=False,
        port=0,
        deletion_protection="string",
        purchase_months=0,
        backup_periods=[0],
        shard_number=0,
        backup_hour=0,
        backup_active=False,
        tags=[volcengine.redis.InstanceTagArgs(
            key="string",
            value="string",
        )],
        vpc_auth_mode="string",
        auto_renew=False)
    
    const exampleinstanceResourceResourceFromRedisinstance = new volcengine.redis.Instance("exampleinstanceResourceResourceFromRedisinstance", {
        engineVersion: "string",
        zoneIds: ["string"],
        subnetId: "string",
        shardedCluster: 0,
        shardCapacity: 0,
        password: "string",
        nodeNumber: 0,
        chargeType: "string",
        projectName: "string",
        instanceName: "string",
        createBackup: false,
        paramValues: [{
            name: "string",
            value: "string",
        }],
        applyImmediately: false,
        port: 0,
        deletionProtection: "string",
        purchaseMonths: 0,
        backupPeriods: [0],
        shardNumber: 0,
        backupHour: 0,
        backupActive: false,
        tags: [{
            key: "string",
            value: "string",
        }],
        vpcAuthMode: "string",
        autoRenew: false,
    });
    
    type: volcengine:redis:Instance
    properties:
        applyImmediately: false
        autoRenew: false
        backupActive: false
        backupHour: 0
        backupPeriods:
            - 0
        chargeType: string
        createBackup: false
        deletionProtection: string
        engineVersion: string
        instanceName: string
        nodeNumber: 0
        paramValues:
            - name: string
              value: string
        password: string
        port: 0
        projectName: string
        purchaseMonths: 0
        shardCapacity: 0
        shardNumber: 0
        shardedCluster: 0
        subnetId: string
        tags:
            - key: string
              value: string
        vpcAuthMode: string
        zoneIds:
            - string
    

    Instance 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 Instance resource accepts the following input properties:

    EngineVersion string
    The engine version of redis instance. Valid value: 4.0, 5.0, 6.0.
    NodeNumber int
    The number of nodes in each shard, the valid value range is 1-6. When the value is 1, it means creating a single node instance, and this field can not be modified. When the value is greater than 1, it means creating a primary and secondary instance, and this field can be modified.
    Password string
    The account password. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    ShardCapacity int
    The memory capacity of each shard, unit is MiB. The valid value range is as fallows: When the value of ShardedCluster is 0: 256, 1024, 2048, 4096, 8192, 16384, 32768, 65536. When the value of ShardedCluster is 1: 1024, 2048, 4096, 8192, 16384. When the value of node_number is 1, the value of this field can not be 256.
    ShardedCluster int
    Whether enable sharded cluster for the current redis instance. Valid values: 0, 1. 0 means disable, 1 means enable.
    SubnetId string
    The subnet id of the redis instance. The specified subnet id must belong to the zone ids.
    ZoneIds List<string>
    The list of zone IDs of instance. When creating a single node instance, only one zone id can be specified.
    ApplyImmediately bool
    Whether to apply the instance configuration change operation immediately. The value of this field is false, means that the change operation will be applied within maintenance time.
    AutoRenew bool
    Whether to enable automatic renewal. This field is valid only when ChargeType is PrePaid, the default value is false. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    BackupActive bool
    Whether enable auto backup for redis instance. This field is valid and required when updating the backup plan of primary and secondary instance.
    BackupHour int
    The time period to start performing the backup. The valid value range is any integer between 0 and 23, where 0 means that the system will perform the backup in the period of 00:00~01:00, 1 means that the backup will be performed in the period of 01:00~02:00, and so on. This field is valid and required when updating the backup plan of primary and secondary instance.
    BackupPeriods List<int>
    The backup period. The valid value can be any integer between 1 and 7. Among them, 1 means backup every Monday, 2 means backup every Tuesday, and so on. This field is valid and required when updating the backup plan of primary and secondary instance.
    ChargeType string
    The charge type of redis instance. Valid value: PostPaid, PrePaid.
    CreateBackup bool
    Whether to create a final backup when modify the instance configuration or destroy the redis instance.
    DeletionProtection string
    Whether enable deletion protection for redis instance. Valid values: enabled, disabled(default).
    InstanceName string
    The name of the redis instance.
    ParamValues List<InstanceParamValue>
    The configuration item information to be modified. This field can only be added or modified. Deleting this field is invalid. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields, or use the command pulumi up to perform a modification operation.
    Port int
    The port of custom define private network address. The valid value range is 1024-65535. The default value is 6379.
    ProjectName string
    The project name to which the redis instance belongs, if this parameter is empty, the new redis instance will be added to the default project.
    PurchaseMonths int
    The purchase months of redis instance, the unit is month. the valid value range is as fallows: 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 24, 36. This field is valid and required when ChargeType is Prepaid. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    ShardNumber int
    The number of shards in redis instance, the valid value range is 2-256. This field is valid and required when the value of ShardedCluster is 1.
    Tags List<InstanceTag>
    Tags.
    VpcAuthMode string
    Whether to enable password-free access when connecting to an instance through a private network. Valid values: open, close.
    EngineVersion string
    The engine version of redis instance. Valid value: 4.0, 5.0, 6.0.
    NodeNumber int
    The number of nodes in each shard, the valid value range is 1-6. When the value is 1, it means creating a single node instance, and this field can not be modified. When the value is greater than 1, it means creating a primary and secondary instance, and this field can be modified.
    Password string
    The account password. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    ShardCapacity int
    The memory capacity of each shard, unit is MiB. The valid value range is as fallows: When the value of ShardedCluster is 0: 256, 1024, 2048, 4096, 8192, 16384, 32768, 65536. When the value of ShardedCluster is 1: 1024, 2048, 4096, 8192, 16384. When the value of node_number is 1, the value of this field can not be 256.
    ShardedCluster int
    Whether enable sharded cluster for the current redis instance. Valid values: 0, 1. 0 means disable, 1 means enable.
    SubnetId string
    The subnet id of the redis instance. The specified subnet id must belong to the zone ids.
    ZoneIds []string
    The list of zone IDs of instance. When creating a single node instance, only one zone id can be specified.
    ApplyImmediately bool
    Whether to apply the instance configuration change operation immediately. The value of this field is false, means that the change operation will be applied within maintenance time.
    AutoRenew bool
    Whether to enable automatic renewal. This field is valid only when ChargeType is PrePaid, the default value is false. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    BackupActive bool
    Whether enable auto backup for redis instance. This field is valid and required when updating the backup plan of primary and secondary instance.
    BackupHour int
    The time period to start performing the backup. The valid value range is any integer between 0 and 23, where 0 means that the system will perform the backup in the period of 00:00~01:00, 1 means that the backup will be performed in the period of 01:00~02:00, and so on. This field is valid and required when updating the backup plan of primary and secondary instance.
    BackupPeriods []int
    The backup period. The valid value can be any integer between 1 and 7. Among them, 1 means backup every Monday, 2 means backup every Tuesday, and so on. This field is valid and required when updating the backup plan of primary and secondary instance.
    ChargeType string
    The charge type of redis instance. Valid value: PostPaid, PrePaid.
    CreateBackup bool
    Whether to create a final backup when modify the instance configuration or destroy the redis instance.
    DeletionProtection string
    Whether enable deletion protection for redis instance. Valid values: enabled, disabled(default).
    InstanceName string
    The name of the redis instance.
    ParamValues []InstanceParamValueArgs
    The configuration item information to be modified. This field can only be added or modified. Deleting this field is invalid. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields, or use the command pulumi up to perform a modification operation.
    Port int
    The port of custom define private network address. The valid value range is 1024-65535. The default value is 6379.
    ProjectName string
    The project name to which the redis instance belongs, if this parameter is empty, the new redis instance will be added to the default project.
    PurchaseMonths int
    The purchase months of redis instance, the unit is month. the valid value range is as fallows: 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 24, 36. This field is valid and required when ChargeType is Prepaid. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    ShardNumber int
    The number of shards in redis instance, the valid value range is 2-256. This field is valid and required when the value of ShardedCluster is 1.
    Tags []InstanceTagArgs
    Tags.
    VpcAuthMode string
    Whether to enable password-free access when connecting to an instance through a private network. Valid values: open, close.
    engineVersion String
    The engine version of redis instance. Valid value: 4.0, 5.0, 6.0.
    nodeNumber Integer
    The number of nodes in each shard, the valid value range is 1-6. When the value is 1, it means creating a single node instance, and this field can not be modified. When the value is greater than 1, it means creating a primary and secondary instance, and this field can be modified.
    password String
    The account password. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    shardCapacity Integer
    The memory capacity of each shard, unit is MiB. The valid value range is as fallows: When the value of ShardedCluster is 0: 256, 1024, 2048, 4096, 8192, 16384, 32768, 65536. When the value of ShardedCluster is 1: 1024, 2048, 4096, 8192, 16384. When the value of node_number is 1, the value of this field can not be 256.
    shardedCluster Integer
    Whether enable sharded cluster for the current redis instance. Valid values: 0, 1. 0 means disable, 1 means enable.
    subnetId String
    The subnet id of the redis instance. The specified subnet id must belong to the zone ids.
    zoneIds List<String>
    The list of zone IDs of instance. When creating a single node instance, only one zone id can be specified.
    applyImmediately Boolean
    Whether to apply the instance configuration change operation immediately. The value of this field is false, means that the change operation will be applied within maintenance time.
    autoRenew Boolean
    Whether to enable automatic renewal. This field is valid only when ChargeType is PrePaid, the default value is false. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    backupActive Boolean
    Whether enable auto backup for redis instance. This field is valid and required when updating the backup plan of primary and secondary instance.
    backupHour Integer
    The time period to start performing the backup. The valid value range is any integer between 0 and 23, where 0 means that the system will perform the backup in the period of 00:00~01:00, 1 means that the backup will be performed in the period of 01:00~02:00, and so on. This field is valid and required when updating the backup plan of primary and secondary instance.
    backupPeriods List<Integer>
    The backup period. The valid value can be any integer between 1 and 7. Among them, 1 means backup every Monday, 2 means backup every Tuesday, and so on. This field is valid and required when updating the backup plan of primary and secondary instance.
    chargeType String
    The charge type of redis instance. Valid value: PostPaid, PrePaid.
    createBackup Boolean
    Whether to create a final backup when modify the instance configuration or destroy the redis instance.
    deletionProtection String
    Whether enable deletion protection for redis instance. Valid values: enabled, disabled(default).
    instanceName String
    The name of the redis instance.
    paramValues List<InstanceParamValue>
    The configuration item information to be modified. This field can only be added or modified. Deleting this field is invalid. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields, or use the command pulumi up to perform a modification operation.
    port Integer
    The port of custom define private network address. The valid value range is 1024-65535. The default value is 6379.
    projectName String
    The project name to which the redis instance belongs, if this parameter is empty, the new redis instance will be added to the default project.
    purchaseMonths Integer
    The purchase months of redis instance, the unit is month. the valid value range is as fallows: 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 24, 36. This field is valid and required when ChargeType is Prepaid. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    shardNumber Integer
    The number of shards in redis instance, the valid value range is 2-256. This field is valid and required when the value of ShardedCluster is 1.
    tags List<InstanceTag>
    Tags.
    vpcAuthMode String
    Whether to enable password-free access when connecting to an instance through a private network. Valid values: open, close.
    engineVersion string
    The engine version of redis instance. Valid value: 4.0, 5.0, 6.0.
    nodeNumber number
    The number of nodes in each shard, the valid value range is 1-6. When the value is 1, it means creating a single node instance, and this field can not be modified. When the value is greater than 1, it means creating a primary and secondary instance, and this field can be modified.
    password string
    The account password. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    shardCapacity number
    The memory capacity of each shard, unit is MiB. The valid value range is as fallows: When the value of ShardedCluster is 0: 256, 1024, 2048, 4096, 8192, 16384, 32768, 65536. When the value of ShardedCluster is 1: 1024, 2048, 4096, 8192, 16384. When the value of node_number is 1, the value of this field can not be 256.
    shardedCluster number
    Whether enable sharded cluster for the current redis instance. Valid values: 0, 1. 0 means disable, 1 means enable.
    subnetId string
    The subnet id of the redis instance. The specified subnet id must belong to the zone ids.
    zoneIds string[]
    The list of zone IDs of instance. When creating a single node instance, only one zone id can be specified.
    applyImmediately boolean
    Whether to apply the instance configuration change operation immediately. The value of this field is false, means that the change operation will be applied within maintenance time.
    autoRenew boolean
    Whether to enable automatic renewal. This field is valid only when ChargeType is PrePaid, the default value is false. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    backupActive boolean
    Whether enable auto backup for redis instance. This field is valid and required when updating the backup plan of primary and secondary instance.
    backupHour number
    The time period to start performing the backup. The valid value range is any integer between 0 and 23, where 0 means that the system will perform the backup in the period of 00:00~01:00, 1 means that the backup will be performed in the period of 01:00~02:00, and so on. This field is valid and required when updating the backup plan of primary and secondary instance.
    backupPeriods number[]
    The backup period. The valid value can be any integer between 1 and 7. Among them, 1 means backup every Monday, 2 means backup every Tuesday, and so on. This field is valid and required when updating the backup plan of primary and secondary instance.
    chargeType string
    The charge type of redis instance. Valid value: PostPaid, PrePaid.
    createBackup boolean
    Whether to create a final backup when modify the instance configuration or destroy the redis instance.
    deletionProtection string
    Whether enable deletion protection for redis instance. Valid values: enabled, disabled(default).
    instanceName string
    The name of the redis instance.
    paramValues InstanceParamValue[]
    The configuration item information to be modified. This field can only be added or modified. Deleting this field is invalid. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields, or use the command pulumi up to perform a modification operation.
    port number
    The port of custom define private network address. The valid value range is 1024-65535. The default value is 6379.
    projectName string
    The project name to which the redis instance belongs, if this parameter is empty, the new redis instance will be added to the default project.
    purchaseMonths number
    The purchase months of redis instance, the unit is month. the valid value range is as fallows: 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 24, 36. This field is valid and required when ChargeType is Prepaid. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    shardNumber number
    The number of shards in redis instance, the valid value range is 2-256. This field is valid and required when the value of ShardedCluster is 1.
    tags InstanceTag[]
    Tags.
    vpcAuthMode string
    Whether to enable password-free access when connecting to an instance through a private network. Valid values: open, close.
    engine_version str
    The engine version of redis instance. Valid value: 4.0, 5.0, 6.0.
    node_number int
    The number of nodes in each shard, the valid value range is 1-6. When the value is 1, it means creating a single node instance, and this field can not be modified. When the value is greater than 1, it means creating a primary and secondary instance, and this field can be modified.
    password str
    The account password. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    shard_capacity int
    The memory capacity of each shard, unit is MiB. The valid value range is as fallows: When the value of ShardedCluster is 0: 256, 1024, 2048, 4096, 8192, 16384, 32768, 65536. When the value of ShardedCluster is 1: 1024, 2048, 4096, 8192, 16384. When the value of node_number is 1, the value of this field can not be 256.
    sharded_cluster int
    Whether enable sharded cluster for the current redis instance. Valid values: 0, 1. 0 means disable, 1 means enable.
    subnet_id str
    The subnet id of the redis instance. The specified subnet id must belong to the zone ids.
    zone_ids Sequence[str]
    The list of zone IDs of instance. When creating a single node instance, only one zone id can be specified.
    apply_immediately bool
    Whether to apply the instance configuration change operation immediately. The value of this field is false, means that the change operation will be applied within maintenance time.
    auto_renew bool
    Whether to enable automatic renewal. This field is valid only when ChargeType is PrePaid, the default value is false. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    backup_active bool
    Whether enable auto backup for redis instance. This field is valid and required when updating the backup plan of primary and secondary instance.
    backup_hour int
    The time period to start performing the backup. The valid value range is any integer between 0 and 23, where 0 means that the system will perform the backup in the period of 00:00~01:00, 1 means that the backup will be performed in the period of 01:00~02:00, and so on. This field is valid and required when updating the backup plan of primary and secondary instance.
    backup_periods Sequence[int]
    The backup period. The valid value can be any integer between 1 and 7. Among them, 1 means backup every Monday, 2 means backup every Tuesday, and so on. This field is valid and required when updating the backup plan of primary and secondary instance.
    charge_type str
    The charge type of redis instance. Valid value: PostPaid, PrePaid.
    create_backup bool
    Whether to create a final backup when modify the instance configuration or destroy the redis instance.
    deletion_protection str
    Whether enable deletion protection for redis instance. Valid values: enabled, disabled(default).
    instance_name str
    The name of the redis instance.
    param_values Sequence[InstanceParamValueArgs]
    The configuration item information to be modified. This field can only be added or modified. Deleting this field is invalid. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields, or use the command pulumi up to perform a modification operation.
    port int
    The port of custom define private network address. The valid value range is 1024-65535. The default value is 6379.
    project_name str
    The project name to which the redis instance belongs, if this parameter is empty, the new redis instance will be added to the default project.
    purchase_months int
    The purchase months of redis instance, the unit is month. the valid value range is as fallows: 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 24, 36. This field is valid and required when ChargeType is Prepaid. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    shard_number int
    The number of shards in redis instance, the valid value range is 2-256. This field is valid and required when the value of ShardedCluster is 1.
    tags Sequence[InstanceTagArgs]
    Tags.
    vpc_auth_mode str
    Whether to enable password-free access when connecting to an instance through a private network. Valid values: open, close.
    engineVersion String
    The engine version of redis instance. Valid value: 4.0, 5.0, 6.0.
    nodeNumber Number
    The number of nodes in each shard, the valid value range is 1-6. When the value is 1, it means creating a single node instance, and this field can not be modified. When the value is greater than 1, it means creating a primary and secondary instance, and this field can be modified.
    password String
    The account password. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    shardCapacity Number
    The memory capacity of each shard, unit is MiB. The valid value range is as fallows: When the value of ShardedCluster is 0: 256, 1024, 2048, 4096, 8192, 16384, 32768, 65536. When the value of ShardedCluster is 1: 1024, 2048, 4096, 8192, 16384. When the value of node_number is 1, the value of this field can not be 256.
    shardedCluster Number
    Whether enable sharded cluster for the current redis instance. Valid values: 0, 1. 0 means disable, 1 means enable.
    subnetId String
    The subnet id of the redis instance. The specified subnet id must belong to the zone ids.
    zoneIds List<String>
    The list of zone IDs of instance. When creating a single node instance, only one zone id can be specified.
    applyImmediately Boolean
    Whether to apply the instance configuration change operation immediately. The value of this field is false, means that the change operation will be applied within maintenance time.
    autoRenew Boolean
    Whether to enable automatic renewal. This field is valid only when ChargeType is PrePaid, the default value is false. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    backupActive Boolean
    Whether enable auto backup for redis instance. This field is valid and required when updating the backup plan of primary and secondary instance.
    backupHour Number
    The time period to start performing the backup. The valid value range is any integer between 0 and 23, where 0 means that the system will perform the backup in the period of 00:00~01:00, 1 means that the backup will be performed in the period of 01:00~02:00, and so on. This field is valid and required when updating the backup plan of primary and secondary instance.
    backupPeriods List<Number>
    The backup period. The valid value can be any integer between 1 and 7. Among them, 1 means backup every Monday, 2 means backup every Tuesday, and so on. This field is valid and required when updating the backup plan of primary and secondary instance.
    chargeType String
    The charge type of redis instance. Valid value: PostPaid, PrePaid.
    createBackup Boolean
    Whether to create a final backup when modify the instance configuration or destroy the redis instance.
    deletionProtection String
    Whether enable deletion protection for redis instance. Valid values: enabled, disabled(default).
    instanceName String
    The name of the redis instance.
    paramValues List<Property Map>
    The configuration item information to be modified. This field can only be added or modified. Deleting this field is invalid. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields, or use the command pulumi up to perform a modification operation.
    port Number
    The port of custom define private network address. The valid value range is 1024-65535. The default value is 6379.
    projectName String
    The project name to which the redis instance belongs, if this parameter is empty, the new redis instance will be added to the default project.
    purchaseMonths Number
    The purchase months of redis instance, the unit is month. the valid value range is as fallows: 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 24, 36. This field is valid and required when ChargeType is Prepaid. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    shardNumber Number
    The number of shards in redis instance, the valid value range is 2-256. This field is valid and required when the value of ShardedCluster is 1.
    tags List<Property Map>
    Tags.
    vpcAuthMode String
    Whether to enable password-free access when connecting to an instance through a private network. Valid values: open, close.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Instance 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 str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Instance Resource

    Get an existing Instance 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?: InstanceState, opts?: CustomResourceOptions): Instance
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            apply_immediately: Optional[bool] = None,
            auto_renew: Optional[bool] = None,
            backup_active: Optional[bool] = None,
            backup_hour: Optional[int] = None,
            backup_periods: Optional[Sequence[int]] = None,
            charge_type: Optional[str] = None,
            create_backup: Optional[bool] = None,
            deletion_protection: Optional[str] = None,
            engine_version: Optional[str] = None,
            instance_name: Optional[str] = None,
            node_number: Optional[int] = None,
            param_values: Optional[Sequence[InstanceParamValueArgs]] = None,
            password: Optional[str] = None,
            port: Optional[int] = None,
            project_name: Optional[str] = None,
            purchase_months: Optional[int] = None,
            shard_capacity: Optional[int] = None,
            shard_number: Optional[int] = None,
            sharded_cluster: Optional[int] = None,
            subnet_id: Optional[str] = None,
            tags: Optional[Sequence[InstanceTagArgs]] = None,
            vpc_auth_mode: Optional[str] = None,
            zone_ids: Optional[Sequence[str]] = None) -> Instance
    func GetInstance(ctx *Context, name string, id IDInput, state *InstanceState, opts ...ResourceOption) (*Instance, error)
    public static Instance Get(string name, Input<string> id, InstanceState? state, CustomResourceOptions? opts = null)
    public static Instance get(String name, Output<String> id, InstanceState 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:
    ApplyImmediately bool
    Whether to apply the instance configuration change operation immediately. The value of this field is false, means that the change operation will be applied within maintenance time.
    AutoRenew bool
    Whether to enable automatic renewal. This field is valid only when ChargeType is PrePaid, the default value is false. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    BackupActive bool
    Whether enable auto backup for redis instance. This field is valid and required when updating the backup plan of primary and secondary instance.
    BackupHour int
    The time period to start performing the backup. The valid value range is any integer between 0 and 23, where 0 means that the system will perform the backup in the period of 00:00~01:00, 1 means that the backup will be performed in the period of 01:00~02:00, and so on. This field is valid and required when updating the backup plan of primary and secondary instance.
    BackupPeriods List<int>
    The backup period. The valid value can be any integer between 1 and 7. Among them, 1 means backup every Monday, 2 means backup every Tuesday, and so on. This field is valid and required when updating the backup plan of primary and secondary instance.
    ChargeType string
    The charge type of redis instance. Valid value: PostPaid, PrePaid.
    CreateBackup bool
    Whether to create a final backup when modify the instance configuration or destroy the redis instance.
    DeletionProtection string
    Whether enable deletion protection for redis instance. Valid values: enabled, disabled(default).
    EngineVersion string
    The engine version of redis instance. Valid value: 4.0, 5.0, 6.0.
    InstanceName string
    The name of the redis instance.
    NodeNumber int
    The number of nodes in each shard, the valid value range is 1-6. When the value is 1, it means creating a single node instance, and this field can not be modified. When the value is greater than 1, it means creating a primary and secondary instance, and this field can be modified.
    ParamValues List<InstanceParamValue>
    The configuration item information to be modified. This field can only be added or modified. Deleting this field is invalid. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields, or use the command pulumi up to perform a modification operation.
    Password string
    The account password. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    Port int
    The port of custom define private network address. The valid value range is 1024-65535. The default value is 6379.
    ProjectName string
    The project name to which the redis instance belongs, if this parameter is empty, the new redis instance will be added to the default project.
    PurchaseMonths int
    The purchase months of redis instance, the unit is month. the valid value range is as fallows: 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 24, 36. This field is valid and required when ChargeType is Prepaid. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    ShardCapacity int
    The memory capacity of each shard, unit is MiB. The valid value range is as fallows: When the value of ShardedCluster is 0: 256, 1024, 2048, 4096, 8192, 16384, 32768, 65536. When the value of ShardedCluster is 1: 1024, 2048, 4096, 8192, 16384. When the value of node_number is 1, the value of this field can not be 256.
    ShardNumber int
    The number of shards in redis instance, the valid value range is 2-256. This field is valid and required when the value of ShardedCluster is 1.
    ShardedCluster int
    Whether enable sharded cluster for the current redis instance. Valid values: 0, 1. 0 means disable, 1 means enable.
    SubnetId string
    The subnet id of the redis instance. The specified subnet id must belong to the zone ids.
    Tags List<InstanceTag>
    Tags.
    VpcAuthMode string
    Whether to enable password-free access when connecting to an instance through a private network. Valid values: open, close.
    ZoneIds List<string>
    The list of zone IDs of instance. When creating a single node instance, only one zone id can be specified.
    ApplyImmediately bool
    Whether to apply the instance configuration change operation immediately. The value of this field is false, means that the change operation will be applied within maintenance time.
    AutoRenew bool
    Whether to enable automatic renewal. This field is valid only when ChargeType is PrePaid, the default value is false. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    BackupActive bool
    Whether enable auto backup for redis instance. This field is valid and required when updating the backup plan of primary and secondary instance.
    BackupHour int
    The time period to start performing the backup. The valid value range is any integer between 0 and 23, where 0 means that the system will perform the backup in the period of 00:00~01:00, 1 means that the backup will be performed in the period of 01:00~02:00, and so on. This field is valid and required when updating the backup plan of primary and secondary instance.
    BackupPeriods []int
    The backup period. The valid value can be any integer between 1 and 7. Among them, 1 means backup every Monday, 2 means backup every Tuesday, and so on. This field is valid and required when updating the backup plan of primary and secondary instance.
    ChargeType string
    The charge type of redis instance. Valid value: PostPaid, PrePaid.
    CreateBackup bool
    Whether to create a final backup when modify the instance configuration or destroy the redis instance.
    DeletionProtection string
    Whether enable deletion protection for redis instance. Valid values: enabled, disabled(default).
    EngineVersion string
    The engine version of redis instance. Valid value: 4.0, 5.0, 6.0.
    InstanceName string
    The name of the redis instance.
    NodeNumber int
    The number of nodes in each shard, the valid value range is 1-6. When the value is 1, it means creating a single node instance, and this field can not be modified. When the value is greater than 1, it means creating a primary and secondary instance, and this field can be modified.
    ParamValues []InstanceParamValueArgs
    The configuration item information to be modified. This field can only be added or modified. Deleting this field is invalid. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields, or use the command pulumi up to perform a modification operation.
    Password string
    The account password. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    Port int
    The port of custom define private network address. The valid value range is 1024-65535. The default value is 6379.
    ProjectName string
    The project name to which the redis instance belongs, if this parameter is empty, the new redis instance will be added to the default project.
    PurchaseMonths int
    The purchase months of redis instance, the unit is month. the valid value range is as fallows: 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 24, 36. This field is valid and required when ChargeType is Prepaid. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    ShardCapacity int
    The memory capacity of each shard, unit is MiB. The valid value range is as fallows: When the value of ShardedCluster is 0: 256, 1024, 2048, 4096, 8192, 16384, 32768, 65536. When the value of ShardedCluster is 1: 1024, 2048, 4096, 8192, 16384. When the value of node_number is 1, the value of this field can not be 256.
    ShardNumber int
    The number of shards in redis instance, the valid value range is 2-256. This field is valid and required when the value of ShardedCluster is 1.
    ShardedCluster int
    Whether enable sharded cluster for the current redis instance. Valid values: 0, 1. 0 means disable, 1 means enable.
    SubnetId string
    The subnet id of the redis instance. The specified subnet id must belong to the zone ids.
    Tags []InstanceTagArgs
    Tags.
    VpcAuthMode string
    Whether to enable password-free access when connecting to an instance through a private network. Valid values: open, close.
    ZoneIds []string
    The list of zone IDs of instance. When creating a single node instance, only one zone id can be specified.
    applyImmediately Boolean
    Whether to apply the instance configuration change operation immediately. The value of this field is false, means that the change operation will be applied within maintenance time.
    autoRenew Boolean
    Whether to enable automatic renewal. This field is valid only when ChargeType is PrePaid, the default value is false. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    backupActive Boolean
    Whether enable auto backup for redis instance. This field is valid and required when updating the backup plan of primary and secondary instance.
    backupHour Integer
    The time period to start performing the backup. The valid value range is any integer between 0 and 23, where 0 means that the system will perform the backup in the period of 00:00~01:00, 1 means that the backup will be performed in the period of 01:00~02:00, and so on. This field is valid and required when updating the backup plan of primary and secondary instance.
    backupPeriods List<Integer>
    The backup period. The valid value can be any integer between 1 and 7. Among them, 1 means backup every Monday, 2 means backup every Tuesday, and so on. This field is valid and required when updating the backup plan of primary and secondary instance.
    chargeType String
    The charge type of redis instance. Valid value: PostPaid, PrePaid.
    createBackup Boolean
    Whether to create a final backup when modify the instance configuration or destroy the redis instance.
    deletionProtection String
    Whether enable deletion protection for redis instance. Valid values: enabled, disabled(default).
    engineVersion String
    The engine version of redis instance. Valid value: 4.0, 5.0, 6.0.
    instanceName String
    The name of the redis instance.
    nodeNumber Integer
    The number of nodes in each shard, the valid value range is 1-6. When the value is 1, it means creating a single node instance, and this field can not be modified. When the value is greater than 1, it means creating a primary and secondary instance, and this field can be modified.
    paramValues List<InstanceParamValue>
    The configuration item information to be modified. This field can only be added or modified. Deleting this field is invalid. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields, or use the command pulumi up to perform a modification operation.
    password String
    The account password. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    port Integer
    The port of custom define private network address. The valid value range is 1024-65535. The default value is 6379.
    projectName String
    The project name to which the redis instance belongs, if this parameter is empty, the new redis instance will be added to the default project.
    purchaseMonths Integer
    The purchase months of redis instance, the unit is month. the valid value range is as fallows: 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 24, 36. This field is valid and required when ChargeType is Prepaid. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    shardCapacity Integer
    The memory capacity of each shard, unit is MiB. The valid value range is as fallows: When the value of ShardedCluster is 0: 256, 1024, 2048, 4096, 8192, 16384, 32768, 65536. When the value of ShardedCluster is 1: 1024, 2048, 4096, 8192, 16384. When the value of node_number is 1, the value of this field can not be 256.
    shardNumber Integer
    The number of shards in redis instance, the valid value range is 2-256. This field is valid and required when the value of ShardedCluster is 1.
    shardedCluster Integer
    Whether enable sharded cluster for the current redis instance. Valid values: 0, 1. 0 means disable, 1 means enable.
    subnetId String
    The subnet id of the redis instance. The specified subnet id must belong to the zone ids.
    tags List<InstanceTag>
    Tags.
    vpcAuthMode String
    Whether to enable password-free access when connecting to an instance through a private network. Valid values: open, close.
    zoneIds List<String>
    The list of zone IDs of instance. When creating a single node instance, only one zone id can be specified.
    applyImmediately boolean
    Whether to apply the instance configuration change operation immediately. The value of this field is false, means that the change operation will be applied within maintenance time.
    autoRenew boolean
    Whether to enable automatic renewal. This field is valid only when ChargeType is PrePaid, the default value is false. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    backupActive boolean
    Whether enable auto backup for redis instance. This field is valid and required when updating the backup plan of primary and secondary instance.
    backupHour number
    The time period to start performing the backup. The valid value range is any integer between 0 and 23, where 0 means that the system will perform the backup in the period of 00:00~01:00, 1 means that the backup will be performed in the period of 01:00~02:00, and so on. This field is valid and required when updating the backup plan of primary and secondary instance.
    backupPeriods number[]
    The backup period. The valid value can be any integer between 1 and 7. Among them, 1 means backup every Monday, 2 means backup every Tuesday, and so on. This field is valid and required when updating the backup plan of primary and secondary instance.
    chargeType string
    The charge type of redis instance. Valid value: PostPaid, PrePaid.
    createBackup boolean
    Whether to create a final backup when modify the instance configuration or destroy the redis instance.
    deletionProtection string
    Whether enable deletion protection for redis instance. Valid values: enabled, disabled(default).
    engineVersion string
    The engine version of redis instance. Valid value: 4.0, 5.0, 6.0.
    instanceName string
    The name of the redis instance.
    nodeNumber number
    The number of nodes in each shard, the valid value range is 1-6. When the value is 1, it means creating a single node instance, and this field can not be modified. When the value is greater than 1, it means creating a primary and secondary instance, and this field can be modified.
    paramValues InstanceParamValue[]
    The configuration item information to be modified. This field can only be added or modified. Deleting this field is invalid. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields, or use the command pulumi up to perform a modification operation.
    password string
    The account password. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    port number
    The port of custom define private network address. The valid value range is 1024-65535. The default value is 6379.
    projectName string
    The project name to which the redis instance belongs, if this parameter is empty, the new redis instance will be added to the default project.
    purchaseMonths number
    The purchase months of redis instance, the unit is month. the valid value range is as fallows: 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 24, 36. This field is valid and required when ChargeType is Prepaid. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    shardCapacity number
    The memory capacity of each shard, unit is MiB. The valid value range is as fallows: When the value of ShardedCluster is 0: 256, 1024, 2048, 4096, 8192, 16384, 32768, 65536. When the value of ShardedCluster is 1: 1024, 2048, 4096, 8192, 16384. When the value of node_number is 1, the value of this field can not be 256.
    shardNumber number
    The number of shards in redis instance, the valid value range is 2-256. This field is valid and required when the value of ShardedCluster is 1.
    shardedCluster number
    Whether enable sharded cluster for the current redis instance. Valid values: 0, 1. 0 means disable, 1 means enable.
    subnetId string
    The subnet id of the redis instance. The specified subnet id must belong to the zone ids.
    tags InstanceTag[]
    Tags.
    vpcAuthMode string
    Whether to enable password-free access when connecting to an instance through a private network. Valid values: open, close.
    zoneIds string[]
    The list of zone IDs of instance. When creating a single node instance, only one zone id can be specified.
    apply_immediately bool
    Whether to apply the instance configuration change operation immediately. The value of this field is false, means that the change operation will be applied within maintenance time.
    auto_renew bool
    Whether to enable automatic renewal. This field is valid only when ChargeType is PrePaid, the default value is false. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    backup_active bool
    Whether enable auto backup for redis instance. This field is valid and required when updating the backup plan of primary and secondary instance.
    backup_hour int
    The time period to start performing the backup. The valid value range is any integer between 0 and 23, where 0 means that the system will perform the backup in the period of 00:00~01:00, 1 means that the backup will be performed in the period of 01:00~02:00, and so on. This field is valid and required when updating the backup plan of primary and secondary instance.
    backup_periods Sequence[int]
    The backup period. The valid value can be any integer between 1 and 7. Among them, 1 means backup every Monday, 2 means backup every Tuesday, and so on. This field is valid and required when updating the backup plan of primary and secondary instance.
    charge_type str
    The charge type of redis instance. Valid value: PostPaid, PrePaid.
    create_backup bool
    Whether to create a final backup when modify the instance configuration or destroy the redis instance.
    deletion_protection str
    Whether enable deletion protection for redis instance. Valid values: enabled, disabled(default).
    engine_version str
    The engine version of redis instance. Valid value: 4.0, 5.0, 6.0.
    instance_name str
    The name of the redis instance.
    node_number int
    The number of nodes in each shard, the valid value range is 1-6. When the value is 1, it means creating a single node instance, and this field can not be modified. When the value is greater than 1, it means creating a primary and secondary instance, and this field can be modified.
    param_values Sequence[InstanceParamValueArgs]
    The configuration item information to be modified. This field can only be added or modified. Deleting this field is invalid. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields, or use the command pulumi up to perform a modification operation.
    password str
    The account password. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    port int
    The port of custom define private network address. The valid value range is 1024-65535. The default value is 6379.
    project_name str
    The project name to which the redis instance belongs, if this parameter is empty, the new redis instance will be added to the default project.
    purchase_months int
    The purchase months of redis instance, the unit is month. the valid value range is as fallows: 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 24, 36. This field is valid and required when ChargeType is Prepaid. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    shard_capacity int
    The memory capacity of each shard, unit is MiB. The valid value range is as fallows: When the value of ShardedCluster is 0: 256, 1024, 2048, 4096, 8192, 16384, 32768, 65536. When the value of ShardedCluster is 1: 1024, 2048, 4096, 8192, 16384. When the value of node_number is 1, the value of this field can not be 256.
    shard_number int
    The number of shards in redis instance, the valid value range is 2-256. This field is valid and required when the value of ShardedCluster is 1.
    sharded_cluster int
    Whether enable sharded cluster for the current redis instance. Valid values: 0, 1. 0 means disable, 1 means enable.
    subnet_id str
    The subnet id of the redis instance. The specified subnet id must belong to the zone ids.
    tags Sequence[InstanceTagArgs]
    Tags.
    vpc_auth_mode str
    Whether to enable password-free access when connecting to an instance through a private network. Valid values: open, close.
    zone_ids Sequence[str]
    The list of zone IDs of instance. When creating a single node instance, only one zone id can be specified.
    applyImmediately Boolean
    Whether to apply the instance configuration change operation immediately. The value of this field is false, means that the change operation will be applied within maintenance time.
    autoRenew Boolean
    Whether to enable automatic renewal. This field is valid only when ChargeType is PrePaid, the default value is false. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    backupActive Boolean
    Whether enable auto backup for redis instance. This field is valid and required when updating the backup plan of primary and secondary instance.
    backupHour Number
    The time period to start performing the backup. The valid value range is any integer between 0 and 23, where 0 means that the system will perform the backup in the period of 00:00~01:00, 1 means that the backup will be performed in the period of 01:00~02:00, and so on. This field is valid and required when updating the backup plan of primary and secondary instance.
    backupPeriods List<Number>
    The backup period. The valid value can be any integer between 1 and 7. Among them, 1 means backup every Monday, 2 means backup every Tuesday, and so on. This field is valid and required when updating the backup plan of primary and secondary instance.
    chargeType String
    The charge type of redis instance. Valid value: PostPaid, PrePaid.
    createBackup Boolean
    Whether to create a final backup when modify the instance configuration or destroy the redis instance.
    deletionProtection String
    Whether enable deletion protection for redis instance. Valid values: enabled, disabled(default).
    engineVersion String
    The engine version of redis instance. Valid value: 4.0, 5.0, 6.0.
    instanceName String
    The name of the redis instance.
    nodeNumber Number
    The number of nodes in each shard, the valid value range is 1-6. When the value is 1, it means creating a single node instance, and this field can not be modified. When the value is greater than 1, it means creating a primary and secondary instance, and this field can be modified.
    paramValues List<Property Map>
    The configuration item information to be modified. This field can only be added or modified. Deleting this field is invalid. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields, or use the command pulumi up to perform a modification operation.
    password String
    The account password. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    port Number
    The port of custom define private network address. The valid value range is 1024-65535. The default value is 6379.
    projectName String
    The project name to which the redis instance belongs, if this parameter is empty, the new redis instance will be added to the default project.
    purchaseMonths Number
    The purchase months of redis instance, the unit is month. the valid value range is as fallows: 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 24, 36. This field is valid and required when ChargeType is Prepaid. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignore_changes ignore changes in fields.
    shardCapacity Number
    The memory capacity of each shard, unit is MiB. The valid value range is as fallows: When the value of ShardedCluster is 0: 256, 1024, 2048, 4096, 8192, 16384, 32768, 65536. When the value of ShardedCluster is 1: 1024, 2048, 4096, 8192, 16384. When the value of node_number is 1, the value of this field can not be 256.
    shardNumber Number
    The number of shards in redis instance, the valid value range is 2-256. This field is valid and required when the value of ShardedCluster is 1.
    shardedCluster Number
    Whether enable sharded cluster for the current redis instance. Valid values: 0, 1. 0 means disable, 1 means enable.
    subnetId String
    The subnet id of the redis instance. The specified subnet id must belong to the zone ids.
    tags List<Property Map>
    Tags.
    vpcAuthMode String
    Whether to enable password-free access when connecting to an instance through a private network. Valid values: open, close.
    zoneIds List<String>
    The list of zone IDs of instance. When creating a single node instance, only one zone id can be specified.

    Supporting Types

    InstanceParamValue, InstanceParamValueArgs

    Name string
    The name of configuration parameter.
    Value string
    The value of configuration parameter.
    Name string
    The name of configuration parameter.
    Value string
    The value of configuration parameter.
    name String
    The name of configuration parameter.
    value String
    The value of configuration parameter.
    name string
    The name of configuration parameter.
    value string
    The value of configuration parameter.
    name str
    The name of configuration parameter.
    value str
    The value of configuration parameter.
    name String
    The name of configuration parameter.
    value String
    The value of configuration parameter.

    InstanceTag, InstanceTagArgs

    Key string
    The Key of Tags.
    Value string
    The Value of Tags.
    Key string
    The Key of Tags.
    Value string
    The Value of Tags.
    key String
    The Key of Tags.
    value String
    The Value of Tags.
    key string
    The Key of Tags.
    value string
    The Value of Tags.
    key str
    The Key of Tags.
    value str
    The Value of Tags.
    key String
    The Key of Tags.
    value String
    The Value of Tags.

    Package Details

    Repository
    volcengine volcengine/pulumi-volcengine
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the volcengine Terraform Provider.
    volcengine logo
    Volcengine v0.0.24 published on Tuesday, Jun 25, 2024 by Volcengine