-
-
- EOT
- }
-}
-
-```
-
-Import
-
-ses template can be imported using the id, e.g.
-```
-$ terraform import tencentcloud_ses_template.example template_id
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_ses_verify_domain.go b/tencentcloud/resource_tc_ses_verify_domain.go
index bfa25325d3..527fa2504f 100644
--- a/tencentcloud/resource_tc_ses_verify_domain.go
+++ b/tencentcloud/resource_tc_ses_verify_domain.go
@@ -1,16 +1,3 @@
-/*
-Provides a resource to create a ses verify_domain
-
-~> **NOTE:** Please add the `attributes` information returned by `tencentcloud_ses_domain` to the domain name resolution record through `tencentcloud_dnspod_record`, and then verify it.
-
-Example Usage
-
-```hcl
-resource "tencentcloud_ses_verify_domain" "verify_domain" {
- email_identity = "example.com"
-}
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sms_sign.go b/tencentcloud/resource_tc_sms_sign.go
index 1faf2fdabf..47abc88d6b 100644
--- a/tencentcloud/resource_tc_sms_sign.go
+++ b/tencentcloud/resource_tc_sms_sign.go
@@ -1,22 +1,3 @@
-/*
-Provides a resource to create a sms sign
-
-Example Usage
-
-Create a sms sign instance
-
-```hcl
-resource "tencentcloud_sms_sign" "example" {
- sign_name = "tf_example_sms_sign"
- sign_type = 1 # 1:APP, DocumentType can be chosen(0,1,2,3,4)
- document_type = 4 # Screenshot of application background management (personally developed APP)
- international = 0 # Mainland China SMS
- sign_purpose = 0 # personal use
- proof_image = "your_proof_image"
-}
-```
-
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sms_template.go b/tencentcloud/resource_tc_sms_template.go
index 6e196ec13c..8e3ecbb0f9 100644
--- a/tencentcloud/resource_tc_sms_template.go
+++ b/tencentcloud/resource_tc_sms_template.go
@@ -1,21 +1,3 @@
-/*
-Provides a resource to create a sms template
-
-Example Usage
-
-Create a sms template
-
-```hcl
-resource "tencentcloud_sms_template" "template" {
- template_name = "tf_example_sms_template"
- template_content = "example for sms template"
- international = 0 # Mainland China SMS
- sms_type = 0 # regular SMS
- remark = "terraform example"
-}
-
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_account.go b/tencentcloud/resource_tc_sqlserver_account.go
index cf1566a902..c54e957652 100644
--- a/tencentcloud/resource_tc_sqlserver_account.go
+++ b/tencentcloud/resource_tc_sqlserver_account.go
@@ -1,68 +1,3 @@
-/*
-Use this resource to create SQL Server account
-
-Example Usage
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_basic_instance" "example" {
- name = "tf-example"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- project_id = 0
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_PREMIUM"
- maintenance_week_set = [1, 2, 3]
- maintenance_start_time = "09:00"
- maintenance_time_span = 3
- security_groups = [tencentcloud_security_group.security_group.id]
-
- tags = {
- "test" = "test"
- }
-}
-
-resource "tencentcloud_sqlserver_account" "example" {
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
- name = "tf_example_account"
- password = "Qwer@234"
- remark = "test-remark"
-}
-```
-
-Import
-
-SQL Server account can be imported using the id, e.g.
-
-```
-$ terraform import tencentcloud_sqlserver_account.example mssql-3cdq7kx5#tf_example_account
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_account_db_attachment.go b/tencentcloud/resource_tc_sqlserver_account_db_attachment.go
index fd215859b8..4c88757b88 100644
--- a/tencentcloud/resource_tc_sqlserver_account_db_attachment.go
+++ b/tencentcloud/resource_tc_sqlserver_account_db_attachment.go
@@ -1,82 +1,3 @@
-/*
-Use this resource to create SQL Server account DB attachment
-
-Example Usage
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_basic_instance" "example" {
- name = "tf-example"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- project_id = 0
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_PREMIUM"
- maintenance_week_set = [1, 2, 3]
- maintenance_start_time = "09:00"
- maintenance_time_span = 3
- security_groups = [tencentcloud_security_group.security_group.id]
-
- tags = {
- "test" = "test"
- }
-}
-
-resource "tencentcloud_sqlserver_db" "example" {
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
- name = "tf_example_db"
- charset = "Chinese_PRC_BIN"
- remark = "test-remark"
-}
-
-resource "tencentcloud_sqlserver_account" "example" {
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
- name = "tf_example_account"
- password = "Qwer@234"
- remark = "test-remark"
-}
-
-resource "tencentcloud_sqlserver_account_db_attachment" "example" {
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
- account_name = tencentcloud_sqlserver_account.example.name
- db_name = tencentcloud_sqlserver_db.example.name
- privilege = "ReadWrite"
-}
-```
-
-Import
-
-SQL Server account DB attachment can be imported using the id, e.g.
-
-```
-$ terraform import tencentcloud_sqlserver_account_db_attachment.example mssql-3cdq7kx5#tf_example_account#tf_example_db
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_basic_instance.go b/tencentcloud/resource_tc_sqlserver_basic_instance.go
index e9a292be94..acc50f32f3 100644
--- a/tencentcloud/resource_tc_sqlserver_basic_instance.go
+++ b/tencentcloud/resource_tc_sqlserver_basic_instance.go
@@ -1,60 +1,3 @@
-/*
-Provides a SQL Server instance resource to create basic database instances.
-
-Example Usage
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_basic_instance" "example" {
- name = "tf-example"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- project_id = 0
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_PREMIUM"
- maintenance_week_set = [1, 2, 3]
- maintenance_start_time = "09:00"
- maintenance_time_span = 3
- security_groups = [tencentcloud_security_group.security_group.id]
-
- tags = {
- "test" = "test"
- }
-}
-```
-Import
-
-SQL Server basic instance can be imported using the id, e.g.
-
-```
-$ terraform import tencentcloud_sqlserver_basic_instance.example mssql-3cdq7kx5
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_business_intelligence_file.go b/tencentcloud/resource_tc_sqlserver_business_intelligence_file.go
index 360e602f7a..7cdb7d5473 100644
--- a/tencentcloud/resource_tc_sqlserver_business_intelligence_file.go
+++ b/tencentcloud/resource_tc_sqlserver_business_intelligence_file.go
@@ -1,64 +1,3 @@
-/*
-Provides a resource to create a sqlserver business_intelligence_file
-
-Example Usage
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_business_intelligence_instance" "example" {
- zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_PREMIUM"
- project_id = 0
- subnet_id = tencentcloud_subnet.subnet.id
- vpc_id = tencentcloud_vpc.vpc.id
- db_version = "201603"
- security_group_list = [tencentcloud_security_group.security_group.id]
- weekly = [1, 2, 3, 4, 5, 6, 7]
- start_time = "00:00"
- span = 6
- instance_name = "tf_example"
-}
-
-resource "tencentcloud_sqlserver_business_intelligence_file" "example" {
- instance_id = tencentcloud_sqlserver_business_intelligence_instance.example.id
- file_url = "https://tf-example-1208515315.cos.ap-guangzhou.myqcloud.com/sqlserver_business_intelligence_file.txt"
- file_type = "FLAT"
- remark = "desc."
-}
-```
-
-Import
-
-sqlserver business_intelligence_file can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_sqlserver_business_intelligence_file.example mssqlbi-fo2dwujt#test.xlsx
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_business_intelligence_instance.go b/tencentcloud/resource_tc_sqlserver_business_intelligence_instance.go
index 6a7bc4e162..e94af9a4e8 100644
--- a/tencentcloud/resource_tc_sqlserver_business_intelligence_instance.go
+++ b/tencentcloud/resource_tc_sqlserver_business_intelligence_instance.go
@@ -1,57 +1,3 @@
-/*
-Provides a resource to create a sqlserver business_intelligence_instance
-
-Example Usage
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_business_intelligence_instance" "example" {
- zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_PREMIUM"
- project_id = 0
- subnet_id = tencentcloud_subnet.subnet.id
- vpc_id = tencentcloud_vpc.vpc.id
- db_version = "201603"
- security_group_list = [tencentcloud_security_group.security_group.id]
- weekly = [1, 2, 3, 4, 5, 6, 7]
- start_time = "00:00"
- span = 6
- instance_name = "tf_example"
-}
-```
-
-Import
-
-sqlserver business_intelligence_instance can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_sqlserver_business_intelligence_instance.example mssqlbi-fo2dwujt
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_complete_expansion.go b/tencentcloud/resource_tc_sqlserver_complete_expansion.go
index 0389bae54c..73a2709b23 100644
--- a/tencentcloud/resource_tc_sqlserver_complete_expansion.go
+++ b/tencentcloud/resource_tc_sqlserver_complete_expansion.go
@@ -1,83 +1,3 @@
-/*
-Provides a resource to create a sqlserver complete_expansion
-
-Example Usage
-
-First, Create a basic SQL instance
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "example-vpc"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "example-vpc"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "example-sg"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_instance" "example" {
- name = "tf_example_sql"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- security_groups = [tencentcloud_security_group.security_group.id]
- project_id = 0
- memory = 2
- storage = 20
- maintenance_week_set = [1, 2, 3]
- maintenance_start_time = "01:00"
- maintenance_time_span = 3
- tags = {
- "createBy" = "tfExample"
- }
-}
-```
-
-Expand the current instance, storage: 20->40, wait_switch = 1
-
-```hcl
-resource "tencentcloud_sqlserver_instance" "example" {
- name = "tf_example_sql"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- security_groups = [tencentcloud_security_group.security_group.id]
- project_id = 0
- memory = 2
- storage = 40
- wait_switch = 1
- maintenance_week_set = [1, 2, 3]
- maintenance_start_time = "01:00"
- maintenance_time_span = 3
- tags = {
- "createBy" = "tfExample"
- }
-}
-```
-
-Complete the expansion task immediately
-
-```hcl
-resource "tencentcloud_sqlserver_complete_expansion" "example" {
- instance_id = tencentcloud_sqlserver_instance.example.id
-}
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_config_backup_strategy.go b/tencentcloud/resource_tc_sqlserver_config_backup_strategy.go
index 0832ad8aad..e0e5a7d89f 100644
--- a/tencentcloud/resource_tc_sqlserver_config_backup_strategy.go
+++ b/tencentcloud/resource_tc_sqlserver_config_backup_strategy.go
@@ -1,111 +1,3 @@
-/*
-Provides a resource to create a sqlserver config_backup_strategy
-
-Example Usage
-
-Daily backup
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_basic_instance" "example" {
- name = "tf-example"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- project_id = 0
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_PREMIUM"
- maintenance_week_set = [1, 2, 3]
- maintenance_start_time = "09:00"
- maintenance_time_span = 3
- security_groups = [tencentcloud_security_group.security_group.id]
-
- tags = {
- "test" = "test"
- }
-}
-
-resource "tencentcloud_sqlserver_config_backup_strategy" "example" {
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
- backup_type = "daily"
- backup_time = 0
- backup_day = 1
- backup_model = "master_no_pkg"
- backup_cycle = [1]
- backup_save_days = 7
- regular_backup_enable = "disable"
- regular_backup_save_days = 90
- regular_backup_strategy = "months"
- regular_backup_counts = 1
-}
-```
-
-Weekly backup
-
-```hcl
-resource "tencentcloud_sqlserver_config_backup_strategy" "example" {
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
- backup_type = "weekly"
- backup_time = 0
- backup_model = "master_no_pkg"
- backup_cycle = [1, 3, 5]
- backup_save_days = 7
- regular_backup_enable = "disable"
- regular_backup_save_days = 90
- regular_backup_strategy = "months"
- regular_backup_counts = 1
-}
-```
-
-Regular backup
-
-```hcl
-resource "tencentcloud_sqlserver_config_backup_strategy" "example" {
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
- backup_time = 0
- backup_model = "master_no_pkg"
- backup_cycle = [1, 3]
- backup_save_days = 7
- regular_backup_enable = "enable"
- regular_backup_save_days = 120
- regular_backup_strategy = "months"
- regular_backup_counts = 1
- regular_backup_start_time = "%s"
-}
-```
-
-Import
-
-sqlserver config_backup_strategy can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_sqlserver_config_backup_strategy.example mssql-si2823jyl
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_config_database_cdc.go b/tencentcloud/resource_tc_sqlserver_config_database_cdc.go
index efc578961d..04f1a09fc5 100644
--- a/tencentcloud/resource_tc_sqlserver_config_database_cdc.go
+++ b/tencentcloud/resource_tc_sqlserver_config_database_cdc.go
@@ -1,86 +1,3 @@
-/*
-Provides a resource to create a sqlserver config_database_cdc
-
-Example Usage
-
-Turn off database data change capture (CDC)
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_basic_instance" "example" {
- name = "tf-example"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- project_id = 0
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_PREMIUM"
- maintenance_week_set = [1, 2, 3]
- maintenance_start_time = "09:00"
- maintenance_time_span = 3
- security_groups = [tencentcloud_security_group.security_group.id]
-
- tags = {
- "test" = "test"
- }
-}
-
-resource "tencentcloud_sqlserver_db" "example" {
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
- name = "tf_example_db"
- charset = "Chinese_PRC_BIN"
- remark = "test-remark"
-}
-
-resource "tencentcloud_sqlserver_config_database_cdc" "example" {
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
- db_name = tencentcloud_sqlserver_db.example.name
- modify_type = "disable"
-}
-```
-
-Enable Database Data Change Capture (CDC)
-
-```hcl
-resource "tencentcloud_sqlserver_config_database_cdc" "example" {
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
- db_name = tencentcloud_sqlserver_db.example.name
- modify_type = "enable"
-}
-```
-
-Import
-
-sqlserver config_database_cdc can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_sqlserver_config_database_cdc.example mssql-i9ma6oy7#tf_example_db
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_config_database_ct.go b/tencentcloud/resource_tc_sqlserver_config_database_ct.go
index c2ceab23f9..9370cd1e15 100644
--- a/tencentcloud/resource_tc_sqlserver_config_database_ct.go
+++ b/tencentcloud/resource_tc_sqlserver_config_database_ct.go
@@ -1,75 +1,3 @@
-/*
-Provides a resource to create a sqlserver config_database_ct
-
-Example Usage
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_basic_instance" "example" {
- name = "tf-example"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- project_id = 0
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_PREMIUM"
- maintenance_week_set = [1, 2, 3]
- maintenance_start_time = "09:00"
- maintenance_time_span = 3
- security_groups = [tencentcloud_security_group.security_group.id]
-
- tags = {
- "test" = "test"
- }
-}
-
-resource "tencentcloud_sqlserver_db" "example" {
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
- name = "tf_example_db"
- charset = "Chinese_PRC_BIN"
- remark = "test-remark"
-}
-
-resource "tencentcloud_sqlserver_config_database_ct" "example" {
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
- db_name = tencentcloud_sqlserver_db.example.name
- modify_type = "disable"
- change_retention_day = 7
-}
-```
-
-Import
-
-sqlserver tencentcloud_sqlserver_config_database_ct can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_sqlserver_config_database_ct.example mssql-i9ma6oy7#tf_example_db
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_config_database_mdf.go b/tencentcloud/resource_tc_sqlserver_config_database_mdf.go
index 96cc0e89ab..d2926bb6be 100644
--- a/tencentcloud/resource_tc_sqlserver_config_database_mdf.go
+++ b/tencentcloud/resource_tc_sqlserver_config_database_mdf.go
@@ -1,73 +1,3 @@
-/*
-Provides a resource to create a sqlserver config_database_mdf
-
-Example Usage
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_basic_instance" "example" {
- name = "tf-example"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- project_id = 0
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_PREMIUM"
- maintenance_week_set = [1, 2, 3]
- maintenance_start_time = "09:00"
- maintenance_time_span = 3
- security_groups = [tencentcloud_security_group.security_group.id]
-
- tags = {
- "test" = "test"
- }
-}
-
-resource "tencentcloud_sqlserver_db" "example" {
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
- name = "tf_example_db"
- charset = "Chinese_PRC_BIN"
- remark = "test-remark"
-}
-
-resource "tencentcloud_sqlserver_config_database_mdf" "example" {
- db_name = tencentcloud_sqlserver_db.example.name
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
-}
-```
-
-Import
-
-sqlserver config_database_mdf can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_sqlserver_config_database_mdf.example mssql-i9ma6oy7#tf_example_db
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_config_instance_param.go b/tencentcloud/resource_tc_sqlserver_config_instance_param.go
index addc3416be..6c64260b60 100644
--- a/tencentcloud/resource_tc_sqlserver_config_instance_param.go
+++ b/tencentcloud/resource_tc_sqlserver_config_instance_param.go
@@ -1,69 +1,3 @@
-/*
-Provides a resource to create a sqlserver config_instance_param
-
-Example Usage
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_basic_instance" "example" {
- name = "tf-example"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- project_id = 0
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_PREMIUM"
- maintenance_week_set = [1, 2, 3]
- maintenance_start_time = "09:00"
- maintenance_time_span = 3
- security_groups = [tencentcloud_security_group.security_group.id]
-
- tags = {
- "test" = "test"
- }
-}
-
-resource "tencentcloud_sqlserver_config_instance_param" "example" {
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
- param_list {
- name = "fill factor(%)"
- current_value = "90"
- }
-}
-```
-
-Import
-
-sqlserver config_instance_param can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_sqlserver_config_instance_param.example config_instance_param
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_config_instance_ro_group.go b/tencentcloud/resource_tc_sqlserver_config_instance_ro_group.go
index 1f66329df7..d29cb46d70 100644
--- a/tencentcloud/resource_tc_sqlserver_config_instance_ro_group.go
+++ b/tencentcloud/resource_tc_sqlserver_config_instance_ro_group.go
@@ -1,87 +1,3 @@
-/*
-Provides a resource to create a sqlserver config_instance_ro_group
-
-Example Usage
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_basic_instance" "example" {
- name = "tf-example"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- project_id = 0
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_PREMIUM"
- maintenance_week_set = [1, 2, 3]
- maintenance_start_time = "09:00"
- maintenance_time_span = 3
- security_groups = [tencentcloud_security_group.security_group.id]
-
- tags = {
- "test" = "test"
- }
-}
-
-resource "tencentcloud_sqlserver_readonly_instance" "example" {
- name = "tf_example"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- memory = 4
- storage = 20
- master_instance_id = tencentcloud_sqlserver_basic_instance.example.id
- readonly_group_type = 2
- read_only_group_name = "tf_example_ro"
- is_offline_delay = 1
- read_only_max_delay_time = 10
- min_read_only_in_group = 0
- force_upgrade = true
-}
-
-resource "tencentcloud_sqlserver_config_instance_ro_group" "example" {
- instance_id = tencentcloud_sqlserver_readonly_instance.example.master_instance_id
- read_only_group_id = tencentcloud_sqlserver_readonly_instance.example.readonly_group_id
- read_only_group_name = "tf_example_ro_update"
- is_offline_delay = 1
- read_only_max_delay_time = 5
- min_read_only_in_group = 1
-}
-```
-
-Import
-
-sqlserver config_instance_ro_group can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_sqlserver_config_instance_ro_group.example mssql-ds1xhnt9#mssqlro-o6dv2ugx#0#0
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_config_terminate_db_instance.go b/tencentcloud/resource_tc_sqlserver_config_terminate_db_instance.go
index 9e924945dc..1e4976eb05 100644
--- a/tencentcloud/resource_tc_sqlserver_config_terminate_db_instance.go
+++ b/tencentcloud/resource_tc_sqlserver_config_terminate_db_instance.go
@@ -1,65 +1,3 @@
-/*
-Provides a resource to create a sqlserver config_terminate_db_instance
-
-Example Usage
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_basic_instance" "example" {
- name = "tf-example"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- project_id = 0
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_PREMIUM"
- maintenance_week_set = [1, 2, 3]
- maintenance_start_time = "09:00"
- maintenance_time_span = 3
- security_groups = [tencentcloud_security_group.security_group.id]
-
- tags = {
- "test" = "test"
- }
-}
-
-resource "tencentcloud_sqlserver_config_terminate_db_instance" "example" {
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
-}
-```
-
-Import
-
-sqlserver config_terminate_db_instance can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_sqlserver_config_terminate_db_instance.example mssql-i9ma6oy7
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_database_tde.go b/tencentcloud/resource_tc_sqlserver_database_tde.go
index ef4cf9eedf..ca8d207234 100644
--- a/tencentcloud/resource_tc_sqlserver_database_tde.go
+++ b/tencentcloud/resource_tc_sqlserver_database_tde.go
@@ -1,86 +1,3 @@
-/*
-Provides a resource to create a sqlserver database_tde
-
-Example Usage
-
-Open database tde encryption
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_basic_instance" "example" {
- name = "tf-example"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- project_id = 0
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_PREMIUM"
- maintenance_week_set = [1, 2, 3]
- maintenance_start_time = "09:00"
- maintenance_time_span = 3
- security_groups = [tencentcloud_security_group.security_group.id]
-
- tags = {
- "test" = "test"
- }
-}
-
-resource "tencentcloud_sqlserver_db" "example" {
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
- name = "tf_example_db"
- charset = "Chinese_PRC_BIN"
- remark = "test-remark"
-}
-
-resource "tencentcloud_sqlserver_database_tde" "example" {
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
- db_names = [tencentcloud_sqlserver_db.example.name]
- encryption = "enable"
-}
-```
-
-Close database tde encryption
-
-```hcl
-resource "tencentcloud_sqlserver_database_tde" "example" {
- instance_id = tencentcloud_sqlserver_instance.example.id
- db_names = [tencentcloud_sqlserver_db.example.name]
- encryption = "disable"
-}
-```
-
-Import
-
-sqlserver database_tde can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_sqlserver_database_tde.example mssql-farjz9tz#tf_example_db
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_db.go b/tencentcloud/resource_tc_sqlserver_db.go
index 4cd99b1afc..650a43735a 100644
--- a/tencentcloud/resource_tc_sqlserver_db.go
+++ b/tencentcloud/resource_tc_sqlserver_db.go
@@ -1,68 +1,3 @@
-/*
-Provides a SQL Server DB resource belongs to SQL Server instance.
-
-Example Usage
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_basic_instance" "example" {
- name = "tf-example"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- project_id = 0
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_PREMIUM"
- maintenance_week_set = [1, 2, 3]
- maintenance_start_time = "09:00"
- maintenance_time_span = 3
- security_groups = [tencentcloud_security_group.security_group.id]
-
- tags = {
- "test" = "test"
- }
-}
-
-resource "tencentcloud_sqlserver_db" "example" {
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
- name = "tf_example_db"
- charset = "Chinese_PRC_BIN"
- remark = "test-remark"
-}
-```
-
-Import
-
-SQL Server DB can be imported using the id, e.g.
-
-```
-$ terraform import tencentcloud_sqlserver_db.example mssql-3cdq7kx5#tf_example_db
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_full_backup_migration.go b/tencentcloud/resource_tc_sqlserver_full_backup_migration.go
index 5a268b2f95..f9a671d891 100644
--- a/tencentcloud/resource_tc_sqlserver_full_backup_migration.go
+++ b/tencentcloud/resource_tc_sqlserver_full_backup_migration.go
@@ -1,89 +1,3 @@
-/*
-Provides a resource to create a sqlserver full_backup_migration
-
-Example Usage
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-data "tencentcloud_sqlserver_backups" "example" {
- instance_id = tencentcloud_sqlserver_db.example.instance_id
- backup_name = tencentcloud_sqlserver_general_backup.example.backup_name
- start_time = "2023-07-25 00:00:00"
- end_time = "2023-08-04 00:00:00"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_basic_instance" "example" {
- name = "tf-example"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- project_id = 0
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_PREMIUM"
- maintenance_week_set = [1, 2, 3]
- maintenance_start_time = "09:00"
- maintenance_time_span = 3
- security_groups = [tencentcloud_security_group.security_group.id]
-
- tags = {
- "test" = "test"
- }
-}
-
-resource "tencentcloud_sqlserver_db" "example" {
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
- name = "tf_example_db"
- charset = "Chinese_PRC_BIN"
- remark = "test-remark"
-}
-
-resource "tencentcloud_sqlserver_general_backup" "example" {
- instance_id = tencentcloud_sqlserver_db.example.instance_id
- backup_name = "tf_example_backup"
- strategy = 0
-}
-
-resource "tencentcloud_sqlserver_full_backup_migration" "example" {
- instance_id = tencentcloud_sqlserver_general_backup.example.instance_id
- recovery_type = "FULL"
- upload_type = "COS_URL"
- migration_name = "migration_test"
- backup_files = [data.tencentcloud_sqlserver_backups.example.list.0.internet_url]
-}
-```
-
-Import
-
-sqlserver full_backup_migration can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_sqlserver_full_backup_migration.example mssql-si2823jyl#mssql-backup-migration-cg0ffgqt
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_general_backup.go b/tencentcloud/resource_tc_sqlserver_general_backup.go
index 1a6904e4d2..a0a920eac8 100644
--- a/tencentcloud/resource_tc_sqlserver_general_backup.go
+++ b/tencentcloud/resource_tc_sqlserver_general_backup.go
@@ -1,74 +1,3 @@
-/*
-Provides a resource to create a sqlserver general_backup
-
-Example Usage
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_basic_instance" "example" {
- name = "tf-example"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- project_id = 0
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_PREMIUM"
- maintenance_week_set = [1, 2, 3]
- maintenance_start_time = "09:00"
- maintenance_time_span = 3
- security_groups = [tencentcloud_security_group.security_group.id]
-
- tags = {
- "test" = "test"
- }
-}
-
-resource "tencentcloud_sqlserver_db" "example" {
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
- name = "tf_example_db"
- charset = "Chinese_PRC_BIN"
- remark = "test-remark"
-}
-
-resource "tencentcloud_sqlserver_general_backup" "example" {
- instance_id = tencentcloud_sqlserver_db.example.instance_id
- backup_name = "tf_example_backup"
- strategy = 0
-}
-```
-
-Import
-
-sqlserver general_backups can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_sqlserver_general_backups.example mssql-qelbzgwf#3512621#5293#2020-07-31 14:28:51#2020-07-31 15:10:27#autoed_instance_58037_20200728011545.bak.tar
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_general_clone.go b/tencentcloud/resource_tc_sqlserver_general_clone.go
index aaba4257f0..c4f5f7bfc7 100644
--- a/tencentcloud/resource_tc_sqlserver_general_clone.go
+++ b/tencentcloud/resource_tc_sqlserver_general_clone.go
@@ -1,74 +1,3 @@
-/*
-Provides a resource to create a sqlserver general_communication
-
-Example Usage
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_basic_instance" "example" {
- name = "tf-example"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- project_id = 0
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_PREMIUM"
- maintenance_week_set = [1, 2, 3]
- maintenance_start_time = "09:00"
- maintenance_time_span = 3
- security_groups = [tencentcloud_security_group.security_group.id]
-
- tags = {
- "test" = "test"
- }
-}
-
-resource "tencentcloud_sqlserver_db" "example" {
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
- name = "tf_example_db"
- charset = "Chinese_PRC_BIN"
- remark = "test-remark"
-}
-
-resource "tencentcloud_sqlserver_general_clone" "example" {
- instance_id = tencentcloud_sqlserver_db.example.instance_id
- old_name = tencentcloud_sqlserver_db.example.name
- new_name = "tf_example_db_clone"
-}
-```
-
-Import
-
-sqlserver general_communication can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_sqlserver_general_clone.example mssql-si2823jyl#tf_example_db#tf_example_db_clone
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_general_cloud_instance.go b/tencentcloud/resource_tc_sqlserver_general_cloud_instance.go
index ba3c28fe47..732e4e8549 100644
--- a/tencentcloud/resource_tc_sqlserver_general_cloud_instance.go
+++ b/tencentcloud/resource_tc_sqlserver_general_cloud_instance.go
@@ -1,64 +1,3 @@
-/*
-Provides a resource to create a sqlserver general_cloud_instance
-
-Example Usage
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_general_cloud_instance" "example" {
- name = "tf_example"
- zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_HSSD"
- instance_charge_type = "POSTPAID"
- project_id = 0
- subnet_id = tencentcloud_subnet.subnet.id
- vpc_id = tencentcloud_vpc.vpc.id
- db_version = "2008R2"
- security_group_list = [tencentcloud_security_group.security_group.id]
- weekly = [1, 2, 3, 5, 6, 7]
- start_time = "00:00"
- span = 6
- resource_tags {
- tag_key = "test"
- tag_value = "test"
- }
- collation = "Chinese_PRC_CI_AS"
- time_zone = "China Standard Time"
-}
-```
-
-Import
-
-sqlserver general_cloud_instance can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_sqlserver_general_cloud_instance.example mssql-i9ma6oy7
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_general_cloud_ro_instance.go b/tencentcloud/resource_tc_sqlserver_general_cloud_ro_instance.go
index 2edae4303f..379b9fd5f9 100644
--- a/tencentcloud/resource_tc_sqlserver_general_cloud_ro_instance.go
+++ b/tencentcloud/resource_tc_sqlserver_general_cloud_ro_instance.go
@@ -1,131 +1,3 @@
-/*
-Provides a resource to create a sqlserver general_cloud_ro_instance
-
-Example Usage
-
-If read_only_group_type value is 1 - Ship according to one instance and one read-only group:
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_general_cloud_instance" "example" {
- name = "tf_example"
- zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_HSSD"
- instance_charge_type = "POSTPAID"
- project_id = 0
- subnet_id = tencentcloud_subnet.subnet.id
- vpc_id = tencentcloud_vpc.vpc.id
- db_version = "2008R2"
- security_group_list = [tencentcloud_security_group.security_group.id]
- weekly = [1, 2, 3, 5, 6, 7]
- start_time = "00:00"
- span = 6
- resource_tags {
- tag_key = "test"
- tag_value = "test"
- }
- collation = "Chinese_PRC_CI_AS"
- time_zone = "China Standard Time"
-}
-
-resource "tencentcloud_sqlserver_general_cloud_ro_instance" "example" {
- instance_id = tencentcloud_sqlserver_general_cloud_instance.example.id
- zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- read_only_group_type = 1
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_BSSD"
- instance_charge_type = "POSTPAID"
- subnet_id = tencentcloud_subnet.subnet.id
- vpc_id = tencentcloud_vpc.vpc.id
- security_group_list = [tencentcloud_security_group.security_group.id]
- collation = "Chinese_PRC_CI_AS"
- time_zone = "China Standard Time"
- resource_tags = {
- test-key1 = "test-value1"
- test-key2 = "test-value2"
- }
-}
-```
-
-If read_only_group_type value is 2 - Ship after creating a read-only group, all instances are under this read-only group:
-
-```hcl
-resource "tencentcloud_sqlserver_general_cloud_ro_instance" "example" {
- instance_id = tencentcloud_sqlserver_general_cloud_instance.example.id
- zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- read_only_group_type = 2
- read_only_group_name = "test-ro-group"
- read_only_group_is_offline_delay = 1
- read_only_group_max_delay_time = 10
- read_only_group_min_in_group = 1
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_BSSD"
- instance_charge_type = "POSTPAID"
- subnet_id = tencentcloud_subnet.subnet.id
- vpc_id = tencentcloud_vpc.vpc.id
- security_group_list = [tencentcloud_security_group.security_group.id]
- collation = "Chinese_PRC_CI_AS"
- time_zone = "China Standard Time"
- resource_tags = {
- test-key1 = "test-value1"
- test-key2 = "test-value2"
- }
-}
-```
-
-If read_only_group_type value is 3 - All instances shipped are in the existing Some read-only groups below:
-
-```hcl
-resource "tencentcloud_sqlserver_general_cloud_ro_instance" "example" {
- instance_id = tencentcloud_sqlserver_general_cloud_instance.example.id
- zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- read_only_group_type = 3
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_BSSD"
- read_only_group_id = "mssqlrg-clboghrj"
- instance_charge_type = "POSTPAID"
- subnet_id = tencentcloud_subnet.subnet.id
- vpc_id = tencentcloud_vpc.vpc.id
- security_group_list = [tencentcloud_security_group.security_group.id]
- collation = "Chinese_PRC_CI_AS"
- time_zone = "China Standard Time"
- resource_tags = {
- test-key1 = "test-value1"
- test-key2 = "test-value2"
- }
-}
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_general_communication.go b/tencentcloud/resource_tc_sqlserver_general_communication.go
index d7bb103a26..b8fcaf6b6c 100644
--- a/tencentcloud/resource_tc_sqlserver_general_communication.go
+++ b/tencentcloud/resource_tc_sqlserver_general_communication.go
@@ -1,65 +1,3 @@
-/*
-Provides a resource to create a sqlserver general_communication
-
-Example Usage
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_basic_instance" "example" {
- name = "tf-example"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- project_id = 0
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_PREMIUM"
- maintenance_week_set = [1, 2, 3]
- maintenance_start_time = "09:00"
- maintenance_time_span = 3
- security_groups = [tencentcloud_security_group.security_group.id]
-
- tags = {
- "test" = "test"
- }
-}
-
-resource "tencentcloud_sqlserver_general_communication" "example" {
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
-}
-```
-
-Import
-
-sqlserver general_communication can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_sqlserver_general_communication.example mssql-hlh6yka1
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_incre_backup_migration.go b/tencentcloud/resource_tc_sqlserver_incre_backup_migration.go
index 8ccf745ce2..5ccd7dcb44 100644
--- a/tencentcloud/resource_tc_sqlserver_incre_backup_migration.go
+++ b/tencentcloud/resource_tc_sqlserver_incre_backup_migration.go
@@ -1,25 +1,3 @@
-/*
-Provides a resource to create a sqlserver incre_backup_migration
-
-Example Usage
-
-```hcl
-resource "tencentcloud_sqlserver_incre_backup_migration" "example" {
- instance_id = "mssql-4gmc5805"
- backup_migration_id = "mssql-backup-migration-9tj0sxnz"
- backup_files = []
- is_recovery = "YES"
-}
-```
-
-Import
-
-sqlserver incre_backup_migration can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_sqlserver_incre_backup_migration.incre_backup_migration incre_backup_migration_id
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_instance.go b/tencentcloud/resource_tc_sqlserver_instance.go
index c6b0c9409e..2678a68d4c 100644
--- a/tencentcloud/resource_tc_sqlserver_instance.go
+++ b/tencentcloud/resource_tc_sqlserver_instance.go
@@ -1,46 +1,3 @@
-/*
-Use this resource to create SQL Server instance
-
-Example Usage
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_sqlserver_instance" "example" {
- name = "tf-example"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- project_id = 0
- memory = 16
- storage = 100
-}
-```
-
-Import
-
-SQL Server instance can be imported using the id, e.g.
-
-```
-$ terraform import tencentcloud_sqlserver_instance.example mssql-3cdq7kx5
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_instance_tde.go b/tencentcloud/resource_tc_sqlserver_instance_tde.go
index 0e0925401f..69fb292515 100644
--- a/tencentcloud/resource_tc_sqlserver_instance_tde.go
+++ b/tencentcloud/resource_tc_sqlserver_instance_tde.go
@@ -1,66 +1,3 @@
-/*
-Provides a resource to create a sqlserver instance_tde
-
-Example Usage
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_basic_instance" "example" {
- name = "tf-example"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- project_id = 0
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_PREMIUM"
- maintenance_week_set = [1, 2, 3]
- maintenance_start_time = "09:00"
- maintenance_time_span = 3
- security_groups = [tencentcloud_security_group.security_group.id]
-
- tags = {
- "test" = "test"
- }
-}
-
-resource "tencentcloud_sqlserver_instance_tde" "example" {
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
- certificate_attribution = "self"
-}
-```
-
-Import
-
-sqlserver instance_tde can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_sqlserver_instance_tde.example mssql-farjz9tz
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_migration.go b/tencentcloud/resource_tc_sqlserver_migration.go
index 74c4edb40a..e8c207ca5c 100644
--- a/tencentcloud/resource_tc_sqlserver_migration.go
+++ b/tencentcloud/resource_tc_sqlserver_migration.go
@@ -1,144 +1,3 @@
-/*
-Provides a resource to create a sqlserver migration
-
-Example Usage
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_basic_instance" "src_example" {
- name = "tf-example"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- project_id = 0
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_PREMIUM"
- maintenance_week_set = [1, 2, 3]
- maintenance_start_time = "09:00"
- maintenance_time_span = 3
- security_groups = [tencentcloud_security_group.security_group.id]
-
- tags = {
- "test" = "test"
- }
-}
-
-resource "tencentcloud_sqlserver_basic_instance" "dst_example" {
- name = "tf-example"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- project_id = 0
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_PREMIUM"
- maintenance_week_set = [1, 2, 3]
- maintenance_start_time = "09:00"
- maintenance_time_span = 3
- security_groups = [tencentcloud_security_group.security_group.id]
-
- tags = {
- "test" = "test"
- }
-}
-
-resource "tencentcloud_sqlserver_db" "src" {
- instance_id = tencentcloud_sqlserver_basic_instance.src_example.id
- name = "tf_example_db_src"
- charset = "Chinese_PRC_BIN"
- remark = "testACC-remark"
-}
-
-resource "tencentcloud_sqlserver_db" "dst" {
- instance_id = tencentcloud_sqlserver_basic_instance.dst_example.id
- name = "tf_example_db_dst"
- charset = "Chinese_PRC_BIN"
- remark = "testACC-remark"
-}
-
-resource "tencentcloud_sqlserver_account" "src" {
- instance_id = tencentcloud_sqlserver_basic_instance.src_example.id
- name = "tf_example_src_account"
- password = "Qwer@234"
- is_admin = true
-}
-
-resource "tencentcloud_sqlserver_account" "dst" {
- instance_id = tencentcloud_sqlserver_basic_instance.dst_example.id
- name = "tf_example_dst_account"
- password = "Qwer@234"
- is_admin = true
-}
-
-resource "tencentcloud_sqlserver_account_db_attachment" "src" {
- instance_id = tencentcloud_sqlserver_basic_instance.src_example.id
- account_name = tencentcloud_sqlserver_account.src.name
- db_name = tencentcloud_sqlserver_db.src.name
- privilege = "ReadWrite"
-}
-
-resource "tencentcloud_sqlserver_account_db_attachment" "dst" {
- instance_id = tencentcloud_sqlserver_basic_instance.dst_example.id
- account_name = tencentcloud_sqlserver_account.dst.name
- db_name = tencentcloud_sqlserver_db.dst.name
- privilege = "ReadWrite"
-}
-
-resource "tencentcloud_sqlserver_migration" "migration" {
- migrate_name = "tf_test_migration"
- migrate_type = 1
- source_type = 1
- source {
- instance_id = tencentcloud_sqlserver_basic_instance.src_example.id
- user_name = tencentcloud_sqlserver_account.src.name
- password = tencentcloud_sqlserver_account.src.password
- }
- target {
- instance_id = tencentcloud_sqlserver_basic_instance.dst_example.id
- user_name = tencentcloud_sqlserver_account.dst.name
- password = tencentcloud_sqlserver_account.dst.password
- }
-
- migrate_db_set {
- db_name = tencentcloud_sqlserver_db.src.name
- }
-}
-```
-
-Import
-
-sqlserver migration can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_sqlserver_migration.migration migration_id
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_publish_subscribe.go b/tencentcloud/resource_tc_sqlserver_publish_subscribe.go
index b7b2051e25..fd86e89b8f 100644
--- a/tencentcloud/resource_tc_sqlserver_publish_subscribe.go
+++ b/tencentcloud/resource_tc_sqlserver_publish_subscribe.go
@@ -1,113 +1,3 @@
-/*
-Provides a SQL Server PublishSubscribe resource belongs to SQL Server instance.
-
-Example Usage
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_general_cloud_instance" "example_pub" {
- name = "tf-example-pub"
- zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_HSSD"
- instance_charge_type = "POSTPAID"
- project_id = 0
- subnet_id = tencentcloud_subnet.subnet.id
- vpc_id = tencentcloud_vpc.vpc.id
- db_version = "2008R2"
- security_group_list = [tencentcloud_security_group.security_group.id]
- weekly = [1, 2, 3, 5, 6, 7]
- start_time = "00:00"
- span = 6
- resource_tags {
- tag_key = "test"
- tag_value = "test"
- }
- collation = "Chinese_PRC_CI_AS"
- time_zone = "China Standard Time"
-}
-
-resource "tencentcloud_sqlserver_general_cloud_instance" "example_sub" {
- name = "tf-example-sub"
- zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_HSSD"
- instance_charge_type = "POSTPAID"
- project_id = 0
- subnet_id = tencentcloud_subnet.subnet.id
- vpc_id = tencentcloud_vpc.vpc.id
- db_version = "2008R2"
- security_group_list = [tencentcloud_security_group.security_group.id]
- weekly = [1, 2, 3, 5, 6, 7]
- start_time = "00:00"
- span = 6
- resource_tags {
- tag_key = "test"
- tag_value = "test"
- }
- collation = "Chinese_PRC_CI_AS"
- time_zone = "China Standard Time"
-}
-
-resource "tencentcloud_sqlserver_db" "example_pub" {
- instance_id = tencentcloud_sqlserver_general_cloud_instance.example_pub.id
- name = "tf_example_db_pub"
- charset = "Chinese_PRC_BIN"
- remark = "test-remark"
-}
-
-resource "tencentcloud_sqlserver_db" "example_sub" {
- instance_id = tencentcloud_sqlserver_general_cloud_instance.example_sub.id
- name = "tf_example_db_sub"
- charset = "Chinese_PRC_BIN"
- remark = "test-remark"
-}
-
-resource "tencentcloud_sqlserver_publish_subscribe" "example" {
- publish_instance_id = tencentcloud_sqlserver_general_cloud_instance.example_pub.id
- subscribe_instance_id = tencentcloud_sqlserver_general_cloud_instance.example_sub.id
- publish_subscribe_name = "example"
- delete_subscribe_db = false
- database_tuples {
- publish_database = tencentcloud_sqlserver_db.example_pub.name
- subscribe_database = tencentcloud_sqlserver_db.example_sub.name
- }
-}
-```
-
-Import
-
-SQL Server PublishSubscribe can be imported using the publish_sqlserver_id#subscribe_sqlserver_id, e.g.
-
-```
-$ terraform import tencentcloud_sqlserver_publish_subscribe.example publish_sqlserver_id#subscribe_sqlserver_id
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_readonly_instance.go b/tencentcloud/resource_tc_sqlserver_readonly_instance.go
index 33bb38b1c2..08b4265d2e 100644
--- a/tencentcloud/resource_tc_sqlserver_readonly_instance.go
+++ b/tencentcloud/resource_tc_sqlserver_readonly_instance.go
@@ -1,77 +1,3 @@
-/*
-Provides a SQL Server instance resource to create read-only database instances.
-
-Example Usage
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_basic_instance" "example" {
- name = "tf-example"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- project_id = 0
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_PREMIUM"
- maintenance_week_set = [1, 2, 3]
- maintenance_start_time = "09:00"
- maintenance_time_span = 3
- security_groups = [tencentcloud_security_group.security_group.id]
-
- tags = {
- "test" = "test"
- }
-}
-
-resource "tencentcloud_sqlserver_readonly_instance" "example" {
- name = "tf_example"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- memory = 4
- storage = 20
- master_instance_id = tencentcloud_sqlserver_basic_instance.example.id
- readonly_group_type = 1
- force_upgrade = true
- tags = {
- "test" = "test"
- }
-}
-```
-
-Import
-
-SQL Server readonly instance can be imported using the id, e.g.
-
-```
-$ terraform import tencentcloud_sqlserver_readonly_instance.example mssqlro-3cdq7kx5
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_renew_db_instance.go b/tencentcloud/resource_tc_sqlserver_renew_db_instance.go
index 8a1937d588..56fae6a75c 100644
--- a/tencentcloud/resource_tc_sqlserver_renew_db_instance.go
+++ b/tencentcloud/resource_tc_sqlserver_renew_db_instance.go
@@ -1,66 +1,3 @@
-/*
-Provides a resource to create a sqlserver renew_db_instance
-
-Example Usage
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_basic_instance" "example" {
- name = "tf-example"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "PREPAID"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- project_id = 0
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_PREMIUM"
- maintenance_week_set = [1, 2, 3]
- maintenance_start_time = "09:00"
- maintenance_time_span = 3
- security_groups = [tencentcloud_security_group.security_group.id]
-
- tags = {
- "test" = "test"
- }
-}
-
-resource "tencentcloud_sqlserver_renew_db_instance" "example" {
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
- period = 1
-}
-```
-
-Import
-
-sqlserver renew_db_instance can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_sqlserver_renew_db_instance.example mssql-i9ma6oy7#1
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_renew_postpaid_db_instance.go b/tencentcloud/resource_tc_sqlserver_renew_postpaid_db_instance.go
index 296d1bc3cd..2a253118d3 100644
--- a/tencentcloud/resource_tc_sqlserver_renew_postpaid_db_instance.go
+++ b/tencentcloud/resource_tc_sqlserver_renew_postpaid_db_instance.go
@@ -1,69 +1,3 @@
-/*
-Provides a resource to create a sqlserver renew_postpaid_db_instance
-
-Example Usage
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_basic_instance" "example" {
- name = "tf-example"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- project_id = 0
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_PREMIUM"
- maintenance_week_set = [1, 2, 3]
- maintenance_start_time = "09:00"
- maintenance_time_span = 3
- security_groups = [tencentcloud_security_group.security_group.id]
-
- tags = {
- "test" = "test"
- }
-}
-
-resource "tencentcloud_sqlserver_config_terminate_db_instance" "example" {
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
-}
-
-resource "tencentcloud_sqlserver_renew_postpaid_db_instance" "example" {
- instance_id = tencentcloud_sqlserver_config_terminate_db_instance.example.id
-}
-```
-
-Import
-
-sqlserver renew_postpaid_db_instance can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_sqlserver_renew_postpaid_db_instance.example mssql-i9ma6oy7
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_restart_db_instance.go b/tencentcloud/resource_tc_sqlserver_restart_db_instance.go
index ecebfdfcb3..c0e740bdf7 100644
--- a/tencentcloud/resource_tc_sqlserver_restart_db_instance.go
+++ b/tencentcloud/resource_tc_sqlserver_restart_db_instance.go
@@ -1,65 +1,3 @@
-/*
-Provides a resource to create a sqlserver restart_db_instance
-
-Example Usage
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_basic_instance" "example" {
- name = "tf-example"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- project_id = 0
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_PREMIUM"
- maintenance_week_set = [1, 2, 3]
- maintenance_start_time = "09:00"
- maintenance_time_span = 3
- security_groups = [tencentcloud_security_group.security_group.id]
-
- tags = {
- "test" = "test"
- }
-}
-
-resource "tencentcloud_sqlserver_restart_db_instance" "example" {
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
-}
-```
-
-Import
-
-sqlserver restart_db_instance can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_sqlserver_restart_db_instance.example mssql-i9ma6oy7
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_restore_instance.go b/tencentcloud/resource_tc_sqlserver_restore_instance.go
index 37b1c899f6..93454d7c4b 100644
--- a/tencentcloud/resource_tc_sqlserver_restore_instance.go
+++ b/tencentcloud/resource_tc_sqlserver_restore_instance.go
@@ -1,27 +1,3 @@
-/*
-Provides a resource to create a sqlserver restore_instance
-
-Example Usage
-
-```hcl
-resource "tencentcloud_sqlserver_restore_instance" "restore_instance" {
- instance_id = "mssql-qelbzgwf"
- backup_id = 3482091273
- rename_restore {
- old_name = "keep_pubsub_db2"
- new_name = "restore_keep_pubsub_db2"
- }
-}
-```
-
-Import
-
-sqlserver restore_instance can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_sqlserver_restore_instance.restore_instance mssql-qelbzgwf#3482091273#keep_pubsub_db2#restore_keep_pubsub_db2
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_rollback_instance.go b/tencentcloud/resource_tc_sqlserver_rollback_instance.go
index 4167f6ead9..68b27a13b4 100644
--- a/tencentcloud/resource_tc_sqlserver_rollback_instance.go
+++ b/tencentcloud/resource_tc_sqlserver_rollback_instance.go
@@ -1,27 +1,3 @@
-/*
-Provides a resource to create a sqlserver rollback_instance
-
-Example Usage
-
-```hcl
-resource "tencentcloud_sqlserver_rollback_instance" "rollback_instance" {
- instance_id = "mssql-qelbzgwf"
- time = "2023-05-23 01:00:00"
- rename_restore {
- old_name = "keep_pubsub_db2"
- new_name = "rollback_pubsub_db3"
- }
-}
-```
-
-Import
-
-sqlserver rollback_instance can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_sqlserver_rollback_instance.rollback_instance mssql-qelbzgwf#2023-05-23 01:00:00#keep_pubsub_db2#rollback_pubsub_db3
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_start_backup_full_migration.go b/tencentcloud/resource_tc_sqlserver_start_backup_full_migration.go
index 7d3c636d9e..126c541147 100644
--- a/tencentcloud/resource_tc_sqlserver_start_backup_full_migration.go
+++ b/tencentcloud/resource_tc_sqlserver_start_backup_full_migration.go
@@ -1,15 +1,3 @@
-/*
-Provides a resource to create a sqlserver start_backup_full_migration
-
-Example Usage
-
-```hcl
-resource "tencentcloud_sqlserver_start_backup_full_migration" "start_backup_full_migration" {
- instance_id = "mssql-i1z41iwd"
- backup_migration_id = "mssql-backup-migration-kpl74n9l"
-}
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_start_backup_incremental_migration.go b/tencentcloud/resource_tc_sqlserver_start_backup_incremental_migration.go
index c27163a6ae..c5b9ddf0c0 100644
--- a/tencentcloud/resource_tc_sqlserver_start_backup_incremental_migration.go
+++ b/tencentcloud/resource_tc_sqlserver_start_backup_incremental_migration.go
@@ -1,16 +1,3 @@
-/*
-Provides a resource to create a sqlserver start_backup_incremental_migration
-
-Example Usage
-
-```hcl
-resource "tencentcloud_sqlserver_start_backup_incremental_migration" "start_backup_incremental_migration" {
- instance_id = "mssql-i1z41iwd"
- backup_migration_id = "mssql-backup-migration-cg0ffgqt"
- incremental_migration_id = "mssql-incremental-migration-kp7bgv8p"
-}
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_sqlserver_start_xevent.go b/tencentcloud/resource_tc_sqlserver_start_xevent.go
index 11d8ec651f..d7b1412032 100644
--- a/tencentcloud/resource_tc_sqlserver_start_xevent.go
+++ b/tencentcloud/resource_tc_sqlserver_start_xevent.go
@@ -1,61 +1,3 @@
-/*
-Provides a resource to create a sqlserver start_xevent
-
-Example Usage
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "sqlserver"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_sqlserver_basic_instance" "example" {
- name = "tf-example"
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.4.name
- charge_type = "POSTPAID_BY_HOUR"
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- project_id = 0
- memory = 4
- storage = 100
- cpu = 2
- machine_type = "CLOUD_PREMIUM"
- maintenance_week_set = [1, 2, 3]
- maintenance_start_time = "09:00"
- maintenance_time_span = 3
- security_groups = [tencentcloud_security_group.security_group.id]
-
- tags = {
- "test" = "test"
- }
-}
-
-resource "tencentcloud_sqlserver_start_xevent" "example" {
- instance_id = tencentcloud_sqlserver_basic_instance.example.id
- event_config {
- event_type = "slow"
- threshold = 0
- }
-}
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_ssl_certificate.go b/tencentcloud/resource_tc_ssl_certificate.go
index 66ca228144..a394efeaa9 100644
--- a/tencentcloud/resource_tc_ssl_certificate.go
+++ b/tencentcloud/resource_tc_ssl_certificate.go
@@ -1,59 +1,3 @@
-/*
-Provides a resource to create a SSL certificate.
-
-Upload the existing SSL certificate to Tencent Cloud.
-
-Example Usage
-
-If SSL certificate type is `CA`
-
-```hcl
-variable "ca" {
- default = "-----BEGIN CERTIFICATE-----\nMIIEDjCCAnagAwIBAgIBATANBgkqhkiG9w0BAQsFADAoMQ0wCwYDVQQDEwR0ZXN0\nMRcwFQYDVQQKEw50ZXJyYWZvcm0gdGVzdDAeFw0xOTA4MTMwMzA4MjBaFw0yOTA4\nMTAwMzA4MjBaMCgxDTALBgNVBAMTBHRlc3QxFzAVBgNVBAoTDnRlcnJhZm9ybSB0\nZXN0MIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEA0k2vqg/GHtFP5P7r\ndbzswfx1jSHeK9r4StV4mGOAoKyzvAJA5BvYbAHpSrL2ZAd6ShjHgRVU1qEroeFn\n8fwTrAVQttMltBFABx7G4iN4Zf6EUXzhhFN6vVVbWaqhYhrdMoPvZxgGSA/4hG4W\nGIr8MXZzXbKLoRoz4Bvq1Ymg5eO14KLJFSTahvIkG60egGN5pmi4czxWy2U7ycA5\nQ5TuQBnF0rKQJW5XKIV3kr5YrzDdJK7up9E6Od4T5jz+qY97KAjIpWD/pTAsc7+6\nfPBpY7NHT9Bw0fDmvsWO/PtswY4hW02n86b5eWA9sfKJGphhsBxgpuuhmxYHS6pA\nB+C7IkyxcADNT5u9tEo2JGOj+/veXKrEhZin7inKsQLD0WOobcg1Rh/3NSWD7geF\nTJBRnzgplaN7cK6c/utEAAnngS38q4DGBR/jHmkWjAeQPZj1eLLBk686HEEbKeU+\n9yAVcPRhA9tuL7wMeSX32VunWZunoA/f8iuGZYJlZsNBqyJbAgMBAAGjQzBBMA8G\nA1UdEwEB/wQFMAMBAf8wDwYDVR0PAQH/BAUDAweGADAdBgNVHQ4EFgQUKwfrmq79\n1mY831S6UHARHtgYnlgwDQYJKoZIhvcNAQELBQADggGBAInM+aeaHoZdw9B9nAH2\nHscEoOulF+RxnysSXTTRLd2VQph4+ynlfRZT4evLBBj/ppmqjp8F7/OcRiiZwSXl\nnamyP/UUINtHfgDM0kll/5Za0aYzMhrORNw+3ythIv2yPJX8t4LmsG1L4PMO8ZU8\nN0K9XyKRaL/tq6rw1gQM152OmNgTzfAQoKYxrvbftOZz4J0ZACctuBmwtp5upKvJ\n36aQ4wJLUzOt69mnW+AaL5EPA37mwtzdnzTTxd3SBfOYXjsflc3l2raljJznnqU2\nySynjb6L3D3L/pObL1Uu7nQBy8CazJBsBsVFK/pr61vcllm8lG7vOhHOUSFUeezq\nFWukAolm9/cagmD6IhNishM3Uzng+UYyCC8uQq3Z7FGqJpXSI79wZYjudnCLPVCg\nOIfJHQeJFLryn6GxiSYmYs6dgUJiiTV+I/2Y5X7ZFdb5FC1J/WmvoCv6yO7NiirY\nBSgfV0lp5CuV8SfiSClpYfrM28NbNgxveUqET642BJOPLQ==\n-----END CERTIFICATE-----"
-}
-
-data "tencentcloud_ssl_certificates" "ca" {
- name = tencentcloud_ssl_certificate.ca.name
-}
-
-resource "tencentcloud_ssl_certificate" "ca" {
- name = "ssl-ca"
- type = "CA"
- cert = var.ca
-}
-```
-
-If SSL certificate type is `SVR`
-
-```hcl
-variable "cert" {
- default = "-----BEGIN CERTIFICATE-----\nMIIERzCCAq+gAwIBAgIBAjANBgkqhkiG9w0BAQsFADAoMQ0wCwYDVQQDEwR0ZXN0\nMRcwFQYDVQQKEw50ZXJyYWZvcm0gdGVzdDAeFw0xOTA4MTMwMzE5MzlaFw0yOTA4\nMTAwMzE5MzlaMC4xEzARBgNVBAMTCnNlcnZlciBzc2wxFzAVBgNVBAoTDnRlcnJh\nZm9ybS10ZXN0MIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEA1Ryp+DKK\nSNFKZsPtwfR+jzOnQ8YFieIKYgakV688d8YgpolenbmeEPrzT87tunFD7G9f6ALG\nND8rj7npj0AowxhOL/h/v1D9u0UsIaj5i2GWJrqNAhGLaxWiEB/hy5WOiwxDrGei\ngQqJkFM52Ep7G1Yx7PHJmKFGwN9FhIsFi1cNZfVRopZuCe/RMPNusNVZaIi+qcEf\nfsE1cmfmuSlG3Ap0RKOIyR0ajDEzqZn9/0R7VwWCF97qy8TNYk94K/1tq3zyhVzR\nZ83xOSfrTqEfb3so3AU2jyKgYdwr/FZS72VCHS8IslgnqJW4izIXZqgIKmHaRZtM\nN4jUloi6l/6lktt6Lsgh9xECecxziSJtPMaog88aC8HnMqJJ3kScGCL36GYG+Kaw\n5PnDlWXBaeiDe8z/eWK9+Rr2M+rhTNxosAVGfDJyxAXyiX49LQ0v7f9qzwc/0JiD\nbvsUv1cm6OgpoEMP9SXqqBdwGqeKbD2/2jlP48xlYP6l1SoJG3GgZ8dbAgMBAAGj\ndjB0MAwGA1UdEwEB/wQCMAAwEwYDVR0lBAwwCgYIKwYBBQUHAwEwDwYDVR0PAQH/\nBAUDAweAADAdBgNVHQ4EFgQULwWKBQNLL9s3cb3tTnyPVg+mpCMwHwYDVR0jBBgw\nFoAUKwfrmq791mY831S6UHARHtgYnlgwDQYJKoZIhvcNAQELBQADggGBAMo5RglS\nAHdPgaicWJvmvjjexjF/42b7Rz4pPfMjYw6uYO8He/f4UZWv5CZLrbEe7MywaK3y\n0OsfH8AhyN29pv2x8g9wbmq7omZIOZ0oCAGduEXs/A/qY/hFaCohdkz/IN8qi6JW\nVXreGli3SrpcHFchSwHTyJEXgkutcGAsOvdsOuVSmplOyrkLHc8uUe8SG4j8kGyg\nEzaszFjHkR7g1dVyDVUedc588mjkQxYeAamJgfkgIhljWKMa2XzkVMcVfQHfNpM1\nn+bu8SmqRt9Wma2bMijKRG/Blm756LoI+skY+WRZmlDnq8zj95TT0vceGP0FUWh5\nhKyiocABmpQs9OK9HMi8vgSWISP+fYgkm/bKtKup2NbZBoO5/VL2vCEPInYzUhBO\njCbLMjNjtM5KriCaR7wDARgHiG0gBEPOEW1PIjZ9UOH+LtIxbNZ4eEIIINLHnBHf\nL+doVeZtS/gJc4G4Adr5HYuaS9ZxJ0W2uy0eQlOHzjyxR6Mf/rpnilJlcQ==\n-----END CERTIFICATE-----"
-}
-
-variable "key" {
- default = "Public Key Info:\n Public Key Algorithm: RSA\n Key Security Level: High (3072 bits)\n\nmodulus:\n 00:d5:1c:a9:f8:32:8a:48:d1:4a:66:c3:ed:c1:f4:7e\n 8f:33:a7:43:c6:05:89:e2:0a:62:06:a4:57:af:3c:77\n c6:20:a6:89:5e:9d:b9:9e:10:fa:f3:4f:ce:ed:ba:71\n 43:ec:6f:5f:e8:02:c6:34:3f:2b:8f:b9:e9:8f:40:28\n c3:18:4e:2f:f8:7f:bf:50:fd:bb:45:2c:21:a8:f9:8b\n 61:96:26:ba:8d:02:11:8b:6b:15:a2:10:1f:e1:cb:95\n 8e:8b:0c:43:ac:67:a2:81:0a:89:90:53:39:d8:4a:7b\n 1b:56:31:ec:f1:c9:98:a1:46:c0:df:45:84:8b:05:8b\n 57:0d:65:f5:51:a2:96:6e:09:ef:d1:30:f3:6e:b0:d5\n 59:68:88:be:a9:c1:1f:7e:c1:35:72:67:e6:b9:29:46\n dc:0a:74:44:a3:88:c9:1d:1a:8c:31:33:a9:99:fd:ff\n 44:7b:57:05:82:17:de:ea:cb:c4:cd:62:4f:78:2b:fd\n 6d:ab:7c:f2:85:5c:d1:67:cd:f1:39:27:eb:4e:a1:1f\n 6f:7b:28:dc:05:36:8f:22:a0:61:dc:2b:fc:56:52:ef\n 65:42:1d:2f:08:b2:58:27:a8:95:b8:8b:32:17:66:a8\n 08:2a:61:da:45:9b:4c:37:88:d4:96:88:ba:97:fe:a5\n 92:db:7a:2e:c8:21:f7:11:02:79:cc:73:89:22:6d:3c\n c6:a8:83:cf:1a:0b:c1:e7:32:a2:49:de:44:9c:18:22\n f7:e8:66:06:f8:a6:b0:e4:f9:c3:95:65:c1:69:e8:83\n 7b:cc:ff:79:62:bd:f9:1a:f6:33:ea:e1:4c:dc:68:b0\n 05:46:7c:32:72:c4:05:f2:89:7e:3d:2d:0d:2f:ed:ff\n 6a:cf:07:3f:d0:98:83:6e:fb:14:bf:57:26:e8:e8:29\n a0:43:0f:f5:25:ea:a8:17:70:1a:a7:8a:6c:3d:bf:da\n 39:4f:e3:cc:65:60:fe:a5:d5:2a:09:1b:71:a0:67:c7\n 5b:\n\npublic exponent:\n 01:00:01:\n\nprivate exponent:\n 00:b1:56:d0:fa:00:d4:a2:13:c7:5e:0c:dc:e4:f1:97\n ff:82:74:46:29:9a:a2:4a:bf:69:23:2d:ce:e9:bb:df\n cf:b7:8b:dd:f4:26:3c:38:14:d9:3f:6f:c2:3a:81:53\n 8f:ba:48:53:fe:b5:90:4a:19:e7:1e:0b:0f:18:6d:c3\n 7d:d5:d3:fa:87:47:86:e4:d6:bf:e7:a7:f9:ba:ab:2e\n 19:5e:e1:8b:8b:9b:95:0d:f7:66:61:1e:19:e9:c3:88\n 08:be:1c:ce:93:c1:09:b1:68:1b:61:46:60:74:64:46\n 5d:51:34:ea:7f:a9:ca:a1:2a:47:85:84:4b:ef:84:05\n 97:c3:46:7d:06:19:ce:24:73:90:64:fb:df:16:d5:80\n 34:8e:90:7c:58:b6:a4:86:ce:30:b3:ab:52:8b:f2:95\n 4c:b6:46:5a:77:db:73:c0:0c:3f:6d:12:18:a8:54:7c\n ff:77:c3:ca:89:9f:63:98:ef:48:2d:c1:09:70:6e:ea\n cb:bb:78:91:42:8a:22:3e:21:ef:a5:bf:16:ee:66:45\n e5:f0:26:6a:85:8e:e1:69:62:ac:05:00:a6:44:ba:c8\n ac:10:00:97:f5:51:65:7f:9a:1f:7b:99:9d:02:d4:87\n 50:ce:74:06:51:67:fa:fb:90:e4:33:79:f2:a8:61:ee\n 45:1d:87:ca:22:5b:ac:e7:32:38:f8:2c:fd:55:92:1e\n 3d:60:1e:7c:4b:fd:28:ff:e5:b1:02:6a:aa:22:f7:ae\n a8:36:90:7b:a6:f7:29:05:14:3a:21:da:36:05:f9:b0\n 9d:f7:fb:10:75:d7:2c:21:32:95:e7:f7:17:be:09:cb\n 66:fe:f1:69:71:df:a4:5e:3f:fc:67:6c:37:65:b8:51\n c6:22:38:fb:07:ce:89:54:50:43:71:44:3d:c3:51:5a\n bd:e5:c7:87:b2:ea:7b:64:0f:5d:34:9c:a1:52:b3:ce\n 06:86:ba:7a:05:80:48:b3:6c:1b:79:74:9b:49:f2:30\n c1:\n\nprime1:\n 00:e4:31:46:59:3d:24:f7:31:d9:22:26:af:c0:3e:f5\n c1:6d:be:ba:d3:9e:3f:b9:2c:43:a0:d0:47:09:e4:35\n 63:19:a4:33:82:af:f9:76:3c:11:c2:cb:34:f9:a6:ab\n dd:ab:64:5a:6b:9c:c1:2a:52:89:64:7e:b5:a7:f0:4d\n 29:13:a4:cf:17:f4:f2:0d:a0:6e:b9:5d:95:41:10:df\n ae:f3:7a:13:49:21:66:73:2a:b7:e2:8d:7c:c2:34:e5\n 3f:bd:78:ca:fc:64:c5:1c:3a:66:7a:12:53:96:bd:b0\n c3:7a:0c:ec:5e:55:c0:c3:3f:7f:25:72:f4:e2:19:94\n 9d:65:15:be:c8:82:20:57:12:97:b2:a8:4d:3d:e0:8f\n e2:1f:d0:c8:49:aa:f4:34:fa:91:d1:d1:cc:98:bc:3d\n 8b:b1:9b:8f:fd:ef:03:dd:92:fb:ca:99:45:af:cc:83\n 58:4c:bb:ba:73:9e:23:84:f9:7e:4f:40:fe:00:b5:bf\n 6f:\n\nprime2:\n 00:ef:14:ef:73:fc:0c:fc:e3:87:d9:7f:a6:f8:55:86\n 57:63:8a:86:87:f5:ef:63:20:1f:b2:ae:28:dc:ab:59\n 80:8f:15:64:44:e2:bc:a5:7b:d7:69:ef:30:b1:83:b3\n bd:09:fd:4a:0c:c6:31:5b:a4:79:d0:e5:d3:a8:31:fd\n 59:ea:52:63:cf:17:a7:c1:54:bf:a8:11:9b:b1:85:47\n 5a:08:a6:9c:2f:47:9d:ac:5d:e8:7c:e4:31:6c:99:71\n 04:7d:20:98:be:8b:60:07:66:2d:b9:41:10:ea:dd:5b\n 87:20:65:62:ea:75:a7:a6:04:a2:18:66:6b:db:5b:a4\n 9f:12:97:cb:7c:8c:d2:e0:ce:02:ef:1e:df:a1:9d:6a\n bc:00:38:18:36:a1:c5:97:16:be:7a:df:5f:4f:4f:de\n a3:cb:25:fe:f6:67:0d:31:aa:0a:d4:1b:be:df:91:2c\n 05:14:20:37:cc:4f:50:33:a6:50:1b:90:f9:b2:08:80\n d5:\n\ncoefficient:\n 47:d1:7f:ca:93:6a:14:9b:fe:85:8d:c2:15:11:52:a2\n a5:bc:f5:6b:a2:69:76:49:1e:09:79:f1:15:bf:39:48\n 41:ff:92:78:af:bc:7d:6f:76:3b:32:9e:08:d2:42:06\n 04:5f:36:e0:be:a8:1d:21:5c:ec:39:09:e0:77:c5:86\n 06:e6:ce:98:16:fc:0f:30:de:a7:69:7a:8f:dd:01:42\n 2a:22:f5:b7:c2:fc:c8:90:5a:78:dc:b3:e0:4d:e7:2d\n 98:6c:e3:34:1b:d7:e8:f8:90:57:7e:4d:41:d6:4a:29\n 81:92:eb:89:5b:45:85:dd:b9:16:20:63:cb:59:f6:06\n 59:c1:dd:3b:6b:92:0a:5e:5e:63:4a:f1:a7:d5:16:b9\n 8b:6c:d8:ad:76:0e:2d:3c:e0:b3:73:e0:6d:af:d4:a2\n bc:4b:fd:6c:2d:d7:5d:4d:cd:28:03:64:b2:ef:9a:1d\n 82:8d:53:40:c5:f8:fb:f3:63:de:8e:1a:21:b6:35:14\n \n\nexp1:\n 00:9c:a5:8a:d2:65:dc:03:69:8f:d2:16:d6:9d:55:5b\n 25:4e:ae:18:d8:7e:90:e6:10:11:d8:ca:41:89:f3:c4\n 06:64:aa:c8:c5:95:01:dd:fd:7c:7f:c9:39:73:8b:cb\n fd:9e:d3:84:12:cd:87:f9:02:b1:d8:6f:f7:49:f2:f7\n 35:14:8c:15:b2:2f:6f:1e:95:9c:8c:d9:46:45:65:4c\n f8:6f:a1:c4:ad:76:25:3b:37:ff:05:a1:f5:1b:e8:6d\n db:64:b9:10:37:55:01:ce:cf:f4:5b:26:4b:85:76:70\n 6a:b0:55:40:c9:bd:7a:57:4e:36:7d:41:be:03:9c:65\n dd:ea:6f:94:09:56:f2:d6:73:27:f9:f7:f9:16:5a:1a\n cb:b2:e5:83:28:b7:17:6f:6a:f7:41:1f:11:a1:63:cf\n a8:1e:e3:58:64:8c:78:8d:d9:81:c9:e1:8f:ea:0f:ad\n b6:a6:ee:54:1f:5c:56:ab:c9:0d:c1:60:2f:3d:d3:86\n 37:\n\nexp2:\n 64:12:b7:48:2d:30:a2:89:fa:cb:27:8b:94:56:f8:2c\n 8c:15:e7:c9:f1:3f:8a:96:5f:ae:43:08:07:96:11:98\n a6:4b:a5:f4:cf:93:77:11:27:51:c8:34:f1:98:d7:1b\n 41:9b:2b:eb:bc:e9:dc:1a:34:83:24:30:3c:2e:f0:85\n 3a:77:d2:1f:55:1f:7a:e5:26:74:0b:2a:c8:5b:a9:4a\n 1e:64:de:eb:4b:66:cc:47:62:91:24:53:2b:c9:ee:6c\n 9a:93:92:5b:ef:aa:fa:6d:e2:a5:b0:7e:8c:50:ab:87\n 1c:20:54:0f:1f:c0:54:d5:8b:a3:fa:fb:1a:8e:79:91\n bc:0e:9d:b6:3c:9b:e8:4d:53:1d:14:27:37:56:d4:de\n 6c:99:0e:49:8f:dd:4d:28:d0:02:4e:8d:6e:7d:58:0b\n e7:74:b8:0c:1b:86:82:4b:52:cd:05:f0:17:54:84:c0\n 7b:74:20:e6:fc:2b:ed:f2:a7:85:62:61:a2:0b:bd:21\n \n\n\nPublic Key PIN:\n pin-sha256:t5OXXC5gYqMNtUMsTqRs3A3vhfK2BiXVOgYzIEYv7Y8=\nPublic Key ID:\n sha256:b793975c2e6062a30db5432c4ea46cdc0def85f2b60625d53a063320462fed8f\n sha1:2f058a05034b2fdb3771bded4e7c8f560fa6a423\n\n-----BEGIN RSA PRIVATE KEY-----\nMIIG5AIBAAKCAYEA1Ryp+DKKSNFKZsPtwfR+jzOnQ8YFieIKYgakV688d8Ygpole\nnbmeEPrzT87tunFD7G9f6ALGND8rj7npj0AowxhOL/h/v1D9u0UsIaj5i2GWJrqN\nAhGLaxWiEB/hy5WOiwxDrGeigQqJkFM52Ep7G1Yx7PHJmKFGwN9FhIsFi1cNZfVR\nopZuCe/RMPNusNVZaIi+qcEffsE1cmfmuSlG3Ap0RKOIyR0ajDEzqZn9/0R7VwWC\nF97qy8TNYk94K/1tq3zyhVzRZ83xOSfrTqEfb3so3AU2jyKgYdwr/FZS72VCHS8I\nslgnqJW4izIXZqgIKmHaRZtMN4jUloi6l/6lktt6Lsgh9xECecxziSJtPMaog88a\nC8HnMqJJ3kScGCL36GYG+Kaw5PnDlWXBaeiDe8z/eWK9+Rr2M+rhTNxosAVGfDJy\nxAXyiX49LQ0v7f9qzwc/0JiDbvsUv1cm6OgpoEMP9SXqqBdwGqeKbD2/2jlP48xl\nYP6l1SoJG3GgZ8dbAgMBAAECggGBALFW0PoA1KITx14M3OTxl/+CdEYpmqJKv2kj\nLc7pu9/Pt4vd9CY8OBTZP2/COoFTj7pIU/61kEoZ5x4LDxhtw33V0/qHR4bk1r/n\np/m6qy4ZXuGLi5uVDfdmYR4Z6cOICL4czpPBCbFoG2FGYHRkRl1RNOp/qcqhKkeF\nhEvvhAWXw0Z9BhnOJHOQZPvfFtWANI6QfFi2pIbOMLOrUovylUy2Rlp323PADD9t\nEhioVHz/d8PKiZ9jmO9ILcEJcG7qy7t4kUKKIj4h76W/Fu5mReXwJmqFjuFpYqwF\nAKZEusisEACX9VFlf5ofe5mdAtSHUM50BlFn+vuQ5DN58qhh7kUdh8oiW6znMjj4\nLP1Vkh49YB58S/0o/+WxAmqqIveuqDaQe6b3KQUUOiHaNgX5sJ33+xB11ywhMpXn\n9xe+Cctm/vFpcd+kXj/8Z2w3ZbhRxiI4+wfOiVRQQ3FEPcNRWr3lx4ey6ntkD100\nnKFSs84Ghrp6BYBIs2wbeXSbSfIwwQKBwQDkMUZZPST3MdkiJq/APvXBbb66054/\nuSxDoNBHCeQ1YxmkM4Kv+XY8EcLLNPmmq92rZFprnMEqUolkfrWn8E0pE6TPF/Ty\nDaBuuV2VQRDfrvN6E0khZnMqt+KNfMI05T+9eMr8ZMUcOmZ6ElOWvbDDegzsXlXA\nwz9/JXL04hmUnWUVvsiCIFcSl7KoTT3gj+If0MhJqvQ0+pHR0cyYvD2LsZuP/e8D\n3ZL7yplFr8yDWEy7unOeI4T5fk9A/gC1v28CgcEA7xTvc/wM/OOH2X+m+FWGV2OK\nhof172MgH7KuKNyrWYCPFWRE4ryle9dp7zCxg7O9Cf1KDMYxW6R50OXTqDH9WepS\nY88Xp8FUv6gRm7GFR1oIppwvR52sXeh85DFsmXEEfSCYvotgB2YtuUEQ6t1bhyBl\nYup1p6YEohhma9tbpJ8Sl8t8jNLgzgLvHt+hnWq8ADgYNqHFlxa+et9fT0/eo8sl\n/vZnDTGqCtQbvt+RLAUUIDfMT1AzplAbkPmyCIDVAoHBAJylitJl3ANpj9IW1p1V\nWyVOrhjYfpDmEBHYykGJ88QGZKrIxZUB3f18f8k5c4vL/Z7ThBLNh/kCsdhv90ny\n9zUUjBWyL28elZyM2UZFZUz4b6HErXYlOzf/BaH1G+ht22S5EDdVAc7P9FsmS4V2\ncGqwVUDJvXpXTjZ9Qb4DnGXd6m+UCVby1nMn+ff5Floay7Llgyi3F29q90EfEaFj\nz6ge41hkjHiN2YHJ4Y/qD622pu5UH1xWq8kNwWAvPdOGNwKBwGQSt0gtMKKJ+ssn\ni5RW+CyMFefJ8T+Kll+uQwgHlhGYpkul9M+TdxEnUcg08ZjXG0GbK+u86dwaNIMk\nMDwu8IU6d9IfVR965SZ0CyrIW6lKHmTe60tmzEdikSRTK8nubJqTklvvqvpt4qWw\nfoxQq4ccIFQPH8BU1Yuj+vsajnmRvA6dtjyb6E1THRQnN1bU3myZDkmP3U0o0AJO\njW59WAvndLgMG4aCS1LNBfAXVITAe3Qg5vwr7fKnhWJhogu9IQKBwEfRf8qTahSb\n/oWNwhURUqKlvPVroml2SR4JefEVvzlIQf+SeK+8fW92OzKeCNJCBgRfNuC+qB0h\nXOw5CeB3xYYG5s6YFvwPMN6naXqP3QFCKiL1t8L8yJBaeNyz4E3nLZhs4zQb1+j4\nkFd+TUHWSimBkuuJW0WF3bkWIGPLWfYGWcHdO2uSCl5eY0rxp9UWuYts2K12Di08\n4LNz4G2v1KK8S/1sLdddTc0oA2Sy75odgo1TQMX4+/Nj3o4aIbY1FA==\n-----END RSA PRIVATE KEY-----"
-}
-
-data "tencentcloud_ssl_certificates" "svr" {
- name = tencentcloud_ssl_certificate.svr.name
-}
-
-resource "tencentcloud_ssl_certificate" "svr" {
- name = "ssl-svr"
- type = "SVR"
- cert = var.cert
- key = var.key
-}
-```
-
-Import
-
-ssl certificate can be imported using the id, e.g.
-
-```
- $ terraform import tencentcloud_ssl_certificate.cert GjTNRoK7
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_ssl_check_certificate_chain_operation.go b/tencentcloud/resource_tc_ssl_check_certificate_chain_operation.go
index 8b27286370..be4c671627 100644
--- a/tencentcloud/resource_tc_ssl_check_certificate_chain_operation.go
+++ b/tencentcloud/resource_tc_ssl_check_certificate_chain_operation.go
@@ -1,22 +1,3 @@
-/*
-Provides a resource to create a ssl check_certificate_chain
-
-Example Usage
-
-```hcl
-resource "tencentcloud_ssl_check_certificate_chain_operation" "check_certificate_chain" {
- certificate_chain = "-----BEGIN CERTIFICATE--·····---END CERTIFICATE-----"
-}
-```
-
-Import
-
-ssl check_certificate_chain can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_ssl_check_certificate_chain_operation.check_certificate_chain check_certificate_chain_id
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_ssl_complete_certificate_operation.go b/tencentcloud/resource_tc_ssl_complete_certificate_operation.go
index 52c260731e..63f3507cdd 100644
--- a/tencentcloud/resource_tc_ssl_complete_certificate_operation.go
+++ b/tencentcloud/resource_tc_ssl_complete_certificate_operation.go
@@ -1,22 +1,3 @@
-/*
-Provides a resource to create a ssl complete_certificate
-
-Example Usage
-
-```hcl
-resource "tencentcloud_ssl_complete_certificate_operation" "complete_certificate" {
- certificate_id = "9Bfe1IBR"
-}
-```
-
-Import
-
-ssl complete_certificate can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_ssl_complete_certificate_operation.complete_certificate complete_certificate_id
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_ssl_deploy_certificate_instance_operation.go b/tencentcloud/resource_tc_ssl_deploy_certificate_instance_operation.go
index 0dec649b23..1d397f7ec5 100644
--- a/tencentcloud/resource_tc_ssl_deploy_certificate_instance_operation.go
+++ b/tencentcloud/resource_tc_ssl_deploy_certificate_instance_operation.go
@@ -1,24 +1,3 @@
-/*
-Provides a resource to create a ssl deploy_certificate_instance
-
-Example Usage
-
-```hcl
-resource "tencentcloud_ssl_deploy_certificate_instance_operation" "deploy_certificate_instance" {
- certificate_id = "8x1eUSSl"
- instance_id_list = ["cdndomain1.example.com|on","cdndomain1.example.com|off"]
- resource_type = "cdn"
-}
-```
-
-Import
-
-ssl deploy_certificate_instance can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_ssl_deploy_certificate_instance_operation.deploy_certificate_instance deploy_certificate_instance_id
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_ssl_deploy_certificate_record_retry_operation.go b/tencentcloud/resource_tc_ssl_deploy_certificate_record_retry_operation.go
index 9402e2d105..2d3885160a 100644
--- a/tencentcloud/resource_tc_ssl_deploy_certificate_record_retry_operation.go
+++ b/tencentcloud/resource_tc_ssl_deploy_certificate_record_retry_operation.go
@@ -1,22 +1,3 @@
-/*
-Provides a resource to create a ssl deploy_certificate_record_retry
-
-Example Usage
-
-```hcl
-resource "tencentcloud_ssl_deploy_certificate_record_retry_operation" "deploy_certificate_record_retry" {
- deploy_record_id = 35474
-}
-```
-
-Import
-
-ssl deploy_certificate_record_retry can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_ssl_deploy_certificate_record_retry_operation.deploy_certificate_record_retry deploy_certificate_record_retry_id
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_ssl_deploy_certificate_record_rollback_operation.go b/tencentcloud/resource_tc_ssl_deploy_certificate_record_rollback_operation.go
index 5abe30d22b..1eaa7115cd 100644
--- a/tencentcloud/resource_tc_ssl_deploy_certificate_record_rollback_operation.go
+++ b/tencentcloud/resource_tc_ssl_deploy_certificate_record_rollback_operation.go
@@ -1,22 +1,3 @@
-/*
-Provides a resource to create a ssl deploy_certificate_record_rollback
-
-Example Usage
-
-```hcl
-resource "tencentcloud_ssl_deploy_certificate_record_rollback_operation" "deploy_certificate_record_rollback" {
- deploy_record_id = 35471
-}
-```
-
-Import
-
-ssl deploy_certificate_record_rollback can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_ssl_deploy_certificate_record_rollback_operation.deploy_certificate_record_rollback deploy_certificate_record_rollback_id
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_ssl_download_certificate_operation.go b/tencentcloud/resource_tc_ssl_download_certificate_operation.go
index 1da018abbf..873bff557d 100644
--- a/tencentcloud/resource_tc_ssl_download_certificate_operation.go
+++ b/tencentcloud/resource_tc_ssl_download_certificate_operation.go
@@ -1,23 +1,3 @@
-/*
-Provides a resource to create a ssl download_certificate
-
-Example Usage
-
-```hcl
-resource "tencentcloud_ssl_download_certificate_operation" "download_certificate" {
- certificate_id = "8x1eUSSl"
- output_path = "./"
-}
-```
-
-Import
-
-ssl download_certificate can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_ssl_download_certificate_operation.download_certificate download_certificate_id
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_ssl_free_certificate.go b/tencentcloud/resource_tc_ssl_free_certificate.go
index f4ab1b889e..6c4614701e 100644
--- a/tencentcloud/resource_tc_ssl_free_certificate.go
+++ b/tencentcloud/resource_tc_ssl_free_certificate.go
@@ -1,35 +1,3 @@
-/*
-Provide a resource to create a Free Certificate.
-
-~> **NOTE:** Once certificat created, it cannot be removed within 1 hours.
-
-Example Usage
-
-Currently, `package_type` only support type 2. 2=TrustAsia TLS RSA CA.
-
-```hcl
-resource "tencentcloud_ssl_free_certificate" "example" {
- dv_auth_method = "DNS_AUTO"
- domain = "example.com"
- package_type = "2"
- contact_email = "test@example.com"
- contact_phone = "18352458901"
- validity_period = 12
- csr_encrypt_algo = "RSA"
- csr_key_parameter = "2048"
- csr_key_password = "csr_pwd"
- alias = "example_free_cert"
-}
-```
-
-Import
-
-FreeCertificate instance can be imported, e.g.
-```
-$ terraform import tencentcloud_ssl_free_certificate.test free_certificate-id
-```
-
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_ssl_pay_certificate.go b/tencentcloud/resource_tc_ssl_pay_certificate.go
index 7fce644927..6486ee6e87 100644
--- a/tencentcloud/resource_tc_ssl_pay_certificate.go
+++ b/tencentcloud/resource_tc_ssl_pay_certificate.go
@@ -1,59 +1,3 @@
-/*
-Provide a resource to create a payment SSL.
-
-~> **NOTE:** Provides the creation of a paid certificate, including the submission of certificate information and order functions;
-currently, it does not support re-issuing certificates, revoking certificates, and deleting certificates; the certificate remarks
-and belonging items can be updated. The Destroy operation will only cancel the certificate order, and will not delete the
-certificate and refund the fee. If you need a refund, you need to check the current certificate status in the console
-as `Review Cancel`, and then you can click `Request a refund` to refund the fee. To update the information of a certificate,
-we will automatically roll back your certificate if this certificate is already in the validation stage. This process may take
-some time because the CA callback is time-consuming. Please be patient and follow the prompt message. Or, feel free to contact
-Tencent Cloud Support.
-
-Example Usage
-
-```hcl
-resource "tencentcloud_ssl_pay_certificate" "example" {
- product_id = 33
- domain_num = 1
- alias = "ssl desc."
- project_id = 0
- information {
- csr_type = "online"
- certificate_domain = "www.example.com"
- organization_name = "Tencent"
- organization_division = "Qcloud"
- organization_address = "广东省深圳市南山区腾讯大厦1000号"
- organization_country = "CN"
- organization_city = "深圳市"
- organization_region = "广东省"
- postal_code = "0755"
- phone_area_code = "0755"
- phone_number = "86013388"
- verify_type = "DNS"
- admin_first_name = "test"
- admin_last_name = "test"
- admin_phone_num = "12345678901"
- admin_email = "test@tencent.com"
- admin_position = "developer"
- contact_first_name = "test"
- contact_last_name = "test"
- contact_email = "test@tencent.com"
- contact_number = "12345678901"
- contact_position = "developer"
- }
-}
-
-```
-
-Import
-
-payment SSL instance can be imported, e.g.
-
-```
-$ terraform import tencentcloud_ssl_pay_certificate.ssl iPQNn61x#33#1#1
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_ssl_replace_certificate_operation.go b/tencentcloud/resource_tc_ssl_replace_certificate_operation.go
index 76ecaa19a4..90c2a85ca9 100644
--- a/tencentcloud/resource_tc_ssl_replace_certificate_operation.go
+++ b/tencentcloud/resource_tc_ssl_replace_certificate_operation.go
@@ -1,24 +1,3 @@
-/*
-Provides a resource to create a ssl replace_certificate
-
-Example Usage
-
-```hcl
-resource "tencentcloud_ssl_replace_certificate_operation" "replace_certificate" {
- certificate_id = "8L6JsWq2"
- valid_type = "DNS_AUTO"
- csr_type = "online"
-}
-```
-
-Import
-
-ssl replace_certificate can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_ssl_replace_certificate_operation.replace_certificate replace_certificate_id
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_ssl_revoke_certificate_operation.go b/tencentcloud/resource_tc_ssl_revoke_certificate_operation.go
index 5bbba02318..7b2ca94e90 100644
--- a/tencentcloud/resource_tc_ssl_revoke_certificate_operation.go
+++ b/tencentcloud/resource_tc_ssl_revoke_certificate_operation.go
@@ -1,22 +1,3 @@
-/*
-Provides a resource to create a ssl revoke_certificate
-
-Example Usage
-
-```hcl
-resource "tencentcloud_ssl_revoke_certificate_operation" "revoke_certificate" {
- certificate_id = "7zUGkVab"
-}
-```
-
-Import
-
-ssl revoke_certificate can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_ssl_revoke_certificate_operation.revoke_certificate revoke_certificate_id
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_ssl_update_certificate_instance_operation.go b/tencentcloud/resource_tc_ssl_update_certificate_instance_operation.go
index f90ab25c43..13cf79c608 100644
--- a/tencentcloud/resource_tc_ssl_update_certificate_instance_operation.go
+++ b/tencentcloud/resource_tc_ssl_update_certificate_instance_operation.go
@@ -1,24 +1,3 @@
-/*
-Provides a resource to create a ssl update_certificate_instance
-
-Example Usage
-
-```hcl
-resource "tencentcloud_ssl_update_certificate_instance_operation" "update_certificate_instance" {
- certificate_id = "8x1eUSSl"
- old_certificate_id = "8xNdi2ig"
- resource_types = ["cdn"]
-}
-```
-
-Import
-
-ssl update_certificate_instance can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_ssl_update_certificate_instance_operation.update_certificate_instance update_certificate_instance_id
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_ssl_update_certificate_record_retry_operation.go b/tencentcloud/resource_tc_ssl_update_certificate_record_retry_operation.go
index 54dbc7e165..28e3510b5b 100644
--- a/tencentcloud/resource_tc_ssl_update_certificate_record_retry_operation.go
+++ b/tencentcloud/resource_tc_ssl_update_certificate_record_retry_operation.go
@@ -1,22 +1,3 @@
-/*
-Provides a resource to create a ssl update_certificate_record_retry
-
-Example Usage
-
-```hcl
-resource "tencentcloud_ssl_update_certificate_record_retry_operation" "update_certificate_record_retry" {
- deploy_record_id = "1603"
-}
-```
-
-Import
-
-ssl update_certificate_record_retry can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_ssl_update_certificate_record_retry_operation.update_certificate_record_retry update_certificate_record_retry_id
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_ssl_update_certificate_record_rollback_operation.go b/tencentcloud/resource_tc_ssl_update_certificate_record_rollback_operation.go
index 6a6f64bf15..38e00a3b39 100644
--- a/tencentcloud/resource_tc_ssl_update_certificate_record_rollback_operation.go
+++ b/tencentcloud/resource_tc_ssl_update_certificate_record_rollback_operation.go
@@ -1,22 +1,3 @@
-/*
-Provides a resource to create a ssl update_certificate_record_rollback
-
-Example Usage
-
-```hcl
-resource "tencentcloud_ssl_update_certificate_record_rollback_operation" "update_certificate_record_rollback" {
- deploy_record_id = "1603"
-}
-```
-
-Import
-
-ssl update_certificate_record_rollback can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_ssl_update_certificate_record_rollback_operation.update_certificate_record_rollback update_certificate_record_rollback_id
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_ssl_upload_revoke_letter_operation.go b/tencentcloud/resource_tc_ssl_upload_revoke_letter_operation.go
index b6801381cf..de3b5f8a4b 100644
--- a/tencentcloud/resource_tc_ssl_upload_revoke_letter_operation.go
+++ b/tencentcloud/resource_tc_ssl_upload_revoke_letter_operation.go
@@ -1,23 +1,3 @@
-/*
-Provides a resource to create a ssl upload_revoke_letter
-
-Example Usage
-
-```hcl
-resource "tencentcloud_ssl_upload_revoke_letter_operation" "upload_revoke_letter" {
- certificate_id = "8xRYdDlc"
- revoke_letter = filebase64("./c.pdf")
-}
-```
-
-Import
-
-ssl upload_revoke_letter can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_ssl_upload_revoke_letter_operation.upload_revoke_letter upload_revoke_letter_id
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_ssm_product_secret.go b/tencentcloud/resource_tc_ssm_product_secret.go
index a712344be8..de367aeb11 100644
--- a/tencentcloud/resource_tc_ssm_product_secret.go
+++ b/tencentcloud/resource_tc_ssm_product_secret.go
@@ -1,91 +1,3 @@
-/*
-Provides a resource to create a ssm product_secret
-
-Example Usage
-
-```hcl
-data "tencentcloud_availability_zones_by_product" "zones" {
- product = "cdb"
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.0.name
- name = "subnet-example"
- vpc_id = tencentcloud_vpc.vpc.id
- cidr_block = "10.0.0.0/16"
- is_multicast = false
-}
-
-resource "tencentcloud_security_group" "security_group" {
- name = "sg-example"
- description = "desc."
-}
-
-resource "tencentcloud_mysql_instance" "example" {
- internet_service = 1
- engine_version = "5.7"
- charge_type = "POSTPAID"
- root_password = "PassWord123"
- slave_deploy_mode = 0
- availability_zone = data.tencentcloud_availability_zones_by_product.zones.zones.0.name
- slave_sync_mode = 1
- instance_name = "tf-example"
- mem_size = 4000
- volume_size = 200
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
- intranet_port = 3306
- security_groups = [tencentcloud_security_group.security_group.id]
-
- tags = {
- createBy = "terraform"
- }
-
- parameters = {
- character_set_server = "utf8"
- max_connections = "1000"
- }
-}
-
-resource "tencentcloud_kms_key" "example" {
- alias = "tf-example-kms-key"
- description = "example of kms key"
- key_rotation_enabled = false
- is_enabled = true
-
- tags = {
- "createdBy" = "terraform"
- }
-}
-
-resource "tencentcloud_ssm_product_secret" "example" {
- secret_name = "tf-example"
- user_name_prefix = "prefix"
- product_name = "Mysql"
- instance_id = tencentcloud_mysql_instance.example.id
- domains = ["10.0.0.0"]
- privileges_list {
- privilege_name = "GlobalPrivileges"
- privileges = ["ALTER ROUTINE"]
- }
- description = "for ssm product test"
- kms_key_id = tencentcloud_kms_key.example.id
- status = "Enabled"
- enable_rotation = true
- rotation_begin_time = "2023-08-05 20:54:33"
- rotation_frequency = 30
-
- tags = {
- "createdBy" = "terraform"
- }
-}
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_ssm_rotate_product_secret.go b/tencentcloud/resource_tc_ssm_rotate_product_secret.go
index 66642b7a4a..2a2171a95b 100644
--- a/tencentcloud/resource_tc_ssm_rotate_product_secret.go
+++ b/tencentcloud/resource_tc_ssm_rotate_product_secret.go
@@ -1,14 +1,3 @@
-/*
-Provides a resource to create a ssm rotate_product_secret
-
-Example Usage
-
-```hcl
-resource "tencentcloud_ssm_rotate_product_secret" "example" {
- secret_name = "tf_example"
-}
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_ssm_secret.go b/tencentcloud/resource_tc_ssm_secret.go
index 89e5ca014e..5def8e96bf 100644
--- a/tencentcloud/resource_tc_ssm_secret.go
+++ b/tencentcloud/resource_tc_ssm_secret.go
@@ -1,83 +1,3 @@
-/*
-Provide a resource to create a SSM secret.
-
-Example Usage
-
-Create user defined secret
-
-```hcl
-resource "tencentcloud_ssm_secret" "example" {
- secret_name = "tf-example"
- description = "desc."
- is_enabled = true
- recovery_window_in_days = 0
-
- tags = {
- createBy = "terraform"
- }
-}
-```
-
-Create redis secret
-
-```hcl
-data "tencentcloud_redis_zone_config" "zone" {
- type_id = 8
-}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- vpc_id = tencentcloud_vpc.vpc.id
- availability_zone = data.tencentcloud_redis_zone_config.zone.list[3].zone
- name = "subnet-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_redis_instance" "example" {
- availability_zone = data.tencentcloud_redis_zone_config.zone.list[3].zone
- type_id = data.tencentcloud_redis_zone_config.zone.list[3].type_id
- password = "Qwer@234"
- mem_size = data.tencentcloud_redis_zone_config.zone.list[3].mem_sizes[0]
- redis_shard_num = data.tencentcloud_redis_zone_config.zone.list[3].redis_shard_nums[0]
- redis_replicas_num = data.tencentcloud_redis_zone_config.zone.list[3].redis_replicas_nums[0]
- name = "tf_example"
- port = 6379
- vpc_id = tencentcloud_vpc.vpc.id
- subnet_id = tencentcloud_subnet.subnet.id
-}
-
-resource "tencentcloud_ssm_secret" "example" {
- secret_name = "tf-example"
- description = "redis desc."
- is_enabled = true
- secret_type = 4
- additional_config = jsonencode(
- {
- "Region" : "ap-guangzhou"
- "Privilege" : "r",
- "InstanceId" : tencentcloud_redis_instance.example.id
- "ReadonlyPolicy" : ["master"],
- "Remark" : "for tf test"
- }
- )
- tags = {
- createdBy = "terraform"
- }
- recovery_window_in_days = 0
-}
-```
-
-Import
-
-SSM secret can be imported using the secretName, e.g.
-```
-$ terraform import tencentcloud_ssm_secret.foo test
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_ssm_secret_version.go b/tencentcloud/resource_tc_ssm_secret_version.go
index 0e1cbcd8ac..77cf67bed3 100644
--- a/tencentcloud/resource_tc_ssm_secret_version.go
+++ b/tencentcloud/resource_tc_ssm_secret_version.go
@@ -1,48 +1,3 @@
-/*
-Provide a resource to create a SSM secret version.
-
--> **Note:** A maximum of 10 versions can be supported under one credential. Only new versions can be added to credentials in the enabled and disabled states.
-
-Example Usage
-
-Text type credential information plaintext
-
-```hcl
-resource "tencentcloud_ssm_secret" "example" {
- secret_name = "tf-example"
- description = "desc."
- recovery_window_in_days = 0
- is_enabled = true
-
- tags = {
- createdBy = "terraform"
- }
-}
-
-resource "tencentcloud_ssm_secret_version" "v1" {
- secret_name = tencentcloud_ssm_secret.example.secret_name
- version_id = "v1"
- secret_string = "this is secret string"
-}
-```
-
-Binary credential information, encoded using base64
-
-```hcl
-resource "tencentcloud_ssm_secret_version" "v2" {
- secret_name = tencentcloud_ssm_secret.example.secret_name
- version_id = "v2"
- secret_binary = "MTIzMTIzMTIzMTIzMTIzQQ=="
-}
-```
-
-Import
-
-SSM secret version can be imported using the secretName#versionId, e.g.
-```
-$ terraform import tencentcloud_ssm_secret_version.v1 test#v1
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_ssm_ssh_key_pair_secret.go b/tencentcloud/resource_tc_ssm_ssh_key_pair_secret.go
index 6685c3b395..7b164e6a09 100644
--- a/tencentcloud/resource_tc_ssm_ssh_key_pair_secret.go
+++ b/tencentcloud/resource_tc_ssm_ssh_key_pair_secret.go
@@ -1,43 +1,3 @@
-/*
-Provides a resource to create a ssm ssh key pair secret
-
-Example Usage
-
-```hcl
-resource "tencentcloud_kms_key" "example" {
- alias = "tf-example-kms-key"
- description = "example of kms key"
- key_rotation_enabled = false
- is_enabled = true
-
- tags = {
- createdBy = "terraform"
- }
-}
-
-resource "tencentcloud_ssm_ssh_key_pair_secret" "example" {
- secret_name = "tf-example"
- project_id = 0
- description = "desc."
- kms_key_id = tencentcloud_kms_key.example.id
- ssh_key_name = "tf_example_ssh"
- status = "Enabled"
- clean_ssh_key = true
-
- tags = {
- createdBy = "terraform"
- }
-}
-```
-
-Import
-
-ssm ssh_key_pair_secret can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_ssm_ssh_key_pair_secret.ssh_key_pair_secret ssh_key_pair_secret_name
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_subnet.go b/tencentcloud/resource_tc_subnet.go
index 3c962c385a..ed0d0c9b37 100644
--- a/tencentcloud/resource_tc_subnet.go
+++ b/tencentcloud/resource_tc_subnet.go
@@ -1,33 +1,3 @@
-/*
-Provide a resource to create a VPC subnet.
-
-Example Usage
-
-```hcl
-data "tencentcloud_availability_zones" "zones" {}
-
-resource "tencentcloud_vpc" "vpc" {
- name = "vpc-example"
- cidr_block = "10.0.0.0/16"
-}
-
-resource "tencentcloud_subnet" "subnet" {
- vpc_id = tencentcloud_vpc.vpc.id
- name = "subnet-example"
- cidr_block = "10.0.0.0/16"
- availability_zone = data.tencentcloud_availability_zones.zones.zones.0.name
- is_multicast = false
-}
-```
-
-Import
-
-Vpc subnet instance can be imported, e.g.
-
-```
-$ terraform import tencentcloud_subnet.test subnet_id
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_tag.go b/tencentcloud/resource_tc_tag.go
index 76ccedefe9..7fb17109d0 100644
--- a/tencentcloud/resource_tc_tag.go
+++ b/tencentcloud/resource_tc_tag.go
@@ -1,25 +1,3 @@
-/*
-Provides a resource to create a tag
-
-Example Usage
-
-```hcl
-
-resource "tencentcloud_tag" "tag" {
- tag_key = "test"
- tag_value = "Terraform"
-}
-
-```
-
-Import
-
-tag tag can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_tag.tag tag_id
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_tag_attachment.go b/tencentcloud/resource_tc_tag_attachment.go
index 261ad598c3..4522922c8a 100644
--- a/tencentcloud/resource_tc_tag_attachment.go
+++ b/tencentcloud/resource_tc_tag_attachment.go
@@ -1,26 +1,3 @@
-/*
-Provides a resource to create a tag attachment
-
-Example Usage
-
-```hcl
-
-resource "tencentcloud_tag_attachment" "attachment" {
- tag_key = "test3"
- tag_value = "Terraform3"
- resource = "qcs::cvm:ap-guangzhou:uin/100020512675:instance/ins-kfrlvcp4"
-}
-
-```
-
-Import
-
-tag attachment can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_tag_attachment.attachment attachment_id
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_tat_command.go b/tencentcloud/resource_tc_tat_command.go
index 31a0671c7e..b78625f3f2 100644
--- a/tencentcloud/resource_tc_tat_command.go
+++ b/tencentcloud/resource_tc_tat_command.go
@@ -1,31 +1,3 @@
-/*
-Provides a resource to create a tat command
-
-Example Usage
-
-```hcl
-resource "tencentcloud_tat_command" "command" {
- username = "root"
- command_name = "ls"
- content = "bHM="
- description = "xxx"
- command_type = "SHELL"
- working_directory = "/root"
- timeout = 50
- tags {
- key = ""
- value = ""
- }
-}
-
-```
-Import
-
-tat command can be imported using the id, e.g.
-```
-$ terraform import tencentcloud_tat_command.command cmd-6fydo27j
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_tat_invocation_command_attachment.go b/tencentcloud/resource_tc_tat_invocation_command_attachment.go
index 6d241907fa..ae8cfef0a5 100644
--- a/tencentcloud/resource_tc_tat_invocation_command_attachment.go
+++ b/tencentcloud/resource_tc_tat_invocation_command_attachment.go
@@ -1,28 +1,3 @@
-/*
-Provides a resource to create a tat invocation_command_attachment
-
-Example Usage
-
-```hcl
-resource "tencentcloud_tat_invocation_command_attachment" "invocation_command_attachment" {
- content = base64encode("pwd")
- instance_id = "ins-881b1c8w"
- command_name = "terraform-test"
- description = "shell test"
- command_type = "SHELL"
- working_directory = "/root"
- timeout = 100
- save_command = false
- enable_parameter = false
- # default_parameters = "{\"varA\": \"222\"}"
- # parameters = "{\"varA\": \"222\"}"
- username = "root"
- output_cos_bucket_url = "https://BucketName-123454321.cos.ap-beijing.myqcloud.com"
- output_cos_key_prefix = "log"
-}
-```
-
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_tat_invocation_invoke_attachment.go b/tencentcloud/resource_tc_tat_invocation_invoke_attachment.go
index 479ef15b28..95e8f2c32e 100644
--- a/tencentcloud/resource_tc_tat_invocation_invoke_attachment.go
+++ b/tencentcloud/resource_tc_tat_invocation_invoke_attachment.go
@@ -1,29 +1,3 @@
-/*
-Provides a resource to create a tat invocation_invoke_attachment
-
-Example Usage
-
-```hcl
-resource "tencentcloud_tat_invocation_invoke_attachment" "invocation_invoke_attachment" {
- instance_id = "ins-881b1c8w"
- working_directory = "/root"
- timeout = 100
- # parameters = "{\"varA\": \"222\"}"
- username = "root"
- output_cos_bucket_url = "https://BucketName-123454321.cos.ap-beijing.myqcloud.com"
- output_cos_key_prefix = "log"
- command_id = "cmd-rxbs7f5z"
-}
-```
-
-Import
-
-tat invocation can be imported using the invocation_id#instance_id, e.g.
-
-```
-terraform import tencentcloud_tat_invocation_invoke_attachment.invocation_invoke_attachment inv-mhs6ca8z#ins-881b1c8w
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_tat_invoker.go b/tencentcloud/resource_tc_tat_invoker.go
index b146ec96b3..3db9551f6f 100644
--- a/tencentcloud/resource_tc_tat_invoker.go
+++ b/tencentcloud/resource_tc_tat_invoker.go
@@ -1,31 +1,3 @@
-/*
-Provides a resource to create a tat invoker
-
-Example Usage
-
-```hcl
-resource "tencentcloud_tat_invoker" "invoker" {
- name = "pwd-1"
- type = "SCHEDULE"
- command_id = "cmd-6fydo27j"
- instance_ids = ["ins-3c7q2ebs",]
- username = "root"
- # parameters = ""
- schedule_settings {
- policy = "ONCE"
- # recurrence = ""
- invoke_time = "2099-11-17T16:00:00Z"
- }
-}
-
-```
-Import
-
-tat invoker can be imported using the id, e.g.
-```
-$ terraform import tencentcloud_tat_invoker.invoker ivk-gwb4ztk5
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_tat_invoker_config.go b/tencentcloud/resource_tc_tat_invoker_config.go
index c6d49b3f4c..dc3f1434ff 100644
--- a/tencentcloud/resource_tc_tat_invoker_config.go
+++ b/tencentcloud/resource_tc_tat_invoker_config.go
@@ -1,23 +1,3 @@
-/*
-Provides a resource to create a tat invoker_config
-
-Example Usage
-
-```hcl
-resource "tencentcloud_tat_invoker_config" "invoker_config" {
- invoker_id = "ivk-cas4upyf"
- invoker_status = "on"
-}
-```
-
-Import
-
-tat invoker_config can be imported using the id, e.g.
-
-```
-terraform import tencentcloud_tat_invoker_config.invoker_config invoker_config_id
-```
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_tcaplus_cluster.go b/tencentcloud/resource_tc_tcaplus_cluster.go
index 8001f039e1..8aaccf6612 100644
--- a/tencentcloud/resource_tc_tcaplus_cluster.go
+++ b/tencentcloud/resource_tc_tcaplus_cluster.go
@@ -1,46 +1,3 @@
-/*
-Use this resource to create TcaplusDB cluster.
-
-~> **NOTE:** TcaplusDB now only supports the following regions: `ap-shanghai,ap-hongkong,na-siliconvalley,ap-singapore,ap-seoul,ap-tokyo,eu-frankfurt, and na-ashburn`.
-
-Example Usage
-
-Create a new tcaplus cluster instance
-
-```hcl
-locals {
- vpc_id = data.tencentcloud_vpc_subnets.vpc.instance_list.0.vpc_id
- subnet_id = data.tencentcloud_vpc_subnets.vpc.instance_list.0.subnet_id
-}
-
-variable "availability_zone" {
- default = "ap-guangzhou-3"
-}
-
-data "tencentcloud_vpc_subnets" "vpc" {
- is_default = true
- availability_zone = var.availability_zone
-}
-
-resource "tencentcloud_tcaplus_cluster" "example" {
- idl_type = "PROTO"
- cluster_name = "tf_example_tcaplus_cluster"
- vpc_id = local.vpc_id
- subnet_id = local.subnet_id
- password = "your_pw_123111"
- old_password_expire_last = 3600
-}
-```
-
-Import
-
-tcaplus cluster can be imported using the id, e.g.
-
-```
-$ terraform import tencentcloud_tcaplus_cluster.example cluster_id
-```
-
-*/
package tencentcloud
import (
diff --git a/tencentcloud/resource_tc_tcaplus_idl.go b/tencentcloud/resource_tc_tcaplus_idl.go
index 8b1f2c5367..78faabb776 100644
--- a/tencentcloud/resource_tc_tcaplus_idl.go
+++ b/tencentcloud/resource_tc_tcaplus_idl.go
@@ -1,77 +1,3 @@
-/*
-Use this resource to create TcaplusDB IDL file.
-
-Example Usage
-
-Create a tcaplus database idl file
-
-The file will be with a specified cluster and tablegroup.
-
-```hcl
-locals {
- vpc_id = data.tencentcloud_vpc_subnets.vpc.instance_list.0.vpc_id
- subnet_id = data.tencentcloud_vpc_subnets.vpc.instance_list.0.subnet_id
-}
-
-variable "availability_zone" {
- default = "ap-guangzhou-3"
-}
-
-data "tencentcloud_vpc_subnets" "vpc" {
- is_default = true
- availability_zone = var.availability_zone
-}
-
-resource "tencentcloud_tcaplus_cluster" "example" {
- idl_type = "PROTO"
- cluster_name = "tf_example_tcaplus_cluster"
- vpc_id = local.vpc_id
- subnet_id = local.subnet_id
- password = "your_pw_123111"
- old_password_expire_last = 3600
-}
-
-resource "tencentcloud_tcaplus_tablegroup" "example" {
- cluster_id = tencentcloud_tcaplus_cluster.example.id
- tablegroup_name = "tf_example_group_name"
-}
-
-resource "tencentcloud_tcaplus_idl" "main" {
- cluster_id = tencentcloud_tcaplus_cluster.example.id
- tablegroup_id = tencentcloud_tcaplus_tablegroup.example.id
- file_name = "tf_example_tcaplus_idl"
- file_type = "PROTO"
- file_ext_type = "proto"
- file_content = <