tencentcloud-sdk-nodejs 4.0.821 → 4.0.822

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 (67) hide show
  1. package/CHANGELOG.md +330 -0
  2. package/SERVICE_CHANGELOG.md +502 -60
  3. package/package.json +4 -2
  4. package/products.md +17 -17
  5. package/src/common/abstract_client.ts +36 -6
  6. package/src/common/exception/tencent_cloud_sdk_exception.ts +17 -3
  7. package/src/common/sdk_version.ts +1 -1
  8. package/src/services/asr/v20190614/asr_client.ts +1 -1
  9. package/src/services/asr/v20190614/asr_models.ts +1 -2
  10. package/src/services/ccc/v20200210/ccc_client.ts +52 -14
  11. package/src/services/ccc/v20200210/ccc_models.ts +234 -15
  12. package/src/services/cdwpg/v20201230/cdwpg_models.ts +4 -0
  13. package/src/services/ckafka/v20190819/ckafka_client.ts +38 -12
  14. package/src/services/ckafka/v20190819/ckafka_models.ts +396 -304
  15. package/src/services/clb/v20180317/clb_models.ts +0 -1
  16. package/src/services/csip/v20221121/csip_models.ts +9 -8
  17. package/src/services/dlc/v20210125/dlc_models.ts +2 -0
  18. package/src/services/dsgc/v20190723/dsgc_models.ts +8 -0
  19. package/src/services/es/v20180416/es_client.ts +2 -1
  20. package/src/services/es/v20180416/es_models.ts +94 -41
  21. package/src/services/ess/v20201111/ess_models.ts +16 -9
  22. package/src/services/essbasic/v20210526/essbasic_models.ts +14 -7
  23. package/src/services/iotexplorer/v20190423/iotexplorer_client.ts +356 -72
  24. package/src/services/iotexplorer/v20190423/iotexplorer_models.ts +1375 -314
  25. package/src/services/ocr/v20181119/ocr_client.ts +26 -11
  26. package/src/services/ocr/v20181119/ocr_models.ts +168 -14
  27. package/src/services/tione/v20211111/tione_models.ts +7 -2
  28. package/src/services/tts/v20190823/tts_models.ts +5 -0
  29. package/src/services/vod/v20180717/vod_models.ts +5 -15
  30. package/src/services/wedata/v20210820/wedata_models.ts +92 -22
  31. package/tencentcloud/common/abstract_client.js +32 -6
  32. package/tencentcloud/common/exception/tencent_cloud_sdk_exception.d.ts +6 -1
  33. package/tencentcloud/common/exception/tencent_cloud_sdk_exception.js +11 -3
  34. package/tencentcloud/common/sdk_version.d.ts +1 -1
  35. package/tencentcloud/common/sdk_version.js +1 -1
  36. package/tencentcloud/services/asr/v20190614/asr_client.d.ts +1 -1
  37. package/tencentcloud/services/asr/v20190614/asr_client.js +1 -1
  38. package/tencentcloud/services/asr/v20190614/asr_models.d.ts +1 -2
  39. package/tencentcloud/services/ccc/v20200210/ccc_client.d.ts +17 -5
  40. package/tencentcloud/services/ccc/v20200210/ccc_client.js +24 -6
  41. package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +226 -15
  42. package/tencentcloud/services/cdwpg/v20201230/cdwpg_models.d.ts +4 -0
  43. package/tencentcloud/services/ckafka/v20190819/ckafka_client.d.ts +11 -3
  44. package/tencentcloud/services/ckafka/v20190819/ckafka_client.js +15 -3
  45. package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +393 -307
  46. package/tencentcloud/services/clb/v20180317/clb_models.d.ts +0 -1
  47. package/tencentcloud/services/csip/v20221121/csip_models.d.ts +9 -8
  48. package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +2 -0
  49. package/tencentcloud/services/dsgc/v20190723/dsgc_models.d.ts +8 -0
  50. package/tencentcloud/services/es/v20180416/es_client.d.ts +1 -1
  51. package/tencentcloud/services/es/v20180416/es_models.d.ts +93 -41
  52. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +16 -9
  53. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +14 -7
  54. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.d.ts +109 -17
  55. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.js +162 -24
  56. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +1320 -313
  57. package/tencentcloud/services/ocr/v20181119/ocr_client.d.ts +9 -5
  58. package/tencentcloud/services/ocr/v20181119/ocr_client.js +11 -5
  59. package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +163 -14
  60. package/tencentcloud/services/tione/v20211111/tione_models.d.ts +7 -2
  61. package/tencentcloud/services/tts/v20190823/tts_models.d.ts +5 -0
  62. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +5 -15
  63. package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +92 -22
  64. package/test/ccc.v20200210.test.js +34 -4
  65. package/test/ckafka.v20190819.test.js +22 -2
  66. package/test/iotexplorer.v20190423.test.js +246 -16
  67. package/test/ocr.v20181119.test.js +12 -2
package/CHANGELOG.md CHANGED
@@ -1,3 +1,333 @@
1
+ # Release 4.0.822
2
+
3
+ ## 云联络中心(ccc) 版本:2020-02-10
4
+
5
+ ### 第 63 次发布
6
+
7
+ 发布时间:2024-03-28 01:09:50
8
+
9
+ 本次发布包含了以下内容:
10
+
11
+ 改善已有的文档。
12
+
13
+ 新增接口:
14
+
15
+ * [CreateCompanyApply](https://cloud.tencent.com/document/api/679/104629)
16
+ * [DescribeCompanyList](https://cloud.tencent.com/document/api/679/104628)
17
+ * [ModifyCompanyApply](https://cloud.tencent.com/document/api/679/104627)
18
+
19
+ 新增数据结构:
20
+
21
+ * [CompanyApplyInfo](https://cloud.tencent.com/document/api/679/47715#CompanyApplyInfo)
22
+ * [CompanyStateInfo](https://cloud.tencent.com/document/api/679/47715#CompanyStateInfo)
23
+
24
+
25
+
26
+ ## 云数据仓库 PostgreSQL(cdwpg) 版本:2020-12-30
27
+
28
+ ### 第 7 次发布
29
+
30
+ 发布时间:2024-03-28 01:10:53
31
+
32
+ 本次发布包含了以下内容:
33
+
34
+ 改善已有的文档。
35
+
36
+ 修改接口:
37
+
38
+ * [CreateInstanceByApi](https://cloud.tencent.com/document/api/878/98894)
39
+
40
+ * 新增入参:ProductVersion
41
+
42
+
43
+
44
+
45
+ ## 消息队列 CKafka 版(ckafka) 版本:2019-08-19
46
+
47
+ ### 第 100 次发布
48
+
49
+ 发布时间:2024-03-28 01:11:33
50
+
51
+ 本次发布包含了以下内容:
52
+
53
+ 改善已有的文档。
54
+
55
+ 新增接口:
56
+
57
+ * [CreatePrometheus](https://cloud.tencent.com/document/api/597/104631)
58
+ * [DescribePrometheus](https://cloud.tencent.com/document/api/597/104630)
59
+
60
+ 新增数据结构:
61
+
62
+ * [PrometheusDTO](https://cloud.tencent.com/document/api/597/40861#PrometheusDTO)
63
+ * [PrometheusResult](https://cloud.tencent.com/document/api/597/40861#PrometheusResult)
64
+
65
+
66
+
67
+ ## 云安全一体化平台(csip) 版本:2022-11-21
68
+
69
+ ### 第 33 次发布
70
+
71
+ 发布时间:2024-03-28 01:12:39
72
+
73
+ 本次发布包含了以下内容:
74
+
75
+ 改善已有的文档。
76
+
77
+ 修改数据结构:
78
+
79
+ * [AssetViewWeakPassRisk](https://cloud.tencent.com/document/api/664/90825#AssetViewWeakPassRisk)
80
+
81
+ * <font color="#dd0000">**修改成员**:</font>AffectAsset, Level, InstanceType, Component, Service, RecentTime, FirstTime, Status, Id, Index, InstanceId, InstanceName, AppId, Nick, Uin, PasswordType, From, VULType, VULURL, Fix, Payload
82
+
83
+ * [PortViewPortRisk](https://cloud.tencent.com/document/api/664/90825#PortViewPortRisk)
84
+
85
+ * <font color="#dd0000">**修改成员**:</font>NoHandleCount, Level, Protocol, Component, Port, RecentTime, FirstTime, Suggestion, AffectAssetCount, Id, From, Index, AppId, Nick, Uin, Service
86
+
87
+ * [WebsiteRisk](https://cloud.tencent.com/document/api/664/90825#WebsiteRisk)
88
+
89
+ * <font color="#dd0000">**修改成员**:</font>AffectAsset, Level, RecentTime, FirstTime, Status, Id, Index, InstanceId, InstanceName, AppId, Nick, Uin, URL, URLPath, InstanceType, DetectEngine, ResultDescribe, SourceURL, SourceURLPath
90
+
91
+
92
+
93
+
94
+ ## 数据湖计算 DLC(dlc) 版本:2021-01-25
95
+
96
+ ### 第 84 次发布
97
+
98
+ 发布时间:2024-03-28 01:14:58
99
+
100
+ 本次发布包含了以下内容:
101
+
102
+ 改善已有的文档。
103
+
104
+ 修改数据结构:
105
+
106
+ * [TableBaseInfo](https://cloud.tencent.com/document/api/1342/53778#TableBaseInfo)
107
+
108
+
109
+
110
+
111
+ ## 数据安全治理中心(dsgc) 版本:2019-07-23
112
+
113
+ ### 第 9 次发布
114
+
115
+ 发布时间:2024-03-28 01:15:37
116
+
117
+ 本次发布包含了以下内容:
118
+
119
+ 改善已有的文档。
120
+
121
+ 修改接口:
122
+
123
+ * [GetUserQuotaInfo](https://cloud.tencent.com/document/api/1087/97170)
124
+
125
+ * 新增出参:DBUnbindNum, COSUnbindNum
126
+
127
+
128
+
129
+
130
+ ## Elasticsearch Service(es) 版本:2018-04-16
131
+
132
+ ### 第 55 次发布
133
+
134
+ 发布时间:2024-03-28 10:47:55
135
+
136
+ 本次发布包含了以下内容:
137
+
138
+ 改善已有的文档。
139
+
140
+ 修改接口:
141
+
142
+ * [CreateIndex](https://cloud.tencent.com/document/api/845/74384)
143
+
144
+ * <font color="#dd0000">**修改入参**:</font>IndexMetaJson
145
+
146
+ * [RestartNodes](https://cloud.tencent.com/document/api/845/48473)
147
+
148
+ * 新增入参:CvmDelayOnlineTime
149
+
150
+ * [UpdateInstance](https://cloud.tencent.com/document/api/845/30629)
151
+
152
+ * 新增入参:OutboundPublicAcls, OutboundPublicAccess, CvmDelayOnlineTime
153
+
154
+ * [UpgradeInstance](https://cloud.tencent.com/document/api/845/36270)
155
+
156
+ * 新增入参:CvmDelayOnlineTime
157
+
158
+
159
+ 新增数据结构:
160
+
161
+ * [OutboundPublicAcl](https://cloud.tencent.com/document/api/845/30634#OutboundPublicAcl)
162
+
163
+ 修改数据结构:
164
+
165
+ * [InstanceInfo](https://cloud.tencent.com/document/api/845/30634#InstanceInfo)
166
+
167
+ * 新增成员:OutboundPublicAcls, NetConnectScheme
168
+
169
+ * [NodeView](https://cloud.tencent.com/document/api/845/30634#NodeView)
170
+
171
+ * 新增成员:CVMStatus
172
+
173
+ * <font color="#dd0000">**修改成员**:</font>IsCoordinationNode
174
+
175
+
176
+
177
+
178
+ ## 腾讯电子签企业版(ess) 版本:2020-11-11
179
+
180
+ ### 第 160 次发布
181
+
182
+ 发布时间:2024-03-27 15:13:07
183
+
184
+ 本次发布包含了以下内容:
185
+
186
+ 改善已有的文档。
187
+
188
+ 修改数据结构:
189
+
190
+ * [CreateFlowOption](https://cloud.tencent.com/document/api/1323/70369#CreateFlowOption)
191
+
192
+ * <font color="#dd0000">**修改成员**:</font>ForbidAddApprover, ForbidEditFlowProperties
193
+
194
+
195
+
196
+
197
+ ## 物联网开发平台(iotexplorer) 版本:2019-04-23
198
+
199
+ ### 第 58 次发布
200
+
201
+ 发布时间:2024-03-28 01:18:46
202
+
203
+ 本次发布包含了以下内容:
204
+
205
+ 改善已有的文档。
206
+
207
+ 新增接口:
208
+
209
+ * [BindCloudStorageUser](https://cloud.tencent.com/document/api/1081/104655)
210
+ * [CreateIotVideoCloudStorage](https://cloud.tencent.com/document/api/1081/104654)
211
+ * [DeleteCloudStorageEvent](https://cloud.tencent.com/document/api/1081/104653)
212
+ * [DescribeCloudStorage](https://cloud.tencent.com/document/api/1081/104652)
213
+ * [DescribeCloudStorageDate](https://cloud.tencent.com/document/api/1081/104651)
214
+ * [DescribeCloudStorageEvents](https://cloud.tencent.com/document/api/1081/104650)
215
+ * [DescribeCloudStorageMultiThumbnail](https://cloud.tencent.com/document/api/1081/104649)
216
+ * [DescribeCloudStorageOrder](https://cloud.tencent.com/document/api/1081/104648)
217
+ * [DescribeCloudStoragePackageConsumeDetails](https://cloud.tencent.com/document/api/1081/104647)
218
+ * [DescribeCloudStoragePackageConsumeStats](https://cloud.tencent.com/document/api/1081/104646)
219
+ * [DescribeCloudStorageStreamData](https://cloud.tencent.com/document/api/1081/104645)
220
+ * [DescribeCloudStorageThumbnail](https://cloud.tencent.com/document/api/1081/104644)
221
+ * [DescribeCloudStorageThumbnailList](https://cloud.tencent.com/document/api/1081/104643)
222
+ * [DescribeCloudStorageTime](https://cloud.tencent.com/document/api/1081/104642)
223
+ * [DescribeCloudStorageUsers](https://cloud.tencent.com/document/api/1081/104641)
224
+ * [DescribeDevicePackages](https://cloud.tencent.com/document/api/1081/104640)
225
+ * [DescribePackageConsumeTask](https://cloud.tencent.com/document/api/1081/104639)
226
+ * [DescribePackageConsumeTasks](https://cloud.tencent.com/document/api/1081/104638)
227
+ * [GenerateSignedVideoURL](https://cloud.tencent.com/document/api/1081/104637)
228
+ * [InheritCloudStorageUser](https://cloud.tencent.com/document/api/1081/104636)
229
+ * [ResetCloudStorage](https://cloud.tencent.com/document/api/1081/104635)
230
+ * [ResetCloudStorageEvent](https://cloud.tencent.com/document/api/1081/104634)
231
+ * [TransferCloudStorage](https://cloud.tencent.com/document/api/1081/104633)
232
+
233
+ 新增数据结构:
234
+
235
+ * [CloudStorageEvent](https://cloud.tencent.com/document/api/1081/34988#CloudStorageEvent)
236
+ * [CloudStorageTimeData](https://cloud.tencent.com/document/api/1081/34988#CloudStorageTimeData)
237
+ * [CloudStorageTimeInfo](https://cloud.tencent.com/document/api/1081/34988#CloudStorageTimeInfo)
238
+ * [CloudStorageUserInfo](https://cloud.tencent.com/document/api/1081/34988#CloudStorageUserInfo)
239
+ * [PackageConsumeStat](https://cloud.tencent.com/document/api/1081/34988#PackageConsumeStat)
240
+ * [PackageConsumeTask](https://cloud.tencent.com/document/api/1081/34988#PackageConsumeTask)
241
+ * [PackageInfo](https://cloud.tencent.com/document/api/1081/34988#PackageInfo)
242
+ * [ThumbnailURLInfoList](https://cloud.tencent.com/document/api/1081/34988#ThumbnailURLInfoList)
243
+
244
+
245
+
246
+ ## 文字识别(ocr) 版本:2018-11-19
247
+
248
+ ### 第 132 次发布
249
+
250
+ 发布时间:2024-03-27 16:33:01
251
+
252
+ 本次发布包含了以下内容:
253
+
254
+ 改善已有的文档。
255
+
256
+ 新增接口:
257
+
258
+ * [ReconstructDocument](https://cloud.tencent.com/document/api/866/104610)
259
+
260
+ 新增数据结构:
261
+
262
+ * [DocumentElement](https://cloud.tencent.com/document/api/866/33527#DocumentElement)
263
+ * [DocumentRecognizeInfo](https://cloud.tencent.com/document/api/866/33527#DocumentRecognizeInfo)
264
+ * [ReconstructDocumentConfig](https://cloud.tencent.com/document/api/866/33527#ReconstructDocumentConfig)
265
+
266
+
267
+
268
+ ## TI-ONE 训练平台(tione) 版本:2021-11-11
269
+
270
+ ### 第 54 次发布
271
+
272
+ 发布时间:2024-03-28 01:27:54
273
+
274
+ 本次发布包含了以下内容:
275
+
276
+ 改善已有的文档。
277
+
278
+ 修改数据结构:
279
+
280
+ * [ImageInfo](https://cloud.tencent.com/document/api/851/75051#ImageInfo)
281
+
282
+ * 新增成员:SupportDataPipeline
283
+
284
+
285
+
286
+
287
+ ## TI-ONE 训练平台(tione) 版本:2019-10-22
288
+
289
+
290
+
291
+ ## 语音合成(tts) 版本:2019-08-23
292
+
293
+ ### 第 14 次发布
294
+
295
+ 发布时间:2024-03-28 01:30:03
296
+
297
+ 本次发布包含了以下内容:
298
+
299
+ 改善已有的文档。
300
+
301
+ 修改接口:
302
+
303
+ * [TextToVoice](https://cloud.tencent.com/document/api/1073/37995)
304
+
305
+ * 新增入参:FastVoiceType
306
+
307
+
308
+
309
+
310
+ ## 数据开发治理平台 WeData(wedata) 版本:2021-08-20
311
+
312
+ ### 第 82 次发布
313
+
314
+ 发布时间:2024-03-28 01:32:09
315
+
316
+ 本次发布包含了以下内容:
317
+
318
+ 改善已有的文档。
319
+
320
+ 修改数据结构:
321
+
322
+ * [TaskCanvasInfo](https://cloud.tencent.com/document/api/1267/76336#TaskCanvasInfo)
323
+
324
+ * 新增成员:SelfDepend, ExecutorGroupId, ExecutorGroupName, RunPriority, TryLimit, RetryAble, RetryWait, LastSchedulerCommitTime, Notes, Creator, UpdateUser, UpdateUserId, YarnQueue, ExecutionTTL
325
+
326
+ * <font color="#dd0000">**修改成员**:</font>ExecutionStartTime, ExecutionEndTime, Layer, SourceServiceId, SourceServiceType, TargetServiceId, TargetServiceType, AlarmType, CreateTime, UserId, OwnerId, TenantId
327
+
328
+
329
+
330
+
1
331
  # Release 4.0.821
2
332
 
3
333
  ## 消息队列 CKafka 版(ckafka) 版本:2019-08-19