Namespace Pulumi.AliCloud.Hbase
Classes
GetInstances
GetInstancesArgs
GetInstancesResult
GetZones
GetZonesArgs
GetZonesResult
Instance
Provides a HBase instance resource supports replica set instances only. the HBase provides stable, reliable, and automatic scalable database services. It offers a full range of database solutions, such as disaster recovery, backup, recovery, monitoring, and alarms. You can see detail product introduction here
NOTE: Available in 1.67.0+
NOTE: The following regions don't support create Classic network HBase instance. [
cn-hangzhou,cn-shanghai,cn-qingdao,cn-beijing,cn-shenzhen,ap-southeast-1a,.....] the official website mark more regions. or you can call DescribeRegions
NOTE: Create HBase instance or change instance type and storage would cost 15 minutes. Please make full preparation
Example Usage
Create a hbase instance
using Pulumi;
using AliCloud = Pulumi.AliCloud;
class MyStack : Stack
{
public MyStack()
{
var @default = new AliCloud.Hbase.Instance("default", new AliCloud.Hbase.InstanceArgs
{
ColdStorageSize = 0,
CoreDiskSize = 400,
CoreDiskType = "cloud_efficiency",
CoreInstanceQuantity = 2,
CoreInstanceType = "hbase.sn1.large",
EngineVersion = "2.0",
MasterInstanceType = "hbase.sn1.large",
PayType = "PostPaid",
ZoneId = "cn-shenzhen-b",
});
}
}