Skip to content

Commit cee2f2b

Browse files
committed
add
1 parent 35a2e51 commit cee2f2b

8 files changed

+8
-8
lines changed

tencentcloud/services/cdc/data_source_tc_cdc_dedicated_cluster_hosts.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ func DataSourceTencentCloudCdcDedicatedClusterHostsRead(d *schema.ResourceData,
174174
hostInfoMap["host_id"] = hostInfo.HostId
175175
}
176176

177-
ids = append(ids)
177+
ids = append(ids, *hostInfo.HostId)
178178
tmpList = append(tmpList, hostInfoMap)
179179
}
180180

tencentcloud/services/cdc/data_source_tc_cdc_dedicated_cluster_hosts_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package cdc
1+
package cdc_test
22

33
import (
44
"testing"

tencentcloud/services/cdc/data_source_tc_cdc_dedicated_cluster_instance_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ func DataSourceTencentCloudCdcDedicatedClusterInstanceTypesRead(d *schema.Resour
211211
dedicatedClusterInstanceTypeMap["status"] = dedicatedClusterInstanceType.Status
212212
}
213213

214-
ids = append(ids)
214+
ids = append(ids, *dedicatedClusterInstanceType.InstanceType)
215215
tmpList = append(tmpList, dedicatedClusterInstanceTypeMap)
216216
}
217217

tencentcloud/services/cdc/data_source_tc_cdc_dedicated_cluster_instance_types_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package cdc
1+
package cdc_test
22

33
import (
44
"testing"

tencentcloud/services/cdc/data_source_tc_cdc_dedicated_cluster_orders.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ func DataSourceTencentCloudCdcDedicatedClusterOrdersRead(d *schema.ResourceData,
478478
dedicatedClusterOrderMap["order_type"] = dedicatedClusterOrder.OrderType
479479
}
480480

481-
ids = append(ids)
481+
ids = append(ids, *dedicatedClusterOrder.DedicatedClusterId)
482482
tmpList = append(tmpList, dedicatedClusterOrderMap)
483483
}
484484

tencentcloud/services/cdc/data_source_tc_cdc_dedicated_cluster_orders_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package cdc
1+
package cdc_test
22

33
import (
44
"testing"

tencentcloud/services/cdc/resource_tc_cdc_dedicated_cluster_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package cdc
1+
package cdc_test
22

33
import (
44
"testing"

tencentcloud/services/cdc/resource_tc_cdc_site_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package cdc
1+
package cdc_test
22

33
import (
44
"testing"

0 commit comments

Comments
 (0)