import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ServerlessHbaseInstanceConfig 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/serverless_hbase_instance#auto_renew_flag ServerlessHbaseInstance#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/serverless_hbase_instance#disk_size ServerlessHbaseInstance#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/serverless_hbase_instance#disk_type ServerlessHbaseInstance#disk_type} */ readonly diskType: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/serverless_hbase_instance#id ServerlessHbaseInstance#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/serverless_hbase_instance#instance_name ServerlessHbaseInstance#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/serverless_hbase_instance#node_type ServerlessHbaseInstance#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/serverless_hbase_instance#pay_mode ServerlessHbaseInstance#pay_mode} */ readonly payMode: number; /** * Time span. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/serverless_hbase_instance#time_span ServerlessHbaseInstance#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/serverless_hbase_instance#time_unit ServerlessHbaseInstance#time_unit} */ readonly timeUnit?: string; /** * tags block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/serverless_hbase_instance#tags ServerlessHbaseInstance#tags} */ readonly tags?: ServerlessHbaseInstanceTags[] | cdktf.IResolvable; /** * zone_settings block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/serverless_hbase_instance#zone_settings ServerlessHbaseInstance#zone_settings} */ readonly zoneSettings: ServerlessHbaseInstanceZoneSettings[] | cdktf.IResolvable; } export interface ServerlessHbaseInstanceTags { /** * Tag key. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/serverless_hbase_instance#tag_key ServerlessHbaseInstance#tag_key} */ readonly tagKey?: string; /** * Tag value. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/serverless_hbase_instance#tag_value ServerlessHbaseInstance#tag_value} */ readonly tagValue?: string; } export declare function serverlessHbaseInstanceTagsToTerraform(struct?: ServerlessHbaseInstanceTags | cdktf.IResolvable): any; export declare function serverlessHbaseInstanceTagsToHclTerraform(struct?: ServerlessHbaseInstanceTags | cdktf.IResolvable): any; export declare class ServerlessHbaseInstanceTagsOutputReference 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(): ServerlessHbaseInstanceTags | cdktf.IResolvable | undefined; set internalValue(value: ServerlessHbaseInstanceTags | 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 ServerlessHbaseInstanceTagsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: ServerlessHbaseInstanceTags[] | 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): ServerlessHbaseInstanceTagsOutputReference; } export interface ServerlessHbaseInstanceZoneSettingsVpcSettings { /** * Subnet ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/serverless_hbase_instance#subnet_id ServerlessHbaseInstance#subnet_id} */ readonly subnetId: string; /** * VPC ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/serverless_hbase_instance#vpc_id ServerlessHbaseInstance#vpc_id} */ readonly vpcId: string; } export declare function serverlessHbaseInstanceZoneSettingsVpcSettingsToTerraform(struct?: ServerlessHbaseInstanceZoneSettingsVpcSettingsOutputReference | ServerlessHbaseInstanceZoneSettingsVpcSettings): any; export declare function serverlessHbaseInstanceZoneSettingsVpcSettingsToHclTerraform(struct?: ServerlessHbaseInstanceZoneSettingsVpcSettingsOutputReference | ServerlessHbaseInstanceZoneSettingsVpcSettings): any; export declare class ServerlessHbaseInstanceZoneSettingsVpcSettingsOutputReference 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(): ServerlessHbaseInstanceZoneSettingsVpcSettings | undefined; set internalValue(value: ServerlessHbaseInstanceZoneSettingsVpcSettings | 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 ServerlessHbaseInstanceZoneSettings { /** * Number of nodes. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/serverless_hbase_instance#node_num ServerlessHbaseInstance#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/serverless_hbase_instance#zone ServerlessHbaseInstance#zone} */ readonly zone: string; /** * vpc_settings block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/serverless_hbase_instance#vpc_settings ServerlessHbaseInstance#vpc_settings} */ readonly vpcSettings: ServerlessHbaseInstanceZoneSettingsVpcSettings; } export declare function serverlessHbaseInstanceZoneSettingsToTerraform(struct?: ServerlessHbaseInstanceZoneSettings | cdktf.IResolvable): any; export declare function serverlessHbaseInstanceZoneSettingsToHclTerraform(struct?: ServerlessHbaseInstanceZoneSettings | cdktf.IResolvable): any; export declare class ServerlessHbaseInstanceZoneSettingsOutputReference 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(): ServerlessHbaseInstanceZoneSettings | cdktf.IResolvable | undefined; set internalValue(value: ServerlessHbaseInstanceZoneSettings | 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(): ServerlessHbaseInstanceZoneSettingsVpcSettingsOutputReference; putVpcSettings(value: ServerlessHbaseInstanceZoneSettingsVpcSettings): void; get vpcSettingsInput(): ServerlessHbaseInstanceZoneSettingsVpcSettings; } export declare class ServerlessHbaseInstanceZoneSettingsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: ServerlessHbaseInstanceZoneSettings[] | 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): ServerlessHbaseInstanceZoneSettingsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/serverless_hbase_instance tencentcloud_serverless_hbase_instance} */ export declare class ServerlessHbaseInstance extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_serverless_hbase_instance"; /** * Generates CDKTF code for importing a ServerlessHbaseInstance 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 ServerlessHbaseInstance to import * @param importFromId The id of the existing ServerlessHbaseInstance that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/serverless_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 ServerlessHbaseInstance 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/serverless_hbase_instance tencentcloud_serverless_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 ServerlessHbaseInstanceConfig */ constructor(scope: Construct, id: string, config: ServerlessHbaseInstanceConfig); 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(): ServerlessHbaseInstanceTagsList; putTags(value: ServerlessHbaseInstanceTags[] | cdktf.IResolvable): void; resetTags(): void; get tagsInput(): any; private _zoneSettings; get zoneSettings(): ServerlessHbaseInstanceZoneSettingsList; putZoneSettings(value: ServerlessHbaseInstanceZoneSettings[] | cdktf.IResolvable): void; get zoneSettingsInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }