tencentcloud-sdk-nodejs 4.0.770 → 4.0.772

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (76) hide show
  1. package/CHANGELOG.md +192 -0
  2. package/SERVICE_CHANGELOG.md +151 -9
  3. package/package.json +1 -1
  4. package/products.md +12 -12
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/ams/index.ts +2 -2
  7. package/src/services/btoe/index.ts +2 -2
  8. package/src/services/cdc/v20201214/cdc_client.ts +3 -2
  9. package/src/services/cdc/v20201214/cdc_models.ts +65 -19
  10. package/src/services/cdwch/v20200915/cdwch_models.ts +7 -3
  11. package/src/services/chdfs/index.ts +2 -2
  12. package/src/services/cii/index.ts +2 -2
  13. package/src/services/cwp/v20180228/cwp_client.ts +1 -1
  14. package/src/services/cwp/v20180228/cwp_models.ts +17 -15
  15. package/src/services/dbbrain/index.ts +2 -2
  16. package/src/services/ess/v20201111/ess_models.ts +11 -2
  17. package/src/services/essbasic/v20210526/essbasic_client.ts +1 -1
  18. package/src/services/essbasic/v20210526/essbasic_models.ts +25 -15
  19. package/src/services/hai/v20230812/hai_models.ts +33 -3
  20. package/src/services/iotcloud/index.ts +2 -2
  21. package/src/services/iotvideo/index.ts +2 -2
  22. package/src/services/mgobe/index.ts +2 -2
  23. package/src/services/mongodb/index.ts +2 -2
  24. package/src/services/organization/index.ts +2 -2
  25. package/src/services/tcss/v20201101/tcss_client.ts +77 -25
  26. package/src/services/tcss/v20201101/tcss_models.ts +663 -91
  27. package/src/services/teo/index.ts +2 -2
  28. package/src/services/thpc/index.ts +2 -2
  29. package/src/services/tione/index.ts +2 -2
  30. package/src/services/tsw/index.ts +2 -2
  31. package/tencentcloud/common/sdk_version.d.ts +1 -1
  32. package/tencentcloud/common/sdk_version.js +1 -1
  33. package/tencentcloud/services/ams/index.d.ts +4 -4
  34. package/tencentcloud/services/ams/index.js +2 -2
  35. package/tencentcloud/services/btoe/index.d.ts +4 -4
  36. package/tencentcloud/services/btoe/index.js +2 -2
  37. package/tencentcloud/services/cdc/v20201214/cdc_client.d.ts +2 -2
  38. package/tencentcloud/services/cdc/v20201214/cdc_client.js +2 -2
  39. package/tencentcloud/services/cdc/v20201214/cdc_models.d.ts +64 -19
  40. package/tencentcloud/services/cdwch/v20200915/cdwch_models.d.ts +7 -3
  41. package/tencentcloud/services/chdfs/index.d.ts +4 -4
  42. package/tencentcloud/services/chdfs/index.js +2 -2
  43. package/tencentcloud/services/cii/index.d.ts +4 -4
  44. package/tencentcloud/services/cii/index.js +2 -2
  45. package/tencentcloud/services/cwp/v20180228/cwp_client.d.ts +1 -1
  46. package/tencentcloud/services/cwp/v20180228/cwp_client.js +1 -1
  47. package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +17 -15
  48. package/tencentcloud/services/dbbrain/index.d.ts +4 -4
  49. package/tencentcloud/services/dbbrain/index.js +2 -2
  50. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +11 -2
  51. package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +1 -1
  52. package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +1 -1
  53. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +25 -15
  54. package/tencentcloud/services/hai/v20230812/hai_models.d.ts +33 -3
  55. package/tencentcloud/services/iotcloud/index.d.ts +4 -4
  56. package/tencentcloud/services/iotcloud/index.js +2 -2
  57. package/tencentcloud/services/iotvideo/index.d.ts +4 -4
  58. package/tencentcloud/services/iotvideo/index.js +2 -2
  59. package/tencentcloud/services/mgobe/index.d.ts +4 -4
  60. package/tencentcloud/services/mgobe/index.js +2 -2
  61. package/tencentcloud/services/mongodb/index.d.ts +4 -4
  62. package/tencentcloud/services/mongodb/index.js +2 -2
  63. package/tencentcloud/services/organization/index.d.ts +4 -4
  64. package/tencentcloud/services/organization/index.js +2 -2
  65. package/tencentcloud/services/tcss/v20201101/tcss_client.d.ts +23 -7
  66. package/tencentcloud/services/tcss/v20201101/tcss_client.js +33 -9
  67. package/tencentcloud/services/tcss/v20201101/tcss_models.d.ts +653 -93
  68. package/tencentcloud/services/teo/index.d.ts +4 -4
  69. package/tencentcloud/services/teo/index.js +2 -2
  70. package/tencentcloud/services/thpc/index.d.ts +4 -4
  71. package/tencentcloud/services/thpc/index.js +2 -2
  72. package/tencentcloud/services/tione/index.d.ts +4 -4
  73. package/tencentcloud/services/tione/index.js +2 -2
  74. package/tencentcloud/services/tsw/index.d.ts +4 -4
  75. package/tencentcloud/services/tsw/index.js +2 -2
  76. package/test/tcss.v20201101.test.js +46 -6
package/CHANGELOG.md CHANGED
@@ -1,3 +1,195 @@
1
+ # Release 4.0.772
2
+
3
+ ## 本地专用集群(cdc) 版本:2020-12-14
4
+
5
+ ### 第 8 次发布
6
+
7
+ 发布时间:2024-01-03 01:08:25
8
+
9
+ 本次发布包含了以下内容:
10
+
11
+ 改善已有的文档。
12
+
13
+ 修改接口:
14
+
15
+ * [DescribeDedicatedClusterOverview](https://cloud.tencent.com/document/api/1346/73760)
16
+
17
+ * 新增出参:HostDetailInfo, HostStandbyCount, HostNormalCount
18
+
19
+
20
+ 新增数据结构:
21
+
22
+ * [HostDetailInfo](https://cloud.tencent.com/document/api/1346/73770#HostDetailInfo)
23
+
24
+
25
+
26
+ ## 云数据仓库 ClickHouse(cdwch) 版本:2020-09-15
27
+
28
+ ### 第 18 次发布
29
+
30
+ 发布时间:2024-01-03 01:08:49
31
+
32
+ 本次发布包含了以下内容:
33
+
34
+ 改善已有的文档。
35
+
36
+ 修改接口:
37
+
38
+ * [DescribeSpec](https://cloud.tencent.com/document/api/1299/83510)
39
+
40
+ * 新增入参:CaseType
41
+
42
+
43
+
44
+
45
+ ## 高性能应用服务(hai) 版本:2023-08-12
46
+
47
+ ### 第 6 次发布
48
+
49
+ 发布时间:2024-01-03 01:16:14
50
+
51
+ 本次发布包含了以下内容:
52
+
53
+ 改善已有的文档。
54
+
55
+ 修改接口:
56
+
57
+ * [DescribeApplications](https://cloud.tencent.com/document/api/1721/101609)
58
+
59
+ * 新增入参:OrderField, Order
60
+
61
+
62
+ 修改数据结构:
63
+
64
+ * [ApplicationInfo](https://cloud.tencent.com/document/api/1721/101518#ApplicationInfo)
65
+
66
+ * 新增成员:ApplicationType, ApplicationState, CreateTime, ApplicationSize
67
+
68
+
69
+
70
+
71
+ ## 容器安全服务(tcss) 版本:2020-11-01
72
+
73
+ ### 第 58 次发布
74
+
75
+ 发布时间:2024-01-03 01:24:22
76
+
77
+ 本次发布包含了以下内容:
78
+
79
+ 改善已有的文档。
80
+
81
+ 新增接口:
82
+
83
+ * [DescribeAssetSuperNodeList](https://cloud.tencent.com/document/api/1285/102813)
84
+ * [DescribeClusterNodes](https://cloud.tencent.com/document/api/1285/102811)
85
+ * [DescribeSuperNodePodList](https://cloud.tencent.com/document/api/1285/102812)
86
+ * [DescribeUserPodList](https://cloud.tencent.com/document/api/1285/102810)
87
+
88
+ 新增数据结构:
89
+
90
+ * [ClusterNodeInfo](https://cloud.tencent.com/document/api/1285/65614#ClusterNodeInfo)
91
+ * [ClusterPodInfo](https://cloud.tencent.com/document/api/1285/65614#ClusterPodInfo)
92
+ * [SuperNodeListItem](https://cloud.tencent.com/document/api/1285/65614#SuperNodeListItem)
93
+ * [SuperNodePodListItem](https://cloud.tencent.com/document/api/1285/65614#SuperNodePodListItem)
94
+
95
+
96
+
97
+ # Release 4.0.771
98
+
99
+ ## 本地专用集群(cdc) 版本:2020-12-14
100
+
101
+ ### 第 8 次发布
102
+
103
+ 发布时间:2024-01-03 01:08:25
104
+
105
+ 本次发布包含了以下内容:
106
+
107
+ 改善已有的文档。
108
+
109
+ 修改接口:
110
+
111
+ * [DescribeDedicatedClusterOverview](https://cloud.tencent.com/document/api/1346/73760)
112
+
113
+ * 新增出参:HostDetailInfo, HostStandbyCount, HostNormalCount
114
+
115
+
116
+ 新增数据结构:
117
+
118
+ * [HostDetailInfo](https://cloud.tencent.com/document/api/1346/73770#HostDetailInfo)
119
+
120
+
121
+
122
+ ## 云数据仓库 ClickHouse(cdwch) 版本:2020-09-15
123
+
124
+ ### 第 18 次发布
125
+
126
+ 发布时间:2024-01-03 01:08:49
127
+
128
+ 本次发布包含了以下内容:
129
+
130
+ 改善已有的文档。
131
+
132
+ 修改接口:
133
+
134
+ * [DescribeSpec](https://cloud.tencent.com/document/api/1299/83510)
135
+
136
+ * 新增入参:CaseType
137
+
138
+
139
+
140
+
141
+ ## 高性能应用服务(hai) 版本:2023-08-12
142
+
143
+ ### 第 6 次发布
144
+
145
+ 发布时间:2024-01-03 01:16:14
146
+
147
+ 本次发布包含了以下内容:
148
+
149
+ 改善已有的文档。
150
+
151
+ 修改接口:
152
+
153
+ * [DescribeApplications](https://cloud.tencent.com/document/api/1721/101609)
154
+
155
+ * 新增入参:OrderField, Order
156
+
157
+
158
+ 修改数据结构:
159
+
160
+ * [ApplicationInfo](https://cloud.tencent.com/document/api/1721/101518#ApplicationInfo)
161
+
162
+ * 新增成员:ApplicationType, ApplicationState, CreateTime, ApplicationSize
163
+
164
+
165
+
166
+
167
+ ## 容器安全服务(tcss) 版本:2020-11-01
168
+
169
+ ### 第 58 次发布
170
+
171
+ 发布时间:2024-01-03 01:24:22
172
+
173
+ 本次发布包含了以下内容:
174
+
175
+ 改善已有的文档。
176
+
177
+ 新增接口:
178
+
179
+ * [DescribeAssetSuperNodeList](https://cloud.tencent.com/document/api/1285/102813)
180
+ * [DescribeClusterNodes](https://cloud.tencent.com/document/api/1285/102811)
181
+ * [DescribeSuperNodePodList](https://cloud.tencent.com/document/api/1285/102812)
182
+ * [DescribeUserPodList](https://cloud.tencent.com/document/api/1285/102810)
183
+
184
+ 新增数据结构:
185
+
186
+ * [ClusterNodeInfo](https://cloud.tencent.com/document/api/1285/65614#ClusterNodeInfo)
187
+ * [ClusterPodInfo](https://cloud.tencent.com/document/api/1285/65614#ClusterPodInfo)
188
+ * [SuperNodeListItem](https://cloud.tencent.com/document/api/1285/65614#SuperNodeListItem)
189
+ * [SuperNodePodListItem](https://cloud.tencent.com/document/api/1285/65614#SuperNodePodListItem)
190
+
191
+
192
+
1
193
  # Release 4.0.770
2
194
 
3
195
  ## 流计算 Oceanus(oceanus) 版本:2019-04-22
@@ -1,10 +1,10 @@
1
1
  # 本版本更新包含以下内容:
2
2
 
3
- ## 流计算 Oceanus(oceanus) 版本:2019-04-22
3
+ ## 本地专用集群(cdc) 版本:2020-12-14
4
4
 
5
- ### 第 52 次发布
5
+ ### 第 8 次发布
6
6
 
7
- 发布时间:2024-01-01 00:15:04
7
+ 发布时间:2024-01-03 01:08:25
8
8
 
9
9
  本次发布包含了以下内容:
10
10
 
@@ -12,21 +12,85 @@
12
12
 
13
13
  修改接口:
14
14
 
15
- * [DescribeJobs](https://cloud.tencent.com/document/api/849/52008)
15
+ * [DescribeDedicatedClusterOverview](https://cloud.tencent.com/document/api/1346/73760)
16
16
 
17
- * 新增入参:ExtraResult
17
+ * 新增出参:HostDetailInfo, HostStandbyCount, HostNormalCount
18
18
 
19
19
 
20
20
  新增数据结构:
21
21
 
22
- * [JobEventInfo](https://cloud.tencent.com/document/api/849/52010#JobEventInfo)
22
+ * [HostDetailInfo](https://cloud.tencent.com/document/api/1346/73770#HostDetailInfo)
23
+
24
+
25
+
26
+ ## 云数据仓库 ClickHouse(cdwch) 版本:2020-09-15
27
+
28
+ ### 第 18 次发布
29
+
30
+ 发布时间:2024-01-03 01:08:49
31
+
32
+ 本次发布包含了以下内容:
33
+
34
+ 改善已有的文档。
35
+
36
+ 修改接口:
37
+
38
+ * [DescribeSpec](https://cloud.tencent.com/document/api/1299/83510)
39
+
40
+ * 新增入参:CaseType
41
+
42
+
43
+
44
+
45
+ ## 高性能应用服务(hai) 版本:2023-08-12
46
+
47
+ ### 第 6 次发布
48
+
49
+ 发布时间:2024-01-03 01:16:14
50
+
51
+ 本次发布包含了以下内容:
52
+
53
+ 改善已有的文档。
54
+
55
+ 修改接口:
56
+
57
+ * [DescribeApplications](https://cloud.tencent.com/document/api/1721/101609)
58
+
59
+ * 新增入参:OrderField, Order
60
+
23
61
 
24
62
  修改数据结构:
25
63
 
26
- * [JobV1](https://cloud.tencent.com/document/api/849/52010#JobV1)
64
+ * [ApplicationInfo](https://cloud.tencent.com/document/api/1721/101518#ApplicationInfo)
27
65
 
28
- * 新增成员:EventInfo
66
+ * 新增成员:ApplicationType, ApplicationState, CreateTime, ApplicationSize
67
+
68
+
69
+
70
+
71
+ ## 容器安全服务(tcss) 版本:2020-11-01
72
+
73
+ ### 第 58 次发布
74
+
75
+ 发布时间:2024-01-03 01:24:22
76
+
77
+ 本次发布包含了以下内容:
78
+
79
+ 改善已有的文档。
80
+
81
+ 新增接口:
82
+
83
+ * [DescribeAssetSuperNodeList](https://cloud.tencent.com/document/api/1285/102813)
84
+ * [DescribeClusterNodes](https://cloud.tencent.com/document/api/1285/102811)
85
+ * [DescribeSuperNodePodList](https://cloud.tencent.com/document/api/1285/102812)
86
+ * [DescribeUserPodList](https://cloud.tencent.com/document/api/1285/102810)
87
+
88
+ 新增数据结构:
29
89
 
90
+ * [ClusterNodeInfo](https://cloud.tencent.com/document/api/1285/65614#ClusterNodeInfo)
91
+ * [ClusterPodInfo](https://cloud.tencent.com/document/api/1285/65614#ClusterPodInfo)
92
+ * [SuperNodeListItem](https://cloud.tencent.com/document/api/1285/65614#SuperNodeListItem)
93
+ * [SuperNodePodListItem](https://cloud.tencent.com/document/api/1285/65614#SuperNodePodListItem)
30
94
 
31
95
 
32
96
 
@@ -18441,6 +18505,25 @@
18441
18505
 
18442
18506
  ## 本地专用集群(cdc) 版本:2020-12-14
18443
18507
 
18508
+ ### 第 8 次发布
18509
+
18510
+ 发布时间:2024-01-03 01:08:25
18511
+
18512
+ 本次发布包含了以下内容:
18513
+
18514
+ 改善已有的文档。
18515
+
18516
+ 修改接口:
18517
+
18518
+ * [DescribeDedicatedClusterOverview](https://cloud.tencent.com/document/api/1346/73760)
18519
+
18520
+ * 新增出参:HostDetailInfo, HostStandbyCount, HostNormalCount
18521
+
18522
+
18523
+ 新增数据结构:
18524
+
18525
+ * [[HostDetailInfo](https://cloud.tencent.com/document/api/1346/73770#HostDetailInfo)](https://cloud.tencent.com/document/api/1346/73770#[HostDetailInfo](https://cloud.tencent.com/document/api/1346/73770#HostDetailInfo))
18526
+
18444
18527
  ### 第 7 次发布
18445
18528
 
18446
18529
  发布时间:2023-09-12 01:18:51
@@ -21410,6 +21493,21 @@
21410
21493
 
21411
21494
  ## 云数据仓库 ClickHouse(cdwch) 版本:2020-09-15
21412
21495
 
21496
+ ### 第 18 次发布
21497
+
21498
+ 发布时间:2024-01-03 01:08:49
21499
+
21500
+ 本次发布包含了以下内容:
21501
+
21502
+ 改善已有的文档。
21503
+
21504
+ 修改接口:
21505
+
21506
+ * [DescribeSpec](https://cloud.tencent.com/document/api/1299/83510)
21507
+
21508
+ * 新增入参:CaseType
21509
+
21510
+
21413
21511
  ### 第 17 次发布
21414
21512
 
21415
21513
  发布时间:2023-09-08 01:20:53
@@ -67111,6 +67209,28 @@
67111
67209
 
67112
67210
  ## 高性能应用服务(hai) 版本:2023-08-12
67113
67211
 
67212
+ ### 第 6 次发布
67213
+
67214
+ 发布时间:2024-01-03 01:16:14
67215
+
67216
+ 本次发布包含了以下内容:
67217
+
67218
+ 改善已有的文档。
67219
+
67220
+ 修改接口:
67221
+
67222
+ * [DescribeApplications](https://cloud.tencent.com/document/api/1721/101609)
67223
+
67224
+ * 新增入参:OrderField, Order
67225
+
67226
+
67227
+ 修改数据结构:
67228
+
67229
+ * [ApplicationInfo](https://cloud.tencent.com/document/api/1721/101518#ApplicationInfo)
67230
+
67231
+ * 新增成员:ApplicationType, ApplicationState, CreateTime, ApplicationSize
67232
+
67233
+
67114
67234
  ### 第 5 次发布
67115
67235
 
67116
67236
  发布时间:2023-12-13 01:52:48
@@ -88449,7 +88569,7 @@
88449
88569
 
88450
88570
  新增数据结构:
88451
88571
 
88452
- * [[JobEventInfo](https://cloud.tencent.com/document/api/849/52010#JobEventInfo)](https://cloud.tencent.com/document/api/849/52010#[JobEventInfo](https://cloud.tencent.com/document/api/849/52010#JobEventInfo))
88572
+ * [JobEventInfo](https://cloud.tencent.com/document/api/849/52010#JobEventInfo)
88453
88573
 
88454
88574
  修改数据结构:
88455
88575
 
@@ -109061,6 +109181,28 @@
109061
109181
 
109062
109182
  ## 容器安全服务(tcss) 版本:2020-11-01
109063
109183
 
109184
+ ### 第 58 次发布
109185
+
109186
+ 发布时间:2024-01-03 01:24:22
109187
+
109188
+ 本次发布包含了以下内容:
109189
+
109190
+ 改善已有的文档。
109191
+
109192
+ 新增接口:
109193
+
109194
+ * [[DescribeAssetSuperNodeList](https://cloud.tencent.com/document/api/1285/102813)](https://cloud.tencent.com/document/api/#/#)
109195
+ * [[DescribeClusterNodes](https://cloud.tencent.com/document/api/1285/102811)](https://cloud.tencent.com/document/api/#/#)
109196
+ * [[DescribeSuperNodePodList](https://cloud.tencent.com/document/api/1285/102812)](https://cloud.tencent.com/document/api/#/#)
109197
+ * [[DescribeUserPodList](https://cloud.tencent.com/document/api/1285/102810)](https://cloud.tencent.com/document/api/#/#)
109198
+
109199
+ 新增数据结构:
109200
+
109201
+ * [[ClusterNodeInfo](https://cloud.tencent.com/document/api/1285/65614#ClusterNodeInfo)](https://cloud.tencent.com/document/api/1285/65614#[ClusterNodeInfo](https://cloud.tencent.com/document/api/1285/65614#ClusterNodeInfo))
109202
+ * [[ClusterPodInfo](https://cloud.tencent.com/document/api/1285/65614#ClusterPodInfo)](https://cloud.tencent.com/document/api/1285/65614#[ClusterPodInfo](https://cloud.tencent.com/document/api/1285/65614#ClusterPodInfo))
109203
+ * [[SuperNodeListItem](https://cloud.tencent.com/document/api/1285/65614#SuperNodeListItem)](https://cloud.tencent.com/document/api/1285/65614#[SuperNodeListItem](https://cloud.tencent.com/document/api/1285/65614#SuperNodeListItem))
109204
+ * [[SuperNodePodListItem](https://cloud.tencent.com/document/api/1285/65614#SuperNodePodListItem)](https://cloud.tencent.com/document/api/1285/65614#[SuperNodePodListItem](https://cloud.tencent.com/document/api/1285/65614#SuperNodePodListItem))
109205
+
109064
109206
  ### 第 57 次发布
109065
109207
 
109066
109208
  发布时间:2023-12-29 01:24:30
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs",
3
- "version": "4.0.770",
3
+ "version": "4.0.772",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "tencentcloud/index.js",
6
6
  "scripts": {
package/products.md CHANGED
@@ -41,14 +41,14 @@
41
41
  | cbs | [云硬盘](https://cloud.tencent.com/document/product/362) | 2023-12-27 01:08:57 |
42
42
  | ccc | [云联络中心](https://cloud.tencent.com/document/product/679) | 2023-12-22 01:08:08 |
43
43
  | cdb | [云数据库 MySQL](https://cloud.tencent.com/document/product/236) | 2024-01-01 00:03:28 |
44
- | cdc | [本地专用集群](https://cloud.tencent.com/document/product/1346) | 2024-01-01 00:03:52 |
44
+ | cdc | [本地专用集群](https://cloud.tencent.com/document/product/1346) | 2024-01-03 01:08:25 |
45
45
  | cdn | [内容分发网络 CDN](https://cloud.tencent.com/document/product/228) | 2023-10-27 01:17:34 |
46
46
  | cds | [T-Sec-数据安全审计(DSA)](https://cloud.tencent.com/document/product/856) | 2023-08-17 01:43:06 |
47
- | cdwch | [云数据仓库 ClickHouse](https://cloud.tencent.com/document/product/1299) | 2023-12-11 00:15:21 |
47
+ | cdwch | [云数据仓库 ClickHouse](https://cloud.tencent.com/document/product/1299) | 2024-01-03 01:08:49 |
48
48
  | cdwdoris | [腾讯云数据仓库 TCHouse-D](https://cloud.tencent.com/document/product/1387) | 2024-01-01 00:04:17 |
49
49
  | cdwpg | [云数据仓库 PostgreSQL](https://cloud.tencent.com/document/product/878) | 2023-12-15 19:11:22 |
50
50
  | cfg | [混沌演练平台](https://cloud.tencent.com/document/product/1500) | 2023-11-24 01:09:00 |
51
- | cfs | [文件存储](https://cloud.tencent.com/document/product/582) | 2023-11-10 01:10:02 |
51
+ | cfs | [文件存储](https://cloud.tencent.com/document/product/582) | 2024-01-03 01:09:01 |
52
52
  | cfw | [云防火墙](https://cloud.tencent.com/document/product/1132) | 2023-12-29 01:10:22 |
53
53
  | chdfs | [云 HDFS](https://cloud.tencent.com/document/product/1105) | 2023-08-17 01:47:49 |
54
54
  | ciam | [账号风控平台](https://cloud.tencent.com/document/product/1441) | 2023-07-06 01:13:25 |
@@ -70,7 +70,7 @@
70
70
  | csip | [云安全一体化平台](https://cloud.tencent.com/document/product/664) | 2023-12-29 01:11:43 |
71
71
  | csxg | [5G入云服务](https://cloud.tencent.com/document/product/1687) | 2023-05-19 11:26:14 |
72
72
  | cvm | [云服务器](https://cloud.tencent.com/document/product/213) | 2024-01-01 00:06:04 |
73
- | cwp | [主机安全](https://cloud.tencent.com/document/product/296) | 2023-12-29 01:12:06 |
73
+ | cwp | [主机安全](https://cloud.tencent.com/document/product/296) | 2024-01-03 01:11:16 |
74
74
  | cws | [漏洞扫描服务](https://cloud.tencent.com/document/product) | 2019-11-22 12:16:15 |
75
75
  | cynosdb | [TDSQL-C MySQL 版](https://cloud.tencent.com/document/product/1003) | 2023-12-15 19:25:23 |
76
76
  | dasb | [T-Sec-堡垒机(BH)](https://cloud.tencent.com/document/product/1025) | 2023-11-17 01:12:46 |
@@ -87,7 +87,7 @@
87
87
  | ds | [文档服务](https://cloud.tencent.com/document/product/869) | 2023-08-17 02:59:40 |
88
88
  | dsgc | [数据安全治理中心](https://cloud.tencent.com/document/product/1087) | 2023-11-29 01:53:04 |
89
89
  | dtf | [分布式事务](https://cloud.tencent.com/document/product/1224) | 2022-04-04 06:38:57 |
90
- | dts | [数据传输服务](https://cloud.tencent.com/document/product/571) | 2023-12-27 01:17:28 |
90
+ | dts | [数据传输服务](https://cloud.tencent.com/document/product/571) | 2024-01-03 01:14:19 |
91
91
  | eb | [事件总线](https://cloud.tencent.com/document/product/1359) | 2023-12-15 19:35:27 |
92
92
  | ecc | [英文作文批改](https://cloud.tencent.com/document/product/1076) | 2023-09-13 01:42:58 |
93
93
  | ecdn | [全站加速网络](https://cloud.tencent.com/document/product/570) | 2023-08-17 03:03:04 |
@@ -95,9 +95,9 @@
95
95
  | eiam | [数字身份管控平台(员工版)](https://cloud.tencent.com/document/product/1442) | 2023-05-18 01:25:40 |
96
96
  | eis | [数据连接器](https://cloud.tencent.com/document/product/1270) | 2023-08-10 01:17:44 |
97
97
  | emr | [弹性 MapReduce](https://cloud.tencent.com/document/product/589) | 2023-12-25 00:10:01 |
98
- | es | [Elasticsearch Service](https://cloud.tencent.com/document/product/845) | 2023-12-05 01:46:13 |
99
- | ess | [腾讯电子签企业版](https://cloud.tencent.com/document/product/1323) | 2023-12-29 01:16:02 |
100
- | essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2023-12-29 01:16:18 |
98
+ | es | [Elasticsearch Service](https://cloud.tencent.com/document/product/845) | 2024-01-03 01:15:03 |
99
+ | ess | [腾讯电子签企业版](https://cloud.tencent.com/document/product/1323) | 2024-01-03 01:15:11 |
100
+ | essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2024-01-03 01:15:26 |
101
101
  | facefusion | [人脸融合](https://cloud.tencent.com/document/product/670) | 2023-12-15 19:41:44 |
102
102
  | faceid | [人脸核身](https://cloud.tencent.com/document/product/1007) | 2023-12-27 01:19:47 |
103
103
  | fmu | [人脸试妆](https://cloud.tencent.com/document/product/1172) | 2023-12-25 00:11:01 |
@@ -109,7 +109,7 @@
109
109
  | gs | [云游戏](https://cloud.tencent.com/document/product/1162) | 2023-05-18 01:29:42 |
110
110
  | gse | [游戏服务器伸缩](https://cloud.tencent.com/document/product/1165) | 2022-07-11 06:12:44 |
111
111
  | habo | [](https://cloud.tencent.com/document/product) | 2019-05-09 19:37:22 |
112
- | hai | [高性能应用服务](https://cloud.tencent.com/document/product/1721) | 2023-12-13 01:52:48 |
112
+ | hai | [高性能应用服务](https://cloud.tencent.com/document/product/1721) | 2024-01-03 01:16:14 |
113
113
  | hasim | [高可用物联网卡](https://cloud.tencent.com/document/product/1482) | 2023-05-18 01:29:47 |
114
114
  | hcm | [数学作业批改](https://cloud.tencent.com/document/product/1004) | 2023-11-01 01:14:52 |
115
115
  | hunyuan | [腾讯混元大模型](https://cloud.tencent.com/document/product/1729) | 2023-11-29 01:56:24 |
@@ -133,7 +133,7 @@
133
133
  | keewidb | [云数据库 KeeWiDB](https://cloud.tencent.com/document/product/1520) | 2023-11-30 04:52:16 |
134
134
  | kms | [密钥管理系统](https://cloud.tencent.com/document/product/573) | 2023-08-17 03:51:31 |
135
135
  | lcic | [实时互动-教育版](https://cloud.tencent.com/document/product/1639) | 2023-12-21 01:48:52 |
136
- | lighthouse | [轻量应用服务器](https://cloud.tencent.com/document/product/1207) | 2023-12-26 01:18:52 |
136
+ | lighthouse | [轻量应用服务器](https://cloud.tencent.com/document/product/1207) | 2024-01-03 01:18:19 |
137
137
  | live | [云直播CSS](https://cloud.tencent.com/document/product/267) | 2023-12-19 01:53:39 |
138
138
  | lowcode | [云开发低码](https://cloud.tencent.com/document/product/1301) | 2022-04-04 06:56:51 |
139
139
  | lp | [登录保护](https://cloud.tencent.com/document/product/1190) | 2022-04-04 06:56:52 |
@@ -146,7 +146,7 @@
146
146
  | mna | [多网聚合加速](https://cloud.tencent.com/document/product/1385) | 2023-12-01 01:19:47 |
147
147
  | mongodb | [云数据库 MongoDB](https://cloud.tencent.com/document/product/240) | 2023-12-27 01:26:46 |
148
148
  | monitor | [腾讯云可观测平台](https://cloud.tencent.com/document/product/248) | 2023-12-27 01:26:59 |
149
- | mps | [媒体处理](https://cloud.tencent.com/document/product/862) | 2023-12-06 20:13:59 |
149
+ | mps | [媒体处理](https://cloud.tencent.com/document/product/862) | 2024-01-03 01:19:35 |
150
150
  | mrs | [医疗报告结构化](https://cloud.tencent.com/document/product/1314) | 2023-12-08 02:10:30 |
151
151
  | ms | [移动应用安全](https://cloud.tencent.com/document/product/283) | 2023-12-05 02:07:42 |
152
152
  | msp | [迁移服务平台](https://cloud.tencent.com/document/product/659) | 2023-08-17 04:18:22 |
@@ -198,7 +198,7 @@
198
198
  | tci | [腾讯智学课堂分析](https://cloud.tencent.com/document/product) | 2020-08-24 08:06:03 |
199
199
  | tcm | [服务网格](https://cloud.tencent.com/document/product/1261) | 2023-10-09 01:23:14 |
200
200
  | tcr | [容器镜像服务](https://cloud.tencent.com/document/product/1141) | 2023-12-12 02:27:39 |
201
- | tcss | [容器安全服务](https://cloud.tencent.com/document/product/1285) | 2023-12-29 01:24:30 |
201
+ | tcss | [容器安全服务](https://cloud.tencent.com/document/product/1285) | 2024-01-03 01:24:22 |
202
202
  | tdcpg | [TDSQL-C PostgreSQL 版](https://cloud.tencent.com/document/product/1556) | 2023-06-21 01:36:25 |
203
203
  | tdid | [分布式身份](https://cloud.tencent.com/document/product/1439) | 2023-07-24 01:49:20 |
204
204
  | tdmq | [消息队列 TDMQ](https://cloud.tencent.com/document/product/1179) | 2023-12-21 02:11:13 |
@@ -1 +1 @@
1
- export const sdkVersion = "4.0.770"
1
+ export const sdkVersion = "4.0.772"
@@ -1,7 +1,7 @@
1
- import { v20201229 } from "./v20201229"
2
1
  import { v20200608 } from "./v20200608"
2
+ import { v20201229 } from "./v20201229"
3
3
 
4
4
  export const ams = {
5
- v20201229: v20201229,
6
5
  v20200608: v20200608,
6
+ v20201229: v20201229,
7
7
  }
@@ -1,7 +1,7 @@
1
- import { v20210514 } from "./v20210514"
2
1
  import { v20210303 } from "./v20210303"
2
+ import { v20210514 } from "./v20210514"
3
3
 
4
4
  export const btoe = {
5
- v20210514: v20210514,
6
5
  v20210303: v20210303,
6
+ v20210514: v20210514,
7
7
  }
@@ -56,6 +56,7 @@ import {
56
56
  DescribeDedicatedClusterOrdersRequest,
57
57
  DescribeDedicatedClustersResponse,
58
58
  HostStatistic,
59
+ HostDetailInfo,
59
60
  CbsInfo,
60
61
  ModifySiteDeviceInfoResponse,
61
62
  CreateDedicatedClusterRequest,
@@ -200,7 +201,7 @@ export class Client extends AbstractClient {
200
201
  }
201
202
 
202
203
  /**
203
- * 专用集群宿主机信息
204
+ * 查询专用集群宿主机信息
204
205
  */
205
206
  async DescribeDedicatedClusterHosts(
206
207
  req: DescribeDedicatedClusterHostsRequest,
@@ -230,7 +231,7 @@ export class Client extends AbstractClient {
230
231
  }
231
232
 
232
233
  /**
233
- * 专用集群概览信息
234
+ * 查询专用集群概览信息
234
235
  */
235
236
  async DescribeDedicatedClusterOverview(
236
237
  req: DescribeDedicatedClusterOverviewRequest,