Skip to content

Commit 17d4e1c

Browse files
authored
feat(as): [129522956] add health timeout (#3473)
* add health timeout * add health timeout * add health timeout
1 parent 7ad4fde commit 17d4e1c

File tree

11 files changed

+486
-418
lines changed

11 files changed

+486
-418
lines changed

.changelog/3473.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:enhancement
2+
resource/tencentcloud_as_start_instance_refresh: add `check_instance_target_health_timeout`
3+
```

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ require (
3030
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/api v1.0.285
3131
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/apigateway v1.0.763
3232
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/apm v1.0.825
33-
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/as v1.0.1164
33+
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/as v1.1.4
3434
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/bi v1.0.824
3535
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/cam v1.0.1071
3636
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/cat v1.0.825
@@ -46,7 +46,7 @@ require (
4646
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/clb v1.0.1107
4747
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/cloudaudit v1.0.1033
4848
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/cls v1.0.1148
49-
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common v1.1.0
49+
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common v1.1.4
5050
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/cvm v1.0.1153
5151
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/cwp v1.0.762
5252
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/cynosdb v1.0.1161

go.sum

Lines changed: 4 additions & 126 deletions
Large diffs are not rendered by default.

tencentcloud/services/as/resource_tc_as_start_instance_refresh.go

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tencentcloud/services/as/resource_tc_as_start_instance_refresh.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ resource "tencentcloud_as_start_instance_refresh" "example" {
1414
max_surge = 1
1515
fail_process = "AUTO_PAUSE"
1616
}
17+
check_instance_target_health_timeout = 1800
1718
}
1819
1920
timeouts {

vendor/github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/as/v20180419/client.go

Lines changed: 75 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/as/v20180419/errors.go

Lines changed: 7 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/as/v20180419/models.go

Lines changed: 380 additions & 271 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common/http/request.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/modules.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1110,7 +1110,7 @@ github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/apigateway/v20180808
11101110
# github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/apm v1.0.825
11111111
## explicit; go 1.14
11121112
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/apm/v20210622
1113-
# github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/as v1.0.1164
1113+
# github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/as v1.1.4
11141114
## explicit; go 1.14
11151115
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/as/v20180419
11161116
# github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/bi v1.0.824
@@ -1167,7 +1167,7 @@ github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/cloudaudit/v20190319
11671167
# github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/cls v1.0.1148
11681168
## explicit; go 1.14
11691169
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/cls/v20201016
1170-
# github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common v1.1.0
1170+
# github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common v1.1.4
11711171
## explicit; go 1.11
11721172
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common
11731173
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common/errors

0 commit comments

Comments
 (0)