tencentcloud.LiteHbaseInstance
Explore with Pulumi AI
Provides a resource to create a emr lite_hbase_instance
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const liteHbaseInstance = new tencentcloud.LiteHbaseInstance("liteHbaseInstance", {
diskSize: 100,
diskType: "CLOUD_HSSD",
instanceName: "tf-test",
nodeType: "8C32G",
payMode: 0,
tags: [{
tagKey: "test",
tagValue: "test",
}],
zoneSettings: [{
nodeNum: 3,
vpcSettings: {
subnetId: "subnet-xxxxxx",
vpcId: "vpc-xxxxxx",
},
zone: "ap-shanghai-2",
}],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
lite_hbase_instance = tencentcloud.LiteHbaseInstance("liteHbaseInstance",
disk_size=100,
disk_type="CLOUD_HSSD",
instance_name="tf-test",
node_type="8C32G",
pay_mode=0,
tags=[{
"tag_key": "test",
"tag_value": "test",
}],
zone_settings=[{
"node_num": 3,
"vpc_settings": {
"subnet_id": "subnet-xxxxxx",
"vpc_id": "vpc-xxxxxx",
},
"zone": "ap-shanghai-2",
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tencentcloud.NewLiteHbaseInstance(ctx, "liteHbaseInstance", &tencentcloud.LiteHbaseInstanceArgs{
DiskSize: pulumi.Float64(100),
DiskType: pulumi.String("CLOUD_HSSD"),
InstanceName: pulumi.String("tf-test"),
NodeType: pulumi.String("8C32G"),
PayMode: pulumi.Float64(0),
Tags: tencentcloud.LiteHbaseInstanceTagArray{
&tencentcloud.LiteHbaseInstanceTagArgs{
TagKey: pulumi.String("test"),
TagValue: pulumi.String("test"),
},
},
ZoneSettings: tencentcloud.LiteHbaseInstanceZoneSettingArray{
&tencentcloud.LiteHbaseInstanceZoneSettingArgs{
NodeNum: pulumi.Float64(3),
VpcSettings: &tencentcloud.LiteHbaseInstanceZoneSettingVpcSettingsArgs{
SubnetId: pulumi.String("subnet-xxxxxx"),
VpcId: pulumi.String("vpc-xxxxxx"),
},
Zone: pulumi.String("ap-shanghai-2"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var liteHbaseInstance = new Tencentcloud.LiteHbaseInstance("liteHbaseInstance", new()
{
DiskSize = 100,
DiskType = "CLOUD_HSSD",
InstanceName = "tf-test",
NodeType = "8C32G",
PayMode = 0,
Tags = new[]
{
new Tencentcloud.Inputs.LiteHbaseInstanceTagArgs
{
TagKey = "test",
TagValue = "test",
},
},
ZoneSettings = new[]
{
new Tencentcloud.Inputs.LiteHbaseInstanceZoneSettingArgs
{
NodeNum = 3,
VpcSettings = new Tencentcloud.Inputs.LiteHbaseInstanceZoneSettingVpcSettingsArgs
{
SubnetId = "subnet-xxxxxx",
VpcId = "vpc-xxxxxx",
},
Zone = "ap-shanghai-2",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.LiteHbaseInstance;
import com.pulumi.tencentcloud.LiteHbaseInstanceArgs;
import com.pulumi.tencentcloud.inputs.LiteHbaseInstanceTagArgs;
import com.pulumi.tencentcloud.inputs.LiteHbaseInstanceZoneSettingArgs;
import com.pulumi.tencentcloud.inputs.LiteHbaseInstanceZoneSettingVpcSettingsArgs;
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) {
var liteHbaseInstance = new LiteHbaseInstance("liteHbaseInstance", LiteHbaseInstanceArgs.builder()
.diskSize(100)
.diskType("CLOUD_HSSD")
.instanceName("tf-test")
.nodeType("8C32G")
.payMode(0)
.tags(LiteHbaseInstanceTagArgs.builder()
.tagKey("test")
.tagValue("test")
.build())
.zoneSettings(LiteHbaseInstanceZoneSettingArgs.builder()
.nodeNum(3)
.vpcSettings(LiteHbaseInstanceZoneSettingVpcSettingsArgs.builder()
.subnetId("subnet-xxxxxx")
.vpcId("vpc-xxxxxx")
.build())
.zone("ap-shanghai-2")
.build())
.build());
}
}
resources:
liteHbaseInstance:
type: tencentcloud:LiteHbaseInstance
properties:
diskSize: 100
diskType: CLOUD_HSSD
instanceName: tf-test
nodeType: 8C32G
payMode: 0
tags:
- tagKey: test
tagValue: test
zoneSettings:
- nodeNum: 3
vpcSettings:
subnetId: subnet-xxxxxx
vpcId: vpc-xxxxxx
zone: ap-shanghai-2
Create LiteHbaseInstance Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new LiteHbaseInstance(name: string, args: LiteHbaseInstanceArgs, opts?: CustomResourceOptions);
@overload
def LiteHbaseInstance(resource_name: str,
args: LiteHbaseInstanceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def LiteHbaseInstance(resource_name: str,
opts: Optional[ResourceOptions] = None,
disk_size: Optional[float] = None,
disk_type: Optional[str] = None,
instance_name: Optional[str] = None,
pay_mode: Optional[float] = None,
zone_settings: Optional[Sequence[LiteHbaseInstanceZoneSettingArgs]] = None,
auto_renew_flag: Optional[float] = None,
lite_hbase_instance_id: Optional[str] = None,
node_type: Optional[str] = None,
tags: Optional[Sequence[LiteHbaseInstanceTagArgs]] = None,
time_span: Optional[float] = None,
time_unit: Optional[str] = None)
func NewLiteHbaseInstance(ctx *Context, name string, args LiteHbaseInstanceArgs, opts ...ResourceOption) (*LiteHbaseInstance, error)
public LiteHbaseInstance(string name, LiteHbaseInstanceArgs args, CustomResourceOptions? opts = null)
public LiteHbaseInstance(String name, LiteHbaseInstanceArgs args)
public LiteHbaseInstance(String name, LiteHbaseInstanceArgs args, CustomResourceOptions options)
type: tencentcloud:LiteHbaseInstance
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 LiteHbaseInstanceArgs
- 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 LiteHbaseInstanceArgs
- 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 LiteHbaseInstanceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LiteHbaseInstanceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LiteHbaseInstanceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
LiteHbaseInstance 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 LiteHbaseInstance resource accepts the following input properties:
- Disk
Size double - Instance single-node disk capacity, in GB. The single-node disk capacity must be greater than or equal to 100 and less than or equal to 250 times the number of CPU cores. The capacity adjustment step is 100.
- Disk
Type string - Instance disk type, Value range: CLOUD_HSSD: indicate performance cloud storage(ESSD). CLOUD_BSSD: indicate standard cloud storage(SSD).
- Instance
Name string - Instance name. Length limit is 6-36 characters. Only Chinese characters, letters, numbers, -, and _ are allowed.
- Pay
Mode double - Instance pay mode. Value range: 0: indicates post-pay mode, that is, pay-as-you-go. 1: indicates pre-pay mode, that is, monthly subscription.
- Zone
Settings List<LiteHbase Instance Zone Setting> - Detailed configuration of the instance availability zone, currently supports multiple availability zones, the number of availability zones can only be 1 or 3, including zone name, VPC information, and number of nodes. The total number of nodes across all zones must be greater than or equal to 3 and less than or equal to 50.
- Auto
Renew doubleFlag - AutoRenewFlag, Value range: 0: indicates NOTIFY_AND_MANUAL_RENEW; 1: indicates NOTIFY_AND_AUTO_RENEW; 2: indicates DISABLE_NOTIFY_AND_MANUAL_RENEW.
- Lite
Hbase stringInstance Id - ID of the resource.
- Node
Type string - Instance node type, can be filled in as 4C16G, 8C32G, 16C64G, 32C128G, case insensitive.
- List<Lite
Hbase Instance Tag> - List of tags to bind to the instance.
- Time
Span double - Time span.
- Time
Unit string - Time unit, fill in m which means month.
- Disk
Size float64 - Instance single-node disk capacity, in GB. The single-node disk capacity must be greater than or equal to 100 and less than or equal to 250 times the number of CPU cores. The capacity adjustment step is 100.
- Disk
Type string - Instance disk type, Value range: CLOUD_HSSD: indicate performance cloud storage(ESSD). CLOUD_BSSD: indicate standard cloud storage(SSD).
- Instance
Name string - Instance name. Length limit is 6-36 characters. Only Chinese characters, letters, numbers, -, and _ are allowed.
- Pay
Mode float64 - Instance pay mode. Value range: 0: indicates post-pay mode, that is, pay-as-you-go. 1: indicates pre-pay mode, that is, monthly subscription.
- Zone
Settings []LiteHbase Instance Zone Setting Args - Detailed configuration of the instance availability zone, currently supports multiple availability zones, the number of availability zones can only be 1 or 3, including zone name, VPC information, and number of nodes. The total number of nodes across all zones must be greater than or equal to 3 and less than or equal to 50.
- Auto
Renew float64Flag - AutoRenewFlag, Value range: 0: indicates NOTIFY_AND_MANUAL_RENEW; 1: indicates NOTIFY_AND_AUTO_RENEW; 2: indicates DISABLE_NOTIFY_AND_MANUAL_RENEW.
- Lite
Hbase stringInstance Id - ID of the resource.
- Node
Type string - Instance node type, can be filled in as 4C16G, 8C32G, 16C64G, 32C128G, case insensitive.
- []Lite
Hbase Instance Tag Args - List of tags to bind to the instance.
- Time
Span float64 - Time span.
- Time
Unit string - Time unit, fill in m which means month.
- disk
Size Double - Instance single-node disk capacity, in GB. The single-node disk capacity must be greater than or equal to 100 and less than or equal to 250 times the number of CPU cores. The capacity adjustment step is 100.
- disk
Type String - Instance disk type, Value range: CLOUD_HSSD: indicate performance cloud storage(ESSD). CLOUD_BSSD: indicate standard cloud storage(SSD).
- instance
Name String - Instance name. Length limit is 6-36 characters. Only Chinese characters, letters, numbers, -, and _ are allowed.
- pay
Mode Double - Instance pay mode. Value range: 0: indicates post-pay mode, that is, pay-as-you-go. 1: indicates pre-pay mode, that is, monthly subscription.
- zone
Settings List<LiteHbase Instance Zone Setting> - Detailed configuration of the instance availability zone, currently supports multiple availability zones, the number of availability zones can only be 1 or 3, including zone name, VPC information, and number of nodes. The total number of nodes across all zones must be greater than or equal to 3 and less than or equal to 50.
- auto
Renew DoubleFlag - AutoRenewFlag, Value range: 0: indicates NOTIFY_AND_MANUAL_RENEW; 1: indicates NOTIFY_AND_AUTO_RENEW; 2: indicates DISABLE_NOTIFY_AND_MANUAL_RENEW.
- lite
Hbase StringInstance Id - ID of the resource.
- node
Type String - Instance node type, can be filled in as 4C16G, 8C32G, 16C64G, 32C128G, case insensitive.
- List<Lite
Hbase Instance Tag> - List of tags to bind to the instance.
- time
Span Double - Time span.
- time
Unit String - Time unit, fill in m which means month.
- disk
Size number - Instance single-node disk capacity, in GB. The single-node disk capacity must be greater than or equal to 100 and less than or equal to 250 times the number of CPU cores. The capacity adjustment step is 100.
- disk
Type string - Instance disk type, Value range: CLOUD_HSSD: indicate performance cloud storage(ESSD). CLOUD_BSSD: indicate standard cloud storage(SSD).
- instance
Name string - Instance name. Length limit is 6-36 characters. Only Chinese characters, letters, numbers, -, and _ are allowed.
- pay
Mode number - Instance pay mode. Value range: 0: indicates post-pay mode, that is, pay-as-you-go. 1: indicates pre-pay mode, that is, monthly subscription.
- zone
Settings LiteHbase Instance Zone Setting[] - Detailed configuration of the instance availability zone, currently supports multiple availability zones, the number of availability zones can only be 1 or 3, including zone name, VPC information, and number of nodes. The total number of nodes across all zones must be greater than or equal to 3 and less than or equal to 50.
- auto
Renew numberFlag - AutoRenewFlag, Value range: 0: indicates NOTIFY_AND_MANUAL_RENEW; 1: indicates NOTIFY_AND_AUTO_RENEW; 2: indicates DISABLE_NOTIFY_AND_MANUAL_RENEW.
- lite
Hbase stringInstance Id - ID of the resource.
- node
Type string - Instance node type, can be filled in as 4C16G, 8C32G, 16C64G, 32C128G, case insensitive.
- Lite
Hbase Instance Tag[] - List of tags to bind to the instance.
- time
Span number - Time span.
- time
Unit string - Time unit, fill in m which means month.
- disk_
size float - Instance single-node disk capacity, in GB. The single-node disk capacity must be greater than or equal to 100 and less than or equal to 250 times the number of CPU cores. The capacity adjustment step is 100.
- disk_
type str - Instance disk type, Value range: CLOUD_HSSD: indicate performance cloud storage(ESSD). CLOUD_BSSD: indicate standard cloud storage(SSD).
- instance_
name str - Instance name. Length limit is 6-36 characters. Only Chinese characters, letters, numbers, -, and _ are allowed.
- pay_
mode float - Instance pay mode. Value range: 0: indicates post-pay mode, that is, pay-as-you-go. 1: indicates pre-pay mode, that is, monthly subscription.
- zone_
settings Sequence[LiteHbase Instance Zone Setting Args] - Detailed configuration of the instance availability zone, currently supports multiple availability zones, the number of availability zones can only be 1 or 3, including zone name, VPC information, and number of nodes. The total number of nodes across all zones must be greater than or equal to 3 and less than or equal to 50.
- auto_
renew_ floatflag - AutoRenewFlag, Value range: 0: indicates NOTIFY_AND_MANUAL_RENEW; 1: indicates NOTIFY_AND_AUTO_RENEW; 2: indicates DISABLE_NOTIFY_AND_MANUAL_RENEW.
- lite_
hbase_ strinstance_ id - ID of the resource.
- node_
type str - Instance node type, can be filled in as 4C16G, 8C32G, 16C64G, 32C128G, case insensitive.
- Sequence[Lite
Hbase Instance Tag Args] - List of tags to bind to the instance.
- time_
span float - Time span.
- time_
unit str - Time unit, fill in m which means month.
- disk
Size Number - Instance single-node disk capacity, in GB. The single-node disk capacity must be greater than or equal to 100 and less than or equal to 250 times the number of CPU cores. The capacity adjustment step is 100.
- disk
Type String - Instance disk type, Value range: CLOUD_HSSD: indicate performance cloud storage(ESSD). CLOUD_BSSD: indicate standard cloud storage(SSD).
- instance
Name String - Instance name. Length limit is 6-36 characters. Only Chinese characters, letters, numbers, -, and _ are allowed.
- pay
Mode Number - Instance pay mode. Value range: 0: indicates post-pay mode, that is, pay-as-you-go. 1: indicates pre-pay mode, that is, monthly subscription.
- zone
Settings List<Property Map> - Detailed configuration of the instance availability zone, currently supports multiple availability zones, the number of availability zones can only be 1 or 3, including zone name, VPC information, and number of nodes. The total number of nodes across all zones must be greater than or equal to 3 and less than or equal to 50.
- auto
Renew NumberFlag - AutoRenewFlag, Value range: 0: indicates NOTIFY_AND_MANUAL_RENEW; 1: indicates NOTIFY_AND_AUTO_RENEW; 2: indicates DISABLE_NOTIFY_AND_MANUAL_RENEW.
- lite
Hbase StringInstance Id - ID of the resource.
- node
Type String - Instance node type, can be filled in as 4C16G, 8C32G, 16C64G, 32C128G, case insensitive.
- List<Property Map>
- List of tags to bind to the instance.
- time
Span Number - Time span.
- time
Unit String - Time unit, fill in m which means month.
Outputs
All input properties are implicitly available as output properties. Additionally, the LiteHbaseInstance 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 LiteHbaseInstance Resource
Get an existing LiteHbaseInstance 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?: LiteHbaseInstanceState, opts?: CustomResourceOptions): LiteHbaseInstance
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
auto_renew_flag: Optional[float] = None,
disk_size: Optional[float] = None,
disk_type: Optional[str] = None,
instance_name: Optional[str] = None,
lite_hbase_instance_id: Optional[str] = None,
node_type: Optional[str] = None,
pay_mode: Optional[float] = None,
tags: Optional[Sequence[LiteHbaseInstanceTagArgs]] = None,
time_span: Optional[float] = None,
time_unit: Optional[str] = None,
zone_settings: Optional[Sequence[LiteHbaseInstanceZoneSettingArgs]] = None) -> LiteHbaseInstance
func GetLiteHbaseInstance(ctx *Context, name string, id IDInput, state *LiteHbaseInstanceState, opts ...ResourceOption) (*LiteHbaseInstance, error)
public static LiteHbaseInstance Get(string name, Input<string> id, LiteHbaseInstanceState? state, CustomResourceOptions? opts = null)
public static LiteHbaseInstance get(String name, Output<String> id, LiteHbaseInstanceState state, CustomResourceOptions options)
resources: _: type: tencentcloud:LiteHbaseInstance get: id: ${id}
- 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.
- Auto
Renew doubleFlag - AutoRenewFlag, Value range: 0: indicates NOTIFY_AND_MANUAL_RENEW; 1: indicates NOTIFY_AND_AUTO_RENEW; 2: indicates DISABLE_NOTIFY_AND_MANUAL_RENEW.
- Disk
Size double - Instance single-node disk capacity, in GB. The single-node disk capacity must be greater than or equal to 100 and less than or equal to 250 times the number of CPU cores. The capacity adjustment step is 100.
- Disk
Type string - Instance disk type, Value range: CLOUD_HSSD: indicate performance cloud storage(ESSD). CLOUD_BSSD: indicate standard cloud storage(SSD).
- Instance
Name string - Instance name. Length limit is 6-36 characters. Only Chinese characters, letters, numbers, -, and _ are allowed.
- Lite
Hbase stringInstance Id - ID of the resource.
- Node
Type string - Instance node type, can be filled in as 4C16G, 8C32G, 16C64G, 32C128G, case insensitive.
- Pay
Mode double - Instance pay mode. Value range: 0: indicates post-pay mode, that is, pay-as-you-go. 1: indicates pre-pay mode, that is, monthly subscription.
- List<Lite
Hbase Instance Tag> - List of tags to bind to the instance.
- Time
Span double - Time span.
- Time
Unit string - Time unit, fill in m which means month.
- Zone
Settings List<LiteHbase Instance Zone Setting> - Detailed configuration of the instance availability zone, currently supports multiple availability zones, the number of availability zones can only be 1 or 3, including zone name, VPC information, and number of nodes. The total number of nodes across all zones must be greater than or equal to 3 and less than or equal to 50.
- Auto
Renew float64Flag - AutoRenewFlag, Value range: 0: indicates NOTIFY_AND_MANUAL_RENEW; 1: indicates NOTIFY_AND_AUTO_RENEW; 2: indicates DISABLE_NOTIFY_AND_MANUAL_RENEW.
- Disk
Size float64 - Instance single-node disk capacity, in GB. The single-node disk capacity must be greater than or equal to 100 and less than or equal to 250 times the number of CPU cores. The capacity adjustment step is 100.
- Disk
Type string - Instance disk type, Value range: CLOUD_HSSD: indicate performance cloud storage(ESSD). CLOUD_BSSD: indicate standard cloud storage(SSD).
- Instance
Name string - Instance name. Length limit is 6-36 characters. Only Chinese characters, letters, numbers, -, and _ are allowed.
- Lite
Hbase stringInstance Id - ID of the resource.
- Node
Type string - Instance node type, can be filled in as 4C16G, 8C32G, 16C64G, 32C128G, case insensitive.
- Pay
Mode float64 - Instance pay mode. Value range: 0: indicates post-pay mode, that is, pay-as-you-go. 1: indicates pre-pay mode, that is, monthly subscription.
- []Lite
Hbase Instance Tag Args - List of tags to bind to the instance.
- Time
Span float64 - Time span.
- Time
Unit string - Time unit, fill in m which means month.
- Zone
Settings []LiteHbase Instance Zone Setting Args - Detailed configuration of the instance availability zone, currently supports multiple availability zones, the number of availability zones can only be 1 or 3, including zone name, VPC information, and number of nodes. The total number of nodes across all zones must be greater than or equal to 3 and less than or equal to 50.
- auto
Renew DoubleFlag - AutoRenewFlag, Value range: 0: indicates NOTIFY_AND_MANUAL_RENEW; 1: indicates NOTIFY_AND_AUTO_RENEW; 2: indicates DISABLE_NOTIFY_AND_MANUAL_RENEW.
- disk
Size Double - Instance single-node disk capacity, in GB. The single-node disk capacity must be greater than or equal to 100 and less than or equal to 250 times the number of CPU cores. The capacity adjustment step is 100.
- disk
Type String - Instance disk type, Value range: CLOUD_HSSD: indicate performance cloud storage(ESSD). CLOUD_BSSD: indicate standard cloud storage(SSD).
- instance
Name String - Instance name. Length limit is 6-36 characters. Only Chinese characters, letters, numbers, -, and _ are allowed.
- lite
Hbase StringInstance Id - ID of the resource.
- node
Type String - Instance node type, can be filled in as 4C16G, 8C32G, 16C64G, 32C128G, case insensitive.
- pay
Mode Double - Instance pay mode. Value range: 0: indicates post-pay mode, that is, pay-as-you-go. 1: indicates pre-pay mode, that is, monthly subscription.
- List<Lite
Hbase Instance Tag> - List of tags to bind to the instance.
- time
Span Double - Time span.
- time
Unit String - Time unit, fill in m which means month.
- zone
Settings List<LiteHbase Instance Zone Setting> - Detailed configuration of the instance availability zone, currently supports multiple availability zones, the number of availability zones can only be 1 or 3, including zone name, VPC information, and number of nodes. The total number of nodes across all zones must be greater than or equal to 3 and less than or equal to 50.
- auto
Renew numberFlag - AutoRenewFlag, Value range: 0: indicates NOTIFY_AND_MANUAL_RENEW; 1: indicates NOTIFY_AND_AUTO_RENEW; 2: indicates DISABLE_NOTIFY_AND_MANUAL_RENEW.
- disk
Size number - Instance single-node disk capacity, in GB. The single-node disk capacity must be greater than or equal to 100 and less than or equal to 250 times the number of CPU cores. The capacity adjustment step is 100.
- disk
Type string - Instance disk type, Value range: CLOUD_HSSD: indicate performance cloud storage(ESSD). CLOUD_BSSD: indicate standard cloud storage(SSD).
- instance
Name string - Instance name. Length limit is 6-36 characters. Only Chinese characters, letters, numbers, -, and _ are allowed.
- lite
Hbase stringInstance Id - ID of the resource.
- node
Type string - Instance node type, can be filled in as 4C16G, 8C32G, 16C64G, 32C128G, case insensitive.
- pay
Mode number - Instance pay mode. Value range: 0: indicates post-pay mode, that is, pay-as-you-go. 1: indicates pre-pay mode, that is, monthly subscription.
- Lite
Hbase Instance Tag[] - List of tags to bind to the instance.
- time
Span number - Time span.
- time
Unit string - Time unit, fill in m which means month.
- zone
Settings LiteHbase Instance Zone Setting[] - Detailed configuration of the instance availability zone, currently supports multiple availability zones, the number of availability zones can only be 1 or 3, including zone name, VPC information, and number of nodes. The total number of nodes across all zones must be greater than or equal to 3 and less than or equal to 50.
- auto_
renew_ floatflag - AutoRenewFlag, Value range: 0: indicates NOTIFY_AND_MANUAL_RENEW; 1: indicates NOTIFY_AND_AUTO_RENEW; 2: indicates DISABLE_NOTIFY_AND_MANUAL_RENEW.
- disk_
size float - Instance single-node disk capacity, in GB. The single-node disk capacity must be greater than or equal to 100 and less than or equal to 250 times the number of CPU cores. The capacity adjustment step is 100.
- disk_
type str - Instance disk type, Value range: CLOUD_HSSD: indicate performance cloud storage(ESSD). CLOUD_BSSD: indicate standard cloud storage(SSD).
- instance_
name str - Instance name. Length limit is 6-36 characters. Only Chinese characters, letters, numbers, -, and _ are allowed.
- lite_
hbase_ strinstance_ id - ID of the resource.
- node_
type str - Instance node type, can be filled in as 4C16G, 8C32G, 16C64G, 32C128G, case insensitive.
- pay_
mode float - Instance pay mode. Value range: 0: indicates post-pay mode, that is, pay-as-you-go. 1: indicates pre-pay mode, that is, monthly subscription.
- Sequence[Lite
Hbase Instance Tag Args] - List of tags to bind to the instance.
- time_
span float - Time span.
- time_
unit str - Time unit, fill in m which means month.
- zone_
settings Sequence[LiteHbase Instance Zone Setting Args] - Detailed configuration of the instance availability zone, currently supports multiple availability zones, the number of availability zones can only be 1 or 3, including zone name, VPC information, and number of nodes. The total number of nodes across all zones must be greater than or equal to 3 and less than or equal to 50.
- auto
Renew NumberFlag - AutoRenewFlag, Value range: 0: indicates NOTIFY_AND_MANUAL_RENEW; 1: indicates NOTIFY_AND_AUTO_RENEW; 2: indicates DISABLE_NOTIFY_AND_MANUAL_RENEW.
- disk
Size Number - Instance single-node disk capacity, in GB. The single-node disk capacity must be greater than or equal to 100 and less than or equal to 250 times the number of CPU cores. The capacity adjustment step is 100.
- disk
Type String - Instance disk type, Value range: CLOUD_HSSD: indicate performance cloud storage(ESSD). CLOUD_BSSD: indicate standard cloud storage(SSD).
- instance
Name String - Instance name. Length limit is 6-36 characters. Only Chinese characters, letters, numbers, -, and _ are allowed.
- lite
Hbase StringInstance Id - ID of the resource.
- node
Type String - Instance node type, can be filled in as 4C16G, 8C32G, 16C64G, 32C128G, case insensitive.
- pay
Mode Number - Instance pay mode. Value range: 0: indicates post-pay mode, that is, pay-as-you-go. 1: indicates pre-pay mode, that is, monthly subscription.
- List<Property Map>
- List of tags to bind to the instance.
- time
Span Number - Time span.
- time
Unit String - Time unit, fill in m which means month.
- zone
Settings List<Property Map> - Detailed configuration of the instance availability zone, currently supports multiple availability zones, the number of availability zones can only be 1 or 3, including zone name, VPC information, and number of nodes. The total number of nodes across all zones must be greater than or equal to 3 and less than or equal to 50.
Supporting Types
LiteHbaseInstanceTag, LiteHbaseInstanceTagArgs
LiteHbaseInstanceZoneSetting, LiteHbaseInstanceZoneSettingArgs
- Node
Num double - Number of nodes.
- Vpc
Settings LiteHbase Instance Zone Setting Vpc Settings - Private network related information configuration. This parameter can be used to specify the ID of the private network, subnet ID, and other information.
- Zone string
- The availability zone to which the instance belongs, such as ap-guangzhou-1.
- Node
Num float64 - Number of nodes.
- Vpc
Settings LiteHbase Instance Zone Setting Vpc Settings - Private network related information configuration. This parameter can be used to specify the ID of the private network, subnet ID, and other information.
- Zone string
- The availability zone to which the instance belongs, such as ap-guangzhou-1.
- node
Num Double - Number of nodes.
- vpc
Settings LiteHbase Instance Zone Setting Vpc Settings - Private network related information configuration. This parameter can be used to specify the ID of the private network, subnet ID, and other information.
- zone String
- The availability zone to which the instance belongs, such as ap-guangzhou-1.
- node
Num number - Number of nodes.
- vpc
Settings LiteHbase Instance Zone Setting Vpc Settings - Private network related information configuration. This parameter can be used to specify the ID of the private network, subnet ID, and other information.
- zone string
- The availability zone to which the instance belongs, such as ap-guangzhou-1.
- node_
num float - Number of nodes.
- vpc_
settings LiteHbase Instance Zone Setting Vpc Settings - Private network related information configuration. This parameter can be used to specify the ID of the private network, subnet ID, and other information.
- zone str
- The availability zone to which the instance belongs, such as ap-guangzhou-1.
- node
Num Number - Number of nodes.
- vpc
Settings Property Map - Private network related information configuration. This parameter can be used to specify the ID of the private network, subnet ID, and other information.
- zone String
- The availability zone to which the instance belongs, such as ap-guangzhou-1.
LiteHbaseInstanceZoneSettingVpcSettings, LiteHbaseInstanceZoneSettingVpcSettingsArgs
Import
emr lite_hbase_instance can be imported using the id, e.g.
$ pulumi import tencentcloud:index/liteHbaseInstance:LiteHbaseInstance lite_hbase_instance lite_hbase_instance_id
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloud
Terraform Provider.