tencentcloud-sdk-nodejs 4.0.433 → 4.0.436

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 (71) hide show
  1. package/CHANGELOG.md +483 -0
  2. package/SERVICE_CHANGELOG.md +337 -66
  3. package/package.json +1 -1
  4. package/products.md +18 -18
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/as/v20180419/as_client.ts +3 -1
  7. package/src/services/as/v20180419/as_models.ts +16 -6
  8. package/src/services/asr/v20190614/asr_models.ts +11 -8
  9. package/src/services/bma/v20210624/bma_client.ts +45 -8
  10. package/src/services/bma/v20210624/bma_models.ts +217 -37
  11. package/src/services/cpdp/v20190820/cpdp_models.ts +21 -0
  12. package/src/services/cynosdb/v20190107/cynosdb_models.ts +1 -1
  13. package/src/services/es/v20180416/es_models.ts +11 -0
  14. package/src/services/ess/v20201111/ess_client.ts +43 -11
  15. package/src/services/ess/v20201111/ess_models.ts +289 -57
  16. package/src/services/faceid/v20180301/faceid_models.ts +5 -0
  17. package/src/services/live/v20180801/live_client.ts +1 -1
  18. package/src/services/monitor/v20180724/monitor_models.ts +12 -0
  19. package/src/services/tag/v20180813/tag_models.ts +2 -2
  20. package/src/services/teo/v20220106/teo_client.ts +9 -3
  21. package/src/services/teo/v20220106/teo_models.ts +522 -250
  22. package/src/services/trp/v20210515/trp_models.ts +5 -0
  23. package/src/services/vm/index.ts +2 -0
  24. package/src/services/vm/v20210922/index.ts +6 -0
  25. package/src/services/vm/v20210922/vm_client.ts +100 -0
  26. package/src/services/vm/v20210922/vm_models.ts +1023 -0
  27. package/src/services/vod/v20180717/vod_models.ts +9 -0
  28. package/src/services/vpc/v20170312/vpc_client.ts +13 -0
  29. package/src/services/vpc/v20170312/vpc_models.ts +105 -0
  30. package/src/services/waf/v20180125/waf_client.ts +2 -1
  31. package/src/services/waf/v20180125/waf_models.ts +133 -91
  32. package/tencentcloud/common/sdk_version.d.ts +1 -1
  33. package/tencentcloud/common/sdk_version.js +1 -1
  34. package/tencentcloud/services/as/v20180419/as_client.d.ts +3 -1
  35. package/tencentcloud/services/as/v20180419/as_client.js +3 -1
  36. package/tencentcloud/services/as/v20180419/as_models.d.ts +14 -6
  37. package/tencentcloud/services/asr/v20190614/asr_models.d.ts +10 -8
  38. package/tencentcloud/services/bma/v20210624/bma_client.d.ts +15 -3
  39. package/tencentcloud/services/bma/v20210624/bma_client.js +21 -3
  40. package/tencentcloud/services/bma/v20210624/bma_models.d.ts +184 -33
  41. package/tencentcloud/services/cpdp/v20190820/cpdp_models.d.ts +19 -0
  42. package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +1 -1
  43. package/tencentcloud/services/es/v20180416/es_models.d.ts +9 -0
  44. package/tencentcloud/services/ess/v20201111/ess_client.d.ts +19 -6
  45. package/tencentcloud/services/ess/v20201111/ess_client.js +23 -6
  46. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +244 -49
  47. package/tencentcloud/services/faceid/v20180301/faceid_models.d.ts +4 -0
  48. package/tencentcloud/services/live/v20180801/live_client.d.ts +1 -1
  49. package/tencentcloud/services/live/v20180801/live_client.js +1 -1
  50. package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +10 -0
  51. package/tencentcloud/services/tag/v20180813/tag_models.d.ts +2 -2
  52. package/tencentcloud/services/teo/v20220106/teo_client.d.ts +1 -1
  53. package/tencentcloud/services/teo/v20220106/teo_models.d.ts +464 -218
  54. package/tencentcloud/services/trp/v20210515/trp_models.d.ts +4 -0
  55. package/tencentcloud/services/vm/index.d.ts +4 -0
  56. package/tencentcloud/services/vm/index.js +2 -0
  57. package/tencentcloud/services/vm/v20210922/index.d.ts +6 -0
  58. package/tencentcloud/services/vm/v20210922/index.js +9 -0
  59. package/tencentcloud/services/vm/v20210922/vm_client.d.ts +28 -0
  60. package/tencentcloud/services/vm/v20210922/vm_client.js +57 -0
  61. package/tencentcloud/services/vm/v20210922/vm_models.d.ts +866 -0
  62. package/tencentcloud/services/vm/v20210922/vm_models.js +18 -0
  63. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +8 -0
  64. package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +5 -1
  65. package/tencentcloud/services/vpc/v20170312/vpc_client.js +6 -0
  66. package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +88 -0
  67. package/tencentcloud/services/waf/v20180125/waf_models.d.ts +110 -75
  68. package/test/bma.v20210624.test.js +32 -2
  69. package/test/ess.v20201111.test.js +22 -2
  70. package/test/vm.v20210922.test.js +61 -0
  71. package/test/vpc.v20170312.test.js +10 -0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,486 @@
1
+ # Release 4.0.436
2
+
3
+ ## 品牌经营管家(bma) 版本:2021-06-24
4
+
5
+ ### 第 6 次发布
6
+
7
+ 发布时间:2022-09-05 06:10:17
8
+
9
+ 本次发布包含了以下内容:
10
+
11
+ 改善已有的文档。
12
+
13
+ 新增接口:
14
+
15
+ * [CreateCRRightFile](https://cloud.tencent.com/document/api/1296/80089)
16
+ * [CreateCRTort](https://cloud.tencent.com/document/api/1296/80088)
17
+ * [ModifyCRWhiteList](https://cloud.tencent.com/document/api/1296/80087)
18
+
19
+ 修改接口:
20
+
21
+ * [ModifyCRMonitor](https://cloud.tencent.com/document/api/1296/78025)
22
+
23
+ * 新增入参:MonitorEnd
24
+
25
+
26
+ 新增数据结构:
27
+
28
+ * [File](https://cloud.tencent.com/document/api/1296/78030#File)
29
+
30
+
31
+
32
+ ## 企业收付平台(cpdp) 版本:2019-08-20
33
+
34
+ ### 第 84 次发布
35
+
36
+ 发布时间:2022-09-05 06:18:54
37
+
38
+ 本次发布包含了以下内容:
39
+
40
+ 改善已有的文档。
41
+
42
+ 修改接口:
43
+
44
+ * [CreateAcct](https://cloud.tencent.com/document/api/1122/40674)
45
+
46
+ * 新增入参:SubMerchantIdType, SubMerchantIdCode
47
+
48
+
49
+
50
+
51
+ ## 边缘安全加速平台(teo) 版本:2022-01-06
52
+
53
+ ### 第 24 次发布
54
+
55
+ 发布时间:2022-09-05 06:51:57
56
+
57
+ 本次发布包含了以下内容:
58
+
59
+ 改善已有的文档。
60
+
61
+ 新增数据结构:
62
+
63
+ * [DropPageConfig](https://cloud.tencent.com/document/api/1552/73155#DropPageConfig)
64
+ * [DropPageDetail](https://cloud.tencent.com/document/api/1552/73155#DropPageDetail)
65
+ * [ExceptConfig](https://cloud.tencent.com/document/api/1552/73155#ExceptConfig)
66
+ * [ExceptUserRule](https://cloud.tencent.com/document/api/1552/73155#ExceptUserRule)
67
+ * [ExceptUserRuleCondition](https://cloud.tencent.com/document/api/1552/73155#ExceptUserRuleCondition)
68
+ * [ExceptUserRuleScope](https://cloud.tencent.com/document/api/1552/73155#ExceptUserRuleScope)
69
+
70
+ 修改数据结构:
71
+
72
+ * [BotPortraitRule](https://cloud.tencent.com/document/api/1552/73155#BotPortraitRule)
73
+
74
+ * 新增成员:ManagedIds, TransManagedIds
75
+
76
+ * [SecurityConfig](https://cloud.tencent.com/document/api/1552/73155#SecurityConfig)
77
+
78
+ * 新增成员:ExceptConfig, DropPageConfig
79
+
80
+
81
+
82
+
83
+ ## 私有网络(vpc) 版本:2017-03-12
84
+
85
+ ### 第 123 次发布
86
+
87
+ 发布时间:2022-09-05 06:59:01
88
+
89
+ 本次发布包含了以下内容:
90
+
91
+ 改善已有的文档。
92
+
93
+ 新增接口:
94
+
95
+ * [DescribeTrafficPackages](https://cloud.tencent.com/document/api/215/80090)
96
+
97
+ 新增数据结构:
98
+
99
+ * [TrafficPackage](https://cloud.tencent.com/document/api/215/15824#TrafficPackage)
100
+
101
+
102
+
103
+ # Release 4.0.435
104
+
105
+ ## 弹性伸缩(as) 版本:2018-04-19
106
+
107
+ ### 第 57 次发布
108
+
109
+ 发布时间:2022-09-02 06:09:13
110
+
111
+ 本次发布包含了以下内容:
112
+
113
+ 改善已有的文档。
114
+
115
+ 修改接口:
116
+
117
+ * [ModifyLifecycleHook](https://cloud.tencent.com/document/api/377/73060)
118
+
119
+ * 新增入参:LifecycleCommand
120
+
121
+ * [UpgradeLifecycleHook](https://cloud.tencent.com/document/api/377/34451)
122
+
123
+ * 新增入参:LifecycleCommand
124
+
125
+
126
+
127
+
128
+ ## 语音识别(asr) 版本:2019-06-14
129
+
130
+ ### 第 20 次发布
131
+
132
+ 发布时间:2022-09-02 06:09:54
133
+
134
+ 本次发布包含了以下内容:
135
+
136
+ 改善已有的文档。
137
+
138
+ 修改接口:
139
+
140
+ * [SentenceRecognition](https://cloud.tencent.com/document/api/1093/35646)
141
+
142
+ * 新增入参:CustomizationId
143
+
144
+
145
+
146
+
147
+ ## Elasticsearch Service(es) 版本:2018-04-16
148
+
149
+ ### 第 34 次发布
150
+
151
+ 发布时间:2022-09-02 06:30:38
152
+
153
+ 本次发布包含了以下内容:
154
+
155
+ 改善已有的文档。
156
+
157
+ 修改接口:
158
+
159
+ * [CreateInstance](https://cloud.tencent.com/document/api/845/30633)
160
+
161
+ * 新增入参:EnableHybridStorage
162
+
163
+
164
+ 修改数据结构:
165
+
166
+ * [InstanceInfo](https://cloud.tencent.com/document/api/845/30634#InstanceInfo)
167
+
168
+ * 新增成员:EnableHybridStorage
169
+
170
+
171
+
172
+
173
+ ## 电子签服务(ess) 版本:2020-11-11
174
+
175
+ ### 第 16 次发布
176
+
177
+ 发布时间:2022-09-02 06:31:01
178
+
179
+ 本次发布包含了以下内容:
180
+
181
+ 改善已有的文档。
182
+
183
+ 新增接口:
184
+
185
+ * [CreateFlowApprovers](https://cloud.tencent.com/document/api/1323/80033)
186
+ * [DescribeFlowInfo](https://cloud.tencent.com/document/api/1323/80032)
187
+
188
+ 新增数据结构:
189
+
190
+ * [FillApproverInfo](https://cloud.tencent.com/document/api/1323/70369#FillApproverInfo)
191
+ * [FlowApproverDetail](https://cloud.tencent.com/document/api/1323/70369#FlowApproverDetail)
192
+ * [FlowDetailInfo](https://cloud.tencent.com/document/api/1323/70369#FlowDetailInfo)
193
+
194
+ 修改数据结构:
195
+
196
+ * [ApproverInfo](https://cloud.tencent.com/document/api/1323/70369#ApproverInfo)
197
+
198
+ * 新增成员:UserId, ApproverSource, CustomApproverTag
199
+
200
+ * [FlowCreateApprover](https://cloud.tencent.com/document/api/1323/70369#FlowCreateApprover)
201
+
202
+ * 新增成员:ApproverSource, CustomApproverTag
203
+
204
+
205
+
206
+
207
+ ## 人脸核身(faceid) 版本:2018-03-01
208
+
209
+ ### 第 46 次发布
210
+
211
+ 发布时间:2022-09-02 06:31:36
212
+
213
+ 本次发布包含了以下内容:
214
+
215
+ 改善已有的文档。
216
+
217
+ 修改数据结构:
218
+
219
+ * [GetEidTokenConfig](https://cloud.tencent.com/document/api/1007/41958#GetEidTokenConfig)
220
+
221
+ * 新增成员:IntentionRecognition
222
+
223
+
224
+
225
+
226
+ ## 云监控(monitor) 版本:2018-07-24
227
+
228
+ ### 第 57 次发布
229
+
230
+ 发布时间:2022-09-02 06:42:08
231
+
232
+ 本次发布包含了以下内容:
233
+
234
+ 改善已有的文档。
235
+
236
+ 修改数据结构:
237
+
238
+ * [PrometheusInstancesItem](https://cloud.tencent.com/document/api/248/30354#PrometheusInstancesItem)
239
+
240
+ * 新增成员:AlertRuleLimit, RecordingRuleLimit
241
+
242
+
243
+
244
+
245
+ ## T-Sec-安心平台(RP)(trp) 版本:2021-05-15
246
+
247
+ ### 第 4 次发布
248
+
249
+ 发布时间:2022-09-02 07:00:24
250
+
251
+ 本次发布包含了以下内容:
252
+
253
+ 改善已有的文档。
254
+
255
+ 修改接口:
256
+
257
+ * [CreateCodeBatch](https://cloud.tencent.com/document/api/1458/75029)
258
+
259
+ * 新增入参:CloneId
260
+
261
+
262
+
263
+
264
+ ## 视频内容安全(vm) 版本:2021-09-22
265
+
266
+ ### 第 1 次发布
267
+
268
+ 发布时间:2022-09-01 20:31:39
269
+
270
+ 本次发布包含了以下内容:
271
+
272
+ 改善已有的文档。
273
+
274
+ 新增接口:
275
+
276
+ * [CancelTask](https://cloud.tencent.com/document/api/1265/80018)
277
+ * [CreateVideoModerationTask](https://cloud.tencent.com/document/api/1265/80017)
278
+ * [DescribeTaskDetail](https://cloud.tencent.com/document/api/1265/80016)
279
+ * [DescribeTasks](https://cloud.tencent.com/document/api/1265/80015)
280
+
281
+ 新增数据结构:
282
+
283
+ * [AudioResult](https://cloud.tencent.com/document/api/1265/80019#AudioResult)
284
+ * [AudioResultDetailLanguageResult](https://cloud.tencent.com/document/api/1265/80019#AudioResultDetailLanguageResult)
285
+ * [AudioResultDetailMoanResult](https://cloud.tencent.com/document/api/1265/80019#AudioResultDetailMoanResult)
286
+ * [AudioResultDetailTextResult](https://cloud.tencent.com/document/api/1265/80019#AudioResultDetailTextResult)
287
+ * [AudioSegments](https://cloud.tencent.com/document/api/1265/80019#AudioSegments)
288
+ * [BucketInfo](https://cloud.tencent.com/document/api/1265/80019#BucketInfo)
289
+ * [ImageResult](https://cloud.tencent.com/document/api/1265/80019#ImageResult)
290
+ * [ImageResultResult](https://cloud.tencent.com/document/api/1265/80019#ImageResultResult)
291
+ * [ImageResultsResultDetail](https://cloud.tencent.com/document/api/1265/80019#ImageResultsResultDetail)
292
+ * [ImageResultsResultDetailLocation](https://cloud.tencent.com/document/api/1265/80019#ImageResultsResultDetailLocation)
293
+ * [ImageSegments](https://cloud.tencent.com/document/api/1265/80019#ImageSegments)
294
+ * [InputInfo](https://cloud.tencent.com/document/api/1265/80019#InputInfo)
295
+ * [MediaInfo](https://cloud.tencent.com/document/api/1265/80019#MediaInfo)
296
+ * [StorageInfo](https://cloud.tencent.com/document/api/1265/80019#StorageInfo)
297
+ * [TaskData](https://cloud.tencent.com/document/api/1265/80019#TaskData)
298
+ * [TaskFilter](https://cloud.tencent.com/document/api/1265/80019#TaskFilter)
299
+ * [TaskInput](https://cloud.tencent.com/document/api/1265/80019#TaskInput)
300
+ * [TaskLabel](https://cloud.tencent.com/document/api/1265/80019#TaskLabel)
301
+ * [TaskResult](https://cloud.tencent.com/document/api/1265/80019#TaskResult)
302
+
303
+
304
+
305
+ ## 视频内容安全(vm) 版本:2020-12-29
306
+
307
+
308
+
309
+ ## 视频内容安全(vm) 版本:2020-07-09
310
+
311
+
312
+
313
+ ## 云点播(vod) 版本:2018-07-17
314
+
315
+ ### 第 118 次发布
316
+
317
+ 发布时间:2022-09-02 07:03:01
318
+
319
+ 本次发布包含了以下内容:
320
+
321
+ 改善已有的文档。
322
+
323
+ 修改数据结构:
324
+
325
+ * [ProductInstance](https://cloud.tencent.com/document/api/266/31773#ProductInstance)
326
+
327
+ * 新增成员:RenewStatus
328
+
329
+
330
+
331
+
332
+ ## Web 应用防火墙(waf) 版本:2018-01-25
333
+
334
+ ### 第 16 次发布
335
+
336
+ 发布时间:2022-09-02 07:06:31
337
+
338
+ 本次发布包含了以下内容:
339
+
340
+ 改善已有的文档。
341
+
342
+ 新增数据结构:
343
+
344
+ * [BotQPS](https://cloud.tencent.com/document/api/627/53609#BotQPS)
345
+
346
+ 修改数据结构:
347
+
348
+ * [BotPkg](https://cloud.tencent.com/document/api/627/53609#BotPkg)
349
+
350
+ * 新增成员:Type
351
+
352
+ * [InstanceInfo](https://cloud.tencent.com/document/api/627/53609#InstanceInfo)
353
+
354
+ * 新增成员:BotQPS
355
+
356
+
357
+
358
+
359
+ # Release 4.0.434
360
+
361
+ ## 弹性伸缩(as) 版本:2018-04-19
362
+
363
+ ### 第 56 次发布
364
+
365
+ 发布时间:2022-09-01 06:08:45
366
+
367
+ 本次发布包含了以下内容:
368
+
369
+ 改善已有的文档。
370
+
371
+ 修改数据结构:
372
+
373
+ * [LifecycleCommand](https://cloud.tencent.com/document/api/377/20453#LifecycleCommand)
374
+
375
+ * <font color="#dd0000">**修改成员**:</font>Parameters
376
+
377
+
378
+
379
+
380
+ ## 全球应用加速(gaap) 版本:2018-05-29
381
+
382
+ ### 第 36 次发布
383
+
384
+ 发布时间:2022-09-01 06:29:26
385
+
386
+ 本次发布包含了以下内容:
387
+
388
+ 改善已有的文档。
389
+
390
+ 修改数据结构:
391
+
392
+ * [HTTPSListener](https://cloud.tencent.com/document/api/608/37023#HTTPSListener)
393
+
394
+ * 新增成员:Http3Supported
395
+
396
+
397
+
398
+
399
+ ## 容器服务(tke) 版本:2018-05-25
400
+
401
+ ### 第 120 次发布
402
+
403
+ 发布时间:2022-09-01 06:53:50
404
+
405
+ 本次发布包含了以下内容:
406
+
407
+ 改善已有的文档。
408
+
409
+ 修改数据结构:
410
+
411
+ * [Cluster](https://cloud.tencent.com/document/api/457/31866#Cluster)
412
+
413
+ * 新增成员:RuntimeVersion
414
+
415
+
416
+
417
+
418
+ ## T-Sec-安心平台(RP)(trp) 版本:2021-05-15
419
+
420
+ ### 第 3 次发布
421
+
422
+ 发布时间:2022-09-01 06:55:12
423
+
424
+ 本次发布包含了以下内容:
425
+
426
+ 改善已有的文档。
427
+
428
+ 修改接口:
429
+
430
+ * [CreateTraceData](https://cloud.tencent.com/document/api/1458/75023)
431
+
432
+ * 新增入参:Status, PhaseData
433
+
434
+ * [ModifyTraceData](https://cloud.tencent.com/document/api/1458/75003)
435
+
436
+ * 新增入参:PhaseData
437
+
438
+
439
+ 新增数据结构:
440
+
441
+ * [PhaseData](https://cloud.tencent.com/document/api/1458/75030#PhaseData)
442
+
443
+ 修改数据结构:
444
+
445
+ * [TraceItem](https://cloud.tencent.com/document/api/1458/75030#TraceItem)
446
+
447
+ * 新增成员:Key
448
+
449
+
450
+
451
+
452
+ ## 云点播(vod) 版本:2018-07-17
453
+
454
+ ### 第 117 次发布
455
+
456
+ 发布时间:2022-09-01 06:57:37
457
+
458
+ 本次发布包含了以下内容:
459
+
460
+ 改善已有的文档。
461
+
462
+ 修改接口:
463
+
464
+ * [DescribeTaskDetail](https://cloud.tencent.com/document/api/266/33431)
465
+
466
+ * 新增出参:ReviewAudioVideoTask
467
+
468
+
469
+ 新增数据结构:
470
+
471
+ * [ReviewAudioVideoSegmentItem](https://cloud.tencent.com/document/api/266/31773#ReviewAudioVideoSegmentItem)
472
+ * [ReviewAudioVideoTask](https://cloud.tencent.com/document/api/266/31773#ReviewAudioVideoTask)
473
+ * [ReviewAudioVideoTaskOutput](https://cloud.tencent.com/document/api/266/31773#ReviewAudioVideoTaskOutput)
474
+
475
+ 修改数据结构:
476
+
477
+ * [EventContent](https://cloud.tencent.com/document/api/266/31773#EventContent)
478
+
479
+ * 新增成员:ReviewAudioVideoCompleteEvent
480
+
481
+
482
+
483
+
1
484
  # Release 4.0.433
2
485
 
3
486
  ## 弹性伸缩(as) 版本:2018-04-19