Show / Hide Table of Contents

Namespace Pulumi.AliCloud.Drds

Classes

GetInstances

GetInstancesArgs

GetInstancesResult

Instance

Distributed Relational Database Service (DRDS) is a lightweight (stateless), flexible, stable, and efficient middleware product independently developed by Alibaba Group to resolve scalability issues with single-host relational databases. With its compatibility with MySQL protocols and syntaxes, DRDS enables database/table sharding, smooth scaling, configuration upgrade/downgrade, transparent read/write splitting, and distributed transactions, providing O&M capabilities for distributed databases throughout their entire lifecycle.

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

NOTE: At present, DRDS instance only can be supported in the regions: cn-shenzhen, cn-beijing, cn-hangzhou, cn-hongkong, cn-qingdao.

NOTE: Currently, this resource only support Domestic Site Account.

Example Usage

using Pulumi;
using AliCloud = Pulumi.AliCloud;

class MyStack : Stack
{
public MyStack()
{
    var @default = new AliCloud.Drds.Instance("default", new AliCloud.Drds.InstanceArgs
    {
        Description = "drds instance",
        InstanceChargeType = "PostPaid",
        InstanceSeries = "drds.sn1.4c8g",
        Specification = "drds.sn1.4c8g.8C16G",
        VswitchId = "vsw-bp1jlu3swk8rq2yoi40ey",
        ZoneId = "cn-hangzhou-e",
    });
}

}

InstanceArgs

InstanceState

Back to top Copyright 2016-2020, Pulumi Corporation.