tencentcloud-sdk-nodejs 4.0.747 → 4.0.748

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 (69) hide show
  1. package/CHANGELOG.md +378 -0
  2. package/SERVICE_CHANGELOG.md +540 -96
  3. package/package.json +1 -1
  4. package/products.md +24 -24
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/batch/v20170312/batch_models.ts +50 -9
  7. package/src/services/billing/v20180709/billing_models.ts +66 -36
  8. package/src/services/captcha/v20190722/captcha_client.ts +13 -0
  9. package/src/services/captcha/v20190722/captcha_models.ts +148 -0
  10. package/src/services/cat/v20180409/cat_models.ts +1 -1
  11. package/src/services/cfw/v20190904/cfw_client.ts +47 -11
  12. package/src/services/cfw/v20190904/cfw_models.ts +257 -109
  13. package/src/services/cls/v20201016/cls_models.ts +2 -2
  14. package/src/services/cvm/v20170312/cvm_models.ts +67 -19
  15. package/src/services/ess/v20201111/ess_models.ts +38 -3
  16. package/src/services/essbasic/v20210526/essbasic_models.ts +31 -3
  17. package/src/services/mna/v20210119/mna_client.ts +153 -103
  18. package/src/services/mna/v20210119/mna_models.ts +299 -79
  19. package/src/services/omics/v20221128/omics_models.ts +2 -2
  20. package/src/services/sqlserver/v20180328/sqlserver_client.ts +13 -0
  21. package/src/services/sqlserver/v20180328/sqlserver_models.ts +63 -0
  22. package/src/services/tiw/v20190919/tiw_client.ts +26 -81
  23. package/src/services/tiw/v20190919/tiw_models.ts +137 -217
  24. package/src/services/trtc/v20190722/trtc_models.ts +12 -0
  25. package/src/services/tsf/v20180326/tsf_client.ts +1 -1
  26. package/src/services/tsf/v20180326/tsf_models.ts +4 -4
  27. package/src/services/vpc/v20170312/vpc_models.ts +6 -0
  28. package/src/services/wedata/v20210820/wedata_client.ts +1 -0
  29. package/src/services/wedata/v20210820/wedata_models.ts +133 -32
  30. package/src/services/weilingwith/v20230427/weilingwith_client.ts +3 -1
  31. package/src/services/weilingwith/v20230427/weilingwith_models.ts +46 -1
  32. package/tencentcloud/common/sdk_version.d.ts +1 -1
  33. package/tencentcloud/common/sdk_version.js +1 -1
  34. package/tencentcloud/services/batch/v20170312/batch_models.d.ts +50 -9
  35. package/tencentcloud/services/billing/v20180709/billing_models.d.ts +66 -36
  36. package/tencentcloud/services/captcha/v20190722/captcha_client.d.ts +5 -1
  37. package/tencentcloud/services/captcha/v20190722/captcha_client.js +6 -0
  38. package/tencentcloud/services/captcha/v20190722/captcha_models.d.ts +145 -0
  39. package/tencentcloud/services/cat/v20180409/cat_models.d.ts +1 -1
  40. package/tencentcloud/services/cfw/v20190904/cfw_client.d.ts +15 -3
  41. package/tencentcloud/services/cfw/v20190904/cfw_client.js +21 -3
  42. package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +250 -108
  43. package/tencentcloud/services/cls/v20201016/cls_models.d.ts +2 -2
  44. package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +67 -19
  45. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +38 -3
  46. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +31 -3
  47. package/tencentcloud/services/mna/v20210119/mna_client.d.ts +51 -35
  48. package/tencentcloud/services/mna/v20210119/mna_client.js +75 -51
  49. package/tencentcloud/services/mna/v20210119/mna_models.d.ts +289 -79
  50. package/tencentcloud/services/omics/v20221128/omics_models.d.ts +2 -2
  51. package/tencentcloud/services/sqlserver/v20180328/sqlserver_client.d.ts +5 -1
  52. package/tencentcloud/services/sqlserver/v20180328/sqlserver_client.js +6 -0
  53. package/tencentcloud/services/sqlserver/v20180328/sqlserver_models.d.ts +60 -0
  54. package/tencentcloud/services/tiw/v20190919/tiw_client.d.ts +7 -31
  55. package/tencentcloud/services/tiw/v20190919/tiw_client.js +9 -41
  56. package/tencentcloud/services/tiw/v20190919/tiw_models.d.ts +136 -209
  57. package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +12 -0
  58. package/tencentcloud/services/tsf/v20180326/tsf_client.d.ts +1 -1
  59. package/tencentcloud/services/tsf/v20180326/tsf_client.js +1 -1
  60. package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +4 -4
  61. package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +6 -0
  62. package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +132 -32
  63. package/tencentcloud/services/weilingwith/v20230427/weilingwith_client.d.ts +1 -1
  64. package/tencentcloud/services/weilingwith/v20230427/weilingwith_models.d.ts +44 -1
  65. package/test/captcha.v20190722.test.js +10 -0
  66. package/test/cfw.v20190904.test.js +32 -2
  67. package/test/mna.v20210119.test.js +74 -34
  68. package/test/sqlserver.v20180328.test.js +10 -0
  69. package/test/tiw.v20190919.test.js +6 -46
package/CHANGELOG.md CHANGED
@@ -1,3 +1,381 @@
1
+ # Release 4.0.748
2
+
3
+ ## 批量计算(batch) 版本:2017-03-12
4
+
5
+ ### 第 52 次发布
6
+
7
+ 发布时间:2023-12-01 01:07:51
8
+
9
+ 本次发布包含了以下内容:
10
+
11
+ 改善已有的文档。
12
+
13
+ 修改数据结构:
14
+
15
+ * [DataDisk](https://cloud.tencent.com/document/api/599/15912#DataDisk)
16
+
17
+ * 新增成员:BurstPerformance
18
+
19
+
20
+
21
+
22
+ ## 费用中心(billing) 版本:2018-07-09
23
+
24
+ ### 第 52 次发布
25
+
26
+ 发布时间:2023-12-01 01:08:07
27
+
28
+ 本次发布包含了以下内容:
29
+
30
+ 改善已有的文档。
31
+
32
+ 修改数据结构:
33
+
34
+ * [BillDetail](https://cloud.tencent.com/document/api/555/19183#BillDetail)
35
+
36
+ * 新增成员:BillDay, BillMonth
37
+
38
+ * [BillDistributionResourceSummary](https://cloud.tencent.com/document/api/555/19183#BillDistributionResourceSummary)
39
+
40
+ * 新增成员:BillMonth
41
+
42
+ * [BillResourceSummary](https://cloud.tencent.com/document/api/555/19183#BillResourceSummary)
43
+
44
+ * 新增成员:BillMonth
45
+
46
+ * <font color="#dd0000">**修改成员**:</font>TransferPayAmount, SPDeduction
47
+
48
+ * [DistributionBillDetail](https://cloud.tencent.com/document/api/555/19183#DistributionBillDetail)
49
+
50
+ * 新增成员:BillMonth, BillDay
51
+
52
+
53
+
54
+
55
+ ## 验证码(captcha) 版本:2019-07-22
56
+
57
+ ### 第 17 次发布
58
+
59
+ 发布时间:2023-12-01 01:09:01
60
+
61
+ 本次发布包含了以下内容:
62
+
63
+ 改善已有的文档。
64
+
65
+ 新增接口:
66
+
67
+ * [DescribeCaptchaRceResult](https://cloud.tencent.com/document/api/1110/102104)
68
+
69
+ 新增数据结构:
70
+
71
+ * [RceResult](https://cloud.tencent.com/document/api/1110/40481#RceResult)
72
+
73
+
74
+
75
+ ## 云防火墙(cfw) 版本:2019-09-04
76
+
77
+ ### 第 50 次发布
78
+
79
+ 发布时间:2023-12-01 01:10:27
80
+
81
+ 本次发布包含了以下内容:
82
+
83
+ 改善已有的文档。
84
+
85
+ 新增接口:
86
+
87
+ * [CreateIdsWhiteRule](https://cloud.tencent.com/document/api/1132/102107)
88
+ * [DeleteIdsWhiteRule](https://cloud.tencent.com/document/api/1132/102106)
89
+ * [DescribeIdsWhiteRule](https://cloud.tencent.com/document/api/1132/102105)
90
+
91
+
92
+
93
+ ## 云服务器(cvm) 版本:2017-03-12
94
+
95
+ ### 第 122 次发布
96
+
97
+ 发布时间:2023-12-01 01:12:05
98
+
99
+ 本次发布包含了以下内容:
100
+
101
+ 改善已有的文档。
102
+
103
+ 修改接口:
104
+
105
+ * [ModifyInstancesAttribute](https://cloud.tencent.com/document/api/213/15739)
106
+
107
+ * 新增入参:AutoReboot
108
+
109
+
110
+ 修改数据结构:
111
+
112
+ * [DataDisk](https://cloud.tencent.com/document/api/213/15753#DataDisk)
113
+
114
+ * 新增成员:BurstPerformance
115
+
116
+ * [Image](https://cloud.tencent.com/document/api/213/15753#Image)
117
+
118
+ * <font color="#dd0000">**修改成员**:</font>ImageId, OsName, ImageType, Platform, ImageCreator, ImageSource, LicenseType
119
+
120
+
121
+
122
+
123
+ ## 腾讯电子签企业版(ess) 版本:2020-11-11
124
+
125
+ ### 第 138 次发布
126
+
127
+ 发布时间:2023-11-30 16:06:35
128
+
129
+ 本次发布包含了以下内容:
130
+
131
+ 改善已有的文档。
132
+
133
+ 修改接口:
134
+
135
+ * [CreateEmbedWebUrl](https://cloud.tencent.com/document/api/1323/95590)
136
+
137
+ * 新增入参:UserData
138
+
139
+
140
+
141
+
142
+ ## 腾讯电子签(基础版)(essbasic) 版本:2021-05-26
143
+
144
+ ### 第 137 次发布
145
+
146
+ 发布时间:2023-11-30 16:01:23
147
+
148
+ 本次发布包含了以下内容:
149
+
150
+ 改善已有的文档。
151
+
152
+ 修改接口:
153
+
154
+ * [ChannelCreateEmbedWebUrl](https://cloud.tencent.com/document/api/1420/87919)
155
+
156
+ * 新增入参:UserData
157
+
158
+
159
+ 修改数据结构:
160
+
161
+ * [CreateFlowOption](https://cloud.tencent.com/document/api/1420/61525#CreateFlowOption)
162
+
163
+ * 新增成员:SkipUploadFile
164
+
165
+
166
+
167
+
168
+ ## 腾讯电子签(基础版)(essbasic) 版本:2020-12-22
169
+
170
+
171
+
172
+ ## 多网聚合加速(mna) 版本:2021-01-19
173
+
174
+ ### 第 15 次发布
175
+
176
+ 发布时间:2023-12-01 01:19:47
177
+
178
+ 本次发布包含了以下内容:
179
+
180
+ 改善已有的文档。
181
+
182
+ 新增接口:
183
+
184
+ * [GetDevicePayMode](https://cloud.tencent.com/document/api/1385/102111)
185
+ * [GetFlowPackages](https://cloud.tencent.com/document/api/1385/102110)
186
+ * [ModifyPackageRenewFlag](https://cloud.tencent.com/document/api/1385/102109)
187
+ * [OrderFlowPackage](https://cloud.tencent.com/document/api/1385/102108)
188
+
189
+ 新增数据结构:
190
+
191
+ * [DevicePayModeInfo](https://cloud.tencent.com/document/api/1385/55846#DevicePayModeInfo)
192
+ * [FlowPackageInfo](https://cloud.tencent.com/document/api/1385/55846#FlowPackageInfo)
193
+
194
+
195
+
196
+ ## 云数据库 SQL Server(sqlserver) 版本:2018-03-28
197
+
198
+ ### 第 56 次发布
199
+
200
+ 发布时间:2023-12-01 01:22:35
201
+
202
+ 本次发布包含了以下内容:
203
+
204
+ 改善已有的文档。
205
+
206
+ 新增接口:
207
+
208
+ * [ModifyDBInstanceSSL](https://cloud.tencent.com/document/api/238/102112)
209
+
210
+ 修改接口:
211
+
212
+ * [DescribeDBInstancesAttribute](https://cloud.tencent.com/document/api/238/90299)
213
+
214
+ * 新增出参:SSLConfig
215
+
216
+
217
+ 新增数据结构:
218
+
219
+ * [SSLConfig](https://cloud.tencent.com/document/api/238/19976#SSLConfig)
220
+
221
+
222
+
223
+ ## 互动白板(tiw) 版本:2019-09-19
224
+
225
+ ### 第 37 次发布
226
+
227
+ 发布时间:2023-12-01 01:26:06
228
+
229
+ 本次发布包含了以下内容:
230
+
231
+ 改善已有的文档。
232
+
233
+ <font color="#dd0000">**删除接口**:</font>
234
+
235
+ * CreateOfflineRecord
236
+ * DescribeOfflineRecord
237
+ * DescribeOfflineRecordCallback
238
+ * SetOfflineRecordCallback
239
+
240
+ 修改接口:
241
+
242
+ * [CreateTranscode](https://cloud.tencent.com/document/api/1137/40060)
243
+
244
+ * 新增入参:ExcelParam
245
+
246
+
247
+ 新增数据结构:
248
+
249
+ * [ExcelParam](https://cloud.tencent.com/document/api/1137/40068#ExcelParam)
250
+
251
+
252
+
253
+ ## 实时音视频(trtc) 版本:2019-07-22
254
+
255
+ ### 第 62 次发布
256
+
257
+ 发布时间:2023-12-01 01:27:18
258
+
259
+ 本次发布包含了以下内容:
260
+
261
+ 改善已有的文档。
262
+
263
+ 修改数据结构:
264
+
265
+ * [WaterMarkChar](https://cloud.tencent.com/document/api/647/44055#WaterMarkChar)
266
+
267
+ * 新增成员:Font
268
+
269
+ * [WaterMarkTimestamp](https://cloud.tencent.com/document/api/647/44055#WaterMarkTimestamp)
270
+
271
+ * 新增成员:Font
272
+
273
+
274
+
275
+
276
+ ## 私有网络(vpc) 版本:2017-03-12
277
+
278
+ ### 第 183 次发布
279
+
280
+ 发布时间:2023-12-01 01:28:57
281
+
282
+ 本次发布包含了以下内容:
283
+
284
+ 改善已有的文档。
285
+
286
+ 修改数据结构:
287
+
288
+ * [IPSECOptionsSpecification](https://cloud.tencent.com/document/api/215/15824#IPSECOptionsSpecification)
289
+
290
+ * 新增成员:IntegrityAlgorithm
291
+
292
+
293
+
294
+
295
+ ## 数据开发治理平台 WeData(wedata) 版本:2021-08-20
296
+
297
+ ### 第 61 次发布
298
+
299
+ 发布时间:2023-12-01 01:30:04
300
+
301
+ 本次发布包含了以下内容:
302
+
303
+ 改善已有的文档。
304
+
305
+ 修改接口:
306
+
307
+ * [BatchUpdateIntegrationTasks](https://cloud.tencent.com/document/api/1267/82531)
308
+
309
+ * 新增入参:InchargeIds
310
+
311
+ * [CheckAlarmRegularNameExist](https://cloud.tencent.com/document/api/1267/82530)
312
+
313
+ * 新增入参:MonitorType
314
+
315
+ * [DescribeAlarmEvents](https://cloud.tencent.com/document/api/1267/82513)
316
+
317
+ * 新增入参:MonitorType
318
+
319
+ * <font color="#dd0000">**修改入参**:</font>Filters, OrderFields, TaskType, StartTime, EndTime
320
+
321
+ * [DescribeAlarmReceiver](https://cloud.tencent.com/document/api/1267/82512)
322
+
323
+ * 新增入参:MonitorType
324
+
325
+ * [DescribeEventCases](https://cloud.tencent.com/document/api/1267/95217)
326
+
327
+ * 新增入参:TimeToLive, SortItem, SortType
328
+
329
+ * [TriggerDsEvent](https://cloud.tencent.com/document/api/1267/102051)
330
+
331
+ * 新增入参:EventBatchCaseList
332
+
333
+ * <font color="#dd0000">**修改入参**:</font>EventCaseList
334
+
335
+
336
+ 新增数据结构:
337
+
338
+ * [EventBatchCaseDTO](https://cloud.tencent.com/document/api/1267/76336#EventBatchCaseDTO)
339
+
340
+ 修改数据结构:
341
+
342
+ * [AlarmEventInfo](https://cloud.tencent.com/document/api/1267/76336#AlarmEventInfo)
343
+
344
+ * 新增成员:MonitorObjectId, MonitorObjectName, Threshold
345
+
346
+ * [AlarmIndicatorInfo](https://cloud.tencent.com/document/api/1267/76336#AlarmIndicatorInfo)
347
+
348
+ * 新增成员:Threshold
349
+
350
+
351
+
352
+
353
+ ## 微瓴同业开放平台(weilingwith) 版本:2023-04-27
354
+
355
+ ### 第 5 次发布
356
+
357
+ 发布时间:2023-12-01 01:31:31
358
+
359
+ 本次发布包含了以下内容:
360
+
361
+ 改善已有的文档。
362
+
363
+ 修改接口:
364
+
365
+ * [DescribeAlarmStatusList](https://cloud.tencent.com/document/api/1693/101460)
366
+
367
+ * 新增入参:ApplicationToken, WorkspaceId
368
+
369
+ * 新增出参:Result
370
+
371
+
372
+ 新增数据结构:
373
+
374
+ * [AlarmStatusData](https://cloud.tencent.com/document/api/1693/97961#AlarmStatusData)
375
+ * [DescribeAlarmStatusListRes](https://cloud.tencent.com/document/api/1693/97961#DescribeAlarmStatusListRes)
376
+
377
+
378
+
1
379
  # Release 4.0.747
2
380
 
3
381
  ## 数据湖计算 DLC(dlc) 版本:2021-01-25