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
@@ -1,125 +1,102 @@
1
1
  # 本版本更新包含以下内容:
2
2
 
3
- ## 弹性伸缩(as) 版本:2018-04-19
3
+ ## 品牌经营管家(bma) 版本:2021-06-24
4
4
 
5
- ### 第 56 次发布
5
+ ### 第 6 次发布
6
6
 
7
- 发布时间:2022-09-01 06:08:45
7
+ 发布时间:2022-09-05 06:10:17
8
8
 
9
9
  本次发布包含了以下内容:
10
10
 
11
11
  改善已有的文档。
12
12
 
13
- 修改数据结构:
14
-
15
- * [LifecycleCommand](https://cloud.tencent.com/document/api/377/20453#LifecycleCommand)
16
-
17
- * <font color="#dd0000">**修改成员**:</font>Parameters
18
-
19
-
20
-
21
-
22
- ## 全球应用加速(gaap) 版本:2018-05-29
23
-
24
- ### 第 36 次发布
13
+ 新增接口:
25
14
 
26
- 发布时间:2022-09-01 06:29:26
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)
27
18
 
28
- 本次发布包含了以下内容:
19
+ 修改接口:
29
20
 
30
- 改善已有的文档。
21
+ * [ModifyCRMonitor](https://cloud.tencent.com/document/api/1296/78025)
31
22
 
32
- 修改数据结构:
23
+ * 新增入参:MonitorEnd
33
24
 
34
- * [HTTPSListener](https://cloud.tencent.com/document/api/608/37023#HTTPSListener)
35
25
 
36
- * 新增成员:Http3Supported
26
+ 新增数据结构:
37
27
 
28
+ * [File](https://cloud.tencent.com/document/api/1296/78030#File)
38
29
 
39
30
 
40
31
 
41
- ## 容器服务(tke) 版本:2018-05-25
32
+ ## 企业收付平台(cpdp) 版本:2019-08-20
42
33
 
43
- ### 第 120 次发布
34
+ ### 第 84 次发布
44
35
 
45
- 发布时间:2022-09-01 06:53:50
36
+ 发布时间:2022-09-05 06:18:54
46
37
 
47
38
  本次发布包含了以下内容:
48
39
 
49
40
  改善已有的文档。
50
41
 
51
- 修改数据结构:
42
+ 修改接口:
52
43
 
53
- * [Cluster](https://cloud.tencent.com/document/api/457/31866#Cluster)
44
+ * [CreateAcct](https://cloud.tencent.com/document/api/1122/40674)
54
45
 
55
- * 新增成员:RuntimeVersion
46
+ * 新增入参:SubMerchantIdType, SubMerchantIdCode
56
47
 
57
48
 
58
49
 
59
50
 
60
- ## T-Sec-安心平台(RP)(trp) 版本:2021-05-15
51
+ ## 边缘安全加速平台(teo) 版本:2022-01-06
61
52
 
62
- ### 第 3 次发布
53
+ ### 第 24 次发布
63
54
 
64
- 发布时间:2022-09-01 06:55:12
55
+ 发布时间:2022-09-05 06:51:57
65
56
 
66
57
  本次发布包含了以下内容:
67
58
 
68
59
  改善已有的文档。
69
60
 
70
- 修改接口:
71
-
72
- * [CreateTraceData](https://cloud.tencent.com/document/api/1458/75023)
73
-
74
- * 新增入参:Status, PhaseData
75
-
76
- * [ModifyTraceData](https://cloud.tencent.com/document/api/1458/75003)
77
-
78
- * 新增入参:PhaseData
79
-
80
-
81
61
  新增数据结构:
82
62
 
83
- * [PhaseData](https://cloud.tencent.com/document/api/1458/75030#PhaseData)
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)
84
69
 
85
70
  修改数据结构:
86
71
 
87
- * [TraceItem](https://cloud.tencent.com/document/api/1458/75030#TraceItem)
72
+ * [BotPortraitRule](https://cloud.tencent.com/document/api/1552/73155#BotPortraitRule)
88
73
 
89
- * 新增成员:Key
74
+ * 新增成员:ManagedIds, TransManagedIds
75
+
76
+ * [SecurityConfig](https://cloud.tencent.com/document/api/1552/73155#SecurityConfig)
90
77
 
78
+ * 新增成员:ExceptConfig, DropPageConfig
91
79
 
92
80
 
93
81
 
94
- ## 云点播(vod) 版本:2018-07-17
95
82
 
96
- ### 117 次发布
83
+ ## 私有网络(vpc) 版本:2017-03-12
97
84
 
98
- 发布时间:2022-09-01 06:57:37
85
+ ### 第 123 次发布
86
+
87
+ 发布时间:2022-09-05 06:59:01
99
88
 
100
89
  本次发布包含了以下内容:
101
90
 
102
91
  改善已有的文档。
103
92
 
104
- 修改接口:
105
-
106
- * [DescribeTaskDetail](https://cloud.tencent.com/document/api/266/33431)
107
-
108
- * 新增出参:ReviewAudioVideoTask
93
+ 新增接口:
109
94
 
95
+ * [DescribeTrafficPackages](https://cloud.tencent.com/document/api/215/80090)
110
96
 
111
97
  新增数据结构:
112
98
 
113
- * [ReviewAudioVideoSegmentItem](https://cloud.tencent.com/document/api/266/31773#ReviewAudioVideoSegmentItem)
114
- * [ReviewAudioVideoTask](https://cloud.tencent.com/document/api/266/31773#ReviewAudioVideoTask)
115
- * [ReviewAudioVideoTaskOutput](https://cloud.tencent.com/document/api/266/31773#ReviewAudioVideoTaskOutput)
116
-
117
- 修改数据结构:
118
-
119
- * [EventContent](https://cloud.tencent.com/document/api/266/31773#EventContent)
120
-
121
- * 新增成员:ReviewAudioVideoCompleteEvent
122
-
99
+ * [TrafficPackage](https://cloud.tencent.com/document/api/215/15824#TrafficPackage)
123
100
 
124
101
 
125
102
 
@@ -3630,6 +3607,25 @@
3630
3607
 
3631
3608
  ## 弹性伸缩(as) 版本:2018-04-19
3632
3609
 
3610
+ ### 第 57 次发布
3611
+
3612
+ 发布时间:2022-09-02 06:09:13
3613
+
3614
+ 本次发布包含了以下内容:
3615
+
3616
+ 改善已有的文档。
3617
+
3618
+ 修改接口:
3619
+
3620
+ * [ModifyLifecycleHook](https://cloud.tencent.com/document/api/377/73060)
3621
+
3622
+ * 新增入参:LifecycleCommand
3623
+
3624
+ * [UpgradeLifecycleHook](https://cloud.tencent.com/document/api/377/34451)
3625
+
3626
+ * 新增入参:LifecycleCommand
3627
+
3628
+
3633
3629
  ### 第 56 次发布
3634
3630
 
3635
3631
  发布时间:2022-09-01 06:08:45
@@ -4880,6 +4876,21 @@
4880
4876
 
4881
4877
  ## 语音识别(asr) 版本:2019-06-14
4882
4878
 
4879
+ ### 第 20 次发布
4880
+
4881
+ 发布时间:2022-09-02 06:09:54
4882
+
4883
+ 本次发布包含了以下内容:
4884
+
4885
+ 改善已有的文档。
4886
+
4887
+ 修改接口:
4888
+
4889
+ * [SentenceRecognition](https://cloud.tencent.com/document/api/1093/35646)
4890
+
4891
+ * 新增入参:CustomizationId
4892
+
4893
+
4883
4894
  ### 第 19 次发布
4884
4895
 
4885
4896
  发布时间:2022-04-12 06:06:07
@@ -7768,6 +7779,31 @@
7768
7779
 
7769
7780
  ## 品牌经营管家(bma) 版本:2021-06-24
7770
7781
 
7782
+ ### 第 6 次发布
7783
+
7784
+ 发布时间:2022-09-05 06:10:17
7785
+
7786
+ 本次发布包含了以下内容:
7787
+
7788
+ 改善已有的文档。
7789
+
7790
+ 新增接口:
7791
+
7792
+ * [[CreateCRRightFile](https://cloud.tencent.com/document/api/1296/80089)](https://cloud.tencent.com/document/api/#/#)
7793
+ * [[CreateCRTort](https://cloud.tencent.com/document/api/1296/80088)](https://cloud.tencent.com/document/api/#/#)
7794
+ * [[ModifyCRWhiteList](https://cloud.tencent.com/document/api/1296/80087)](https://cloud.tencent.com/document/api/#/#)
7795
+
7796
+ 修改接口:
7797
+
7798
+ * [ModifyCRMonitor](https://cloud.tencent.com/document/api/1296/78025)
7799
+
7800
+ * 新增入参:MonitorEnd
7801
+
7802
+
7803
+ 新增数据结构:
7804
+
7805
+ * [[File](https://cloud.tencent.com/document/api/1296/78030#File)](https://cloud.tencent.com/document/api/1296/78030#[File](https://cloud.tencent.com/document/api/1296/78030#File))
7806
+
7771
7807
  ### 第 5 次发布
7772
7808
 
7773
7809
  发布时间:2022-08-17 06:09:30
@@ -22735,6 +22771,21 @@
22735
22771
 
22736
22772
  ## 企业收付平台(cpdp) 版本:2019-08-20
22737
22773
 
22774
+ ### 第 84 次发布
22775
+
22776
+ 发布时间:2022-09-05 06:18:54
22777
+
22778
+ 本次发布包含了以下内容:
22779
+
22780
+ 改善已有的文档。
22781
+
22782
+ 修改接口:
22783
+
22784
+ * [CreateAcct](https://cloud.tencent.com/document/api/1122/40674)
22785
+
22786
+ * 新增入参:SubMerchantIdType, SubMerchantIdCode
22787
+
22788
+
22738
22789
  ### 第 83 次发布
22739
22790
 
22740
22791
  发布时间:2022-08-31 06:18:54
@@ -36806,6 +36857,28 @@
36806
36857
 
36807
36858
  ## Elasticsearch Service(es) 版本:2018-04-16
36808
36859
 
36860
+ ### 第 34 次发布
36861
+
36862
+ 发布时间:2022-09-02 06:30:38
36863
+
36864
+ 本次发布包含了以下内容:
36865
+
36866
+ 改善已有的文档。
36867
+
36868
+ 修改接口:
36869
+
36870
+ * [CreateInstance](https://cloud.tencent.com/document/api/845/30633)
36871
+
36872
+ * 新增入参:EnableHybridStorage
36873
+
36874
+
36875
+ 修改数据结构:
36876
+
36877
+ * [InstanceInfo](https://cloud.tencent.com/document/api/845/30634#InstanceInfo)
36878
+
36879
+ * 新增成员:EnableHybridStorage
36880
+
36881
+
36809
36882
  ### 第 33 次发布
36810
36883
 
36811
36884
  发布时间:2022-08-16 06:24:00
@@ -37584,6 +37657,36 @@
37584
37657
 
37585
37658
  ## 电子签服务(ess) 版本:2020-11-11
37586
37659
 
37660
+ ### 第 16 次发布
37661
+
37662
+ 发布时间:2022-09-02 06:31:01
37663
+
37664
+ 本次发布包含了以下内容:
37665
+
37666
+ 改善已有的文档。
37667
+
37668
+ 新增接口:
37669
+
37670
+ * [CreateFlowApprovers](https://cloud.tencent.com/document/api/1323/80033)
37671
+ * [DescribeFlowInfo](https://cloud.tencent.com/document/api/1323/80032)
37672
+
37673
+ 新增数据结构:
37674
+
37675
+ * [FillApproverInfo](https://cloud.tencent.com/document/api/1323/70369#FillApproverInfo)
37676
+ * [FlowApproverDetail](https://cloud.tencent.com/document/api/1323/70369#FlowApproverDetail)
37677
+ * [FlowDetailInfo](https://cloud.tencent.com/document/api/1323/70369#FlowDetailInfo)
37678
+
37679
+ 修改数据结构:
37680
+
37681
+ * [ApproverInfo](https://cloud.tencent.com/document/api/1323/70369#ApproverInfo)
37682
+
37683
+ * 新增成员:UserId, ApproverSource, CustomApproverTag
37684
+
37685
+ * [FlowCreateApprover](https://cloud.tencent.com/document/api/1323/70369#FlowCreateApprover)
37686
+
37687
+ * 新增成员:ApproverSource, CustomApproverTag
37688
+
37689
+
37587
37690
  ### 第 15 次发布
37588
37691
 
37589
37692
  发布时间:2022-08-29 00:06:53
@@ -38619,6 +38722,21 @@
38619
38722
 
38620
38723
  ## 人脸核身(faceid) 版本:2018-03-01
38621
38724
 
38725
+ ### 第 46 次发布
38726
+
38727
+ 发布时间:2022-09-02 06:31:36
38728
+
38729
+ 本次发布包含了以下内容:
38730
+
38731
+ 改善已有的文档。
38732
+
38733
+ 修改数据结构:
38734
+
38735
+ * [GetEidTokenConfig](https://cloud.tencent.com/document/api/1007/41958#GetEidTokenConfig)
38736
+
38737
+ * 新增成员:IntentionRecognition
38738
+
38739
+
38622
38740
  ### 第 45 次发布
38623
38741
 
38624
38742
  发布时间:2022-08-26 06:28:34
@@ -52447,6 +52565,21 @@
52447
52565
 
52448
52566
  ## 云监控(monitor) 版本:2018-07-24
52449
52567
 
52568
+ ### 第 57 次发布
52569
+
52570
+ 发布时间:2022-09-02 06:42:08
52571
+
52572
+ 本次发布包含了以下内容:
52573
+
52574
+ 改善已有的文档。
52575
+
52576
+ 修改数据结构:
52577
+
52578
+ * [PrometheusInstancesItem](https://cloud.tencent.com/document/api/248/30354#PrometheusInstancesItem)
52579
+
52580
+ * 新增成员:AlertRuleLimit, RecordingRuleLimit
52581
+
52582
+
52450
52583
  ### 第 56 次发布
52451
52584
 
52452
52585
  发布时间:2022-08-31 06:39:03
@@ -72877,6 +73010,34 @@
72877
73010
 
72878
73011
  ## 边缘安全加速平台(teo) 版本:2022-01-06
72879
73012
 
73013
+ ### 第 24 次发布
73014
+
73015
+ 发布时间:2022-09-05 06:51:57
73016
+
73017
+ 本次发布包含了以下内容:
73018
+
73019
+ 改善已有的文档。
73020
+
73021
+ 新增数据结构:
73022
+
73023
+ * [[DropPageConfig](https://cloud.tencent.com/document/api/1552/73155#DropPageConfig)](https://cloud.tencent.com/document/api/1552/73155#[DropPageConfig](https://cloud.tencent.com/document/api/1552/73155#DropPageConfig))
73024
+ * [[DropPageDetail](https://cloud.tencent.com/document/api/1552/73155#DropPageDetail)](https://cloud.tencent.com/document/api/1552/73155#[DropPageDetail](https://cloud.tencent.com/document/api/1552/73155#DropPageDetail))
73025
+ * [[ExceptConfig](https://cloud.tencent.com/document/api/1552/73155#ExceptConfig)](https://cloud.tencent.com/document/api/1552/73155#[ExceptConfig](https://cloud.tencent.com/document/api/1552/73155#ExceptConfig))
73026
+ * [[ExceptUserRule](https://cloud.tencent.com/document/api/1552/73155#ExceptUserRule)](https://cloud.tencent.com/document/api/1552/73155#[ExceptUserRule](https://cloud.tencent.com/document/api/1552/73155#ExceptUserRule))
73027
+ * [[ExceptUserRuleCondition](https://cloud.tencent.com/document/api/1552/73155#ExceptUserRuleCondition)](https://cloud.tencent.com/document/api/1552/73155#[ExceptUserRuleCondition](https://cloud.tencent.com/document/api/1552/73155#ExceptUserRuleCondition))
73028
+ * [[ExceptUserRuleScope](https://cloud.tencent.com/document/api/1552/73155#ExceptUserRuleScope)](https://cloud.tencent.com/document/api/1552/73155#[ExceptUserRuleScope](https://cloud.tencent.com/document/api/1552/73155#ExceptUserRuleScope))
73029
+
73030
+ 修改数据结构:
73031
+
73032
+ * [BotPortraitRule](https://cloud.tencent.com/document/api/1552/73155#BotPortraitRule)
73033
+
73034
+ * 新增成员:ManagedIds, TransManagedIds
73035
+
73036
+ * [SecurityConfig](https://cloud.tencent.com/document/api/1552/73155#SecurityConfig)
73037
+
73038
+ * 新增成员:ExceptConfig, DropPageConfig
73039
+
73040
+
72880
73041
  ### 第 23 次发布
72881
73042
 
72882
73043
  发布时间:2022-08-30 06:54:55
@@ -78663,6 +78824,21 @@
78663
78824
 
78664
78825
  ## T-Sec-安心平台(RP)(trp) 版本:2021-05-15
78665
78826
 
78827
+ ### 第 4 次发布
78828
+
78829
+ 发布时间:2022-09-02 07:00:24
78830
+
78831
+ 本次发布包含了以下内容:
78832
+
78833
+ 改善已有的文档。
78834
+
78835
+ 修改接口:
78836
+
78837
+ * [CreateCodeBatch](https://cloud.tencent.com/document/api/1458/75029)
78838
+
78839
+ * 新增入参:CloneId
78840
+
78841
+
78666
78842
  ### 第 3 次发布
78667
78843
 
78668
78844
  发布时间:2022-09-01 06:55:12
@@ -78684,7 +78860,7 @@
78684
78860
 
78685
78861
  新增数据结构:
78686
78862
 
78687
- * [[PhaseData](https://cloud.tencent.com/document/api/1458/75030#PhaseData)](https://cloud.tencent.com/document/api/1458/75030#[PhaseData](https://cloud.tencent.com/document/api/1458/75030#PhaseData))
78863
+ * [PhaseData](https://cloud.tencent.com/document/api/1458/75030#PhaseData)
78688
78864
 
78689
78865
  修改数据结构:
78690
78866
 
@@ -82500,6 +82676,47 @@
82500
82676
 
82501
82677
 
82502
82678
 
82679
+ ## 视频内容安全(vm) 版本:2021-09-22
82680
+
82681
+ ### 第 1 次发布
82682
+
82683
+ 发布时间:2022-09-01 20:31:39
82684
+
82685
+ 本次发布包含了以下内容:
82686
+
82687
+ 改善已有的文档。
82688
+
82689
+ 新增接口:
82690
+
82691
+ * [CancelTask](https://cloud.tencent.com/document/api/1265/80018)
82692
+ * [CreateVideoModerationTask](https://cloud.tencent.com/document/api/1265/80017)
82693
+ * [DescribeTaskDetail](https://cloud.tencent.com/document/api/1265/80016)
82694
+ * [DescribeTasks](https://cloud.tencent.com/document/api/1265/80015)
82695
+
82696
+ 新增数据结构:
82697
+
82698
+ * [AudioResult](https://cloud.tencent.com/document/api/1265/80019#AudioResult)
82699
+ * [AudioResultDetailLanguageResult](https://cloud.tencent.com/document/api/1265/80019#AudioResultDetailLanguageResult)
82700
+ * [AudioResultDetailMoanResult](https://cloud.tencent.com/document/api/1265/80019#AudioResultDetailMoanResult)
82701
+ * [AudioResultDetailTextResult](https://cloud.tencent.com/document/api/1265/80019#AudioResultDetailTextResult)
82702
+ * [AudioSegments](https://cloud.tencent.com/document/api/1265/80019#AudioSegments)
82703
+ * [BucketInfo](https://cloud.tencent.com/document/api/1265/80019#BucketInfo)
82704
+ * [ImageResult](https://cloud.tencent.com/document/api/1265/80019#ImageResult)
82705
+ * [ImageResultResult](https://cloud.tencent.com/document/api/1265/80019#ImageResultResult)
82706
+ * [ImageResultsResultDetail](https://cloud.tencent.com/document/api/1265/80019#ImageResultsResultDetail)
82707
+ * [ImageResultsResultDetailLocation](https://cloud.tencent.com/document/api/1265/80019#ImageResultsResultDetailLocation)
82708
+ * [ImageSegments](https://cloud.tencent.com/document/api/1265/80019#ImageSegments)
82709
+ * [InputInfo](https://cloud.tencent.com/document/api/1265/80019#InputInfo)
82710
+ * [MediaInfo](https://cloud.tencent.com/document/api/1265/80019#MediaInfo)
82711
+ * [StorageInfo](https://cloud.tencent.com/document/api/1265/80019#StorageInfo)
82712
+ * [TaskData](https://cloud.tencent.com/document/api/1265/80019#TaskData)
82713
+ * [TaskFilter](https://cloud.tencent.com/document/api/1265/80019#TaskFilter)
82714
+ * [TaskInput](https://cloud.tencent.com/document/api/1265/80019#TaskInput)
82715
+ * [TaskLabel](https://cloud.tencent.com/document/api/1265/80019#TaskLabel)
82716
+ * [TaskResult](https://cloud.tencent.com/document/api/1265/80019#TaskResult)
82717
+
82718
+
82719
+
82503
82720
 
82504
82721
  ## 语音消息(vms) 版本:2020-09-02
82505
82722
 
@@ -82540,6 +82757,21 @@
82540
82757
 
82541
82758
  ## 云点播(vod) 版本:2018-07-17
82542
82759
 
82760
+ ### 第 118 次发布
82761
+
82762
+ 发布时间:2022-09-02 07:03:01
82763
+
82764
+ 本次发布包含了以下内容:
82765
+
82766
+ 改善已有的文档。
82767
+
82768
+ 修改数据结构:
82769
+
82770
+ * [ProductInstance](https://cloud.tencent.com/document/api/266/31773#ProductInstance)
82771
+
82772
+ * 新增成员:RenewStatus
82773
+
82774
+
82543
82775
  ### 第 117 次发布
82544
82776
 
82545
82777
  发布时间:2022-09-01 06:57:37
@@ -82557,9 +82789,9 @@
82557
82789
 
82558
82790
  新增数据结构:
82559
82791
 
82560
- * [[ReviewAudioVideoSegmentItem](https://cloud.tencent.com/document/api/266/31773#ReviewAudioVideoSegmentItem)](https://cloud.tencent.com/document/api/266/31773#[ReviewAudioVideoSegmentItem](https://cloud.tencent.com/document/api/266/31773#ReviewAudioVideoSegmentItem))
82561
- * [[ReviewAudioVideoTask](https://cloud.tencent.com/document/api/266/31773#ReviewAudioVideoTask)](https://cloud.tencent.com/document/api/266/31773#[ReviewAudioVideoTask](https://cloud.tencent.com/document/api/266/31773#ReviewAudioVideoTask))
82562
- * [[ReviewAudioVideoTaskOutput](https://cloud.tencent.com/document/api/266/31773#ReviewAudioVideoTaskOutput)](https://cloud.tencent.com/document/api/266/31773#[ReviewAudioVideoTaskOutput](https://cloud.tencent.com/document/api/266/31773#ReviewAudioVideoTaskOutput))
82792
+ * [ReviewAudioVideoSegmentItem](https://cloud.tencent.com/document/api/266/31773#ReviewAudioVideoSegmentItem)
82793
+ * [ReviewAudioVideoTask](https://cloud.tencent.com/document/api/266/31773#ReviewAudioVideoTask)
82794
+ * [ReviewAudioVideoTaskOutput](https://cloud.tencent.com/document/api/266/31773#ReviewAudioVideoTaskOutput)
82563
82795
 
82564
82796
  修改数据结构:
82565
82797
 
@@ -85721,6 +85953,22 @@
85721
85953
 
85722
85954
  ## 私有网络(vpc) 版本:2017-03-12
85723
85955
 
85956
+ ### 第 123 次发布
85957
+
85958
+ 发布时间:2022-09-05 06:59:01
85959
+
85960
+ 本次发布包含了以下内容:
85961
+
85962
+ 改善已有的文档。
85963
+
85964
+ 新增接口:
85965
+
85966
+ * [[DescribeTrafficPackages](https://cloud.tencent.com/document/api/215/80090)](https://cloud.tencent.com/document/api/#/#)
85967
+
85968
+ 新增数据结构:
85969
+
85970
+ * [[TrafficPackage](https://cloud.tencent.com/document/api/215/15824#TrafficPackage)](https://cloud.tencent.com/document/api/215/15824#[TrafficPackage](https://cloud.tencent.com/document/api/215/15824#TrafficPackage))
85971
+
85724
85972
  ### 第 122 次发布
85725
85973
 
85726
85974
  发布时间:2022-08-10 06:57:28
@@ -88621,6 +88869,29 @@
88621
88869
 
88622
88870
  ## Web 应用防火墙(waf) 版本:2018-01-25
88623
88871
 
88872
+ ### 第 16 次发布
88873
+
88874
+ 发布时间:2022-09-02 07:06:31
88875
+
88876
+ 本次发布包含了以下内容:
88877
+
88878
+ 改善已有的文档。
88879
+
88880
+ 新增数据结构:
88881
+
88882
+ * [BotQPS](https://cloud.tencent.com/document/api/627/53609#BotQPS)
88883
+
88884
+ 修改数据结构:
88885
+
88886
+ * [BotPkg](https://cloud.tencent.com/document/api/627/53609#BotPkg)
88887
+
88888
+ * 新增成员:Type
88889
+
88890
+ * [InstanceInfo](https://cloud.tencent.com/document/api/627/53609#InstanceInfo)
88891
+
88892
+ * 新增成员:BotQPS
88893
+
88894
+
88624
88895
  ### 第 15 次发布
88625
88896
 
88626
88897
  发布时间:2022-07-29 06:18:30
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs",
3
- "version": "4.0.433",
3
+ "version": "4.0.436",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "tencentcloud/index.js",
6
6
  "scripts": {