Skip to content

Commit b1a0932

Browse files
tongyimingmikatong
andauthored
fix doc classification (#1474)
Co-authored-by: mikatong <mikatong@tencent.com>
1 parent d56b42b commit b1a0932

10 files changed

+13
-24
lines changed

tencentcloud/data_source_tc_availability_zones_by_product.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
/*
2-
Use this data source to get the available zones in current region.
3-
Must set product param to fetch the product infomations(e.g. => cvm, vpc)
4-
By default only `AVAILABLE` zones will be returned, but `UNAVAILABLE` zones can also be fetched when `include_unavailable` is specified.
2+
Use this data source to get the available zones in current region. Must set product param to fetch the product infomations(e.g. => cvm, vpc). By default only `AVAILABLE` zones will be returned, but `UNAVAILABLE` zones can also be fetched when `include_unavailable` is specified.
53
64
Example Usage
75

tencentcloud/resource_tc_cdn_domain.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/*
22
Provides a resource to create a CDN domain.
3+
34
~> **NOTE:** To disable most of configuration with switch, just modify switch argument to off instead of remove the whole block
45
56
Example Usage

tencentcloud/resource_tc_kubernetes_cluster_endpoint.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*
2-
Provide a resource to create a KubernetesClusterEndpoint.
3-
This resource allows you to create an empty cluster first without any workers. Only all attached node depends create complete, cluster endpoint will finally be enabled.
2+
Provide a resource to create a KubernetesClusterEndpoint. This resource allows you to create an empty cluster first without any workers. Only all attached node depends create complete, cluster endpoint will finally be enabled.
43
54
~> **NOTE:** Recommend using `depends_on` to make sure endpoint create after node pools or workers does.
65

tencentcloud/resource_tc_security_group_rule_set.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*
2-
Provides a resource to create security group rule.
3-
This resource is similar with tencentcloud_security_group_lite_rule, rules can be ordered and configure descriptions.
2+
Provides a resource to create security group rule. This resource is similar with tencentcloud_security_group_lite_rule, rules can be ordered and configure descriptions.
43
54
~> **NOTE:** This resource must exclusive in one security group, do not declare additional rule resources of this security group elsewhere.
65

tencentcloud/resource_tc_ssl_free_certificate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/*
22
Provide a resource to create a Free Certificate.
3+
34
~> **NOTE:** Once certificat created, it cannot be removed within 1 hours.
45
56
Example Usage
@@ -19,7 +20,6 @@ resource "tencentcloud_ssl_free_certificate" "foo" {
1920
}
2021
```
2122
22-
2323
Import
2424
2525
FreeCertificate instance can be imported, e.g.

website/docs/d/availability_zones_by_product.html.markdown

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,12 @@ layout: "tencentcloud"
44
page_title: "TencentCloud: tencentcloud_availability_zones_by_product"
55
sidebar_current: "docs-tencentcloud-datasource-availability_zones_by_product"
66
description: |-
7-
Use this data source to get the available zones in current region.
8-
Must set product param to fetch the product infomations(e.g. => cvm, vpc)
9-
By default only `AVAILABLE` zones will be returned, but `UNAVAILABLE` zones can also be fetched when `include_unavailable` is specified.
7+
Use this data source to get the available zones in current region. Must set product param to fetch the product infomations(e.g. => cvm, vpc). By default only `AVAILABLE` zones will be returned, but `UNAVAILABLE` zones can also be fetched when `include_unavailable` is specified.
108
---
119

1210
# tencentcloud_availability_zones_by_product
1311

14-
Use this data source to get the available zones in current region.
15-
Must set product param to fetch the product infomations(e.g. => cvm, vpc)
16-
By default only `AVAILABLE` zones will be returned, but `UNAVAILABLE` zones can also be fetched when `include_unavailable` is specified.
12+
Use this data source to get the available zones in current region. Must set product param to fetch the product infomations(e.g. => cvm, vpc). By default only `AVAILABLE` zones will be returned, but `UNAVAILABLE` zones can also be fetched when `include_unavailable` is specified.
1713

1814
## Example Usage
1915

website/docs/r/cdn_domain.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ page_title: "TencentCloud: tencentcloud_cdn_domain"
55
sidebar_current: "docs-tencentcloud-resource-cdn_domain"
66
description: |-
77
Provides a resource to create a CDN domain.
8-
~> **NOTE:** To disable most of configuration with switch, just modify switch argument to off instead of remove the whole block
98
---
109

1110
# tencentcloud_cdn_domain
1211

1312
Provides a resource to create a CDN domain.
13+
1414
~> **NOTE:** To disable most of configuration with switch, just modify switch argument to off instead of remove the whole block
1515

1616
## Example Usage

website/docs/r/kubernetes_cluster_endpoint.html.markdown

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,12 @@ layout: "tencentcloud"
44
page_title: "TencentCloud: tencentcloud_kubernetes_cluster_endpoint"
55
sidebar_current: "docs-tencentcloud-resource-kubernetes_cluster_endpoint"
66
description: |-
7-
Provide a resource to create a KubernetesClusterEndpoint.
8-
This resource allows you to create an empty cluster first without any workers. Only all attached node depends create complete, cluster endpoint will finally be enabled.
7+
Provide a resource to create a KubernetesClusterEndpoint. This resource allows you to create an empty cluster first without any workers. Only all attached node depends create complete, cluster endpoint will finally be enabled.
98
---
109

1110
# tencentcloud_kubernetes_cluster_endpoint
1211

13-
Provide a resource to create a KubernetesClusterEndpoint.
14-
This resource allows you to create an empty cluster first without any workers. Only all attached node depends create complete, cluster endpoint will finally be enabled.
12+
Provide a resource to create a KubernetesClusterEndpoint. This resource allows you to create an empty cluster first without any workers. Only all attached node depends create complete, cluster endpoint will finally be enabled.
1513

1614
~> **NOTE:** Recommend using `depends_on` to make sure endpoint create after node pools or workers does.
1715

website/docs/r/security_group_rule_set.html.markdown

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,12 @@ layout: "tencentcloud"
44
page_title: "TencentCloud: tencentcloud_security_group_rule_set"
55
sidebar_current: "docs-tencentcloud-resource-security_group_rule_set"
66
description: |-
7-
Provides a resource to create security group rule.
8-
This resource is similar with tencentcloud_security_group_lite_rule, rules can be ordered and configure descriptions.
7+
Provides a resource to create security group rule. This resource is similar with tencentcloud_security_group_lite_rule, rules can be ordered and configure descriptions.
98
---
109

1110
# tencentcloud_security_group_rule_set
1211

13-
Provides a resource to create security group rule.
14-
This resource is similar with tencentcloud_security_group_lite_rule, rules can be ordered and configure descriptions.
12+
Provides a resource to create security group rule. This resource is similar with tencentcloud_security_group_lite_rule, rules can be ordered and configure descriptions.
1513

1614
~> **NOTE:** This resource must exclusive in one security group, do not declare additional rule resources of this security group elsewhere.
1715

website/docs/r/ssl_free_certificate.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ page_title: "TencentCloud: tencentcloud_ssl_free_certificate"
55
sidebar_current: "docs-tencentcloud-resource-ssl_free_certificate"
66
description: |-
77
Provide a resource to create a Free Certificate.
8-
~> **NOTE:** Once certificat created, it cannot be removed within 1 hours.
98
---
109

1110
# tencentcloud_ssl_free_certificate
1211

1312
Provide a resource to create a Free Certificate.
13+
1414
~> **NOTE:** Once certificat created, it cannot be removed within 1 hours.
1515

1616
## Example Usage

0 commit comments

Comments
 (0)