tencentcloud-sdk-nodejs 4.0.940 → 4.0.942

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 (72) hide show
  1. package/CHANGELOG.md +383 -0
  2. package/SERVICE_CHANGELOG.md +611 -38
  3. package/package.json +1 -1
  4. package/products.md +15 -14
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/as/v20180419/as_models.ts +8 -0
  7. package/src/services/asr/v20190614/asr_client.ts +71 -57
  8. package/src/services/asr/v20190614/asr_models.ts +967 -895
  9. package/src/services/cfg/v20210820/cfg_models.ts +4 -0
  10. package/src/services/cwp/v20180228/cwp_client.ts +5 -3
  11. package/src/services/cwp/v20180228/cwp_models.ts +131 -48
  12. package/src/services/dlc/v20210125/dlc_models.ts +4 -0
  13. package/src/services/dsgc/v20190723/dsgc_models.ts +1 -1
  14. package/src/services/ims/v20201229/ims_client.ts +1 -1
  15. package/src/services/ims/v20201229/ims_models.ts +3 -3
  16. package/src/services/index.ts +1 -0
  17. package/src/services/lke/v20231130/lke_client.ts +576 -478
  18. package/src/services/lke/v20231130/lke_models.ts +516 -98
  19. package/src/services/mps/v20190612/mps_models.ts +8 -3
  20. package/src/services/mqtt/index.ts +5 -0
  21. package/src/services/mqtt/v20240516/index.ts +6 -0
  22. package/src/services/mqtt/v20240516/mqtt_client.ts +275 -0
  23. package/src/services/mqtt/v20240516/mqtt_models.ts +1112 -0
  24. package/src/services/tcss/v20201101/tcss_client.ts +4 -2
  25. package/src/services/tke/v20180525/tke_client.ts +40 -16
  26. package/src/services/tke/v20180525/tke_models.ts +154 -70
  27. package/src/services/vdb/v20230616/vdb_models.ts +5 -0
  28. package/src/services/vod/v20180717/vod_client.ts +2 -1
  29. package/src/services/vod/v20180717/vod_models.ts +34 -1
  30. package/src/services/vpc/v20170312/vpc_models.ts +17 -1
  31. package/tencentcloud/common/sdk_version.d.ts +1 -1
  32. package/tencentcloud/common/sdk_version.js +1 -1
  33. package/tencentcloud/services/as/v20180419/as_models.d.ts +8 -0
  34. package/tencentcloud/services/asr/v20190614/asr_client.d.ts +5 -1
  35. package/tencentcloud/services/asr/v20190614/asr_client.js +6 -0
  36. package/tencentcloud/services/asr/v20190614/asr_models.d.ts +998 -930
  37. package/tencentcloud/services/cfg/v20210820/cfg_models.d.ts +4 -0
  38. package/tencentcloud/services/cwp/v20180228/cwp_client.d.ts +1 -1
  39. package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +128 -47
  40. package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +4 -0
  41. package/tencentcloud/services/dsgc/v20190723/dsgc_models.d.ts +1 -1
  42. package/tencentcloud/services/ims/v20201229/ims_client.d.ts +1 -1
  43. package/tencentcloud/services/ims/v20201229/ims_client.js +1 -1
  44. package/tencentcloud/services/ims/v20201229/ims_models.d.ts +3 -3
  45. package/tencentcloud/services/index.d.ts +1 -0
  46. package/tencentcloud/services/index.js +2 -0
  47. package/tencentcloud/services/lke/v20231130/lke_client.d.ts +195 -163
  48. package/tencentcloud/services/lke/v20231130/lke_client.js +288 -240
  49. package/tencentcloud/services/lke/v20231130/lke_models.d.ts +497 -97
  50. package/tencentcloud/services/mps/v20190612/mps_models.d.ts +7 -2
  51. package/tencentcloud/services/mqtt/index.d.ts +6 -0
  52. package/tencentcloud/services/mqtt/index.js +7 -0
  53. package/tencentcloud/services/mqtt/v20240516/index.d.ts +6 -0
  54. package/tencentcloud/services/mqtt/v20240516/index.js +9 -0
  55. package/tencentcloud/services/mqtt/v20240516/mqtt_client.d.ts +95 -0
  56. package/tencentcloud/services/mqtt/v20240516/mqtt_client.js +154 -0
  57. package/tencentcloud/services/mqtt/v20240516/mqtt_models.d.ts +1051 -0
  58. package/tencentcloud/services/mqtt/v20240516/mqtt_models.js +18 -0
  59. package/tencentcloud/services/tcss/v20201101/tcss_client.d.ts +3 -1
  60. package/tencentcloud/services/tcss/v20201101/tcss_client.js +3 -1
  61. package/tencentcloud/services/tke/v20180525/tke_client.d.ts +13 -5
  62. package/tencentcloud/services/tke/v20180525/tke_client.js +18 -6
  63. package/tencentcloud/services/tke/v20180525/tke_models.d.ts +150 -70
  64. package/tencentcloud/services/vdb/v20230616/vdb_models.d.ts +5 -0
  65. package/tencentcloud/services/vod/v20180717/vod_client.d.ts +1 -1
  66. package/tencentcloud/services/vod/v20180717/vod_client.js +1 -1
  67. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +33 -1
  68. package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +17 -1
  69. package/test/asr.v20190614.test.js +10 -0
  70. package/test/lke.v20231130.test.js +238 -158
  71. package/test/mqtt.v20240516.test.js +211 -0
  72. package/test/tke.v20180525.test.js +24 -4
package/CHANGELOG.md CHANGED
@@ -1,3 +1,386 @@
1
+ # Release 4.0.942
2
+
3
+ ## 弹性伸缩(as) 版本:2018-04-19
4
+
5
+ ### 第 73 次发布
6
+
7
+ 发布时间:2024-09-20 12:54:26
8
+
9
+ 本次发布包含了以下内容:
10
+
11
+ 改善已有的文档。
12
+
13
+ 修改数据结构:
14
+
15
+ * [ServiceSettings](https://cloud.tencent.com/document/api/377/20453#ServiceSettings)
16
+
17
+ * 新增成员:ReplaceMode
18
+
19
+
20
+
21
+
22
+ ## 语音识别(asr) 版本:2019-06-14
23
+
24
+ ### 第 40 次发布
25
+
26
+ 发布时间:2024-09-23 01:07:54
27
+
28
+ 本次发布包含了以下内容:
29
+
30
+ 改善已有的文档。
31
+
32
+ 新增接口:
33
+
34
+ * [GetUsageByDate](https://cloud.tencent.com/document/api/1093/111167)
35
+
36
+ 新增数据结构:
37
+
38
+ * [UsageByDateInfo](https://cloud.tencent.com/document/api/1093/37824#UsageByDateInfo)
39
+ * [UsageByDateInfoData](https://cloud.tencent.com/document/api/1093/37824#UsageByDateInfoData)
40
+
41
+
42
+
43
+ ## 混沌演练平台(cfg) 版本:2021-08-20
44
+
45
+ ### 第 20 次发布
46
+
47
+ 发布时间:2024-09-20 12:56:59
48
+
49
+ 本次发布包含了以下内容:
50
+
51
+ 改善已有的文档。
52
+
53
+ 修改接口:
54
+
55
+ * [ModifyTaskRunStatus](https://cloud.tencent.com/document/api/1500/71775)
56
+
57
+ * 新增入参:Record
58
+
59
+
60
+
61
+
62
+ ## 主机安全(cwp) 版本:2018-02-28
63
+
64
+ ### 第 123 次发布
65
+
66
+ 发布时间:2024-09-20 12:58:49
67
+
68
+ 本次发布包含了以下内容:
69
+
70
+ 改善已有的文档。
71
+
72
+ 修改接口:
73
+
74
+ * [CheckBashPolicyParams](https://cloud.tencent.com/document/api/296/99650)
75
+
76
+ * 新增入参:Rules
77
+
78
+ * [ModifyJavaMemShellsStatus](https://cloud.tencent.com/document/api/296/99654)
79
+
80
+ * 新增入参:UpdateAll
81
+
82
+ * <font color="#dd0000">**修改入参**:</font>Ids
83
+
84
+
85
+ 新增数据结构:
86
+
87
+ * [CommandLine](https://cloud.tencent.com/document/api/296/19867#CommandLine)
88
+ * [PolicyRules](https://cloud.tencent.com/document/api/296/19867#PolicyRules)
89
+
90
+ 修改数据结构:
91
+
92
+ * [BashPolicy](https://cloud.tencent.com/document/api/296/19867#BashPolicy)
93
+
94
+ * 新增成员:Rules
95
+
96
+ * [JavaMemShellInfo](https://cloud.tencent.com/document/api/296/19867#JavaMemShellInfo)
97
+
98
+ * 新增成员:ClassName, SuperClassName, Interfaces, Annotations, LoaderClassName
99
+
100
+ * <font color="#dd0000">**修改成员**:</font>Id, Alias, HostIp, Type, Description, CreateTime, RecentFoundTime, Status, Quuid, MachineExtraInfo, Uuid
101
+
102
+
103
+
104
+
105
+ ## 数据湖计算 DLC(dlc) 版本:2021-01-25
106
+
107
+ ### 第 104 次发布
108
+
109
+ 发布时间:2024-09-20 13:00:46
110
+
111
+ 本次发布包含了以下内容:
112
+
113
+ 改善已有的文档。
114
+
115
+ 修改接口:
116
+
117
+ * [CreateTasks](https://cloud.tencent.com/document/api/1342/59274)
118
+
119
+ * 新增入参:IsMultiStatement
120
+
121
+
122
+
123
+
124
+ ## 大模型知识引擎(lke) 版本:2023-11-30
125
+
126
+ ### 第 17 次发布
127
+
128
+ 发布时间:2024-09-20 13:06:39
129
+
130
+ 本次发布包含了以下内容:
131
+
132
+ 改善已有的文档。
133
+
134
+ 新增接口:
135
+
136
+ * [DescribeCallStatsGraph](https://cloud.tencent.com/document/api/1759/111069)
137
+ * [DescribeConcurrencyUsage](https://cloud.tencent.com/document/api/1759/111068)
138
+ * [DescribeConcurrencyUsageGraph](https://cloud.tencent.com/document/api/1759/111067)
139
+ * [DescribeKnowledgeUsage](https://cloud.tencent.com/document/api/1759/111066)
140
+ * [DescribeKnowledgeUsagePieGraph](https://cloud.tencent.com/document/api/1759/111065)
141
+ * [DescribeSearchStatsGraph](https://cloud.tencent.com/document/api/1759/111064)
142
+ * [DescribeTokenUsage](https://cloud.tencent.com/document/api/1759/111063)
143
+ * [DescribeTokenUsageGraph](https://cloud.tencent.com/document/api/1759/111062)
144
+
145
+ 新增数据结构:
146
+
147
+ * [KnowledgeCapacityPieGraphDetail](https://cloud.tencent.com/document/api/1759/105104#KnowledgeCapacityPieGraphDetail)
148
+ * [Stat](https://cloud.tencent.com/document/api/1759/105104#Stat)
149
+
150
+
151
+
152
+ ## 媒体处理(mps) 版本:2019-06-12
153
+
154
+ ### 第 96 次发布
155
+
156
+ 发布时间:2024-09-20 13:07:52
157
+
158
+ 本次发布包含了以下内容:
159
+
160
+ 改善已有的文档。
161
+
162
+ 修改数据结构:
163
+
164
+ * [ModifyOutputInfo](https://cloud.tencent.com/document/api/862/37615#ModifyOutputInfo)
165
+
166
+ * 新增成员:Zones
167
+
168
+
169
+
170
+
171
+ ## 消息队列 MQTT 版(mqtt) 版本:2024-05-16
172
+
173
+ ### 第 2 次发布
174
+
175
+ 发布时间:2024-09-20 13:08:14
176
+
177
+ 本次发布包含了以下内容:
178
+
179
+ 改善已有的文档。
180
+
181
+ 新增接口:
182
+
183
+ * [CreateAuthorizationPolicy](https://cloud.tencent.com/document/api/1778/111079)
184
+ * [CreateJWKSAuthenticator](https://cloud.tencent.com/document/api/1778/111078)
185
+ * [CreateJWTAuthenticator](https://cloud.tencent.com/document/api/1778/111077)
186
+ * [CreateTopic](https://cloud.tencent.com/document/api/1778/111084)
187
+ * [DeleteAuthenticator](https://cloud.tencent.com/document/api/1778/111088)
188
+ * [DeleteAuthorizationPolicy](https://cloud.tencent.com/document/api/1778/111076)
189
+ * [DeleteTopic](https://cloud.tencent.com/document/api/1778/111083)
190
+ * [DescribeAuthenticator](https://cloud.tencent.com/document/api/1778/111075)
191
+ * [DescribeAuthorizationPolicies](https://cloud.tencent.com/document/api/1778/111074)
192
+ * [DescribeTopic](https://cloud.tencent.com/document/api/1778/111073)
193
+ * [DescribeTopicList](https://cloud.tencent.com/document/api/1778/111082)
194
+ * [ModifyAuthorizationPolicy](https://cloud.tencent.com/document/api/1778/111072)
195
+ * [ModifyJWKSAuthenticator](https://cloud.tencent.com/document/api/1778/111087)
196
+ * [ModifyJWTAuthenticator](https://cloud.tencent.com/document/api/1778/111086)
197
+ * [ModifyTopic](https://cloud.tencent.com/document/api/1778/111081)
198
+ * [RegisterDeviceCertificate](https://cloud.tencent.com/document/api/1778/111071)
199
+ * [UpdateAuthorizationPolicyPriority](https://cloud.tencent.com/document/api/1778/111070)
200
+
201
+ 新增数据结构:
202
+
203
+ * [AuthorizationPolicyItem](https://cloud.tencent.com/document/api/1778/111031#AuthorizationPolicyItem)
204
+ * [AuthorizationPolicyPriority](https://cloud.tencent.com/document/api/1778/111031#AuthorizationPolicyPriority)
205
+ * [MQTTAuthenticatorItem](https://cloud.tencent.com/document/api/1778/111031#MQTTAuthenticatorItem)
206
+ * [MQTTTopicItem](https://cloud.tencent.com/document/api/1778/111031#MQTTTopicItem)
207
+
208
+
209
+
210
+ ## 医疗报告结构化(mrs) 版本:2020-09-10
211
+
212
+ ### 第 27 次发布
213
+
214
+ 发布时间:2024-09-20 13:08:23
215
+
216
+ 本次发布包含了以下内容:
217
+
218
+ 改善已有的文档。
219
+
220
+ 修改数据结构:
221
+
222
+ * [PTNM](https://cloud.tencent.com/document/api/1314/56230#PTNM)
223
+
224
+ * <font color="#dd0000">**修改成员**:</font>Name, Index, Src, Value, PT, PN, PM, Coords
225
+
226
+
227
+
228
+
229
+ ## 容器安全服务(tcss) 版本:2020-11-01
230
+
231
+ ### 第 65 次发布
232
+
233
+ 发布时间:2024-09-20 13:11:46
234
+
235
+ 本次发布包含了以下内容:
236
+
237
+ 改善已有的文档。
238
+
239
+ <font color="#dd0000">**预下线接口**:</font>
240
+
241
+ * DeleteCompliancePolicyItemFromWhitelist
242
+
243
+
244
+
245
+ ## 容器服务(tke) 版本:2022-05-01
246
+
247
+
248
+
249
+ ## 容器服务(tke) 版本:2018-05-25
250
+
251
+ ### 第 181 次发布
252
+
253
+ 发布时间:2024-09-23 01:27:12
254
+
255
+ 本次发布包含了以下内容:
256
+
257
+ 改善已有的文档。
258
+
259
+ 新增接口:
260
+
261
+ * [DescribeLogConfigs](https://cloud.tencent.com/document/api/457/111168)
262
+
263
+ ### 第 180 次发布
264
+
265
+ 发布时间:2024-09-20 13:13:40
266
+
267
+ 本次发布包含了以下内容:
268
+
269
+ 改善已有的文档。
270
+
271
+ 新增接口:
272
+
273
+ * [DeleteLogConfigs](https://cloud.tencent.com/document/api/457/111089)
274
+
275
+
276
+
277
+ ## 向量数据库(vdb) 版本:2023-06-16
278
+
279
+ ### 第 6 次发布
280
+
281
+ 发布时间:2024-09-20 13:15:27
282
+
283
+ 本次发布包含了以下内容:
284
+
285
+ 改善已有的文档。
286
+
287
+ 修改数据结构:
288
+
289
+ * [InstanceInfo](https://cloud.tencent.com/document/api/1709/106757#InstanceInfo)
290
+
291
+ * 新增成员:ApiVersion
292
+
293
+
294
+
295
+
296
+ ## 云点播(vod) 版本:2024-07-18
297
+
298
+
299
+
300
+ ## 云点播(vod) 版本:2018-07-17
301
+
302
+ ### 第 187 次发布
303
+
304
+ 发布时间:2024-09-20 13:15:33
305
+
306
+ 本次发布包含了以下内容:
307
+
308
+ 改善已有的文档。
309
+
310
+ 修改接口:
311
+
312
+ * [DescribeEventConfig](https://cloud.tencent.com/document/api/266/55296)
313
+
314
+ * 新增出参:PersistenceCompleteEventSwitch
315
+
316
+ * [ModifyEventConfig](https://cloud.tencent.com/document/api/266/55244)
317
+
318
+ * 新增入参:PersistenceCompleteEventSwitch
319
+
320
+
321
+ 新增数据结构:
322
+
323
+ * [PersistenceCompleteTask](https://cloud.tencent.com/document/api/266/31773#PersistenceCompleteTask)
324
+
325
+ 修改数据结构:
326
+
327
+ * [EventContent](https://cloud.tencent.com/document/api/266/31773#EventContent)
328
+
329
+ * 新增成员:PersistenceCompleteEvent
330
+
331
+
332
+
333
+
334
+ ## 私有网络(vpc) 版本:2017-03-12
335
+
336
+ ### 第 206 次发布
337
+
338
+ 发布时间:2024-09-20 13:16:10
339
+
340
+ 本次发布包含了以下内容:
341
+
342
+ 改善已有的文档。
343
+
344
+ 修改数据结构:
345
+
346
+ * [Address](https://cloud.tencent.com/document/api/215/15824#Address)
347
+
348
+ * 新增成员:UnVpcId
349
+
350
+ * [Quota](https://cloud.tencent.com/document/api/215/15824#Quota)
351
+
352
+ * 新增成员:QuotaGroup
353
+
354
+ * <font color="#dd0000">**修改成员**:</font>QuotaId, QuotaCurrent, QuotaLimit
355
+
356
+
357
+
358
+
359
+ # Release 4.0.941
360
+
361
+ ## 消息队列 MQTT 版(mqtt) 版本:2024-05-16
362
+
363
+ ### 第 1 次发布
364
+
365
+ 发布时间:2024-09-19 14:22:10
366
+
367
+ 本次发布包含了以下内容:
368
+
369
+ 改善已有的文档。
370
+
371
+ 新增接口:
372
+
373
+ * [DescribeInstance](https://cloud.tencent.com/document/api/1778/111030)
374
+ * [DescribeInstanceList](https://cloud.tencent.com/document/api/1778/111029)
375
+
376
+ 新增数据结构:
377
+
378
+ * [Filter](https://cloud.tencent.com/document/api/1778/111031#Filter)
379
+ * [MQTTInstanceItem](https://cloud.tencent.com/document/api/1778/111031#MQTTInstanceItem)
380
+ * [TagFilter](https://cloud.tencent.com/document/api/1778/111031#TagFilter)
381
+
382
+
383
+
1
384
  # Release 4.0.940
2
385
 
3
386
  ## 云数据库 MySQL(cdb) 版本:2017-03-20