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
@@ -1,198 +1,260 @@
1
1
  # 本版本更新包含以下内容:
2
2
 
3
- ## 数据湖计算 DLC(dlc) 版本:2021-01-25
3
+ ## 批量计算(batch) 版本:2017-03-12
4
4
 
5
- ### 第 77 次发布
5
+ ### 第 52 次发布
6
6
 
7
- 发布时间:2023-11-30 03:35:40
7
+ 发布时间:2023-12-01 01:07:51
8
8
 
9
9
  本次发布包含了以下内容:
10
10
 
11
11
  改善已有的文档。
12
12
 
13
- 新增接口:
13
+ 修改数据结构:
14
14
 
15
- * [AssignMangedTableProperties](https://cloud.tencent.com/document/api/1342/102049)
15
+ * [DataDisk](https://cloud.tencent.com/document/api/599/15912#DataDisk)
16
16
 
17
+ * 新增成员:BurstPerformance
17
18
 
18
19
 
19
- ## 腾讯电子签(基础版)(essbasic) 版本:2021-05-26
20
20
 
21
- ### 第 136 次发布
22
21
 
23
- 发布时间:2023-11-30 04:06:09
22
+ ## 费用中心(billing) 版本:2018-07-09
23
+
24
+ ### 第 52 次发布
25
+
26
+ 发布时间:2023-12-01 01:08:07
24
27
 
25
28
  本次发布包含了以下内容:
26
29
 
27
30
  改善已有的文档。
28
31
 
29
- 修改接口:
32
+ 修改数据结构:
30
33
 
31
- * [DescribeChannelSealPolicyWorkflowUrl](https://cloud.tencent.com/document/api/1420/102013)
34
+ * [BillDetail](https://cloud.tencent.com/document/api/555/19183#BillDetail)
32
35
 
33
- * 新增入参:Endpoint
36
+ * 新增成员:BillDay, BillMonth
34
37
 
38
+ * [BillDistributionResourceSummary](https://cloud.tencent.com/document/api/555/19183#BillDistributionResourceSummary)
35
39
 
40
+ * 新增成员:BillMonth
36
41
 
42
+ * [BillResourceSummary](https://cloud.tencent.com/document/api/555/19183#BillResourceSummary)
37
43
 
38
- ## 腾讯电子签(基础版)(essbasic) 版本:2020-12-22
44
+ * 新增成员:BillMonth
39
45
 
46
+ * <font color="#dd0000">**修改成员**:</font>TransferPayAmount, SPDeduction
40
47
 
48
+ * [DistributionBillDetail](https://cloud.tencent.com/document/api/555/19183#DistributionBillDetail)
41
49
 
42
- ## 云数据库 KeeWiDB(keewidb) 版本:2022-03-08
50
+ * 新增成员:BillMonth, BillDay
43
51
 
44
- ### 第 5 次发布
45
52
 
46
- 发布时间:2023-11-30 04:52:16
53
+
54
+
55
+ ## 验证码(captcha) 版本:2019-07-22
56
+
57
+ ### 第 17 次发布
58
+
59
+ 发布时间:2023-12-01 01:09:01
47
60
 
48
61
  本次发布包含了以下内容:
49
62
 
50
63
  改善已有的文档。
51
64
 
52
- 修改接口:
65
+ 新增接口:
53
66
 
54
- * [DescribeConnectionConfig](https://cloud.tencent.com/document/api/1520/90457)
67
+ * [DescribeCaptchaRceResult](https://cloud.tencent.com/document/api/1110/102104)
55
68
 
56
- * 新增出参:ClientLimitMin, ClientLimitMax
69
+ 新增数据结构:
57
70
 
58
- * [ModifyNetworkConfig](https://cloud.tencent.com/document/api/1520/86194)
71
+ * [RceResult](https://cloud.tencent.com/document/api/1110/40481#RceResult)
59
72
 
60
- * 新增出参:TaskId
61
73
 
62
74
 
75
+ ## 云防火墙(cfw) 版本:2019-09-04
63
76
 
77
+ ### 第 50 次发布
64
78
 
65
- ## 医疗报告结构化(mrs) 版本:2020-09-10
79
+ 发布时间:2023-12-01 01:10:27
66
80
 
67
- ### 第 20 次发布
81
+ 本次发布包含了以下内容:
68
82
 
69
- 发布时间:2023-11-30 05:22:15
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
70
98
 
71
99
  本次发布包含了以下内容:
72
100
 
73
101
  改善已有的文档。
74
102
 
103
+ 修改接口:
104
+
105
+ * [ModifyInstancesAttribute](https://cloud.tencent.com/document/api/213/15739)
106
+
107
+ * 新增入参:AutoReboot
108
+
109
+
75
110
  修改数据结构:
76
111
 
77
- * [Hospitalization](https://cloud.tencent.com/document/api/1314/56230#Hospitalization)
112
+ * [DataDisk](https://cloud.tencent.com/document/api/213/15753#DataDisk)
78
113
 
79
- * 新增成员:AdmissionDiagnosis
114
+ * 新增成员:BurstPerformance
80
115
 
81
- * [IndicatorV3](https://cloud.tencent.com/document/api/1314/56230#IndicatorV3)
116
+ * [Image](https://cloud.tencent.com/document/api/213/15753#Image)
82
117
 
83
- * 新增成员:TableIndicators
118
+ * <font color="#dd0000">**修改成员**:</font>ImageId, OsName, ImageType, Platform, ImageCreator, ImageSource, LicenseType
84
119
 
85
- * <font color="#dd0000">**修改成员**:</font>TableIndictors, Version
86
120
 
87
- * [TreatmentRecord](https://cloud.tencent.com/document/api/1314/56230#TreatmentRecord)
88
121
 
89
- * 新增成员:AdmissionCondition
90
122
 
123
+ ## 腾讯电子签企业版(ess) 版本:2020-11-11
91
124
 
125
+ ### 第 138 次发布
92
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
93
138
 
94
- ## 文字识别(ocr) 版本:2018-11-19
95
139
 
96
- ### 第 122 次发布
97
140
 
98
- 发布时间:2023-11-30 05:24:08
141
+
142
+ ## 腾讯电子签(基础版)(essbasic) 版本:2021-05-26
143
+
144
+ ### 第 137 次发布
145
+
146
+ 发布时间:2023-11-30 16:01:23
99
147
 
100
148
  本次发布包含了以下内容:
101
149
 
102
150
  改善已有的文档。
103
151
 
104
- 新增数据结构:
152
+ 修改接口:
153
+
154
+ * [ChannelCreateEmbedWebUrl](https://cloud.tencent.com/document/api/1420/87919)
155
+
156
+ * 新增入参:UserData
105
157
 
106
- * [ElectronicFlightTicketFull](https://cloud.tencent.com/document/api/866/33527#ElectronicFlightTicketFull)
107
- * [ElectronicTrainTicketFull](https://cloud.tencent.com/document/api/866/33527#ElectronicTrainTicketFull)
108
- * [FlightItemInfo](https://cloud.tencent.com/document/api/866/33527#FlightItemInfo)
109
158
 
110
159
  修改数据结构:
111
160
 
112
- * [SingleInvoiceItem](https://cloud.tencent.com/document/api/866/33527#SingleInvoiceItem)
161
+ * [CreateFlowOption](https://cloud.tencent.com/document/api/1420/61525#CreateFlowOption)
113
162
 
114
- * 新增成员:ElectronicTrainTicketFull, ElectronicFlightTicketFull
163
+ * 新增成员:SkipUploadFile
115
164
 
116
165
 
117
166
 
118
167
 
119
- ## 云函数(scf) 版本:2018-04-16
168
+ ## 腾讯电子签(基础版)(essbasic) 版本:2020-12-22
120
169
 
121
- ### 第 63 次发布
122
170
 
123
- 发布时间:2023-11-30 05:41:26
171
+
172
+ ## 多网聚合加速(mna) 版本:2021-01-19
173
+
174
+ ### 第 15 次发布
175
+
176
+ 发布时间:2023-12-01 01:19:47
124
177
 
125
178
  本次发布包含了以下内容:
126
179
 
127
180
  改善已有的文档。
128
181
 
129
- 修改接口:
182
+ 新增接口:
130
183
 
131
- * [UpdateFunctionConfiguration](https://cloud.tencent.com/document/api/583/18580)
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)
132
188
 
133
- * 新增入参:DnsCache, IntranetConfig
189
+ 新增数据结构:
134
190
 
191
+ * [DevicePayModeInfo](https://cloud.tencent.com/document/api/1385/55846#DevicePayModeInfo)
192
+ * [FlowPackageInfo](https://cloud.tencent.com/document/api/1385/55846#FlowPackageInfo)
135
193
 
136
194
 
137
195
 
138
- ## SSL 证书(ssl) 版本:2019-12-05
196
+ ## 云数据库 SQL Server(sqlserver) 版本:2018-03-28
139
197
 
140
- ### 第 49 次发布
198
+ ### 第 56 次发布
141
199
 
142
- 发布时间:2023-11-30 05:53:04
200
+ 发布时间:2023-12-01 01:22:35
143
201
 
144
202
  本次发布包含了以下内容:
145
203
 
146
204
  改善已有的文档。
147
205
 
206
+ 新增接口:
207
+
208
+ * [ModifyDBInstanceSSL](https://cloud.tencent.com/document/api/238/102112)
209
+
148
210
  修改接口:
149
211
 
150
- * [UpdateCertificateInstance](https://cloud.tencent.com/document/api/400/91649)
212
+ * [DescribeDBInstancesAttribute](https://cloud.tencent.com/document/api/238/90299)
151
213
 
152
- * 新增出参:UpdateSyncProgress
214
+ * 新增出参:SSLConfig
153
215
 
154
216
 
155
217
  新增数据结构:
156
218
 
157
- * [SupportDownloadType](https://cloud.tencent.com/document/api/400/41679#SupportDownloadType)
158
- * [UpdateSyncProgress](https://cloud.tencent.com/document/api/400/41679#UpdateSyncProgress)
159
- * [UpdateSyncProgressRegion](https://cloud.tencent.com/document/api/400/41679#UpdateSyncProgressRegion)
219
+ * [SSLConfig](https://cloud.tencent.com/document/api/238/19976#SSLConfig)
160
220
 
161
- 修改数据结构:
162
221
 
163
- * [Certificates](https://cloud.tencent.com/document/api/400/41679#Certificates)
164
222
 
165
- * 新增成员:IsDNSPODResolve, IsPackage, KeyPasswordCustomFlag, SupportDownloadType
223
+ ## 互动白板(tiw) 版本:2019-09-19
166
224
 
225
+ ### 第 37 次发布
167
226
 
227
+ 发布时间:2023-12-01 01:26:06
168
228
 
229
+ 本次发布包含了以下内容:
169
230
 
170
- ## 容器服务(tke) 版本:2018-05-25
231
+ 改善已有的文档。
171
232
 
172
- ### 第 164 次发布
233
+ <font color="#dd0000">**删除接口**:</font>
173
234
 
174
- 发布时间:2023-11-30 06:52:41
235
+ * CreateOfflineRecord
236
+ * DescribeOfflineRecord
237
+ * DescribeOfflineRecordCallback
238
+ * SetOfflineRecordCallback
175
239
 
176
- 本次发布包含了以下内容:
240
+ 修改接口:
177
241
 
178
- 改善已有的文档。
242
+ * [CreateTranscode](https://cloud.tencent.com/document/api/1137/40060)
179
243
 
180
- 新增接口:
244
+ * 新增入参:ExcelParam
181
245
 
182
- * [DescribeLogSwitches](https://cloud.tencent.com/document/api/457/102050)
183
246
 
184
247
  新增数据结构:
185
248
 
186
- * [Switch](https://cloud.tencent.com/document/api/457/31866#Switch)
187
- * [SwitchInfo](https://cloud.tencent.com/document/api/457/31866#SwitchInfo)
249
+ * [ExcelParam](https://cloud.tencent.com/document/api/1137/40068#ExcelParam)
188
250
 
189
251
 
190
252
 
191
- ## 微服务平台 TSF(tsf) 版本:2018-03-26
253
+ ## 实时音视频(trtc) 版本:2019-07-22
192
254
 
193
- ### 第 101 次发布
255
+ ### 第 62 次发布
194
256
 
195
- 发布时间:2023-11-30 07:09:40
257
+ 发布时间:2023-12-01 01:27:18
196
258
 
197
259
  本次发布包含了以下内容:
198
260
 
@@ -200,51 +262,117 @@
200
262
 
201
263
  修改数据结构:
202
264
 
203
- * [LaneRuleTag](https://cloud.tencent.com/document/api/649/36099#LaneRuleTag)
265
+ * [WaterMarkChar](https://cloud.tencent.com/document/api/647/44055#WaterMarkChar)
204
266
 
205
- * <font color="#dd0000">**修改成员**:</font>TagId, TagName, TagOperator, TagValue, LaneRuleId, CreateTime, UpdateTime
267
+ * 新增成员:Font
206
268
 
269
+ * [WaterMarkTimestamp](https://cloud.tencent.com/document/api/647/44055#WaterMarkTimestamp)
207
270
 
271
+ * 新增成员:Font
208
272
 
209
273
 
210
- ## 云点播(vod) 版本:2018-07-17
211
274
 
212
- ### 第 174 次发布
213
275
 
214
- 发布时间:2023-11-30 07:24:28
276
+ ## 私有网络(vpc) 版本:2017-03-12
277
+
278
+ ### 第 183 次发布
279
+
280
+ 发布时间:2023-12-01 01:28:57
215
281
 
216
282
  本次发布包含了以下内容:
217
283
 
218
284
  改善已有的文档。
219
285
 
220
- 修改接口:
286
+ 修改数据结构:
221
287
 
222
- * [SetVodDomainCertificate](https://cloud.tencent.com/document/api/266/102015)
288
+ * [IPSECOptionsSpecification](https://cloud.tencent.com/document/api/215/15824#IPSECOptionsSpecification)
223
289
 
224
- * 新增入参:Domain, Operation, SubAppId, CertID
290
+ * 新增成员:IntegrityAlgorithm
225
291
 
226
292
 
227
293
 
228
294
 
229
295
  ## 数据开发治理平台 WeData(wedata) 版本:2021-08-20
230
296
 
231
- ### 第 60 次发布
297
+ ### 第 61 次发布
232
298
 
233
- 发布时间:2023-11-30 08:21:21
299
+ 发布时间:2023-12-01 01:30:04
234
300
 
235
301
  本次发布包含了以下内容:
236
302
 
237
303
  改善已有的文档。
238
304
 
239
- 新增接口:
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
240
328
 
241
329
  * [TriggerDsEvent](https://cloud.tencent.com/document/api/1267/102051)
242
330
 
331
+ * 新增入参:EventBatchCaseList
332
+
333
+ * <font color="#dd0000">**修改入参**:</font>EventCaseList
334
+
335
+
243
336
  新增数据结构:
244
337
 
245
- * [BatchOpsDTO](https://cloud.tencent.com/document/api/1267/76336#BatchOpsDTO)
246
- * [EventCaseDTO](https://cloud.tencent.com/document/api/1267/76336#EventCaseDTO)
247
- * [FailMessage](https://cloud.tencent.com/document/api/1267/76336#FailMessage)
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)
248
376
 
249
377
 
250
378
 
@@ -7181,6 +7309,21 @@
7181
7309
 
7182
7310
  ## 批量计算(batch) 版本:2017-03-12
7183
7311
 
7312
+ ### 第 52 次发布
7313
+
7314
+ 发布时间:2023-12-01 01:07:51
7315
+
7316
+ 本次发布包含了以下内容:
7317
+
7318
+ 改善已有的文档。
7319
+
7320
+ 修改数据结构:
7321
+
7322
+ * [DataDisk](https://cloud.tencent.com/document/api/599/15912#DataDisk)
7323
+
7324
+ * 新增成员:BurstPerformance
7325
+
7326
+
7184
7327
  ### 第 51 次发布
7185
7328
 
7186
7329
  发布时间:2023-10-09 01:07:08
@@ -8606,6 +8749,35 @@
8606
8749
 
8607
8750
  ## 费用中心(billing) 版本:2018-07-09
8608
8751
 
8752
+ ### 第 52 次发布
8753
+
8754
+ 发布时间:2023-12-01 01:08:07
8755
+
8756
+ 本次发布包含了以下内容:
8757
+
8758
+ 改善已有的文档。
8759
+
8760
+ 修改数据结构:
8761
+
8762
+ * [BillDetail](https://cloud.tencent.com/document/api/555/19183#BillDetail)
8763
+
8764
+ * 新增成员:BillDay, BillMonth
8765
+
8766
+ * [BillDistributionResourceSummary](https://cloud.tencent.com/document/api/555/19183#BillDistributionResourceSummary)
8767
+
8768
+ * 新增成员:BillMonth
8769
+
8770
+ * [BillResourceSummary](https://cloud.tencent.com/document/api/555/19183#BillResourceSummary)
8771
+
8772
+ * 新增成员:BillMonth
8773
+
8774
+ * <font color="#dd0000">**修改成员**:</font>TransferPayAmount, SPDeduction
8775
+
8776
+ * [DistributionBillDetail](https://cloud.tencent.com/document/api/555/19183#DistributionBillDetail)
8777
+
8778
+ * 新增成员:BillMonth, BillDay
8779
+
8780
+
8609
8781
  ### 第 51 次发布
8610
8782
 
8611
8783
  发布时间:2023-11-22 16:06:06
@@ -12523,6 +12695,22 @@
12523
12695
 
12524
12696
  ## 验证码(captcha) 版本:2019-07-22
12525
12697
 
12698
+ ### 第 17 次发布
12699
+
12700
+ 发布时间:2023-12-01 01:09:01
12701
+
12702
+ 本次发布包含了以下内容:
12703
+
12704
+ 改善已有的文档。
12705
+
12706
+ 新增接口:
12707
+
12708
+ * [[DescribeCaptchaRceResult](https://cloud.tencent.com/document/api/1110/102104)](https://cloud.tencent.com/document/api/#/#)
12709
+
12710
+ 新增数据结构:
12711
+
12712
+ * [[RceResult](https://cloud.tencent.com/document/api/1110/40481#RceResult)](https://cloud.tencent.com/document/api/1110/40481#[RceResult](https://cloud.tencent.com/document/api/1110/40481#RceResult))
12713
+
12526
12714
  ### 第 16 次发布
12527
12715
 
12528
12716
  发布时间:2023-04-06 20:55:55
@@ -22655,6 +22843,20 @@
22655
22843
 
22656
22844
  ## 云防火墙(cfw) 版本:2019-09-04
22657
22845
 
22846
+ ### 第 50 次发布
22847
+
22848
+ 发布时间:2023-12-01 01:10:27
22849
+
22850
+ 本次发布包含了以下内容:
22851
+
22852
+ 改善已有的文档。
22853
+
22854
+ 新增接口:
22855
+
22856
+ * [[CreateIdsWhiteRule](https://cloud.tencent.com/document/api/1132/102107)](https://cloud.tencent.com/document/api/#/#)
22857
+ * [[DeleteIdsWhiteRule](https://cloud.tencent.com/document/api/1132/102106)](https://cloud.tencent.com/document/api/#/#)
22858
+ * [[DescribeIdsWhiteRule](https://cloud.tencent.com/document/api/1132/102105)](https://cloud.tencent.com/document/api/#/#)
22859
+
22658
22860
  ### 第 49 次发布
22659
22861
 
22660
22862
  发布时间:2023-11-28 01:09:22
@@ -35893,6 +36095,32 @@
35893
36095
 
35894
36096
  ## 云服务器(cvm) 版本:2017-03-12
35895
36097
 
36098
+ ### 第 122 次发布
36099
+
36100
+ 发布时间:2023-12-01 01:12:05
36101
+
36102
+ 本次发布包含了以下内容:
36103
+
36104
+ 改善已有的文档。
36105
+
36106
+ 修改接口:
36107
+
36108
+ * [ModifyInstancesAttribute](https://cloud.tencent.com/document/api/213/15739)
36109
+
36110
+ * 新增入参:AutoReboot
36111
+
36112
+
36113
+ 修改数据结构:
36114
+
36115
+ * [DataDisk](https://cloud.tencent.com/document/api/213/15753#DataDisk)
36116
+
36117
+ * 新增成员:BurstPerformance
36118
+
36119
+ * [Image](https://cloud.tencent.com/document/api/213/15753#Image)
36120
+
36121
+ * <font color="#dd0000">**修改成员**:</font>ImageId, OsName, ImageType, Platform, ImageCreator, ImageSource, LicenseType
36122
+
36123
+
35896
36124
  ### 第 121 次发布
35897
36125
 
35898
36126
  发布时间:2023-11-23 01:14:32
@@ -46802,7 +47030,7 @@
46802
47030
 
46803
47031
  新增接口:
46804
47032
 
46805
- * [[AssignMangedTableProperties](https://cloud.tencent.com/document/api/1342/102049)](https://cloud.tencent.com/document/api/#/#)
47033
+ * [AssignMangedTableProperties](https://cloud.tencent.com/document/api/1342/102049)
46806
47034
 
46807
47035
  ### 第 76 次发布
46808
47036
 
@@ -56389,6 +56617,21 @@
56389
56617
 
56390
56618
  ## 腾讯电子签企业版(ess) 版本:2020-11-11
56391
56619
 
56620
+ ### 第 138 次发布
56621
+
56622
+ 发布时间:2023-11-30 16:06:35
56623
+
56624
+ 本次发布包含了以下内容:
56625
+
56626
+ 改善已有的文档。
56627
+
56628
+ 修改接口:
56629
+
56630
+ * [CreateEmbedWebUrl](https://cloud.tencent.com/document/api/1323/95590)
56631
+
56632
+ * 新增入参:UserData
56633
+
56634
+
56392
56635
  ### 第 137 次发布
56393
56636
 
56394
56637
  发布时间:2023-11-24 01:14:56
@@ -59057,6 +59300,28 @@
59057
59300
 
59058
59301
  ## 腾讯电子签(基础版)(essbasic) 版本:2021-05-26
59059
59302
 
59303
+ ### 第 137 次发布
59304
+
59305
+ 发布时间:2023-11-30 16:01:23
59306
+
59307
+ 本次发布包含了以下内容:
59308
+
59309
+ 改善已有的文档。
59310
+
59311
+ 修改接口:
59312
+
59313
+ * [ChannelCreateEmbedWebUrl](https://cloud.tencent.com/document/api/1420/87919)
59314
+
59315
+ * 新增入参:UserData
59316
+
59317
+
59318
+ 修改数据结构:
59319
+
59320
+ * [CreateFlowOption](https://cloud.tencent.com/document/api/1420/61525#CreateFlowOption)
59321
+
59322
+ * 新增成员:SkipUploadFile
59323
+
59324
+
59060
59325
  ### 第 136 次发布
59061
59326
 
59062
59327
  发布时间:2023-11-30 04:06:09
@@ -79966,6 +80231,26 @@
79966
80231
 
79967
80232
  ## 多网聚合加速(mna) 版本:2021-01-19
79968
80233
 
80234
+ ### 第 15 次发布
80235
+
80236
+ 发布时间:2023-12-01 01:19:47
80237
+
80238
+ 本次发布包含了以下内容:
80239
+
80240
+ 改善已有的文档。
80241
+
80242
+ 新增接口:
80243
+
80244
+ * [[GetDevicePayMode](https://cloud.tencent.com/document/api/1385/102111)](https://cloud.tencent.com/document/api/#/#)
80245
+ * [[GetFlowPackages](https://cloud.tencent.com/document/api/1385/102110)](https://cloud.tencent.com/document/api/#/#)
80246
+ * [[ModifyPackageRenewFlag](https://cloud.tencent.com/document/api/1385/102109)](https://cloud.tencent.com/document/api/#/#)
80247
+ * [[OrderFlowPackage](https://cloud.tencent.com/document/api/1385/102108)](https://cloud.tencent.com/document/api/#/#)
80248
+
80249
+ 新增数据结构:
80250
+
80251
+ * [[DevicePayModeInfo](https://cloud.tencent.com/document/api/1385/55846#DevicePayModeInfo)](https://cloud.tencent.com/document/api/1385/55846#[DevicePayModeInfo](https://cloud.tencent.com/document/api/1385/55846#DevicePayModeInfo))
80252
+ * [[FlowPackageInfo](https://cloud.tencent.com/document/api/1385/55846#FlowPackageInfo)](https://cloud.tencent.com/document/api/1385/55846#[FlowPackageInfo](https://cloud.tencent.com/document/api/1385/55846#FlowPackageInfo))
80253
+
79969
80254
  ### 第 14 次发布
79970
80255
 
79971
80256
  发布时间:2023-11-28 01:19:46
@@ -88063,9 +88348,9 @@
88063
88348
 
88064
88349
  新增数据结构:
88065
88350
 
88066
- * [[ElectronicFlightTicketFull](https://cloud.tencent.com/document/api/866/33527#ElectronicFlightTicketFull)](https://cloud.tencent.com/document/api/866/33527#[ElectronicFlightTicketFull](https://cloud.tencent.com/document/api/866/33527#ElectronicFlightTicketFull))
88067
- * [[ElectronicTrainTicketFull](https://cloud.tencent.com/document/api/866/33527#ElectronicTrainTicketFull)](https://cloud.tencent.com/document/api/866/33527#[ElectronicTrainTicketFull](https://cloud.tencent.com/document/api/866/33527#ElectronicTrainTicketFull))
88068
- * [[FlightItemInfo](https://cloud.tencent.com/document/api/866/33527#FlightItemInfo)](https://cloud.tencent.com/document/api/866/33527#[FlightItemInfo](https://cloud.tencent.com/document/api/866/33527#FlightItemInfo))
88351
+ * [ElectronicFlightTicketFull](https://cloud.tencent.com/document/api/866/33527#ElectronicFlightTicketFull)
88352
+ * [ElectronicTrainTicketFull](https://cloud.tencent.com/document/api/866/33527#ElectronicTrainTicketFull)
88353
+ * [FlightItemInfo](https://cloud.tencent.com/document/api/866/33527#FlightItemInfo)
88069
88354
 
88070
88355
  修改数据结构:
88071
88356
 
@@ -97815,6 +98100,29 @@
97815
98100
 
97816
98101
  ## 云数据库 SQL Server(sqlserver) 版本:2018-03-28
97817
98102
 
98103
+ ### 第 56 次发布
98104
+
98105
+ 发布时间:2023-12-01 01:22:35
98106
+
98107
+ 本次发布包含了以下内容:
98108
+
98109
+ 改善已有的文档。
98110
+
98111
+ 新增接口:
98112
+
98113
+ * [[ModifyDBInstanceSSL](https://cloud.tencent.com/document/api/238/102112)](https://cloud.tencent.com/document/api/#/#)
98114
+
98115
+ 修改接口:
98116
+
98117
+ * [DescribeDBInstancesAttribute](https://cloud.tencent.com/document/api/238/90299)
98118
+
98119
+ * 新增出参:SSLConfig
98120
+
98121
+
98122
+ 新增数据结构:
98123
+
98124
+ * [[SSLConfig](https://cloud.tencent.com/document/api/238/19976#SSLConfig)](https://cloud.tencent.com/document/api/238/19976#[SSLConfig](https://cloud.tencent.com/document/api/238/19976#SSLConfig))
98125
+
97818
98126
  ### 第 55 次发布
97819
98127
 
97820
98128
  发布时间:2023-11-21 01:25:12
@@ -99613,9 +99921,9 @@
99613
99921
 
99614
99922
  新增数据结构:
99615
99923
 
99616
- * [[SupportDownloadType](https://cloud.tencent.com/document/api/400/41679#SupportDownloadType)](https://cloud.tencent.com/document/api/400/41679#[SupportDownloadType](https://cloud.tencent.com/document/api/400/41679#SupportDownloadType))
99617
- * [[UpdateSyncProgress](https://cloud.tencent.com/document/api/400/41679#UpdateSyncProgress)](https://cloud.tencent.com/document/api/400/41679#[UpdateSyncProgress](https://cloud.tencent.com/document/api/400/41679#UpdateSyncProgress))
99618
- * [[UpdateSyncProgressRegion](https://cloud.tencent.com/document/api/400/41679#UpdateSyncProgressRegion)](https://cloud.tencent.com/document/api/400/41679#[UpdateSyncProgressRegion](https://cloud.tencent.com/document/api/400/41679#UpdateSyncProgressRegion))
99924
+ * [SupportDownloadType](https://cloud.tencent.com/document/api/400/41679#SupportDownloadType)
99925
+ * [UpdateSyncProgress](https://cloud.tencent.com/document/api/400/41679#UpdateSyncProgress)
99926
+ * [UpdateSyncProgressRegion](https://cloud.tencent.com/document/api/400/41679#UpdateSyncProgressRegion)
99619
99927
 
99620
99928
  修改数据结构:
99621
99929
 
@@ -119307,6 +119615,32 @@
119307
119615
 
119308
119616
  ## 互动白板(tiw) 版本:2019-09-19
119309
119617
 
119618
+ ### 第 37 次发布
119619
+
119620
+ 发布时间:2023-12-01 01:26:06
119621
+
119622
+ 本次发布包含了以下内容:
119623
+
119624
+ 改善已有的文档。
119625
+
119626
+ <font color="#dd0000">**删除接口**:</font>
119627
+
119628
+ * CreateOfflineRecord
119629
+ * DescribeOfflineRecord
119630
+ * DescribeOfflineRecordCallback
119631
+ * SetOfflineRecordCallback
119632
+
119633
+ 修改接口:
119634
+
119635
+ * [CreateTranscode](https://cloud.tencent.com/document/api/1137/40060)
119636
+
119637
+ * 新增入参:ExcelParam
119638
+
119639
+
119640
+ 新增数据结构:
119641
+
119642
+ * [[ExcelParam](https://cloud.tencent.com/document/api/1137/40068#ExcelParam)](https://cloud.tencent.com/document/api/1137/40068#[ExcelParam](https://cloud.tencent.com/document/api/1137/40068#ExcelParam))
119643
+
119310
119644
  ### 第 36 次发布
119311
119645
 
119312
119646
  发布时间:2023-11-01 01:23:35
@@ -120018,12 +120352,12 @@
120018
120352
 
120019
120353
  新增接口:
120020
120354
 
120021
- * [[DescribeLogSwitches](https://cloud.tencent.com/document/api/457/102050)](https://cloud.tencent.com/document/api/#/#)
120355
+ * [DescribeLogSwitches](https://cloud.tencent.com/document/api/457/102050)
120022
120356
 
120023
120357
  新增数据结构:
120024
120358
 
120025
- * [[Switch](https://cloud.tencent.com/document/api/457/31866#Switch)](https://cloud.tencent.com/document/api/457/31866#[Switch](https://cloud.tencent.com/document/api/457/31866#Switch))
120026
- * [[SwitchInfo](https://cloud.tencent.com/document/api/457/31866#SwitchInfo)](https://cloud.tencent.com/document/api/457/31866#[SwitchInfo](https://cloud.tencent.com/document/api/457/31866#SwitchInfo))
120359
+ * [Switch](https://cloud.tencent.com/document/api/457/31866#Switch)
120360
+ * [SwitchInfo](https://cloud.tencent.com/document/api/457/31866#SwitchInfo)
120027
120361
 
120028
120362
  ### 第 163 次发布
120029
120363
 
@@ -124629,6 +124963,25 @@
124629
124963
 
124630
124964
  ## 实时音视频(trtc) 版本:2019-07-22
124631
124965
 
124966
+ ### 第 62 次发布
124967
+
124968
+ 发布时间:2023-12-01 01:27:18
124969
+
124970
+ 本次发布包含了以下内容:
124971
+
124972
+ 改善已有的文档。
124973
+
124974
+ 修改数据结构:
124975
+
124976
+ * [WaterMarkChar](https://cloud.tencent.com/document/api/647/44055#WaterMarkChar)
124977
+
124978
+ * 新增成员:Font
124979
+
124980
+ * [WaterMarkTimestamp](https://cloud.tencent.com/document/api/647/44055#WaterMarkTimestamp)
124981
+
124982
+ * 新增成员:Font
124983
+
124984
+
124632
124985
  ### 第 61 次发布
124633
124986
 
124634
124987
  发布时间:2023-11-24 01:26:16
@@ -135021,6 +135374,21 @@
135021
135374
 
135022
135375
  ## 私有网络(vpc) 版本:2017-03-12
135023
135376
 
135377
+ ### 第 183 次发布
135378
+
135379
+ 发布时间:2023-12-01 01:28:57
135380
+
135381
+ 本次发布包含了以下内容:
135382
+
135383
+ 改善已有的文档。
135384
+
135385
+ 修改数据结构:
135386
+
135387
+ * [IPSECOptionsSpecification](https://cloud.tencent.com/document/api/215/15824#IPSECOptionsSpecification)
135388
+
135389
+ * 新增成员:IntegrityAlgorithm
135390
+
135391
+
135024
135392
  ### 第 182 次发布
135025
135393
 
135026
135394
  发布时间:2023-11-29 02:08:37
@@ -141162,6 +141530,60 @@
141162
141530
 
141163
141531
  ## 数据开发治理平台 WeData(wedata) 版本:2021-08-20
141164
141532
 
141533
+ ### 第 61 次发布
141534
+
141535
+ 发布时间:2023-12-01 01:30:04
141536
+
141537
+ 本次发布包含了以下内容:
141538
+
141539
+ 改善已有的文档。
141540
+
141541
+ 修改接口:
141542
+
141543
+ * [BatchUpdateIntegrationTasks](https://cloud.tencent.com/document/api/1267/82531)
141544
+
141545
+ * 新增入参:InchargeIds
141546
+
141547
+ * [CheckAlarmRegularNameExist](https://cloud.tencent.com/document/api/1267/82530)
141548
+
141549
+ * 新增入参:MonitorType
141550
+
141551
+ * [DescribeAlarmEvents](https://cloud.tencent.com/document/api/1267/82513)
141552
+
141553
+ * 新增入参:MonitorType
141554
+
141555
+ * <font color="#dd0000">**修改入参**:</font>Filters, OrderFields, TaskType, StartTime, EndTime
141556
+
141557
+ * [DescribeAlarmReceiver](https://cloud.tencent.com/document/api/1267/82512)
141558
+
141559
+ * 新增入参:MonitorType
141560
+
141561
+ * [DescribeEventCases](https://cloud.tencent.com/document/api/1267/95217)
141562
+
141563
+ * 新增入参:TimeToLive, SortItem, SortType
141564
+
141565
+ * [TriggerDsEvent](https://cloud.tencent.com/document/api/1267/102051)
141566
+
141567
+ * 新增入参:EventBatchCaseList
141568
+
141569
+ * <font color="#dd0000">**修改入参**:</font>EventCaseList
141570
+
141571
+
141572
+ 新增数据结构:
141573
+
141574
+ * [[EventBatchCaseDTO](https://cloud.tencent.com/document/api/1267/76336#EventBatchCaseDTO)](https://cloud.tencent.com/document/api/1267/76336#[EventBatchCaseDTO](https://cloud.tencent.com/document/api/1267/76336#EventBatchCaseDTO))
141575
+
141576
+ 修改数据结构:
141577
+
141578
+ * [AlarmEventInfo](https://cloud.tencent.com/document/api/1267/76336#AlarmEventInfo)
141579
+
141580
+ * 新增成员:MonitorObjectId, MonitorObjectName, Threshold
141581
+
141582
+ * [AlarmIndicatorInfo](https://cloud.tencent.com/document/api/1267/76336#AlarmIndicatorInfo)
141583
+
141584
+ * 新增成员:Threshold
141585
+
141586
+
141165
141587
  ### 第 60 次发布
141166
141588
 
141167
141589
  发布时间:2023-11-30 08:21:21
@@ -141172,13 +141594,13 @@
141172
141594
 
141173
141595
  新增接口:
141174
141596
 
141175
- * [[TriggerDsEvent](https://cloud.tencent.com/document/api/1267/102051)](https://cloud.tencent.com/document/api/#/#)
141597
+ * [TriggerDsEvent](https://cloud.tencent.com/document/api/1267/102051)
141176
141598
 
141177
141599
  新增数据结构:
141178
141600
 
141179
- * [[BatchOpsDTO](https://cloud.tencent.com/document/api/1267/76336#BatchOpsDTO)](https://cloud.tencent.com/document/api/1267/76336#[BatchOpsDTO](https://cloud.tencent.com/document/api/1267/76336#BatchOpsDTO))
141180
- * [[EventCaseDTO](https://cloud.tencent.com/document/api/1267/76336#EventCaseDTO)](https://cloud.tencent.com/document/api/1267/76336#[EventCaseDTO](https://cloud.tencent.com/document/api/1267/76336#EventCaseDTO))
141181
- * [[FailMessage](https://cloud.tencent.com/document/api/1267/76336#FailMessage)](https://cloud.tencent.com/document/api/1267/76336#[FailMessage](https://cloud.tencent.com/document/api/1267/76336#FailMessage))
141601
+ * [BatchOpsDTO](https://cloud.tencent.com/document/api/1267/76336#BatchOpsDTO)
141602
+ * [EventCaseDTO](https://cloud.tencent.com/document/api/1267/76336#EventCaseDTO)
141603
+ * [FailMessage](https://cloud.tencent.com/document/api/1267/76336#FailMessage)
141182
141604
 
141183
141605
  ### 第 59 次发布
141184
141606
 
@@ -143038,6 +143460,28 @@
143038
143460
 
143039
143461
  ## 微瓴同业开放平台(weilingwith) 版本:2023-04-27
143040
143462
 
143463
+ ### 第 5 次发布
143464
+
143465
+ 发布时间:2023-12-01 01:31:31
143466
+
143467
+ 本次发布包含了以下内容:
143468
+
143469
+ 改善已有的文档。
143470
+
143471
+ 修改接口:
143472
+
143473
+ * [DescribeAlarmStatusList](https://cloud.tencent.com/document/api/1693/101460)
143474
+
143475
+ * 新增入参:ApplicationToken, WorkspaceId
143476
+
143477
+ * 新增出参:Result
143478
+
143479
+
143480
+ 新增数据结构:
143481
+
143482
+ * [[AlarmStatusData](https://cloud.tencent.com/document/api/1693/97961#AlarmStatusData)](https://cloud.tencent.com/document/api/1693/97961#[AlarmStatusData](https://cloud.tencent.com/document/api/1693/97961#AlarmStatusData))
143483
+ * [[DescribeAlarmStatusListRes](https://cloud.tencent.com/document/api/1693/97961#DescribeAlarmStatusListRes)](https://cloud.tencent.com/document/api/1693/97961#[DescribeAlarmStatusListRes](https://cloud.tencent.com/document/api/1693/97961#DescribeAlarmStatusListRes))
143484
+
143041
143485
  ### 第 4 次发布
143042
143486
 
143043
143487
  发布时间:2023-11-15 02:45:47