tencentcloud-sdk-nodejs 4.0.912 → 4.0.914
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 +330 -0
- package/SERVICE_CHANGELOG.md +343 -169
- package/examples/hunyuan/v20230901/{chat_std.js → chat_completions.js} +5 -3
- package/examples/hunyuan/v20230901/{chat_std.ts → chat_completions.ts} +5 -3
- package/package.json +1 -1
- package/products.md +21 -21
- package/src/common/sdk_version.ts +1 -1
- package/src/services/aiart/v20221229/aiart_models.ts +5 -0
- package/src/services/as/v20180419/as_models.ts +38 -20
- package/src/services/cls/v20201016/cls_client.ts +61 -11
- package/src/services/cls/v20201016/cls_models.ts +312 -145
- package/src/services/dlc/v20210125/dlc_models.ts +8 -0
- package/src/services/es/v20180416/es_models.ts +13 -0
- package/src/services/essbasic/v20210526/essbasic_models.ts +1 -1
- package/src/services/hunyuan/v20230901/hunyuan_models.ts +4 -4
- package/src/services/iotexplorer/v20190423/iotexplorer_models.ts +15 -0
- package/src/services/organization/v20210331/organization_client.ts +51 -13
- package/src/services/organization/v20210331/organization_models.ts +204 -39
- package/src/services/pts/v20210728/pts_models.ts +9 -9
- package/src/services/sms/v20210111/sms_models.ts +1 -2
- package/src/services/ssl/v20191205/ssl_models.ts +36 -26
- package/src/services/tcbr/v20220217/tcbr_models.ts +7 -0
- package/src/services/tcss/v20201101/tcss_models.ts +99 -52
- package/src/services/trocket/v20230308/trocket_client.ts +16 -4
- package/src/services/trocket/v20230308/trocket_models.ts +94 -58
- package/src/services/trtc/v20190722/trtc_client.ts +4 -2
- package/src/services/trtc/v20190722/trtc_models.ts +62 -27
- package/src/services/wedata/v20210820/wedata_models.ts +6 -2
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/aiart/v20221229/aiart_models.d.ts +5 -0
- package/tencentcloud/services/as/v20180419/as_models.d.ts +38 -20
- package/tencentcloud/services/cls/v20201016/cls_client.d.ts +19 -3
- package/tencentcloud/services/cls/v20201016/cls_client.js +27 -3
- package/tencentcloud/services/cls/v20201016/cls_models.d.ts +297 -140
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +8 -0
- package/tencentcloud/services/es/v20180416/es_models.d.ts +13 -0
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +1 -1
- package/tencentcloud/services/hunyuan/v20230901/hunyuan_models.d.ts +4 -4
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +15 -0
- package/tencentcloud/services/organization/v20210331/organization_client.d.ts +17 -5
- package/tencentcloud/services/organization/v20210331/organization_client.js +24 -6
- package/tencentcloud/services/organization/v20210331/organization_models.d.ts +196 -39
- package/tencentcloud/services/pts/v20210728/pts_models.d.ts +9 -9
- package/tencentcloud/services/sms/v20210111/sms_models.d.ts +1 -2
- package/tencentcloud/services/ssl/v20191205/ssl_models.d.ts +36 -26
- package/tencentcloud/services/tcbr/v20220217/tcbr_models.d.ts +7 -0
- package/tencentcloud/services/tcss/v20201101/tcss_models.d.ts +99 -52
- package/tencentcloud/services/trocket/v20230308/trocket_client.d.ts +5 -1
- package/tencentcloud/services/trocket/v20230308/trocket_client.js +6 -0
- package/tencentcloud/services/trocket/v20230308/trocket_models.d.ts +91 -57
- package/tencentcloud/services/trtc/v20190722/trtc_client.d.ts +3 -1
- package/tencentcloud/services/trtc/v20190722/trtc_client.js +3 -1
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +61 -26
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +6 -2
- package/test/cls.v20201016.test.js +42 -2
- package/test/organization.v20210331.test.js +34 -4
- package/test/trocket.v20230308.test.js +10 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const tencentcloud = require("
|
|
1
|
+
const tencentcloud = require("../../../tencentcloud")
|
|
2
2
|
|
|
3
3
|
// 导入对应产品模块的client models
|
|
4
4
|
const HunyuanClient = tencentcloud.hunyuan.v20230901.Client
|
|
@@ -19,7 +19,8 @@ const client = new HunyuanClient({
|
|
|
19
19
|
|
|
20
20
|
// 通过client对象调用想要访问的接口,需要传入请求对象以及响应回调函数
|
|
21
21
|
// 流式调用
|
|
22
|
-
client.
|
|
22
|
+
client.ChatCompletions({
|
|
23
|
+
Model: 'hunyuan-pro',
|
|
23
24
|
Messages: [{
|
|
24
25
|
Role: 'user',
|
|
25
26
|
Content: '你好, 可以讲个笑话吗'
|
|
@@ -41,7 +42,8 @@ client.ChatStd({
|
|
|
41
42
|
)
|
|
42
43
|
|
|
43
44
|
// 非流式调用
|
|
44
|
-
client.
|
|
45
|
+
client.ChatCompletions({
|
|
46
|
+
Model: 'hunyuan-pro',
|
|
45
47
|
Messages: [{
|
|
46
48
|
Role: 'user',
|
|
47
49
|
Content: '你好, 可以讲个笑话吗'
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as tencentcloud from "
|
|
1
|
+
import * as tencentcloud from "../../../tencentcloud"
|
|
2
2
|
import { SSEResponseModel } from "../../../tencentcloud/common/sse_response_model"
|
|
3
3
|
import { ChatStdResponse } from "../../../tencentcloud/services/hunyuan/v20230901/hunyuan_models"
|
|
4
4
|
|
|
@@ -21,7 +21,8 @@ const client = new HunyuanClient({
|
|
|
21
21
|
|
|
22
22
|
// 通过client对象调用想要访问的接口,需要传入请求对象以及响应回调函数
|
|
23
23
|
// 流式调用
|
|
24
|
-
client.
|
|
24
|
+
client.ChatCompletions({
|
|
25
|
+
Model: 'hunyuan-pro',
|
|
25
26
|
Messages: [{
|
|
26
27
|
Role: 'user',
|
|
27
28
|
Content: '你好, 可以讲个笑话吗'
|
|
@@ -43,7 +44,8 @@ client.ChatStd({
|
|
|
43
44
|
)
|
|
44
45
|
|
|
45
46
|
// 非流式调用
|
|
46
|
-
client.
|
|
47
|
+
client.ChatCompletions({
|
|
48
|
+
Model: 'hunyuan-pro',
|
|
47
49
|
Messages: [{
|
|
48
50
|
Role: 'user',
|
|
49
51
|
Content: '你好, 可以讲个笑话吗'
|
package/package.json
CHANGED
package/products.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
| advisor | [云顾问](https://cloud.tencent.com/document/product/1264) | 2024-03-20 01:07:31 |
|
|
7
7
|
| af | [借贷反欺诈](https://cloud.tencent.com/document/product/668) | 2024-05-31 01:07:20 |
|
|
8
8
|
| afc | [定制建模](https://cloud.tencent.com/document/product/1029) | 2024-05-31 01:07:25 |
|
|
9
|
-
| aiart | [大模型图像创作引擎](https://cloud.tencent.com/document/product/1668) | 2024-08-
|
|
9
|
+
| aiart | [大模型图像创作引擎](https://cloud.tencent.com/document/product/1668) | 2024-08-09 01:03:15 |
|
|
10
10
|
| ame | [正版曲库直通车](https://cloud.tencent.com/document/product/1155) | 2023-08-17 01:06:14 |
|
|
11
11
|
| ams | [音频内容安全](https://cloud.tencent.com/document/product/1219) | 2024-07-26 01:08:05 |
|
|
12
12
|
| anicloud | [动效素材服务](https://cloud.tencent.com/document/product/1641) | 2023-05-18 01:01:53 |
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
| api | [云 API](https://cloud.tencent.com/document/product/1278) | 2023-01-05 01:02:52 |
|
|
17
17
|
| apigateway | [API 网关](https://cloud.tencent.com/document/product/628) | 2024-06-17 01:08:48 |
|
|
18
18
|
| apm | [应用性能监控](https://cloud.tencent.com/document/product/1463) | 2024-07-31 01:04:59 |
|
|
19
|
-
| as | [弹性伸缩](https://cloud.tencent.com/document/product/377) | 2024-
|
|
19
|
+
| as | [弹性伸缩](https://cloud.tencent.com/document/product/377) | 2024-08-08 01:09:56 |
|
|
20
20
|
| asr | [语音识别](https://cloud.tencent.com/document/product/1093) | 2024-07-16 01:08:08 |
|
|
21
21
|
| asw | [应用与服务编排工作流](https://cloud.tencent.com/document/product/1272) | 2023-05-18 01:04:02 |
|
|
22
22
|
| ba | [ICP备案](https://cloud.tencent.com/document/product/243) | 2024-04-22 01:08:02 |
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
| cloudaudit | [操作审计](https://cloud.tencent.com/document/product/629) | 2024-01-15 01:09:37 |
|
|
63
63
|
| cloudhsm | [云加密机](https://cloud.tencent.com/document/product/639) | 2024-03-20 01:11:31 |
|
|
64
64
|
| cloudstudio | [Cloud Studio(云端 IDE)](https://cloud.tencent.com/document/product/1039) | 2024-05-29 01:21:54 |
|
|
65
|
-
| cls | [日志服务](https://cloud.tencent.com/document/product/614) | 2024-
|
|
65
|
+
| cls | [日志服务](https://cloud.tencent.com/document/product/614) | 2024-08-09 01:19:04 |
|
|
66
66
|
| cme | [多媒体创作引擎](https://cloud.tencent.com/document/product/1156) | 2024-07-29 01:23:21 |
|
|
67
67
|
| cmq | [消息队列 CMQ](https://cloud.tencent.com/document/product/406) | 2024-06-21 01:24:31 |
|
|
68
68
|
| cms | [内容安全](https://cloud.tencent.com/document/product/669) | 2024-06-20 01:24:47 |
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
| cvm | [云服务器](https://cloud.tencent.com/document/product/213) | 2024-08-07 01:23:06 |
|
|
75
75
|
| cwp | [主机安全](https://cloud.tencent.com/document/product/296) | 2024-08-07 01:24:12 |
|
|
76
76
|
| cws | [漏洞扫描服务](https://cloud.tencent.com/document/product) | 2019-11-22 12:16:15 |
|
|
77
|
-
| cynosdb | [TDSQL-C MySQL 版](https://cloud.tencent.com/document/product/1003) | 2024-08-
|
|
77
|
+
| cynosdb | [TDSQL-C MySQL 版](https://cloud.tencent.com/document/product/1003) | 2024-08-09 01:26:13 |
|
|
78
78
|
| dasb | [运维安全中心(堡垒机)](https://cloud.tencent.com/document/product/1025) | 2024-07-16 01:13:41 |
|
|
79
79
|
| dataintegration | [数据接入平台](https://cloud.tencent.com/document/product/1591) | 2022-07-26 15:32:15 |
|
|
80
80
|
| dayu | [DDoS 高防包](https://cloud.tencent.com/document/product/1021) | 2023-05-18 01:20:11 |
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
| dbdc | [云数据库独享集群](https://cloud.tencent.com/document/product/1322) | 2024-07-08 01:12:54 |
|
|
83
83
|
| dc | [专线接入](https://cloud.tencent.com/document/product/216) | 2024-07-15 01:09:18 |
|
|
84
84
|
| dcdb | [TDSQL MySQL 版](https://cloud.tencent.com/document/product/557) | 2024-07-11 01:14:04 |
|
|
85
|
-
| dlc | [数据湖计算 DLC](https://cloud.tencent.com/document/product/1342) | 2024-08-
|
|
85
|
+
| dlc | [数据湖计算 DLC](https://cloud.tencent.com/document/product/1342) | 2024-08-08 01:33:40 |
|
|
86
86
|
| dnspod | [DNSPod](https://cloud.tencent.com/document/product/1427) | 2024-07-29 01:33:59 |
|
|
87
87
|
| domain | [域名注册](https://cloud.tencent.com/document/product/242) | 2024-07-31 01:30:16 |
|
|
88
88
|
| drm | [数字版权管理](https://cloud.tencent.com/document/product/1000) | 2024-07-12 01:14:44 |
|
|
@@ -97,9 +97,9 @@
|
|
|
97
97
|
| eiam | [数字身份管控平台(员工版)](https://cloud.tencent.com/document/product/1442) | 2024-06-25 01:14:34 |
|
|
98
98
|
| eis | [数据连接器](https://cloud.tencent.com/document/product/1270) | 2023-08-10 01:17:44 |
|
|
99
99
|
| emr | [弹性 MapReduce](https://cloud.tencent.com/document/product/589) | 2024-08-01 01:40:41 |
|
|
100
|
-
| es | [Elasticsearch Service](https://cloud.tencent.com/document/product/845) | 2024-
|
|
100
|
+
| es | [Elasticsearch Service](https://cloud.tencent.com/document/product/845) | 2024-08-08 01:41:08 |
|
|
101
101
|
| ess | [腾讯电子签企业版](https://cloud.tencent.com/document/product/1323) | 2024-08-07 01:41:05 |
|
|
102
|
-
| essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2024-08-
|
|
102
|
+
| essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2024-08-09 01:38:33 |
|
|
103
103
|
| facefusion | [人脸融合](https://cloud.tencent.com/document/product/670) | 2024-07-16 01:16:45 |
|
|
104
104
|
| faceid | [人脸核身](https://cloud.tencent.com/document/product/1007) | 2024-07-31 01:37:45 |
|
|
105
105
|
| fmu | [人脸试妆](https://cloud.tencent.com/document/product/1172) | 2024-07-05 01:10:44 |
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
| hai | [高性能应用服务](https://cloud.tencent.com/document/product/1721) | 2024-05-29 01:43:09 |
|
|
115
115
|
| hasim | [高可用物联网卡](https://cloud.tencent.com/document/product/1482) | 2023-05-18 01:29:47 |
|
|
116
116
|
| hcm | [数学作业批改](https://cloud.tencent.com/document/product/1004) | 2024-05-09 01:16:27 |
|
|
117
|
-
| hunyuan | [腾讯混元大模型](https://cloud.tencent.com/document/product/1729) | 2024-08-
|
|
117
|
+
| hunyuan | [腾讯混元大模型](https://cloud.tencent.com/document/product/1729) | 2024-08-09 01:41:34 |
|
|
118
118
|
| iai | [人脸识别](https://cloud.tencent.com/document/product/867) | 2024-03-20 01:17:43 |
|
|
119
119
|
| ic | [图片瘦身](https://cloud.tencent.com/document/product/636) | 2023-03-02 01:23:21 |
|
|
120
120
|
| icr | [对话机器人](https://cloud.tencent.com/document/product/1268) | 2024-04-22 01:17:48 |
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
| ioa | [iOA 零信任安全管理系统](https://cloud.tencent.com/document/product/1092) | 2024-06-28 01:12:56 |
|
|
126
126
|
| iot | [加速物联网套件](https://cloud.tencent.com/document/product/568) | 2023-07-17 01:22:28 |
|
|
127
127
|
| iotcloud | [物联网通信](https://cloud.tencent.com/document/product/634) | 2024-06-05 01:47:50 |
|
|
128
|
-
| iotexplorer | [物联网开发平台](https://cloud.tencent.com/document/product/1081) | 2024-08-
|
|
128
|
+
| iotexplorer | [物联网开发平台](https://cloud.tencent.com/document/product/1081) | 2024-08-08 01:47:56 |
|
|
129
129
|
| iottid | [物联网设备身份认证](https://cloud.tencent.com/document/product/1086) | 2023-05-18 01:33:02 |
|
|
130
130
|
| iotvideo | [物联网智能视频服务](https://cloud.tencent.com/document/product/1131) | 2024-07-08 01:16:48 |
|
|
131
131
|
| iotvideoindustry | [物联网智能视频服务(行业版)](https://cloud.tencent.com/document/product/1361) | 2024-03-20 01:18:54 |
|
|
@@ -137,7 +137,7 @@
|
|
|
137
137
|
| lcic | [实时互动-教育版](https://cloud.tencent.com/document/product/1639) | 2024-08-01 01:53:15 |
|
|
138
138
|
| lighthouse | [轻量应用服务器](https://cloud.tencent.com/document/product/1207) | 2024-07-26 01:52:51 |
|
|
139
139
|
| live | [云直播CSS](https://cloud.tencent.com/document/product/267) | 2024-07-30 01:53:06 |
|
|
140
|
-
| lke | [大模型知识引擎](https://cloud.tencent.com/document/product/1759) | 2024-
|
|
140
|
+
| lke | [大模型知识引擎](https://cloud.tencent.com/document/product/1759) | 2024-08-09 01:52:09 |
|
|
141
141
|
| lowcode | [云开发低码](https://cloud.tencent.com/document/product/1301) | 2022-04-04 06:56:51 |
|
|
142
142
|
| lp | [登录保护](https://cloud.tencent.com/document/product/1190) | 2022-04-04 06:56:52 |
|
|
143
143
|
| mall | [商场客留大数据](https://cloud.tencent.com/document/product/1707) | 2024-03-20 01:20:11 |
|
|
@@ -159,12 +159,12 @@
|
|
|
159
159
|
| oceanus | [流计算 Oceanus](https://cloud.tencent.com/document/product/849) | 2024-07-23 01:53:12 |
|
|
160
160
|
| ocr | [文字识别](https://cloud.tencent.com/document/product/866) | 2024-08-07 02:04:23 |
|
|
161
161
|
| omics | [腾讯健康组学平台](https://cloud.tencent.com/document/product/1643) | 2024-06-13 02:11:33 |
|
|
162
|
-
| organization | [集团账号管理](https://cloud.tencent.com/document/product/850) | 2024-08-02
|
|
162
|
+
| organization | [集团账号管理](https://cloud.tencent.com/document/product/850) | 2024-08-09 02:00:03 |
|
|
163
163
|
| partners | [渠道合作伙伴](https://cloud.tencent.com/document/product/563) | 2024-06-26 01:21:35 |
|
|
164
164
|
| pds | [私域安全](https://cloud.tencent.com/document/product/1473) | 2023-05-18 01:44:14 |
|
|
165
165
|
| postgres | [云数据库 PostgreSQL](https://cloud.tencent.com/document/product/409) | 2024-07-23 01:55:36 |
|
|
166
166
|
| privatedns | [私有域解析 Private DNS](https://cloud.tencent.com/document/product/1338) | 2024-06-18 02:05:02 |
|
|
167
|
-
| pts | [云压测](https://cloud.tencent.com/document/product/1484) | 2024-08-
|
|
167
|
+
| pts | [云压测](https://cloud.tencent.com/document/product/1484) | 2024-08-09 02:01:53 |
|
|
168
168
|
| rce | [全栈式风控引擎](https://cloud.tencent.com/document/product/1343) | 2024-08-01 02:05:51 |
|
|
169
169
|
| redis | [云数据库Redis](https://cloud.tencent.com/document/product/239) | 2024-08-07 02:08:35 |
|
|
170
170
|
| region | [地域管理系统](https://cloud.tencent.com/document/product/1596) | 2024-04-22 01:23:34 |
|
|
@@ -176,12 +176,12 @@
|
|
|
176
176
|
| smh | [智能媒资托管](https://cloud.tencent.com/document/product/1339) | 2024-06-07 02:21:50 |
|
|
177
177
|
| smop | [腾讯安心用户运营平台](https://cloud.tencent.com/document/product/1310) | 2024-04-11 01:20:38 |
|
|
178
178
|
| smpn | [营销号码安全](https://cloud.tencent.com/document/product/1127) | 2024-07-09 01:21:06 |
|
|
179
|
-
| sms | [短信](https://cloud.tencent.com/document/product/382) | 2024-
|
|
179
|
+
| sms | [短信](https://cloud.tencent.com/document/product/382) | 2024-08-08 02:08:10 |
|
|
180
180
|
| soe | [智聆口语评测](https://cloud.tencent.com/document/product/884) | 2024-04-11 01:20:45 |
|
|
181
181
|
| solar | [智汇零售](https://cloud.tencent.com/document/product) | 2020-03-19 08:01:59 |
|
|
182
182
|
| sqlserver | [云数据库 SQL Server](https://cloud.tencent.com/document/product/238) | 2024-08-05 02:02:14 |
|
|
183
183
|
| ssa | [安全运营中心](https://cloud.tencent.com/document/product/664) | 2023-11-15 02:18:28 |
|
|
184
|
-
| ssl | [SSL 证书](https://cloud.tencent.com/document/product/400) | 2024-
|
|
184
|
+
| ssl | [SSL 证书](https://cloud.tencent.com/document/product/400) | 2024-08-08 02:09:39 |
|
|
185
185
|
| sslpod | [证书监控 SSLPod](https://cloud.tencent.com/document/product/1084) | 2024-03-20 01:24:03 |
|
|
186
186
|
| ssm | [凭据管理系统](https://cloud.tencent.com/document/product/1140) | 2024-05-21 02:06:48 |
|
|
187
187
|
| sts | [安全凭证服务](https://cloud.tencent.com/document/product/1312) | 2024-03-20 01:24:08 |
|
|
@@ -196,13 +196,13 @@
|
|
|
196
196
|
| tbp | [腾讯智能对话平台](https://cloud.tencent.com/document/product/1060) | 2024-03-20 01:24:24 |
|
|
197
197
|
| tcaplusdb | [游戏数据库 TcaplusDB](https://cloud.tencent.com/document/product/596) | 2024-08-05 02:05:20 |
|
|
198
198
|
| tcb | [云开发 CloudBase](https://cloud.tencent.com/document/product/876) | 2024-08-07 02:15:35 |
|
|
199
|
-
| tcbr | [云托管 CloudBase Run](https://cloud.tencent.com/document/product/1243) | 2024-
|
|
199
|
+
| tcbr | [云托管 CloudBase Run](https://cloud.tencent.com/document/product/1243) | 2024-08-08 02:12:50 |
|
|
200
200
|
| tcex | [腾讯云释义](https://cloud.tencent.com/document/product/1266) | 2022-07-21 06:17:29 |
|
|
201
201
|
| tchd | [腾讯云健康看板](https://cloud.tencent.com/document/product/1688) | 2024-03-20 01:24:49 |
|
|
202
202
|
| tci | [腾讯智学课堂分析](https://cloud.tencent.com/document/product) | 2020-08-24 08:06:03 |
|
|
203
203
|
| tcm | [服务网格](https://cloud.tencent.com/document/product/1261) | 2024-06-18 02:13:19 |
|
|
204
204
|
| tcr | [容器镜像服务](https://cloud.tencent.com/document/product/1141) | 2024-07-23 02:04:12 |
|
|
205
|
-
| tcss | [容器安全服务](https://cloud.tencent.com/document/product/1285) | 2024-
|
|
205
|
+
| tcss | [容器安全服务](https://cloud.tencent.com/document/product/1285) | 2024-08-09 02:10:59 |
|
|
206
206
|
| tdcpg | [TDSQL-C PostgreSQL 版](https://cloud.tencent.com/document/product/1556) | 2024-07-10 01:25:35 |
|
|
207
207
|
| tdid | [分布式身份](https://cloud.tencent.com/document/product/1439) | 2024-06-04 02:17:43 |
|
|
208
208
|
| tdmq | [消息队列 TDMQ](https://cloud.tencent.com/document/product/1179) | 2024-07-17 01:25:48 |
|
|
@@ -224,11 +224,11 @@
|
|
|
224
224
|
| tmt | [机器翻译](https://cloud.tencent.com/document/product/551) | 2024-08-02 02:17:43 |
|
|
225
225
|
| tourism | [文旅客情大数据](https://cloud.tencent.com/document/product/1684) | 2024-03-20 01:28:59 |
|
|
226
226
|
| trdp | [流量风险决策平台](https://cloud.tencent.com/document/product/1604) | 2023-05-18 02:01:19 |
|
|
227
|
-
| trocket | [消息队列 RocketMQ 版](https://cloud.tencent.com/document/product/1493) | 2024-
|
|
227
|
+
| trocket | [消息队列 RocketMQ 版](https://cloud.tencent.com/document/product/1493) | 2024-08-08 17:17:39 |
|
|
228
228
|
| trp | [T-Sec-安心平台(RP)](https://cloud.tencent.com/document/product/1458) | 2024-06-06 02:42:14 |
|
|
229
229
|
| trro | [远程实时操控](https://cloud.tencent.com/document/product/1584) | 2024-07-31 02:17:29 |
|
|
230
|
-
| trtc | [实时音视频](https://cloud.tencent.com/document/product/647) | 2024-08-
|
|
231
|
-
| tse | [微服务引擎](https://cloud.tencent.com/document/product/1364) | 2024-08-
|
|
230
|
+
| trtc | [实时音视频](https://cloud.tencent.com/document/product/647) | 2024-08-08 02:24:11 |
|
|
231
|
+
| tse | [微服务引擎](https://cloud.tencent.com/document/product/1364) | 2024-08-08 02:24:45 |
|
|
232
232
|
| tsf | [微服务平台 TSF](https://cloud.tencent.com/document/product/649) | 2024-07-30 11:37:37 |
|
|
233
233
|
| tsi | [腾讯同传系统](https://cloud.tencent.com/document/product/1399) | 2024-08-02 02:22:13 |
|
|
234
234
|
| tsw | [微服务观测平台 TSW](https://cloud.tencent.com/document/product/1311) | 2024-03-20 01:30:06 |
|
|
@@ -243,9 +243,9 @@
|
|
|
243
243
|
| vpc | [私有网络](https://cloud.tencent.com/document/product/215) | 2024-08-07 02:36:08 |
|
|
244
244
|
| vrs | [声音复刻](https://cloud.tencent.com/document/product/1283) | 2024-08-07 02:38:54 |
|
|
245
245
|
| vtc | [视频转译](https://cloud.tencent.com/document/product/1769) | 2024-07-31 02:26:05 |
|
|
246
|
-
| waf | [Web 应用防火墙](https://cloud.tencent.com/document/product/627) | 2024-
|
|
246
|
+
| waf | [Web 应用防火墙](https://cloud.tencent.com/document/product/627) | 2024-08-09 02:30:19 |
|
|
247
247
|
| wav | [企业微信汽车行业版](https://cloud.tencent.com/document/product/1318) | 2024-03-20 01:32:09 |
|
|
248
|
-
| wedata | [数据开发治理平台 WeData](https://cloud.tencent.com/document/product/1267) | 2024-08-
|
|
248
|
+
| wedata | [数据开发治理平台 WeData](https://cloud.tencent.com/document/product/1267) | 2024-08-08 02:34:16 |
|
|
249
249
|
| weilingwith | [微瓴同业开放平台](https://cloud.tencent.com/document/product/1693) | 2024-05-15 01:38:36 |
|
|
250
250
|
| wss | [SSL证书管理服务](https://cloud.tencent.com/document/product) | 2020-04-01 08:53:44 |
|
|
251
251
|
| yinsuda | [音速达直播音乐版权引擎](https://cloud.tencent.com/document/product/1592) | 2024-06-05 02:38:46 |
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const sdkVersion = "4.0.
|
|
1
|
+
export const sdkVersion = "4.0.914"
|
|
@@ -645,6 +645,11 @@ Dress:连衣裙
|
|
|
645
645
|
建议您使用显著标识来提示结果图使用了 AI 绘画技术,是 AI 生成的图片。
|
|
646
646
|
*/
|
|
647
647
|
LogoAdd?: number
|
|
648
|
+
/**
|
|
649
|
+
* 标识内容设置。
|
|
650
|
+
默认在生成结果图右下角添加“图片由 AI 生成”字样,您可根据自身需要替换为其他的标识图片。
|
|
651
|
+
*/
|
|
652
|
+
LogoParam?: LogoParam
|
|
648
653
|
/**
|
|
649
654
|
* 返回图像方式(base64 或 url) ,二选一,默认为 base64。url 有效期为1小时。
|
|
650
655
|
生成图分辨率较大时建议选择 url,使用 base64 可能因图片过大导致返回失败。
|
|
@@ -44,9 +44,8 @@ InstanceType 指定单一实例类型,通过设置 InstanceTypes可以指定
|
|
|
44
44
|
InstanceTypes?: Array<string>
|
|
45
45
|
/**
|
|
46
46
|
* 实例类型校验策略,在实际修改 InstanceTypes 时发挥作用,取值包括 ALL 和 ANY,默认取值为ANY。
|
|
47
|
-
<
|
|
48
|
-
<
|
|
49
|
-
|
|
47
|
+
<li> ALL,所有实例类型(InstanceType)都可用则通过校验,否则校验报错。</li>
|
|
48
|
+
<li> ANY,存在任何一个实例类型(InstanceType)可用则通过校验,否则校验报错。</li>
|
|
50
49
|
实例类型不可用的常见原因包括该实例类型售罄、对应云盘售罄等。
|
|
51
50
|
如果 InstanceTypes 中一款机型不存在或者已下线,则无论 InstanceTypesCheckPolicy 采用何种取值,都会校验报错。
|
|
52
51
|
*/
|
|
@@ -71,9 +70,9 @@ InstanceType 指定单一实例类型,通过设置 InstanceTypes可以指定
|
|
|
71
70
|
InternetAccessible?: InternetAccessible
|
|
72
71
|
/**
|
|
73
72
|
* 实例计费类型。具体取值范围如下:
|
|
74
|
-
<
|
|
75
|
-
<
|
|
76
|
-
<
|
|
73
|
+
<li>POSTPAID_BY_HOUR:按小时后付费</li>
|
|
74
|
+
<li>SPOTPAID:竞价付费</li>
|
|
75
|
+
<li>PREPAID:预付费,即包年包月</li>
|
|
77
76
|
*/
|
|
78
77
|
InstanceChargeType?: string
|
|
79
78
|
/**
|
|
@@ -92,8 +91,8 @@ InstanceType 指定单一实例类型,通过设置 InstanceTypes可以指定
|
|
|
92
91
|
InstanceMarketOptions?: InstanceMarketOptionsRequest
|
|
93
92
|
/**
|
|
94
93
|
* 云盘类型选择策略,取值范围:
|
|
95
|
-
<
|
|
96
|
-
<
|
|
94
|
+
<li>ORIGINAL:使用设置的云盘类型。</li>
|
|
95
|
+
<li>AUTOMATIC:自动选择当前可用的云盘类型。</li>
|
|
97
96
|
*/
|
|
98
97
|
DiskTypePolicy?: string
|
|
99
98
|
/**
|
|
@@ -143,6 +142,11 @@ InstanceType 指定单一实例类型,通过设置 InstanceTypes可以指定
|
|
|
143
142
|
* 实例登录设置,包括密码、密钥或保持镜像的原始登录设置。<br>请注意,指定新的登录设置会覆盖原有登录设置。例如,如果您之前使用密码登录,使用该参数将登录设置修改为密钥,则原有密码被清除。
|
|
144
143
|
*/
|
|
145
144
|
LoginSettings?: LoginSettings
|
|
145
|
+
/**
|
|
146
|
+
* 实例标签列表。通过指定该参数,可以为扩容的实例绑定标签。最多支持指定10个标签。
|
|
147
|
+
该参数会覆盖原有的实例标签列表,如需新增标签,需将新标签和原有标签一并传入。
|
|
148
|
+
*/
|
|
149
|
+
InstanceTags?: Array<InstanceTag>
|
|
146
150
|
}
|
|
147
151
|
|
|
148
152
|
/**
|
|
@@ -1281,9 +1285,9 @@ export interface CreateLaunchConfigurationRequest {
|
|
|
1281
1285
|
UserData?: string
|
|
1282
1286
|
/**
|
|
1283
1287
|
* 实例计费类型,CVM默认值按照POSTPAID_BY_HOUR处理。
|
|
1284
|
-
<
|
|
1285
|
-
<
|
|
1286
|
-
<
|
|
1288
|
+
<li>POSTPAID_BY_HOUR:按小时后付费</li>
|
|
1289
|
+
<li>SPOTPAID:竞价付费</li>
|
|
1290
|
+
<li>PREPAID:预付费,即包年包月</li>
|
|
1287
1291
|
*/
|
|
1288
1292
|
InstanceChargeType?: string
|
|
1289
1293
|
/**
|
|
@@ -1301,8 +1305,8 @@ export interface CreateLaunchConfigurationRequest {
|
|
|
1301
1305
|
CamRoleName?: string
|
|
1302
1306
|
/**
|
|
1303
1307
|
* 实例类型校验策略,取值包括 ALL 和 ANY,默认取值为ANY。
|
|
1304
|
-
<
|
|
1305
|
-
<
|
|
1308
|
+
<li> ALL,所有实例类型(InstanceType)都可用则通过校验,否则校验报错。</li>
|
|
1309
|
+
<li> ANY,存在任何一个实例类型(InstanceType)可用则通过校验,否则校验报错。</li>
|
|
1306
1310
|
|
|
1307
1311
|
实例类型不可用的常见原因包括该实例类型售罄、对应云盘售罄等。
|
|
1308
1312
|
如果 InstanceTypes 中一款机型不存在或者已下线,则无论 InstanceTypesCheckPolicy 采用何种取值,都会校验报错。
|
|
@@ -1331,8 +1335,8 @@ export interface CreateLaunchConfigurationRequest {
|
|
|
1331
1335
|
InstanceChargePrepaid?: InstanceChargePrepaid
|
|
1332
1336
|
/**
|
|
1333
1337
|
* 云盘类型选择策略,默认取值 ORIGINAL,取值范围:
|
|
1334
|
-
<
|
|
1335
|
-
<
|
|
1338
|
+
<li>ORIGINAL:使用设置的云盘类型</li>
|
|
1339
|
+
<li>AUTOMATIC:自动选择当前可用的云盘类型</li>
|
|
1336
1340
|
*/
|
|
1337
1341
|
DiskTypePolicy?: string
|
|
1338
1342
|
/**
|
|
@@ -1662,19 +1666,28 @@ export interface DescribeAutoScalingGroupLastActivitiesRequest {
|
|
|
1662
1666
|
export interface HostNameSettings {
|
|
1663
1667
|
/**
|
|
1664
1668
|
* 云服务器的主机名。
|
|
1665
|
-
<
|
|
1666
|
-
<
|
|
1667
|
-
<
|
|
1669
|
+
<li> 点号(.)和短横线(-)不能作为 HostName 的首尾字符,不能连续使用。</li>
|
|
1670
|
+
<li> 不支持 Windows 实例。</li>
|
|
1671
|
+
<li> 其他类型(Linux 等)实例:字符长度为[2, 40],允许支持多个点号,点之间为一段,每段允许字母(不限制大小写)、数字和短横线(-)组成。不允许为纯数字。</li>
|
|
1668
1672
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1669
1673
|
*/
|
|
1670
1674
|
HostName: string
|
|
1671
1675
|
/**
|
|
1672
1676
|
* 云服务器主机名的风格,取值范围包括 ORIGINAL 和 UNIQUE,默认为 ORIGINAL。
|
|
1673
|
-
<
|
|
1674
|
-
<
|
|
1677
|
+
<li> ORIGINAL,AS 直接将入参中所填的 HostName 传递给 CVM,CVM 可能会对 HostName 追加序列号,伸缩组中实例的 HostName 会出现冲突的情况。</li>
|
|
1678
|
+
<li> UNIQUE,入参所填的 HostName 相当于主机名前缀,AS 和 CVM 会对其进行拓展,伸缩组中实例的 HostName 可以保证唯一。</li>
|
|
1675
1679
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1676
1680
|
*/
|
|
1677
1681
|
HostNameStyle?: string
|
|
1682
|
+
/**
|
|
1683
|
+
* 云服务器的主机名后缀。
|
|
1684
|
+
<li> 点号(.)和短横线(-)不能作为 HostNameSuffix 的首尾字符,不能连续使用。</li>
|
|
1685
|
+
<li> 不支持 Windows 实例。</li>
|
|
1686
|
+
<li>其他类型(Linux 等)实例:字符长度为[1, 37],且与 HostName 的长度和不能超过 39,允许支持多个点号,点之间为一段,每段允许字母(不限制大小写)、数字和短横线(-)组成。</li>
|
|
1687
|
+
假设后缀名称为 suffix,原主机名为 test.0,最终主机名为 test.0.suffix。
|
|
1688
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1689
|
+
*/
|
|
1690
|
+
HostNameSuffix?: string
|
|
1678
1691
|
}
|
|
1679
1692
|
|
|
1680
1693
|
/**
|
|
@@ -3614,6 +3627,11 @@ export interface ClearLaunchConfigurationAttributesRequest {
|
|
|
3614
3627
|
填 true 代表清空置放群组信息,清空后基于此新创建的云主机将不指定任何置放群组。
|
|
3615
3628
|
*/
|
|
3616
3629
|
ClearDisasterRecoverGroupIds?: boolean
|
|
3630
|
+
/**
|
|
3631
|
+
* 是否清空实例标签列表,非必填,默认为 false。
|
|
3632
|
+
填 true 代表清空实例标签列表,清空后基于此新创建的云主机将不会绑定列表中的标签。
|
|
3633
|
+
*/
|
|
3634
|
+
ClearInstanceTags?: boolean
|
|
3617
3635
|
}
|
|
3618
3636
|
|
|
3619
3637
|
/**
|
|
@@ -40,13 +40,15 @@ import {
|
|
|
40
40
|
ModifyConfigExtraResponse,
|
|
41
41
|
SearchCosRechargeInfoRequest,
|
|
42
42
|
KafkaRechargeInfo,
|
|
43
|
-
|
|
43
|
+
ConsoleSharingConfig,
|
|
44
|
+
DeleteConsoleSharingRequest,
|
|
44
45
|
UploadLogRequest,
|
|
46
|
+
ModifyConsoleSharingRequest,
|
|
45
47
|
CreateLogsetRequest,
|
|
46
48
|
DescribeShippersRequest,
|
|
47
49
|
CreateScheduledSqlResponse,
|
|
48
50
|
DescribeDashboardsRequest,
|
|
49
|
-
|
|
51
|
+
CreateConsoleSharingRequest,
|
|
50
52
|
LogItem,
|
|
51
53
|
SearchLogResponse,
|
|
52
54
|
DeleteTopicRequest,
|
|
@@ -77,6 +79,7 @@ import {
|
|
|
77
79
|
DescribeIndexRequest,
|
|
78
80
|
ModifyScheduledSqlResponse,
|
|
79
81
|
ConditionInfo,
|
|
82
|
+
MachineGroupInfo,
|
|
80
83
|
DeleteMachineGroupInfoRequest,
|
|
81
84
|
CreateLogsetResponse,
|
|
82
85
|
NoticeRule,
|
|
@@ -97,6 +100,7 @@ import {
|
|
|
97
100
|
ModifyDashboardSubscribeRequest,
|
|
98
101
|
CreateConsumerResponse,
|
|
99
102
|
CreateConfigResponse,
|
|
103
|
+
DescribeConsoleSharingListResponse,
|
|
100
104
|
ModifyMachineGroupResponse,
|
|
101
105
|
DataTransformResouceInfo,
|
|
102
106
|
CreateDashboardSubscribeRequest,
|
|
@@ -104,6 +108,7 @@ import {
|
|
|
104
108
|
FullTextInfo,
|
|
105
109
|
QueryMetricResponse,
|
|
106
110
|
DescribeAlarmShieldsRequest,
|
|
111
|
+
ModifyLogsetRequest,
|
|
107
112
|
SearchDashboardSubscribeRequest,
|
|
108
113
|
DescribePartitionsResponse,
|
|
109
114
|
DescribeConfigMachineGroupsResponse,
|
|
@@ -114,6 +119,7 @@ import {
|
|
|
114
119
|
TopicExtendInfo,
|
|
115
120
|
EventLog,
|
|
116
121
|
CreateAlarmRequest,
|
|
122
|
+
DescribeConsoleSharingListRequest,
|
|
117
123
|
DeleteExportResponse,
|
|
118
124
|
DescribeDashboardSubscribesRequest,
|
|
119
125
|
SearchLogInfos,
|
|
@@ -185,12 +191,13 @@ import {
|
|
|
185
191
|
WebCallback,
|
|
186
192
|
DescribeAlarmsResponse,
|
|
187
193
|
CreateAlarmNoticeResponse,
|
|
188
|
-
|
|
194
|
+
DeleteConsoleSharingResponse,
|
|
189
195
|
CreateConfigRequest,
|
|
190
196
|
CreateShipperResponse,
|
|
191
197
|
ModifyDashboardSubscribeResponse,
|
|
192
198
|
DescribeKafkaRechargesResponse,
|
|
193
199
|
DeleteIndexResponse,
|
|
200
|
+
ModifyTopicResponse,
|
|
194
201
|
AlarmAnalysisConfig,
|
|
195
202
|
PreviewLogStatistic,
|
|
196
203
|
SearchLogErrors,
|
|
@@ -236,17 +243,20 @@ import {
|
|
|
236
243
|
AlertHistoryNotice,
|
|
237
244
|
DeleteAlarmRequest,
|
|
238
245
|
AlarmShieldInfo,
|
|
246
|
+
CreateConsoleSharingResponse,
|
|
239
247
|
ModifyKafkaConsumerResponse,
|
|
248
|
+
ModifyConsoleSharingResponse,
|
|
240
249
|
MachineGroupTypeInfo,
|
|
241
250
|
DeleteConfigFromMachineGroupRequest,
|
|
242
251
|
SearchCosRechargeInfoResponse,
|
|
243
252
|
DescribeAlarmsRequest,
|
|
244
|
-
|
|
253
|
+
QueryMetricRequest,
|
|
245
254
|
DescribeDashboardSubscribesResponse,
|
|
246
255
|
CreateCosRechargeResponse,
|
|
247
256
|
DescribeAlertRecordHistoryResponse,
|
|
248
257
|
KeyValueInfo,
|
|
249
258
|
SearchDashboardSubscribeResponse,
|
|
259
|
+
ShipperInfo,
|
|
250
260
|
AddMachineGroupInfoResponse,
|
|
251
261
|
ModifyMachineGroupRequest,
|
|
252
262
|
DeleteDashboardSubscribeRequest,
|
|
@@ -289,7 +299,7 @@ import {
|
|
|
289
299
|
CosRechargeInfo,
|
|
290
300
|
RuleKeyValueInfo,
|
|
291
301
|
DescribeKafkaConsumerRequest,
|
|
292
|
-
|
|
302
|
+
ConsoleSharingParam,
|
|
293
303
|
ModifyDataTransformResponse,
|
|
294
304
|
DescribeDataTransformInfoResponse,
|
|
295
305
|
ConsumerContent,
|
|
@@ -342,6 +352,16 @@ export class Client extends AbstractClient {
|
|
|
342
352
|
return this.request("DescribeExports", req, cb)
|
|
343
353
|
}
|
|
344
354
|
|
|
355
|
+
/**
|
|
356
|
+
* 本接口用于获取告警策略执行详情
|
|
357
|
+
*/
|
|
358
|
+
async GetAlarmLog(
|
|
359
|
+
req: GetAlarmLogRequest,
|
|
360
|
+
cb?: (error: string, rep: GetAlarmLogResponse) => void
|
|
361
|
+
): Promise<GetAlarmLogResponse> {
|
|
362
|
+
return this.request("GetAlarmLog", req, cb)
|
|
363
|
+
}
|
|
364
|
+
|
|
345
365
|
/**
|
|
346
366
|
* 本接口用于创建索引
|
|
347
367
|
*/
|
|
@@ -833,13 +853,23 @@ export class Client extends AbstractClient {
|
|
|
833
853
|
}
|
|
834
854
|
|
|
835
855
|
/**
|
|
836
|
-
*
|
|
856
|
+
* 批量查询控制台分享列表
|
|
837
857
|
*/
|
|
838
|
-
async
|
|
839
|
-
req
|
|
840
|
-
cb?: (error: string, rep:
|
|
841
|
-
): Promise<
|
|
842
|
-
return this.request("
|
|
858
|
+
async DescribeConsoleSharingList(
|
|
859
|
+
req?: DescribeConsoleSharingListRequest,
|
|
860
|
+
cb?: (error: string, rep: DescribeConsoleSharingListResponse) => void
|
|
861
|
+
): Promise<DescribeConsoleSharingListResponse> {
|
|
862
|
+
return this.request("DescribeConsoleSharingList", req, cb)
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
/**
|
|
866
|
+
* 创建控制台分享
|
|
867
|
+
*/
|
|
868
|
+
async CreateConsoleSharing(
|
|
869
|
+
req: CreateConsoleSharingRequest,
|
|
870
|
+
cb?: (error: string, rep: CreateConsoleSharingResponse) => void
|
|
871
|
+
): Promise<CreateConsoleSharingResponse> {
|
|
872
|
+
return this.request("CreateConsoleSharing", req, cb)
|
|
843
873
|
}
|
|
844
874
|
|
|
845
875
|
/**
|
|
@@ -1035,6 +1065,16 @@ export class Client extends AbstractClient {
|
|
|
1035
1065
|
return this.request("SplitPartition", req, cb)
|
|
1036
1066
|
}
|
|
1037
1067
|
|
|
1068
|
+
/**
|
|
1069
|
+
* 删除控制台分享
|
|
1070
|
+
*/
|
|
1071
|
+
async DeleteConsoleSharing(
|
|
1072
|
+
req: DeleteConsoleSharingRequest,
|
|
1073
|
+
cb?: (error: string, rep: DeleteConsoleSharingResponse) => void
|
|
1074
|
+
): Promise<DeleteConsoleSharingResponse> {
|
|
1075
|
+
return this.request("DeleteConsoleSharing", req, cb)
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1038
1078
|
/**
|
|
1039
1079
|
* 获取机器组信息列表
|
|
1040
1080
|
*/
|
|
@@ -1145,6 +1185,16 @@ export class Client extends AbstractClient {
|
|
|
1145
1185
|
return this.request("DescribeShippers", req, cb)
|
|
1146
1186
|
}
|
|
1147
1187
|
|
|
1188
|
+
/**
|
|
1189
|
+
* 修改控制台分享,目前仅允许修改有效期
|
|
1190
|
+
*/
|
|
1191
|
+
async ModifyConsoleSharing(
|
|
1192
|
+
req: ModifyConsoleSharingRequest,
|
|
1193
|
+
cb?: (error: string, rep: ModifyConsoleSharingResponse) => void
|
|
1194
|
+
): Promise<ModifyConsoleSharingResponse> {
|
|
1195
|
+
return this.request("ModifyConsoleSharing", req, cb)
|
|
1196
|
+
}
|
|
1197
|
+
|
|
1148
1198
|
/**
|
|
1149
1199
|
* 本接口用于获取仪表盘
|
|
1150
1200
|
*/
|