Skip to content

fix(emr): [123456789]update emr serverless hbase #3140

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Feb 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changelog/3140.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
```release-note:new-data-source
tencentcloud_serverless_hbase_instances
```

```release-note:enhancement
resource/tencentcloud_serverless_hbase_instance: fixed a delay in status updates
```
1 change: 1 addition & 0 deletions tencentcloud/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,7 @@ func Provider() *schema.Provider {
"tencentcloud_emr_nodes": emr.DataSourceTencentCloudEmrNodes(),
"tencentcloud_emr_cvm_quota": emr.DataSourceTencentCloudEmrCvmQuota(),
"tencentcloud_emr_auto_scale_records": emr.DataSourceTencentCloudEmrAutoScaleRecords(),
"tencentcloud_serverless_hbase_instances": emr.DataSourceTencentCloudServerlessHbaseInstances(),
"tencentcloud_availability_zones": common.DataSourceTencentCloudAvailabilityZones(),
"tencentcloud_availability_zones_by_product": common.DataSourceTencentCloudAvailabilityZonesByProduct(),
"tencentcloud_projects": project.DataSourceTencentCloudProjects(),
Expand Down
1 change: 1 addition & 0 deletions tencentcloud/provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -1329,6 +1329,7 @@ MapReduce(EMR)
tencentcloud_emr_nodes
tencentcloud_emr_cvm_quota
tencentcloud_lite_hbase_instances
tencentcloud_serverless_hbase_instances

Resource
tencentcloud_emr_cluster
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ import (

func DataSourceTencentCloudLiteHbaseInstances() *schema.Resource {
return &schema.Resource{
Read: dataSourceTencentCloudLiteHbaseInstancesRead,
DeprecationMessage: "This data source will been deprecated in Terraform TencentCloud provider later version. Please use `tencentcloud_serverless_hbase_instances` instead.",
Read: dataSourceTencentCloudLiteHbaseInstancesRead,
Schema: map[string]*schema.Schema{
"display_strategy": {
Type: schema.TypeString,
Expand Down
Loading
Loading