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

alicloud.drds.PolardbxInstance

Explore with Pulumi AI

Provides a DRDS Polardb X Instance resource.

For information about DRDS Polardb X Instance and how to use it, see What is Polardb X Instance.

NOTE: Available since v1.211.0.

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") || "terraform-example";
const _default = alicloud.getZones({
    availableResourceCreation: "VSwitch",
});
const example = new alicloud.vpc.Network("example", {vpcName: name});
const exampleSwitch = new alicloud.vpc.Switch("example", {
    vpcId: example.id,
    zoneId: _default.then(_default => _default.zones?.[0]?.id),
    cidrBlock: "172.16.0.0/24",
    vswitchName: name,
});
const defaultPolardbxInstance = new alicloud.drds.PolardbxInstance("default", {
    topologyType: "3azones",
    vswitchId: exampleSwitch.id,
    primaryZone: "ap-southeast-1a",
    cnNodeCount: 2,
    dnClass: "mysql.n4.medium.25",
    cnClass: "polarx.x4.medium.2e",
    dnNodeCount: 2,
    secondaryZone: "ap-southeast-1b",
    tertiaryZone: "ap-southeast-1c",
    vpcId: example.id,
});
Copy
import pulumi
import pulumi_alicloud as alicloud

config = pulumi.Config()
name = config.get("name")
if name is None:
    name = "terraform-example"
default = alicloud.get_zones(available_resource_creation="VSwitch")
example = alicloud.vpc.Network("example", vpc_name=name)
example_switch = alicloud.vpc.Switch("example",
    vpc_id=example.id,
    zone_id=default.zones[0].id,
    cidr_block="172.16.0.0/24",
    vswitch_name=name)
default_polardbx_instance = alicloud.drds.PolardbxInstance("default",
    topology_type="3azones",
    vswitch_id=example_switch.id,
    primary_zone="ap-southeast-1a",
    cn_node_count=2,
    dn_class="mysql.n4.medium.25",
    cn_class="polarx.x4.medium.2e",
    dn_node_count=2,
    secondary_zone="ap-southeast-1b",
    tertiary_zone="ap-southeast-1c",
    vpc_id=example.id)
Copy
package main

import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/drds"
	"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 := "terraform-example"
		if param := cfg.Get("name"); param != "" {
			name = param
		}
		_default, err := alicloud.GetZones(ctx, &alicloud.GetZonesArgs{
			AvailableResourceCreation: pulumi.StringRef("VSwitch"),
		}, nil)
		if err != nil {
			return err
		}
		example, err := vpc.NewNetwork(ctx, "example", &vpc.NetworkArgs{
			VpcName: pulumi.String(name),
		})
		if err != nil {
			return err
		}
		exampleSwitch, err := vpc.NewSwitch(ctx, "example", &vpc.SwitchArgs{
			VpcId:       example.ID(),
			ZoneId:      pulumi.String(_default.Zones[0].Id),
			CidrBlock:   pulumi.String("172.16.0.0/24"),
			VswitchName: pulumi.String(name),
		})
		if err != nil {
			return err
		}
		_, err = drds.NewPolardbxInstance(ctx, "default", &drds.PolardbxInstanceArgs{
			TopologyType:  pulumi.String("3azones"),
			VswitchId:     exampleSwitch.ID(),
			PrimaryZone:   pulumi.String("ap-southeast-1a"),
			CnNodeCount:   pulumi.Int(2),
			DnClass:       pulumi.String("mysql.n4.medium.25"),
			CnClass:       pulumi.String("polarx.x4.medium.2e"),
			DnNodeCount:   pulumi.Int(2),
			SecondaryZone: pulumi.String("ap-southeast-1b"),
			TertiaryZone:  pulumi.String("ap-southeast-1c"),
			VpcId:         example.ID(),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;

return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var name = config.Get("name") ?? "terraform-example";
    var @default = AliCloud.GetZones.Invoke(new()
    {
        AvailableResourceCreation = "VSwitch",
    });

    var example = new AliCloud.Vpc.Network("example", new()
    {
        VpcName = name,
    });

    var exampleSwitch = new AliCloud.Vpc.Switch("example", new()
    {
        VpcId = example.Id,
        ZoneId = @default.Apply(@default => @default.Apply(getZonesResult => getZonesResult.Zones[0]?.Id)),
        CidrBlock = "172.16.0.0/24",
        VswitchName = name,
    });

    var defaultPolardbxInstance = new AliCloud.Drds.PolardbxInstance("default", new()
    {
        TopologyType = "3azones",
        VswitchId = exampleSwitch.Id,
        PrimaryZone = "ap-southeast-1a",
        CnNodeCount = 2,
        DnClass = "mysql.n4.medium.25",
        CnClass = "polarx.x4.medium.2e",
        DnNodeCount = 2,
        SecondaryZone = "ap-southeast-1b",
        TertiaryZone = "ap-southeast-1c",
        VpcId = example.Id,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.AlicloudFunctions;
import com.pulumi.alicloud.inputs.GetZonesArgs;
import com.pulumi.alicloud.vpc.Network;
import com.pulumi.alicloud.vpc.NetworkArgs;
import com.pulumi.alicloud.vpc.Switch;
import com.pulumi.alicloud.vpc.SwitchArgs;
import com.pulumi.alicloud.drds.PolardbxInstance;
import com.pulumi.alicloud.drds.PolardbxInstanceArgs;
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("terraform-example");
        final var default = AlicloudFunctions.getZones(GetZonesArgs.builder()
            .availableResourceCreation("VSwitch")
            .build());

        var example = new Network("example", NetworkArgs.builder()
            .vpcName(name)
            .build());

        var exampleSwitch = new Switch("exampleSwitch", SwitchArgs.builder()
            .vpcId(example.id())
            .zoneId(default_.zones()[0].id())
            .cidrBlock("172.16.0.0/24")
            .vswitchName(name)
            .build());

        var defaultPolardbxInstance = new PolardbxInstance("defaultPolardbxInstance", PolardbxInstanceArgs.builder()
            .topologyType("3azones")
            .vswitchId(exampleSwitch.id())
            .primaryZone("ap-southeast-1a")
            .cnNodeCount("2")
            .dnClass("mysql.n4.medium.25")
            .cnClass("polarx.x4.medium.2e")
            .dnNodeCount("2")
            .secondaryZone("ap-southeast-1b")
            .tertiaryZone("ap-southeast-1c")
            .vpcId(example.id())
            .build());

    }
}
Copy
configuration:
  name:
    type: string
    default: terraform-example
resources:
  example:
    type: alicloud:vpc:Network
    properties:
      vpcName: ${name}
  exampleSwitch:
    type: alicloud:vpc:Switch
    name: example
    properties:
      vpcId: ${example.id}
      zoneId: ${default.zones[0].id}
      cidrBlock: 172.16.0.0/24
      vswitchName: ${name}
  defaultPolardbxInstance:
    type: alicloud:drds:PolardbxInstance
    name: default
    properties:
      topologyType: 3azones
      vswitchId: ${exampleSwitch.id}
      primaryZone: ap-southeast-1a
      cnNodeCount: '2'
      dnClass: mysql.n4.medium.25
      cnClass: polarx.x4.medium.2e
      dnNodeCount: '2'
      secondaryZone: ap-southeast-1b
      tertiaryZone: ap-southeast-1c
      vpcId: ${example.id}
variables:
  default:
    fn::invoke:
      function: alicloud:getZones
      arguments:
        availableResourceCreation: VSwitch
Copy

Create PolardbxInstance Resource

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

Constructor syntax

new PolardbxInstance(name: string, args: PolardbxInstanceArgs, opts?: CustomResourceOptions);
@overload
def PolardbxInstance(resource_name: str,
                     args: PolardbxInstanceArgs,
                     opts: Optional[ResourceOptions] = None)

@overload
def PolardbxInstance(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     cn_class: Optional[str] = None,
                     cn_node_count: Optional[int] = None,
                     dn_class: Optional[str] = None,
                     dn_node_count: Optional[int] = None,
                     primary_zone: Optional[str] = None,
                     topology_type: Optional[str] = None,
                     vpc_id: Optional[str] = None,
                     vswitch_id: Optional[str] = None,
                     resource_group_id: Optional[str] = None,
                     secondary_zone: Optional[str] = None,
                     tertiary_zone: Optional[str] = None)
func NewPolardbxInstance(ctx *Context, name string, args PolardbxInstanceArgs, opts ...ResourceOption) (*PolardbxInstance, error)
public PolardbxInstance(string name, PolardbxInstanceArgs args, CustomResourceOptions? opts = null)
public PolardbxInstance(String name, PolardbxInstanceArgs args)
public PolardbxInstance(String name, PolardbxInstanceArgs args, CustomResourceOptions options)
type: alicloud:drds:PolardbxInstance
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. PolardbxInstanceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. PolardbxInstanceArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. PolardbxInstanceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. PolardbxInstanceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. PolardbxInstanceArgs
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 polardbxInstanceResource = new AliCloud.Drds.PolardbxInstance("polardbxInstanceResource", new()
{
    CnClass = "string",
    CnNodeCount = 0,
    DnClass = "string",
    DnNodeCount = 0,
    PrimaryZone = "string",
    TopologyType = "string",
    VpcId = "string",
    VswitchId = "string",
    ResourceGroupId = "string",
    SecondaryZone = "string",
    TertiaryZone = "string",
});
Copy
example, err := drds.NewPolardbxInstance(ctx, "polardbxInstanceResource", &drds.PolardbxInstanceArgs{
	CnClass:         pulumi.String("string"),
	CnNodeCount:     pulumi.Int(0),
	DnClass:         pulumi.String("string"),
	DnNodeCount:     pulumi.Int(0),
	PrimaryZone:     pulumi.String("string"),
	TopologyType:    pulumi.String("string"),
	VpcId:           pulumi.String("string"),
	VswitchId:       pulumi.String("string"),
	ResourceGroupId: pulumi.String("string"),
	SecondaryZone:   pulumi.String("string"),
	TertiaryZone:    pulumi.String("string"),
})
Copy
var polardbxInstanceResource = new PolardbxInstance("polardbxInstanceResource", PolardbxInstanceArgs.builder()
    .cnClass("string")
    .cnNodeCount(0)
    .dnClass("string")
    .dnNodeCount(0)
    .primaryZone("string")
    .topologyType("string")
    .vpcId("string")
    .vswitchId("string")
    .resourceGroupId("string")
    .secondaryZone("string")
    .tertiaryZone("string")
    .build());
Copy
polardbx_instance_resource = alicloud.drds.PolardbxInstance("polardbxInstanceResource",
    cn_class="string",
    cn_node_count=0,
    dn_class="string",
    dn_node_count=0,
    primary_zone="string",
    topology_type="string",
    vpc_id="string",
    vswitch_id="string",
    resource_group_id="string",
    secondary_zone="string",
    tertiary_zone="string")
Copy
const polardbxInstanceResource = new alicloud.drds.PolardbxInstance("polardbxInstanceResource", {
    cnClass: "string",
    cnNodeCount: 0,
    dnClass: "string",
    dnNodeCount: 0,
    primaryZone: "string",
    topologyType: "string",
    vpcId: "string",
    vswitchId: "string",
    resourceGroupId: "string",
    secondaryZone: "string",
    tertiaryZone: "string",
});
Copy
type: alicloud:drds:PolardbxInstance
properties:
    cnClass: string
    cnNodeCount: 0
    dnClass: string
    dnNodeCount: 0
    primaryZone: string
    resourceGroupId: string
    secondaryZone: string
    tertiaryZone: string
    topologyType: string
    vpcId: string
    vswitchId: string
Copy

PolardbxInstance Resource Properties

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

Inputs

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

The PolardbxInstance resource accepts the following input properties:

CnClass
This property is required.
Changes to this property will trigger replacement.
string
Compute node specifications.
CnNodeCount This property is required. int
Number of computing nodes.
DnClass
This property is required.
Changes to this property will trigger replacement.
string
Storage node specifications.
DnNodeCount This property is required. int
The number of storage nodes.
PrimaryZone
This property is required.
Changes to this property will trigger replacement.
string
Primary Availability Zone.
TopologyType
This property is required.
Changes to this property will trigger replacement.
string
Topology type:

  • 3azones: three available areas;
  • 1azone: Single zone.
VpcId
This property is required.
Changes to this property will trigger replacement.
string
The VPC ID.
VswitchId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the virtual switch.
ResourceGroupId string
The resource group ID can be empty. This parameter is not supported for the time being.
SecondaryZone Changes to this property will trigger replacement. string
Secondary availability zone.
TertiaryZone Changes to this property will trigger replacement. string
Third Availability Zone.
CnClass
This property is required.
Changes to this property will trigger replacement.
string
Compute node specifications.
CnNodeCount This property is required. int
Number of computing nodes.
DnClass
This property is required.
Changes to this property will trigger replacement.
string
Storage node specifications.
DnNodeCount This property is required. int
The number of storage nodes.
PrimaryZone
This property is required.
Changes to this property will trigger replacement.
string
Primary Availability Zone.
TopologyType
This property is required.
Changes to this property will trigger replacement.
string
Topology type:

  • 3azones: three available areas;
  • 1azone: Single zone.
VpcId
This property is required.
Changes to this property will trigger replacement.
string
The VPC ID.
VswitchId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the virtual switch.
ResourceGroupId string
The resource group ID can be empty. This parameter is not supported for the time being.
SecondaryZone Changes to this property will trigger replacement. string
Secondary availability zone.
TertiaryZone Changes to this property will trigger replacement. string
Third Availability Zone.
cnClass
This property is required.
Changes to this property will trigger replacement.
String
Compute node specifications.
cnNodeCount This property is required. Integer
Number of computing nodes.
dnClass
This property is required.
Changes to this property will trigger replacement.
String
Storage node specifications.
dnNodeCount This property is required. Integer
The number of storage nodes.
primaryZone
This property is required.
Changes to this property will trigger replacement.
String
Primary Availability Zone.
topologyType
This property is required.
Changes to this property will trigger replacement.
String
Topology type:

  • 3azones: three available areas;
  • 1azone: Single zone.
vpcId
This property is required.
Changes to this property will trigger replacement.
String
The VPC ID.
vswitchId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the virtual switch.
resourceGroupId String
The resource group ID can be empty. This parameter is not supported for the time being.
secondaryZone Changes to this property will trigger replacement. String
Secondary availability zone.
tertiaryZone Changes to this property will trigger replacement. String
Third Availability Zone.
cnClass
This property is required.
Changes to this property will trigger replacement.
string
Compute node specifications.
cnNodeCount This property is required. number
Number of computing nodes.
dnClass
This property is required.
Changes to this property will trigger replacement.
string
Storage node specifications.
dnNodeCount This property is required. number
The number of storage nodes.
primaryZone
This property is required.
Changes to this property will trigger replacement.
string
Primary Availability Zone.
topologyType
This property is required.
Changes to this property will trigger replacement.
string
Topology type:

  • 3azones: three available areas;
  • 1azone: Single zone.
vpcId
This property is required.
Changes to this property will trigger replacement.
string
The VPC ID.
vswitchId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the virtual switch.
resourceGroupId string
The resource group ID can be empty. This parameter is not supported for the time being.
secondaryZone Changes to this property will trigger replacement. string
Secondary availability zone.
tertiaryZone Changes to this property will trigger replacement. string
Third Availability Zone.
cn_class
This property is required.
Changes to this property will trigger replacement.
str
Compute node specifications.
cn_node_count This property is required. int
Number of computing nodes.
dn_class
This property is required.
Changes to this property will trigger replacement.
str
Storage node specifications.
dn_node_count This property is required. int
The number of storage nodes.
primary_zone
This property is required.
Changes to this property will trigger replacement.
str
Primary Availability Zone.
topology_type
This property is required.
Changes to this property will trigger replacement.
str
Topology type:

  • 3azones: three available areas;
  • 1azone: Single zone.
vpc_id
This property is required.
Changes to this property will trigger replacement.
str
The VPC ID.
vswitch_id
This property is required.
Changes to this property will trigger replacement.
str
The ID of the virtual switch.
resource_group_id str
The resource group ID can be empty. This parameter is not supported for the time being.
secondary_zone Changes to this property will trigger replacement. str
Secondary availability zone.
tertiary_zone Changes to this property will trigger replacement. str
Third Availability Zone.
cnClass
This property is required.
Changes to this property will trigger replacement.
String
Compute node specifications.
cnNodeCount This property is required. Number
Number of computing nodes.
dnClass
This property is required.
Changes to this property will trigger replacement.
String
Storage node specifications.
dnNodeCount This property is required. Number
The number of storage nodes.
primaryZone
This property is required.
Changes to this property will trigger replacement.
String
Primary Availability Zone.
topologyType
This property is required.
Changes to this property will trigger replacement.
String
Topology type:

  • 3azones: three available areas;
  • 1azone: Single zone.
vpcId
This property is required.
Changes to this property will trigger replacement.
String
The VPC ID.
vswitchId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the virtual switch.
resourceGroupId String
The resource group ID can be empty. This parameter is not supported for the time being.
secondaryZone Changes to this property will trigger replacement. String
Secondary availability zone.
tertiaryZone Changes to this property will trigger replacement. String
Third Availability Zone.

Outputs

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

CreateTime string
The creation time of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Status string
The status of the resource.
CreateTime string
The creation time of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Status string
The status of the resource.
createTime String
The creation time of the resource.
id String
The provider-assigned unique ID for this managed resource.
status String
The status of the resource.
createTime string
The creation time of the resource.
id string
The provider-assigned unique ID for this managed resource.
status string
The status of the resource.
create_time str
The creation time of the resource.
id str
The provider-assigned unique ID for this managed resource.
status str
The status of the resource.
createTime String
The creation time of the resource.
id String
The provider-assigned unique ID for this managed resource.
status String
The status of the resource.

Look up Existing PolardbxInstance Resource

Get an existing PolardbxInstance 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?: PolardbxInstanceState, opts?: CustomResourceOptions): PolardbxInstance
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        cn_class: Optional[str] = None,
        cn_node_count: Optional[int] = None,
        create_time: Optional[str] = None,
        dn_class: Optional[str] = None,
        dn_node_count: Optional[int] = None,
        primary_zone: Optional[str] = None,
        resource_group_id: Optional[str] = None,
        secondary_zone: Optional[str] = None,
        status: Optional[str] = None,
        tertiary_zone: Optional[str] = None,
        topology_type: Optional[str] = None,
        vpc_id: Optional[str] = None,
        vswitch_id: Optional[str] = None) -> PolardbxInstance
func GetPolardbxInstance(ctx *Context, name string, id IDInput, state *PolardbxInstanceState, opts ...ResourceOption) (*PolardbxInstance, error)
public static PolardbxInstance Get(string name, Input<string> id, PolardbxInstanceState? state, CustomResourceOptions? opts = null)
public static PolardbxInstance get(String name, Output<String> id, PolardbxInstanceState state, CustomResourceOptions options)
resources:  _:    type: alicloud:drds:PolardbxInstance    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
CnClass Changes to this property will trigger replacement. string
Compute node specifications.
CnNodeCount int
Number of computing nodes.
CreateTime string
The creation time of the resource.
DnClass Changes to this property will trigger replacement. string
Storage node specifications.
DnNodeCount int
The number of storage nodes.
PrimaryZone Changes to this property will trigger replacement. string
Primary Availability Zone.
ResourceGroupId string
The resource group ID can be empty. This parameter is not supported for the time being.
SecondaryZone Changes to this property will trigger replacement. string
Secondary availability zone.
Status string
The status of the resource.
TertiaryZone Changes to this property will trigger replacement. string
Third Availability Zone.
TopologyType Changes to this property will trigger replacement. string
Topology type:

  • 3azones: three available areas;
  • 1azone: Single zone.
VpcId Changes to this property will trigger replacement. string
The VPC ID.
VswitchId Changes to this property will trigger replacement. string
The ID of the virtual switch.
CnClass Changes to this property will trigger replacement. string
Compute node specifications.
CnNodeCount int
Number of computing nodes.
CreateTime string
The creation time of the resource.
DnClass Changes to this property will trigger replacement. string
Storage node specifications.
DnNodeCount int
The number of storage nodes.
PrimaryZone Changes to this property will trigger replacement. string
Primary Availability Zone.
ResourceGroupId string
The resource group ID can be empty. This parameter is not supported for the time being.
SecondaryZone Changes to this property will trigger replacement. string
Secondary availability zone.
Status string
The status of the resource.
TertiaryZone Changes to this property will trigger replacement. string
Third Availability Zone.
TopologyType Changes to this property will trigger replacement. string
Topology type:

  • 3azones: three available areas;
  • 1azone: Single zone.
VpcId Changes to this property will trigger replacement. string
The VPC ID.
VswitchId Changes to this property will trigger replacement. string
The ID of the virtual switch.
cnClass Changes to this property will trigger replacement. String
Compute node specifications.
cnNodeCount Integer
Number of computing nodes.
createTime String
The creation time of the resource.
dnClass Changes to this property will trigger replacement. String
Storage node specifications.
dnNodeCount Integer
The number of storage nodes.
primaryZone Changes to this property will trigger replacement. String
Primary Availability Zone.
resourceGroupId String
The resource group ID can be empty. This parameter is not supported for the time being.
secondaryZone Changes to this property will trigger replacement. String
Secondary availability zone.
status String
The status of the resource.
tertiaryZone Changes to this property will trigger replacement. String
Third Availability Zone.
topologyType Changes to this property will trigger replacement. String
Topology type:

  • 3azones: three available areas;
  • 1azone: Single zone.
vpcId Changes to this property will trigger replacement. String
The VPC ID.
vswitchId Changes to this property will trigger replacement. String
The ID of the virtual switch.
cnClass Changes to this property will trigger replacement. string
Compute node specifications.
cnNodeCount number
Number of computing nodes.
createTime string
The creation time of the resource.
dnClass Changes to this property will trigger replacement. string
Storage node specifications.
dnNodeCount number
The number of storage nodes.
primaryZone Changes to this property will trigger replacement. string
Primary Availability Zone.
resourceGroupId string
The resource group ID can be empty. This parameter is not supported for the time being.
secondaryZone Changes to this property will trigger replacement. string
Secondary availability zone.
status string
The status of the resource.
tertiaryZone Changes to this property will trigger replacement. string
Third Availability Zone.
topologyType Changes to this property will trigger replacement. string
Topology type:

  • 3azones: three available areas;
  • 1azone: Single zone.
vpcId Changes to this property will trigger replacement. string
The VPC ID.
vswitchId Changes to this property will trigger replacement. string
The ID of the virtual switch.
cn_class Changes to this property will trigger replacement. str
Compute node specifications.
cn_node_count int
Number of computing nodes.
create_time str
The creation time of the resource.
dn_class Changes to this property will trigger replacement. str
Storage node specifications.
dn_node_count int
The number of storage nodes.
primary_zone Changes to this property will trigger replacement. str
Primary Availability Zone.
resource_group_id str
The resource group ID can be empty. This parameter is not supported for the time being.
secondary_zone Changes to this property will trigger replacement. str
Secondary availability zone.
status str
The status of the resource.
tertiary_zone Changes to this property will trigger replacement. str
Third Availability Zone.
topology_type Changes to this property will trigger replacement. str
Topology type:

  • 3azones: three available areas;
  • 1azone: Single zone.
vpc_id Changes to this property will trigger replacement. str
The VPC ID.
vswitch_id Changes to this property will trigger replacement. str
The ID of the virtual switch.
cnClass Changes to this property will trigger replacement. String
Compute node specifications.
cnNodeCount Number
Number of computing nodes.
createTime String
The creation time of the resource.
dnClass Changes to this property will trigger replacement. String
Storage node specifications.
dnNodeCount Number
The number of storage nodes.
primaryZone Changes to this property will trigger replacement. String
Primary Availability Zone.
resourceGroupId String
The resource group ID can be empty. This parameter is not supported for the time being.
secondaryZone Changes to this property will trigger replacement. String
Secondary availability zone.
status String
The status of the resource.
tertiaryZone Changes to this property will trigger replacement. String
Third Availability Zone.
topologyType Changes to this property will trigger replacement. String
Topology type:

  • 3azones: three available areas;
  • 1azone: Single zone.
vpcId Changes to this property will trigger replacement. String
The VPC ID.
vswitchId Changes to this property will trigger replacement. String
The ID of the virtual switch.

Import

DRDS Polardb X Instance can be imported using the id, e.g.

$ pulumi import alicloud:drds/polardbxInstance:PolardbxInstance example <id>
Copy

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

Package Details

Repository
Alibaba Cloud pulumi/pulumi-alicloud
License
Apache-2.0
Notes
This Pulumi package is based on the alicloud Terraform Provider.