import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface LiteHbaseInstanceConfig extends cdktf.TerraformMetaArguments { /** * AutoRenewFlag, Value range: 0: indicates NOTIFY_AND_MANUAL_RENEW; 1: indicates NOTIFY_AND_AUTO_RENEW; 2: indicates DISABLE_NOTIFY_AND_MANUAL_RENEW. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lite_hbase_instance#auto_renew_flag LiteHbaseInstance#auto_renew_flag} */ readonly autoRenewFlag?: 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. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lite_hbase_instance#disk_size LiteHbaseInstance#disk_size} */ readonly diskSize: number; /** * Instance disk type, Value range: CLOUD_HSSD: indicate performance cloud storage(ESSD). CLOUD_BSSD: indicate standard cloud storage(SSD). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lite_hbase_instance#disk_type LiteHbaseInstance#disk_type} */ readonly diskType: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lite_hbase_instance#id LiteHbaseInstance#id} * * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. */ readonly id?: string; /** * Instance name. Length limit is 6-36 characters. Only Chinese characters, letters, numbers, -, and _ are allowed. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lite_hbase_instance#instance_name LiteHbaseInstance#instance_name} */ readonly instanceName: string; /** * Instance node type, can be filled in as 4C16G, 8C32G, 16C64G, 32C128G, case insensitive. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lite_hbase_instance#node_type LiteHbaseInstance#node_type} */ readonly nodeType?: string; /** * 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. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lite_hbase_instance#pay_mode LiteHbaseInstance#pay_mode} */ readonly payMode: number; /** * Time span. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lite_hbase_instance#time_span LiteHbaseInstance#time_span} */ readonly timeSpan?: number; /** * Time unit, fill in m which means month. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lite_hbase_instance#time_unit LiteHbaseInstance#time_unit} */ readonly timeUnit?: string; /** * tags block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lite_hbase_instance#tags LiteHbaseInstance#tags} */ readonly tags?: LiteHbaseInstanceTags[] | cdktf.IResolvable; /** * zone_settings block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lite_hbase_instance#zone_settings LiteHbaseInstance#zone_settings} */ readonly zoneSettings: LiteHbaseInstanceZoneSettings[] | cdktf.IResolvable; } export interface LiteHbaseInstanceTags { /** * Tag key. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lite_hbase_instance#tag_key LiteHbaseInstance#tag_key} */ readonly tagKey?: string; /** * Tag value. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lite_hbase_instance#tag_value LiteHbaseInstance#tag_value} */ readonly tagValue?: string; } export declare function liteHbaseInstanceTagsToTerraform(struct?: LiteHbaseInstanceTags | cdktf.IResolvable): any; export declare function liteHbaseInstanceTagsToHclTerraform(struct?: LiteHbaseInstanceTags | cdktf.IResolvable): any; export declare class LiteHbaseInstanceTagsOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): LiteHbaseInstanceTags | cdktf.IResolvable | undefined; set internalValue(value: LiteHbaseInstanceTags | cdktf.IResolvable | undefined); private _tagKey?; get tagKey(): string; set tagKey(value: string); resetTagKey(): void; get tagKeyInput(): string; private _tagValue?; get tagValue(): string; set tagValue(value: string); resetTagValue(): void; get tagValueInput(): string; } export declare class LiteHbaseInstanceTagsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: LiteHbaseInstanceTags[] | cdktf.IResolvable; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): LiteHbaseInstanceTagsOutputReference; } export interface LiteHbaseInstanceZoneSettingsVpcSettings { /** * Subnet ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lite_hbase_instance#subnet_id LiteHbaseInstance#subnet_id} */ readonly subnetId: string; /** * VPC ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lite_hbase_instance#vpc_id LiteHbaseInstance#vpc_id} */ readonly vpcId: string; } export declare function liteHbaseInstanceZoneSettingsVpcSettingsToTerraform(struct?: LiteHbaseInstanceZoneSettingsVpcSettingsOutputReference | LiteHbaseInstanceZoneSettingsVpcSettings): any; export declare function liteHbaseInstanceZoneSettingsVpcSettingsToHclTerraform(struct?: LiteHbaseInstanceZoneSettingsVpcSettingsOutputReference | LiteHbaseInstanceZoneSettingsVpcSettings): any; export declare class LiteHbaseInstanceZoneSettingsVpcSettingsOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): LiteHbaseInstanceZoneSettingsVpcSettings | undefined; set internalValue(value: LiteHbaseInstanceZoneSettingsVpcSettings | undefined); private _subnetId?; get subnetId(): string; set subnetId(value: string); get subnetIdInput(): string; private _vpcId?; get vpcId(): string; set vpcId(value: string); get vpcIdInput(): string; } export interface LiteHbaseInstanceZoneSettings { /** * Number of nodes. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lite_hbase_instance#node_num LiteHbaseInstance#node_num} */ readonly nodeNum: number; /** * The availability zone to which the instance belongs, such as ap-guangzhou-1. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lite_hbase_instance#zone LiteHbaseInstance#zone} */ readonly zone: string; /** * vpc_settings block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lite_hbase_instance#vpc_settings LiteHbaseInstance#vpc_settings} */ readonly vpcSettings: LiteHbaseInstanceZoneSettingsVpcSettings; } export declare function liteHbaseInstanceZoneSettingsToTerraform(struct?: LiteHbaseInstanceZoneSettings | cdktf.IResolvable): any; export declare function liteHbaseInstanceZoneSettingsToHclTerraform(struct?: LiteHbaseInstanceZoneSettings | cdktf.IResolvable): any; export declare class LiteHbaseInstanceZoneSettingsOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): LiteHbaseInstanceZoneSettings | cdktf.IResolvable | undefined; set internalValue(value: LiteHbaseInstanceZoneSettings | cdktf.IResolvable | undefined); private _nodeNum?; get nodeNum(): number; set nodeNum(value: number); get nodeNumInput(): number; private _zone?; get zone(): string; set zone(value: string); get zoneInput(): string; private _vpcSettings; get vpcSettings(): LiteHbaseInstanceZoneSettingsVpcSettingsOutputReference; putVpcSettings(value: LiteHbaseInstanceZoneSettingsVpcSettings): void; get vpcSettingsInput(): LiteHbaseInstanceZoneSettingsVpcSettings; } export declare class LiteHbaseInstanceZoneSettingsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: LiteHbaseInstanceZoneSettings[] | cdktf.IResolvable; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): LiteHbaseInstanceZoneSettingsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lite_hbase_instance tencentcloud_lite_hbase_instance} */ export declare class LiteHbaseInstance extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_lite_hbase_instance"; /** * Generates CDKTF code for importing a LiteHbaseInstance resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the LiteHbaseInstance to import * @param importFromId The id of the existing LiteHbaseInstance that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lite_hbase_instance#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the LiteHbaseInstance to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/lite_hbase_instance tencentcloud_lite_hbase_instance} Resource * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options LiteHbaseInstanceConfig */ constructor(scope: Construct, id: string, config: LiteHbaseInstanceConfig); private _autoRenewFlag?; get autoRenewFlag(): number; set autoRenewFlag(value: number); resetAutoRenewFlag(): void; get autoRenewFlagInput(): number; private _diskSize?; get diskSize(): number; set diskSize(value: number); get diskSizeInput(): number; private _diskType?; get diskType(): string; set diskType(value: string); get diskTypeInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _instanceName?; get instanceName(): string; set instanceName(value: string); get instanceNameInput(): string; private _nodeType?; get nodeType(): string; set nodeType(value: string); resetNodeType(): void; get nodeTypeInput(): string; private _payMode?; get payMode(): number; set payMode(value: number); get payModeInput(): number; private _timeSpan?; get timeSpan(): number; set timeSpan(value: number); resetTimeSpan(): void; get timeSpanInput(): number; private _timeUnit?; get timeUnit(): string; set timeUnit(value: string); resetTimeUnit(): void; get timeUnitInput(): string; private _tags; get tags(): LiteHbaseInstanceTagsList; putTags(value: LiteHbaseInstanceTags[] | cdktf.IResolvable): void; resetTags(): void; get tagsInput(): any; private _zoneSettings; get zoneSettings(): LiteHbaseInstanceZoneSettingsList; putZoneSettings(value: LiteHbaseInstanceZoneSettings[] | cdktf.IResolvable): void; get zoneSettingsInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }