tencentcloud.ServerlessHbaseInstance
Explore with Pulumi AI
Provides a resource to create a emr serverless_hbase_instance
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const serverlessHbaseInstance = new tencentcloud.ServerlessHbaseInstance("serverlessHbaseInstance", {
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
serverless_hbase_instance = tencentcloud.ServerlessHbaseInstance("serverlessHbaseInstance",
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.NewServerlessHbaseInstance(ctx, "serverlessHbaseInstance", &tencentcloud.ServerlessHbaseInstanceArgs{
DiskSize: pulumi.Float64(100),
DiskType: pulumi.String("CLOUD_HSSD"),
InstanceName: pulumi.String("tf-test"),
NodeType: pulumi.String("8C32G"),
PayMode: pulumi.Float64(0),
Tags: tencentcloud.ServerlessHbaseInstanceTagArray{
&tencentcloud.ServerlessHbaseInstanceTagArgs{
TagKey: pulumi.String("test"),
TagValue: pulumi.String("test"),
},
},
ZoneSettings: tencentcloud.ServerlessHbaseInstanceZoneSettingArray{
&tencentcloud.ServerlessHbaseInstanceZoneSettingArgs{
NodeNum: pulumi.Float64(3),
VpcSettings: &tencentcloud.ServerlessHbaseInstanceZoneSettingVpcSettingsArgs{
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 serverlessHbaseInstance = new Tencentcloud.ServerlessHbaseInstance("serverlessHbaseInstance", new()
{
DiskSize = 100,
DiskType = "CLOUD_HSSD",
InstanceName = "tf-test",
NodeType = "8C32G",
PayMode = 0,
Tags = new[]
{
new Tencentcloud.Inputs.ServerlessHbaseInstanceTagArgs
{
TagKey = "test",
TagValue = "test",
},
},
ZoneSettings = new[]
{
new Tencentcloud.Inputs.ServerlessHbaseInstanceZoneSettingArgs
{
NodeNum = 3,
VpcSettings = new Tencentcloud.Inputs.ServerlessHbaseInstanceZoneSettingVpcSettingsArgs
{
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.ServerlessHbaseInstance;
import com.pulumi.tencentcloud.ServerlessHbaseInstanceArgs;
import com.pulumi.tencentcloud.inputs.ServerlessHbaseInstanceTagArgs;
import com.pulumi.tencentcloud.inputs.ServerlessHbaseInstanceZoneSettingArgs;
import com.pulumi.tencentcloud.inputs.ServerlessHbaseInstanceZoneSettingVpcSettingsArgs;
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 serverlessHbaseInstance = new ServerlessHbaseInstance("serverlessHbaseInstance", ServerlessHbaseInstanceArgs.builder()
.diskSize(100)
.diskType("CLOUD_HSSD")
.instanceName("tf-test")
.nodeType("8C32G")
.payMode(0)
.tags(ServerlessHbaseInstanceTagArgs.builder()
.tagKey("test")
.tagValue("test")
.build())
.zoneSettings(ServerlessHbaseInstanceZoneSettingArgs.builder()
.nodeNum(3)
.vpcSettings(ServerlessHbaseInstanceZoneSettingVpcSettingsArgs.builder()
.subnetId("subnet-xxxxxx")
.vpcId("vpc-xxxxxx")
.build())
.zone("ap-shanghai-2")
.build())
.build());
}
}
resources:
serverlessHbaseInstance:
type: tencentcloud:ServerlessHbaseInstance
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 ServerlessHbaseInstance Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServerlessHbaseInstance(name: string, args: ServerlessHbaseInstanceArgs, opts?: CustomResourceOptions);
@overload
def ServerlessHbaseInstance(resource_name: str,
args: ServerlessHbaseInstanceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ServerlessHbaseInstance(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[ServerlessHbaseInstanceZoneSettingArgs]] = None,
auto_renew_flag: Optional[float] = None,
node_type: Optional[str] = None,
serverless_hbase_instance_id: Optional[str] = None,
tags: Optional[Sequence[ServerlessHbaseInstanceTagArgs]] = None,
time_span: Optional[float] = None,
time_unit: Optional[str] = None)
func NewServerlessHbaseInstance(ctx *Context, name string, args ServerlessHbaseInstanceArgs, opts ...ResourceOption) (*ServerlessHbaseInstance, error)
public ServerlessHbaseInstance(string name, ServerlessHbaseInstanceArgs args, CustomResourceOptions? opts = null)
public ServerlessHbaseInstance(String name, ServerlessHbaseInstanceArgs args)
public ServerlessHbaseInstance(String name, ServerlessHbaseInstanceArgs args, CustomResourceOptions options)
type: tencentcloud:ServerlessHbaseInstance
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 ServerlessHbaseInstanceArgs
- 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 ServerlessHbaseInstanceArgs
- 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 ServerlessHbaseInstanceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServerlessHbaseInstanceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServerlessHbaseInstanceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
ServerlessHbaseInstance 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 ServerlessHbaseInstance 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<ServerlessHbase 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.
- Node
Type string - Instance node type, can be filled in as 4C16G, 8C32G, 16C64G, 32C128G, case insensitive.
- Serverless
Hbase stringInstance Id - ID of the resource.
- List<Serverless
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 []ServerlessHbase 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.
- Node
Type string - Instance node type, can be filled in as 4C16G, 8C32G, 16C64G, 32C128G, case insensitive.
- Serverless
Hbase stringInstance Id - ID of the resource.
- []Serverless
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<ServerlessHbase 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.
- node
Type String - Instance node type, can be filled in as 4C16G, 8C32G, 16C64G, 32C128G, case insensitive.
- serverless
Hbase StringInstance Id - ID of the resource.
- List<Serverless
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 ServerlessHbase 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.
- node
Type string - Instance node type, can be filled in as 4C16G, 8C32G, 16C64G, 32C128G, case insensitive.
- serverless
Hbase stringInstance Id - ID of the resource.
- Serverless
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[ServerlessHbase 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.
- node_
type str - Instance node type, can be filled in as 4C16G, 8C32G, 16C64G, 32C128G, case insensitive.
- serverless_
hbase_ strinstance_ id - ID of the resource.
- Sequence[Serverless
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.
- node
Type String - Instance node type, can be filled in as 4C16G, 8C32G, 16C64G, 32C128G, case insensitive.
- serverless
Hbase StringInstance Id - ID of the resource.
- 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 ServerlessHbaseInstance 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 ServerlessHbaseInstance Resource
Get an existing ServerlessHbaseInstance 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?: ServerlessHbaseInstanceState, opts?: CustomResourceOptions): ServerlessHbaseInstance
@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,
node_type: Optional[str] = None,
pay_mode: Optional[float] = None,
serverless_hbase_instance_id: Optional[str] = None,
tags: Optional[Sequence[ServerlessHbaseInstanceTagArgs]] = None,
time_span: Optional[float] = None,
time_unit: Optional[str] = None,
zone_settings: Optional[Sequence[ServerlessHbaseInstanceZoneSettingArgs]] = None) -> ServerlessHbaseInstance
func GetServerlessHbaseInstance(ctx *Context, name string, id IDInput, state *ServerlessHbaseInstanceState, opts ...ResourceOption) (*ServerlessHbaseInstance, error)
public static ServerlessHbaseInstance Get(string name, Input<string> id, ServerlessHbaseInstanceState? state, CustomResourceOptions? opts = null)
public static ServerlessHbaseInstance get(String name, Output<String> id, ServerlessHbaseInstanceState state, CustomResourceOptions options)
resources: _: type: tencentcloud:ServerlessHbaseInstance 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.
- 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.
- Serverless
Hbase stringInstance Id - ID of the resource.
- List<Serverless
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<ServerlessHbase 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.
- 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.
- Serverless
Hbase stringInstance Id - ID of the resource.
- []Serverless
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 []ServerlessHbase 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.
- 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.
- serverless
Hbase StringInstance Id - ID of the resource.
- List<Serverless
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<ServerlessHbase 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.
- 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.
- serverless
Hbase stringInstance Id - ID of the resource.
- Serverless
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 ServerlessHbase 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.
- 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.
- serverless_
hbase_ strinstance_ id - ID of the resource.
- Sequence[Serverless
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[ServerlessHbase 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.
- 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.
- serverless
Hbase StringInstance Id - ID of the resource.
- 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
ServerlessHbaseInstanceTag, ServerlessHbaseInstanceTagArgs
ServerlessHbaseInstanceZoneSetting, ServerlessHbaseInstanceZoneSettingArgs
- Node
Num double - Number of nodes.
- Vpc
Settings ServerlessHbase 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 ServerlessHbase 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 ServerlessHbase 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 ServerlessHbase 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 ServerlessHbase 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.
ServerlessHbaseInstanceZoneSettingVpcSettings, ServerlessHbaseInstanceZoneSettingVpcSettingsArgs
Import
emr serverless_hbase_instance can be imported using the id, e.g.
$ pulumi import tencentcloud:index/serverlessHbaseInstance:ServerlessHbaseInstance serverless_hbase_instance serverless_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.