tencentcloud-sdk-nodejs 4.0.456 → 4.0.458
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.
- package/CHANGELOG.md +312 -0
- package/SERVICE_CHANGELOG.md +309 -88
- package/package.json +1 -1
- package/products.md +18 -18
- package/src/common/abstract_client.ts +11 -1
- package/src/common/http/fetch.ts +12 -5
- package/src/common/http/http_connection.ts +23 -19
- package/src/common/interface.ts +11 -0
- package/src/common/sdk_version.ts +1 -1
- package/src/services/batch/v20170312/batch_models.ts +1 -1
- package/src/services/bma/v20210624/bma_client.ts +12 -11
- package/src/services/bma/v20210624/bma_models.ts +149 -149
- package/src/services/cdb/v20170320/cdb_client.ts +2 -1
- package/src/services/cdb/v20170320/cdb_models.ts +162 -10
- package/src/services/cpdp/v20190820/cpdp_client.ts +13 -0
- package/src/services/cpdp/v20190820/cpdp_models.ts +92 -0
- package/src/services/cvm/v20170312/cvm_client.ts +1 -1
- package/src/services/cvm/v20170312/cvm_models.ts +5 -5
- package/src/services/cwp/v20180228/cwp_client.ts +70 -19
- package/src/services/cwp/v20180228/cwp_models.ts +627 -215
- package/src/services/essbasic/v20210526/essbasic_models.ts +1 -1
- package/src/services/mariadb/v20170312/mariadb_client.ts +22 -60
- package/src/services/mariadb/v20170312/mariadb_models.ts +51 -358
- package/src/services/monitor/v20180724/monitor_models.ts +5 -0
- package/src/services/redis/v20180412/redis_models.ts +10 -10
- package/src/services/tcm/v20210413/tcm_client.ts +44 -8
- package/src/services/tcm/v20210413/tcm_models.ts +165 -39
- package/src/services/teo/v20220901/teo_models.ts +18 -5
- package/src/services/tse/v20201207/tse_client.ts +12 -0
- package/src/services/tse/v20201207/tse_models.ts +30 -0
- package/src/services/tsf/v20180326/tsf_client.ts +2 -0
- package/src/services/tsf/v20180326/tsf_models.ts +74 -1
- package/src/services/vod/v20180717/vod_client.ts +2 -2
- package/src/services/vod/v20180717/vod_models.ts +16 -0
- package/src/services/wav/v20210129/wav_models.ts +6 -0
- package/src/services/wedata/v20210820/wedata_client.ts +15 -3
- package/src/services/wedata/v20210820/wedata_models.ts +101 -44
- package/tencentcloud/common/abstract_client.d.ts +5 -1
- package/tencentcloud/common/abstract_client.js +6 -0
- package/tencentcloud/common/http/fetch.d.ts +6 -1
- package/tencentcloud/common/http/fetch.js +3 -2
- package/tencentcloud/common/http/http_connection.d.ts +10 -2
- package/tencentcloud/common/http/http_connection.js +8 -2
- package/tencentcloud/common/interface.d.ts +12 -0
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/batch/v20170312/batch_models.d.ts +1 -1
- package/tencentcloud/services/bma/v20210624/bma_client.d.ts +11 -10
- package/tencentcloud/services/bma/v20210624/bma_client.js +11 -10
- package/tencentcloud/services/bma/v20210624/bma_models.d.ts +148 -148
- package/tencentcloud/services/cdb/v20170320/cdb_client.d.ts +1 -1
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +133 -10
- package/tencentcloud/services/cpdp/v20190820/cpdp_client.d.ts +5 -1
- package/tencentcloud/services/cpdp/v20190820/cpdp_client.js +6 -0
- package/tencentcloud/services/cpdp/v20190820/cpdp_models.d.ts +78 -0
- package/tencentcloud/services/cvm/v20170312/cvm_client.d.ts +1 -1
- package/tencentcloud/services/cvm/v20170312/cvm_client.js +1 -1
- package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +5 -5
- package/tencentcloud/services/cwp/v20180228/cwp_client.d.ts +21 -5
- package/tencentcloud/services/cwp/v20180228/cwp_client.js +30 -6
- package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +526 -178
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +1 -1
- package/tencentcloud/services/mariadb/v20170312/mariadb_client.d.ts +7 -19
- package/tencentcloud/services/mariadb/v20170312/mariadb_client.js +9 -27
- package/tencentcloud/services/mariadb/v20170312/mariadb_models.d.ts +45 -299
- package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +4 -0
- package/tencentcloud/services/redis/v20180412/redis_models.d.ts +10 -10
- package/tencentcloud/services/tcm/v20210413/tcm_client.d.ts +15 -3
- package/tencentcloud/services/tcm/v20210413/tcm_client.js +21 -3
- package/tencentcloud/services/tcm/v20210413/tcm_models.d.ts +141 -34
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +17 -5
- package/tencentcloud/services/tse/v20201207/tse_client.d.ts +5 -1
- package/tencentcloud/services/tse/v20201207/tse_client.js +6 -0
- package/tencentcloud/services/tse/v20201207/tse_models.d.ts +26 -0
- package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +62 -1
- package/tencentcloud/services/vod/v20180717/vod_client.d.ts +2 -2
- package/tencentcloud/services/vod/v20180717/vod_client.js +2 -2
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +14 -0
- package/tencentcloud/services/wav/v20210129/wav_models.d.ts +5 -0
- package/tencentcloud/services/wedata/v20210820/wedata_client.d.ts +5 -1
- package/tencentcloud/services/wedata/v20210820/wedata_client.js +6 -0
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +86 -38
- package/test/cpdp.v20190820.test.js +10 -0
- package/test/cwp.v20180228.test.js +44 -4
- package/test/mariadb.v20170312.test.js +6 -36
- package/test/tcm.v20210413.test.js +32 -2
- package/test/tse.v20201207.test.js +10 -0
- package/test/wedata.v20210820.test.js +10 -0
package/SERVICE_CHANGELOG.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# 本版本更新包含以下内容:
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## 品牌经营管家(bma) 版本:2021-06-24
|
|
4
4
|
|
|
5
5
|
### 第 10 次发布
|
|
6
6
|
|
|
7
|
-
发布时间:2022-10-
|
|
7
|
+
发布时间:2022-10-12 06:11:10
|
|
8
8
|
|
|
9
9
|
本次发布包含了以下内容:
|
|
10
10
|
|
|
@@ -12,18 +12,18 @@
|
|
|
12
12
|
|
|
13
13
|
修改接口:
|
|
14
14
|
|
|
15
|
-
* [
|
|
15
|
+
* [CreateCRUserVerify](https://cloud.tencent.com/document/api/1296/79150)
|
|
16
16
|
|
|
17
|
-
*
|
|
17
|
+
* <font color="#dd0000">**修改入参**:</font>VerificationCode
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
## 主机安全(cwp) 版本:2018-02-28
|
|
23
23
|
|
|
24
|
-
### 第
|
|
24
|
+
### 第 56 次发布
|
|
25
25
|
|
|
26
|
-
发布时间:2022-10-
|
|
26
|
+
发布时间:2022-10-12 06:24:06
|
|
27
27
|
|
|
28
28
|
本次发布包含了以下内容:
|
|
29
29
|
|
|
@@ -31,59 +31,47 @@
|
|
|
31
31
|
|
|
32
32
|
新增接口:
|
|
33
33
|
|
|
34
|
-
* [
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
## 云数据库 MongoDB(mongodb) 版本:2019-07-25
|
|
39
|
-
|
|
40
|
-
### 第 25 次发布
|
|
41
|
-
|
|
42
|
-
发布时间:2022-10-10 06:31:49
|
|
43
|
-
|
|
44
|
-
本次发布包含了以下内容:
|
|
45
|
-
|
|
46
|
-
改善已有的文档。
|
|
47
|
-
|
|
48
|
-
修改接口:
|
|
49
|
-
|
|
50
|
-
* [InquirePriceCreateDBInstances](https://cloud.tencent.com/document/api/240/43666)
|
|
51
|
-
|
|
52
|
-
* 新增入参:InstanceChargeType, MongosCpu, MongosMemory, MongosNum, ConfigServerCpu, ConfigServerMemory, ConfigServerVolume
|
|
53
|
-
|
|
54
|
-
* <font color="#dd0000">**修改入参**:</font>Period
|
|
55
|
-
|
|
34
|
+
* [DescribeBaselineItemDetectList](https://cloud.tencent.com/document/api/296/81351)
|
|
35
|
+
* [DescribeBaselineItemList](https://cloud.tencent.com/document/api/296/81350)
|
|
36
|
+
* [StartBaselineDetect](https://cloud.tencent.com/document/api/296/81349)
|
|
37
|
+
* [SyncBaselineDetectSummary](https://cloud.tencent.com/document/api/296/81348)
|
|
56
38
|
|
|
39
|
+
新增数据结构:
|
|
57
40
|
|
|
41
|
+
* [BaselineDetectParam](https://cloud.tencent.com/document/api/296/19867#BaselineDetectParam)
|
|
42
|
+
* [BaselineItem](https://cloud.tencent.com/document/api/296/19867#BaselineItem)
|
|
43
|
+
* [BaselineItemDetect](https://cloud.tencent.com/document/api/296/19867#BaselineItemDetect)
|
|
58
44
|
|
|
59
|
-
## 云数据库 MongoDB(mongodb) 版本:2018-04-08
|
|
60
45
|
|
|
61
46
|
|
|
47
|
+
## 云数据库 MariaDB(mariadb) 版本:2017-03-12
|
|
62
48
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
### 第 64 次发布
|
|
49
|
+
### 第 41 次发布
|
|
66
50
|
|
|
67
|
-
发布时间:2022-10-
|
|
51
|
+
发布时间:2022-10-12 06:43:12
|
|
68
52
|
|
|
69
53
|
本次发布包含了以下内容:
|
|
70
54
|
|
|
71
55
|
改善已有的文档。
|
|
72
56
|
|
|
73
|
-
|
|
57
|
+
<font color="#dd0000">**删除接口**:</font>
|
|
74
58
|
|
|
75
|
-
*
|
|
59
|
+
* DescribeDBPerformance
|
|
60
|
+
* DescribeDBPerformanceDetails
|
|
61
|
+
* DescribeSqlLogs
|
|
76
62
|
|
|
77
|
-
|
|
63
|
+
<font color="#dd0000">**删除数据结构**:</font>
|
|
78
64
|
|
|
65
|
+
* PerformanceMonitorSet
|
|
66
|
+
* SqlLogItem
|
|
79
67
|
|
|
80
68
|
|
|
81
69
|
|
|
82
|
-
##
|
|
70
|
+
## 腾讯云微服务引擎(tse) 版本:2020-12-07
|
|
83
71
|
|
|
84
|
-
### 第
|
|
72
|
+
### 第 28 次发布
|
|
85
73
|
|
|
86
|
-
发布时间:2022-10-
|
|
74
|
+
发布时间:2022-10-12 07:03:55
|
|
87
75
|
|
|
88
76
|
本次发布包含了以下内容:
|
|
89
77
|
|
|
@@ -91,75 +79,57 @@
|
|
|
91
79
|
|
|
92
80
|
新增接口:
|
|
93
81
|
|
|
94
|
-
* [
|
|
95
|
-
* [OpenSSL](https://cloud.tencent.com/document/api/239/81239)
|
|
82
|
+
* [UpdateEngineInternetAccess](https://cloud.tencent.com/document/api/1364/81352)
|
|
96
83
|
|
|
97
84
|
|
|
98
85
|
|
|
99
|
-
##
|
|
86
|
+
## 云点播(vod) 版本:2018-07-17
|
|
100
87
|
|
|
101
|
-
### 第
|
|
88
|
+
### 第 121 次发布
|
|
102
89
|
|
|
103
|
-
发布时间:2022-10-
|
|
90
|
+
发布时间:2022-10-12 07:06:19
|
|
104
91
|
|
|
105
92
|
本次发布包含了以下内容:
|
|
106
93
|
|
|
107
94
|
改善已有的文档。
|
|
108
95
|
|
|
109
|
-
|
|
96
|
+
修改数据结构:
|
|
110
97
|
|
|
111
|
-
* [
|
|
98
|
+
* [VideoTemplateInfo](https://cloud.tencent.com/document/api/266/31773#VideoTemplateInfo)
|
|
112
99
|
|
|
113
|
-
*
|
|
100
|
+
* 新增成员:CodecTag
|
|
114
101
|
|
|
115
|
-
* [
|
|
102
|
+
* [VideoTemplateInfoForUpdate](https://cloud.tencent.com/document/api/266/31773#VideoTemplateInfoForUpdate)
|
|
116
103
|
|
|
117
|
-
*
|
|
104
|
+
* 新增成员:CodecTag
|
|
118
105
|
|
|
119
106
|
|
|
120
107
|
|
|
121
108
|
|
|
122
|
-
##
|
|
109
|
+
## 企业微信汽车行业版(wav) 版本:2021-01-29
|
|
123
110
|
|
|
124
|
-
### 第
|
|
111
|
+
### 第 11 次发布
|
|
125
112
|
|
|
126
|
-
发布时间:2022-10-
|
|
113
|
+
发布时间:2022-10-12 07:10:28
|
|
127
114
|
|
|
128
115
|
本次发布包含了以下内容:
|
|
129
116
|
|
|
130
117
|
改善已有的文档。
|
|
131
118
|
|
|
132
|
-
新增接口:
|
|
133
|
-
|
|
134
|
-
* [CreateAliasDomain](https://cloud.tencent.com/document/api/1552/81247)
|
|
135
|
-
* [DeleteAliasDomain](https://cloud.tencent.com/document/api/1552/81246)
|
|
136
|
-
* [DescribeAliasDomains](https://cloud.tencent.com/document/api/1552/81245)
|
|
137
|
-
* [ModifyAliasDomain](https://cloud.tencent.com/document/api/1552/81244)
|
|
138
|
-
* [ModifyAliasDomainStatus](https://cloud.tencent.com/document/api/1552/81243)
|
|
139
|
-
* [ReclaimAliasDomain](https://cloud.tencent.com/document/api/1552/81242)
|
|
140
|
-
|
|
141
|
-
新增数据结构:
|
|
142
|
-
|
|
143
|
-
* [AliasDomain](https://cloud.tencent.com/document/api/1552/80721#AliasDomain)
|
|
144
|
-
|
|
145
119
|
修改数据结构:
|
|
146
120
|
|
|
147
|
-
* [
|
|
148
|
-
|
|
149
|
-
* 新增成员:Action
|
|
150
|
-
|
|
151
|
-
|
|
121
|
+
* [ClueInfoDetail](https://cloud.tencent.com/document/api/1318/56791#ClueInfoDetail)
|
|
152
122
|
|
|
123
|
+
* 新增成员:UserName
|
|
153
124
|
|
|
154
|
-
## 边缘安全加速平台(teo) 版本:2022-01-06
|
|
155
125
|
|
|
156
126
|
|
|
157
127
|
|
|
158
|
-
##
|
|
128
|
+
## 数据开发治理平台 WeData(wedata) 版本:2021-08-20
|
|
159
129
|
|
|
160
|
-
### 第
|
|
130
|
+
### 第 7 次发布
|
|
161
131
|
|
|
162
|
-
发布时间:2022-10-
|
|
132
|
+
发布时间:2022-10-12 07:10:44
|
|
163
133
|
|
|
164
134
|
本次发布包含了以下内容:
|
|
165
135
|
|
|
@@ -167,8 +137,7 @@
|
|
|
167
137
|
|
|
168
138
|
新增接口:
|
|
169
139
|
|
|
170
|
-
* [
|
|
171
|
-
* [UpdateEdgeClusterVersion](https://cloud.tencent.com/document/api/457/81248)
|
|
140
|
+
* [CreateCustomFunction](https://cloud.tencent.com/document/api/1267/81354)
|
|
172
141
|
|
|
173
142
|
|
|
174
143
|
|
|
@@ -7914,6 +7883,21 @@
|
|
|
7914
7883
|
|
|
7915
7884
|
## 品牌经营管家(bma) 版本:2021-06-24
|
|
7916
7885
|
|
|
7886
|
+
### 第 10 次发布
|
|
7887
|
+
|
|
7888
|
+
发布时间:2022-10-12 06:11:10
|
|
7889
|
+
|
|
7890
|
+
本次发布包含了以下内容:
|
|
7891
|
+
|
|
7892
|
+
改善已有的文档。
|
|
7893
|
+
|
|
7894
|
+
修改接口:
|
|
7895
|
+
|
|
7896
|
+
* [CreateCRUserVerify](https://cloud.tencent.com/document/api/1296/79150)
|
|
7897
|
+
|
|
7898
|
+
* <font color="#dd0000">**修改入参**:</font>VerificationCode
|
|
7899
|
+
|
|
7900
|
+
|
|
7917
7901
|
### 第 9 次发布
|
|
7918
7902
|
|
|
7919
7903
|
发布时间:2022-09-28 06:10:28
|
|
@@ -11746,6 +11730,52 @@
|
|
|
11746
11730
|
|
|
11747
11731
|
## 云数据库 MySQL(cdb) 版本:2017-03-20
|
|
11748
11732
|
|
|
11733
|
+
### 第 103 次发布
|
|
11734
|
+
|
|
11735
|
+
发布时间:2022-10-11 06:14:09
|
|
11736
|
+
|
|
11737
|
+
本次发布包含了以下内容:
|
|
11738
|
+
|
|
11739
|
+
改善已有的文档。
|
|
11740
|
+
|
|
11741
|
+
修改接口:
|
|
11742
|
+
|
|
11743
|
+
* [DescribeBackupConfig](https://cloud.tencent.com/document/api/236/15837)
|
|
11744
|
+
|
|
11745
|
+
* 新增出参:EnableBackupArchive, BackupArchiveDays, EnableBinlogArchive, BinlogArchiveDays
|
|
11746
|
+
|
|
11747
|
+
* [DescribeBackupOverview](https://cloud.tencent.com/document/api/236/41229)
|
|
11748
|
+
|
|
11749
|
+
* 新增出参:RemoteBackupVolume, BackupArchiveVolume
|
|
11750
|
+
|
|
11751
|
+
* [DescribeBinlogBackupOverview](https://cloud.tencent.com/document/api/236/41227)
|
|
11752
|
+
|
|
11753
|
+
* 新增出参:BinlogArchiveVolume, BinlogArchiveCount
|
|
11754
|
+
|
|
11755
|
+
* [DescribeDataBackupOverview](https://cloud.tencent.com/document/api/236/41226)
|
|
11756
|
+
|
|
11757
|
+
* 新增出参:DataBackupArchiveVolume, DataBackupArchiveCount
|
|
11758
|
+
|
|
11759
|
+
* [ModifyBackupConfig](https://cloud.tencent.com/document/api/236/15839)
|
|
11760
|
+
|
|
11761
|
+
* 新增入参:EnableBackupArchive, BackupArchiveDays, BinlogArchiveDays, EnableBinlogArchive
|
|
11762
|
+
|
|
11763
|
+
|
|
11764
|
+
新增数据结构:
|
|
11765
|
+
|
|
11766
|
+
* [RemoteBackupInfo](https://cloud.tencent.com/document/api/236/15878#RemoteBackupInfo)
|
|
11767
|
+
|
|
11768
|
+
修改数据结构:
|
|
11769
|
+
|
|
11770
|
+
* [BackupInfo](https://cloud.tencent.com/document/api/236/15878#BackupInfo)
|
|
11771
|
+
|
|
11772
|
+
* 新增成员:Region, RemoteInfo, CosStorageType, InstanceId
|
|
11773
|
+
|
|
11774
|
+
* [BinlogInfo](https://cloud.tencent.com/document/api/236/15878#BinlogInfo)
|
|
11775
|
+
|
|
11776
|
+
* 新增成员:Region, Status, RemoteInfo, CosStorageType, InstanceId
|
|
11777
|
+
|
|
11778
|
+
|
|
11749
11779
|
### 第 102 次发布
|
|
11750
11780
|
|
|
11751
11781
|
发布时间:2022-09-29 06:13:46
|
|
@@ -23570,6 +23600,22 @@
|
|
|
23570
23600
|
|
|
23571
23601
|
## 企业收付平台(cpdp) 版本:2019-08-20
|
|
23572
23602
|
|
|
23603
|
+
### 第 87 次发布
|
|
23604
|
+
|
|
23605
|
+
发布时间:2022-10-11 06:20:53
|
|
23606
|
+
|
|
23607
|
+
本次发布包含了以下内容:
|
|
23608
|
+
|
|
23609
|
+
改善已有的文档。
|
|
23610
|
+
|
|
23611
|
+
新增接口:
|
|
23612
|
+
|
|
23613
|
+
* [QueryCompanyTitle](https://cloud.tencent.com/document/api/1122/81311)
|
|
23614
|
+
|
|
23615
|
+
新增数据结构:
|
|
23616
|
+
|
|
23617
|
+
* [CompanyTitleResult](https://cloud.tencent.com/document/api/1122/40683#CompanyTitleResult)
|
|
23618
|
+
|
|
23573
23619
|
### 第 86 次发布
|
|
23574
23620
|
|
|
23575
23621
|
发布时间:2022-09-27 06:17:24
|
|
@@ -27810,6 +27856,27 @@
|
|
|
27810
27856
|
|
|
27811
27857
|
## 主机安全(cwp) 版本:2018-02-28
|
|
27812
27858
|
|
|
27859
|
+
### 第 56 次发布
|
|
27860
|
+
|
|
27861
|
+
发布时间:2022-10-12 06:24:06
|
|
27862
|
+
|
|
27863
|
+
本次发布包含了以下内容:
|
|
27864
|
+
|
|
27865
|
+
改善已有的文档。
|
|
27866
|
+
|
|
27867
|
+
新增接口:
|
|
27868
|
+
|
|
27869
|
+
* [[DescribeBaselineItemDetectList](https://cloud.tencent.com/document/api/296/81351)](https://cloud.tencent.com/document/api/#/#)
|
|
27870
|
+
* [[DescribeBaselineItemList](https://cloud.tencent.com/document/api/296/81350)](https://cloud.tencent.com/document/api/#/#)
|
|
27871
|
+
* [[StartBaselineDetect](https://cloud.tencent.com/document/api/296/81349)](https://cloud.tencent.com/document/api/#/#)
|
|
27872
|
+
* [[SyncBaselineDetectSummary](https://cloud.tencent.com/document/api/296/81348)](https://cloud.tencent.com/document/api/#/#)
|
|
27873
|
+
|
|
27874
|
+
新增数据结构:
|
|
27875
|
+
|
|
27876
|
+
* [[BaselineDetectParam](https://cloud.tencent.com/document/api/296/19867#BaselineDetectParam)](https://cloud.tencent.com/document/api/296/19867#[BaselineDetectParam](https://cloud.tencent.com/document/api/296/19867#BaselineDetectParam))
|
|
27877
|
+
* [[BaselineItem](https://cloud.tencent.com/document/api/296/19867#BaselineItem)](https://cloud.tencent.com/document/api/296/19867#[BaselineItem](https://cloud.tencent.com/document/api/296/19867#BaselineItem))
|
|
27878
|
+
* [[BaselineItemDetect](https://cloud.tencent.com/document/api/296/19867#BaselineItemDetect)](https://cloud.tencent.com/document/api/296/19867#[BaselineItemDetect](https://cloud.tencent.com/document/api/296/19867#BaselineItemDetect))
|
|
27879
|
+
|
|
27813
27880
|
### 第 55 次发布
|
|
27814
27881
|
|
|
27815
27882
|
发布时间:2022-10-10 06:18:10
|
|
@@ -27820,7 +27887,7 @@
|
|
|
27820
27887
|
|
|
27821
27888
|
新增接口:
|
|
27822
27889
|
|
|
27823
|
-
* [
|
|
27890
|
+
* [DescribeAssetHostTotalCount](https://cloud.tencent.com/document/api/296/81238)
|
|
27824
27891
|
|
|
27825
27892
|
### 第 54 次发布
|
|
27826
27893
|
|
|
@@ -52380,6 +52447,25 @@
|
|
|
52380
52447
|
|
|
52381
52448
|
## 云数据库 MariaDB(mariadb) 版本:2017-03-12
|
|
52382
52449
|
|
|
52450
|
+
### 第 41 次发布
|
|
52451
|
+
|
|
52452
|
+
发布时间:2022-10-12 06:43:12
|
|
52453
|
+
|
|
52454
|
+
本次发布包含了以下内容:
|
|
52455
|
+
|
|
52456
|
+
改善已有的文档。
|
|
52457
|
+
|
|
52458
|
+
<font color="#dd0000">**删除接口**:</font>
|
|
52459
|
+
|
|
52460
|
+
* DescribeDBPerformance
|
|
52461
|
+
* DescribeDBPerformanceDetails
|
|
52462
|
+
* DescribeSqlLogs
|
|
52463
|
+
|
|
52464
|
+
<font color="#dd0000">**删除数据结构**:</font>
|
|
52465
|
+
|
|
52466
|
+
* PerformanceMonitorSet
|
|
52467
|
+
* SqlLogItem
|
|
52468
|
+
|
|
52383
52469
|
### 第 40 次发布
|
|
52384
52470
|
|
|
52385
52471
|
发布时间:2022-07-27 06:13:02
|
|
@@ -54265,6 +54351,21 @@
|
|
|
54265
54351
|
|
|
54266
54352
|
## 云监控(monitor) 版本:2018-07-24
|
|
54267
54353
|
|
|
54354
|
+
### 第 65 次发布
|
|
54355
|
+
|
|
54356
|
+
发布时间:2022-10-11 06:43:21
|
|
54357
|
+
|
|
54358
|
+
本次发布包含了以下内容:
|
|
54359
|
+
|
|
54360
|
+
改善已有的文档。
|
|
54361
|
+
|
|
54362
|
+
修改接口:
|
|
54363
|
+
|
|
54364
|
+
* [GetMonitorData](https://cloud.tencent.com/document/api/248/31014)
|
|
54365
|
+
|
|
54366
|
+
* 新增出参:Msg
|
|
54367
|
+
|
|
54368
|
+
|
|
54268
54369
|
### 第 64 次发布
|
|
54269
54370
|
|
|
54270
54371
|
发布时间:2022-10-10 06:32:08
|
|
@@ -62064,8 +62165,8 @@
|
|
|
62064
62165
|
|
|
62065
62166
|
新增接口:
|
|
62066
62167
|
|
|
62067
|
-
* [
|
|
62068
|
-
* [
|
|
62168
|
+
* [CloseSSL](https://cloud.tencent.com/document/api/239/81240)
|
|
62169
|
+
* [OpenSSL](https://cloud.tencent.com/document/api/239/81239)
|
|
62069
62170
|
|
|
62070
62171
|
### 第 54 次发布
|
|
62071
62172
|
|
|
@@ -71434,6 +71535,20 @@
|
|
|
71434
71535
|
|
|
71435
71536
|
## 服务网格(tcm) 版本:2021-04-13
|
|
71436
71537
|
|
|
71538
|
+
### 第 13 次发布
|
|
71539
|
+
|
|
71540
|
+
发布时间:2022-10-11 06:54:36
|
|
71541
|
+
|
|
71542
|
+
本次发布包含了以下内容:
|
|
71543
|
+
|
|
71544
|
+
改善已有的文档。
|
|
71545
|
+
|
|
71546
|
+
新增接口:
|
|
71547
|
+
|
|
71548
|
+
* [CreateMesh](https://cloud.tencent.com/document/api/1261/81314)
|
|
71549
|
+
* [DeleteMesh](https://cloud.tencent.com/document/api/1261/81313)
|
|
71550
|
+
* [ModifyMesh](https://cloud.tencent.com/document/api/1261/81312)
|
|
71551
|
+
|
|
71437
71552
|
### 第 12 次发布
|
|
71438
71553
|
|
|
71439
71554
|
发布时间:2022-09-26 06:52:58
|
|
@@ -76295,6 +76410,23 @@
|
|
|
76295
76410
|
|
|
76296
76411
|
## 边缘安全加速平台(teo) 版本:2022-09-01
|
|
76297
76412
|
|
|
76413
|
+
### 第 5 次发布
|
|
76414
|
+
|
|
76415
|
+
发布时间:2022-10-11 06:58:18
|
|
76416
|
+
|
|
76417
|
+
本次发布包含了以下内容:
|
|
76418
|
+
|
|
76419
|
+
改善已有的文档。
|
|
76420
|
+
|
|
76421
|
+
修改数据结构:
|
|
76422
|
+
|
|
76423
|
+
* [RuleCondition](https://cloud.tencent.com/document/api/1552/80721#RuleCondition)
|
|
76424
|
+
|
|
76425
|
+
* 新增成员:Name
|
|
76426
|
+
|
|
76427
|
+
* <font color="#dd0000">**修改成员**:</font>Values
|
|
76428
|
+
|
|
76429
|
+
|
|
76298
76430
|
### 第 4 次发布
|
|
76299
76431
|
|
|
76300
76432
|
发布时间:2022-10-10 06:43:20
|
|
@@ -76305,16 +76437,16 @@
|
|
|
76305
76437
|
|
|
76306
76438
|
新增接口:
|
|
76307
76439
|
|
|
76308
|
-
* [
|
|
76309
|
-
* [
|
|
76310
|
-
* [
|
|
76311
|
-
* [
|
|
76312
|
-
* [
|
|
76313
|
-
* [
|
|
76440
|
+
* [CreateAliasDomain](https://cloud.tencent.com/document/api/1552/81247)
|
|
76441
|
+
* [DeleteAliasDomain](https://cloud.tencent.com/document/api/1552/81246)
|
|
76442
|
+
* [DescribeAliasDomains](https://cloud.tencent.com/document/api/1552/81245)
|
|
76443
|
+
* [ModifyAliasDomain](https://cloud.tencent.com/document/api/1552/81244)
|
|
76444
|
+
* [ModifyAliasDomainStatus](https://cloud.tencent.com/document/api/1552/81243)
|
|
76445
|
+
* [ReclaimAliasDomain](https://cloud.tencent.com/document/api/1552/81242)
|
|
76314
76446
|
|
|
76315
76447
|
新增数据结构:
|
|
76316
76448
|
|
|
76317
|
-
* [
|
|
76449
|
+
* [AliasDomain](https://cloud.tencent.com/document/api/1552/80721#AliasDomain)
|
|
76318
76450
|
|
|
76319
76451
|
修改数据结构:
|
|
76320
76452
|
|
|
@@ -79007,8 +79139,8 @@
|
|
|
79007
79139
|
|
|
79008
79140
|
新增接口:
|
|
79009
79141
|
|
|
79010
|
-
* [
|
|
79011
|
-
* [
|
|
79142
|
+
* [DescribeEdgeClusterUpgradeInfo](https://cloud.tencent.com/document/api/457/81249)
|
|
79143
|
+
* [UpdateEdgeClusterVersion](https://cloud.tencent.com/document/api/457/81248)
|
|
79012
79144
|
|
|
79013
79145
|
### 第 123 次发布
|
|
79014
79146
|
|
|
@@ -82654,6 +82786,18 @@
|
|
|
82654
82786
|
|
|
82655
82787
|
## 腾讯云微服务引擎(tse) 版本:2020-12-07
|
|
82656
82788
|
|
|
82789
|
+
### 第 28 次发布
|
|
82790
|
+
|
|
82791
|
+
发布时间:2022-10-12 07:03:55
|
|
82792
|
+
|
|
82793
|
+
本次发布包含了以下内容:
|
|
82794
|
+
|
|
82795
|
+
改善已有的文档。
|
|
82796
|
+
|
|
82797
|
+
新增接口:
|
|
82798
|
+
|
|
82799
|
+
* [[UpdateEngineInternetAccess](https://cloud.tencent.com/document/api/1364/81352)](https://cloud.tencent.com/document/api/#/#)
|
|
82800
|
+
|
|
82657
82801
|
### 第 27 次发布
|
|
82658
82802
|
|
|
82659
82803
|
发布时间:2022-09-27 06:48:42
|
|
@@ -83170,6 +83314,37 @@
|
|
|
83170
83314
|
|
|
83171
83315
|
## 腾讯微服务平台 TSF(tsf) 版本:2018-03-26
|
|
83172
83316
|
|
|
83317
|
+
### 第 79 次发布
|
|
83318
|
+
|
|
83319
|
+
发布时间:2022-10-11 07:02:55
|
|
83320
|
+
|
|
83321
|
+
本次发布包含了以下内容:
|
|
83322
|
+
|
|
83323
|
+
改善已有的文档。
|
|
83324
|
+
|
|
83325
|
+
修改接口:
|
|
83326
|
+
|
|
83327
|
+
* [DeployContainerGroup](https://cloud.tencent.com/document/api/649/36071)
|
|
83328
|
+
|
|
83329
|
+
* 新增入参:AgentProfileList, WarmupSetting
|
|
83330
|
+
|
|
83331
|
+
* [DeployGroup](https://cloud.tencent.com/document/api/649/36070)
|
|
83332
|
+
|
|
83333
|
+
* 新增入参:AgentProfileList, WarmupSetting
|
|
83334
|
+
|
|
83335
|
+
|
|
83336
|
+
新增数据结构:
|
|
83337
|
+
|
|
83338
|
+
* [AgentProfile](https://cloud.tencent.com/document/api/649/36099#AgentProfile)
|
|
83339
|
+
* [WarmupSetting](https://cloud.tencent.com/document/api/649/36099#WarmupSetting)
|
|
83340
|
+
|
|
83341
|
+
修改数据结构:
|
|
83342
|
+
|
|
83343
|
+
* [VmGroup](https://cloud.tencent.com/document/api/649/36099#VmGroup)
|
|
83344
|
+
|
|
83345
|
+
* 新增成员:AgentProfileList, WarmupSetting
|
|
83346
|
+
|
|
83347
|
+
|
|
83173
83348
|
### 第 78 次发布
|
|
83174
83349
|
|
|
83175
83350
|
发布时间:2022-07-27 06:18:08
|
|
@@ -85870,6 +86045,25 @@
|
|
|
85870
86045
|
|
|
85871
86046
|
## 云点播(vod) 版本:2018-07-17
|
|
85872
86047
|
|
|
86048
|
+
### 第 121 次发布
|
|
86049
|
+
|
|
86050
|
+
发布时间:2022-10-12 07:06:19
|
|
86051
|
+
|
|
86052
|
+
本次发布包含了以下内容:
|
|
86053
|
+
|
|
86054
|
+
改善已有的文档。
|
|
86055
|
+
|
|
86056
|
+
修改数据结构:
|
|
86057
|
+
|
|
86058
|
+
* [VideoTemplateInfo](https://cloud.tencent.com/document/api/266/31773#VideoTemplateInfo)
|
|
86059
|
+
|
|
86060
|
+
* 新增成员:CodecTag
|
|
86061
|
+
|
|
86062
|
+
* [VideoTemplateInfoForUpdate](https://cloud.tencent.com/document/api/266/31773#VideoTemplateInfoForUpdate)
|
|
86063
|
+
|
|
86064
|
+
* 新增成员:CodecTag
|
|
86065
|
+
|
|
86066
|
+
|
|
85873
86067
|
### 第 120 次发布
|
|
85874
86068
|
|
|
85875
86069
|
发布时间:2022-09-16 06:48:25
|
|
@@ -92438,6 +92632,21 @@
|
|
|
92438
92632
|
|
|
92439
92633
|
## 企业微信汽车行业版(wav) 版本:2021-01-29
|
|
92440
92634
|
|
|
92635
|
+
### 第 11 次发布
|
|
92636
|
+
|
|
92637
|
+
发布时间:2022-10-12 07:10:28
|
|
92638
|
+
|
|
92639
|
+
本次发布包含了以下内容:
|
|
92640
|
+
|
|
92641
|
+
改善已有的文档。
|
|
92642
|
+
|
|
92643
|
+
修改数据结构:
|
|
92644
|
+
|
|
92645
|
+
* [ClueInfoDetail](https://cloud.tencent.com/document/api/1318/56791#ClueInfoDetail)
|
|
92646
|
+
|
|
92647
|
+
* 新增成员:UserName
|
|
92648
|
+
|
|
92649
|
+
|
|
92441
92650
|
### 第 10 次发布
|
|
92442
92651
|
|
|
92443
92652
|
发布时间:2022-04-04 07:39:05
|
|
@@ -92638,6 +92847,18 @@
|
|
|
92638
92847
|
|
|
92639
92848
|
## 数据开发治理平台 WeData(wedata) 版本:2021-08-20
|
|
92640
92849
|
|
|
92850
|
+
### 第 7 次发布
|
|
92851
|
+
|
|
92852
|
+
发布时间:2022-10-12 07:10:44
|
|
92853
|
+
|
|
92854
|
+
本次发布包含了以下内容:
|
|
92855
|
+
|
|
92856
|
+
改善已有的文档。
|
|
92857
|
+
|
|
92858
|
+
新增接口:
|
|
92859
|
+
|
|
92860
|
+
* [[CreateCustomFunction](https://cloud.tencent.com/document/api/1267/81354)](https://cloud.tencent.com/document/api/#/#)
|
|
92861
|
+
|
|
92641
92862
|
### 第 6 次发布
|
|
92642
92863
|
|
|
92643
92864
|
发布时间:2022-09-21 17:26:55
|