tencentcloud-sdk-nodejs 4.1.191 → 4.1.193
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/es/common/sdk_version.js +1 -1
- package/es/services/hai/v20230812/hai_client.js +7 -4
- package/es/services/ocr/v20181119/ocr_client.js +3 -0
- package/es/services/organization/v20210331/organization_client.js +9 -0
- package/es/services/rum/v20210622/rum_client.js +56 -26
- package/es/services/tmt/v20180321/tmt_client.js +2 -20
- package/es/services/trocket/v20230308/trocket_client.js +20 -95
- package/es/services/trtc/v20190722/trtc_client.js +18 -9
- package/es/services/vod/v20180717/vod_client.js +10 -4
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/bi/v20220105/bi_models.d.ts +133 -11
- package/tencentcloud/services/billing/v20180709/billing_models.d.ts +19 -14
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +16 -17
- package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +5 -5
- package/tencentcloud/services/cloudstudio/v20230508/cloudstudio_models.d.ts +2 -2
- package/tencentcloud/services/cls/v20201016/cls_models.d.ts +80 -92
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +38 -2
- package/tencentcloud/services/hai/v20230812/hai_client.d.ts +9 -5
- package/tencentcloud/services/hai/v20230812/hai_client.js +12 -6
- package/tencentcloud/services/hai/v20230812/hai_models.d.ts +392 -180
- package/tencentcloud/services/kms/v20190118/kms_models.d.ts +156 -6
- package/tencentcloud/services/mps/v20190612/mps_models.d.ts +14 -23
- package/tencentcloud/services/ocr/v20181119/ocr_client.d.ts +10 -3
- package/tencentcloud/services/ocr/v20181119/ocr_client.js +11 -2
- package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +74 -8
- package/tencentcloud/services/organization/v20210331/organization_client.d.ts +13 -1
- package/tencentcloud/services/organization/v20210331/organization_client.js +18 -0
- package/tencentcloud/services/organization/v20210331/organization_models.d.ts +174 -79
- package/tencentcloud/services/rum/v20210622/rum_client.d.ts +70 -29
- package/tencentcloud/services/rum/v20210622/rum_client.js +103 -42
- package/tencentcloud/services/rum/v20210622/rum_models.d.ts +2600 -1046
- package/tencentcloud/services/tag/v20180813/tag_models.d.ts +20 -20
- package/tencentcloud/services/tcb/v20180608/tcb_client.d.ts +22 -14
- package/tencentcloud/services/tcb/v20180608/tcb_client.js +22 -14
- package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +5 -1
- package/tencentcloud/services/thpc/v20230321/thpc_models.d.ts +10 -8
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +5 -0
- package/tencentcloud/services/tmt/v20180321/tmt_client.d.ts +3 -34
- package/tencentcloud/services/tmt/v20180321/tmt_client.js +3 -46
- package/tencentcloud/services/tmt/v20180321/tmt_models.d.ts +36 -500
- package/tencentcloud/services/trocket/v20230308/trocket_client.d.ts +49 -211
- package/tencentcloud/services/trocket/v20230308/trocket_client.js +58 -270
- package/tencentcloud/services/trocket/v20230308/trocket_models.d.ts +373 -1632
- package/tencentcloud/services/trtc/v20190722/trtc_client.d.ts +29 -16
- package/tencentcloud/services/trtc/v20190722/trtc_client.js +39 -20
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +292 -70
- package/tencentcloud/services/vclm/v20240523/vclm_models.d.ts +1 -1
- package/tencentcloud/services/vod/v20180717/vod_client.d.ts +15 -7
- package/tencentcloud/services/vod/v20180717/vod_client.js +20 -8
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +170 -62
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +2 -2
|
@@ -200,31 +200,31 @@ export interface ModifyResourceTagsResponse {
|
|
|
200
200
|
*/
|
|
201
201
|
export interface DescribeTagsRequest {
|
|
202
202
|
/**
|
|
203
|
-
*
|
|
203
|
+
* <p>标签键,与标签值同时存在或同时不存在,不存在时表示查询该用户所有标签</p>
|
|
204
204
|
*/
|
|
205
205
|
TagKey?: string;
|
|
206
206
|
/**
|
|
207
|
-
*
|
|
207
|
+
* <p>标签值,与标签键同时存在或同时不存在,不存在时表示查询该用户所有标签</p>
|
|
208
208
|
*/
|
|
209
209
|
TagValue?: string;
|
|
210
210
|
/**
|
|
211
|
-
*
|
|
211
|
+
* <p>数据偏移量,默认为 0, 必须为Limit参数的整数倍</p>
|
|
212
212
|
*/
|
|
213
213
|
Offset?: number;
|
|
214
214
|
/**
|
|
215
|
-
*
|
|
215
|
+
* <p>每页大小,默认为 15,最大1000</p>
|
|
216
216
|
*/
|
|
217
217
|
Limit?: number;
|
|
218
218
|
/**
|
|
219
|
-
*
|
|
219
|
+
* <p>创建者用户 Uin,不传或为空只将 Uin 作为条件查询</p>
|
|
220
220
|
*/
|
|
221
221
|
CreateUin?: number;
|
|
222
222
|
/**
|
|
223
|
-
*
|
|
223
|
+
* <p>标签键数组,与标签值同时存在或同时不存在,不存在时表示查询该用户所有标签,当与TagKey同时传递时只取本值</p>
|
|
224
224
|
*/
|
|
225
225
|
TagKeys?: Array<string>;
|
|
226
226
|
/**
|
|
227
|
-
*
|
|
227
|
+
* <p>是否展现项目标签。1:展示 0:不展示</p>
|
|
228
228
|
*/
|
|
229
229
|
ShowProject?: number;
|
|
230
230
|
}
|
|
@@ -258,23 +258,23 @@ export interface DescribeProjectsRequest {
|
|
|
258
258
|
*/
|
|
259
259
|
export interface DescribeTagValuesRequest {
|
|
260
260
|
/**
|
|
261
|
-
*
|
|
261
|
+
* <p>标签键列表</p>
|
|
262
262
|
*/
|
|
263
263
|
TagKeys: Array<string>;
|
|
264
264
|
/**
|
|
265
|
-
*
|
|
265
|
+
* <p>创建者用户 Uin,不传或为空只将 Uin 作为条件查询</p>
|
|
266
266
|
*/
|
|
267
267
|
CreateUin?: number;
|
|
268
268
|
/**
|
|
269
|
-
*
|
|
269
|
+
* <p>数据偏移量,默认为 0, 必须为Limit参数的整数倍</p>
|
|
270
270
|
*/
|
|
271
271
|
Offset?: number;
|
|
272
272
|
/**
|
|
273
|
-
*
|
|
273
|
+
* <p>每页大小,默认为 15,最大1000</p>
|
|
274
274
|
*/
|
|
275
275
|
Limit?: number;
|
|
276
276
|
/**
|
|
277
|
-
*
|
|
277
|
+
* <p>标签类型。取值: Custom:自定义标签。 System:系统标签。 All:全部标签。 默认值:All。</p>
|
|
278
278
|
*/
|
|
279
279
|
Category?: string;
|
|
280
280
|
}
|
|
@@ -359,19 +359,19 @@ export interface ModifyResourcesTagValueResponse {
|
|
|
359
359
|
*/
|
|
360
360
|
export interface DescribeTagsResponse {
|
|
361
361
|
/**
|
|
362
|
-
*
|
|
362
|
+
* <p>结果总数</p>
|
|
363
363
|
*/
|
|
364
364
|
TotalCount?: number;
|
|
365
365
|
/**
|
|
366
|
-
*
|
|
366
|
+
* <p>数据位移偏量</p>
|
|
367
367
|
*/
|
|
368
368
|
Offset?: number;
|
|
369
369
|
/**
|
|
370
|
-
*
|
|
370
|
+
* <p>每页大小</p>
|
|
371
371
|
*/
|
|
372
372
|
Limit?: number;
|
|
373
373
|
/**
|
|
374
|
-
*
|
|
374
|
+
* <p>标签列表</p>
|
|
375
375
|
*/
|
|
376
376
|
Tags?: Array<TagWithDelete>;
|
|
377
377
|
/**
|
|
@@ -841,19 +841,19 @@ export interface DescribeTagsSeqRequest {
|
|
|
841
841
|
*/
|
|
842
842
|
export interface DescribeTagValuesResponse {
|
|
843
843
|
/**
|
|
844
|
-
*
|
|
844
|
+
* <p>结果总数</p>
|
|
845
845
|
*/
|
|
846
846
|
TotalCount?: number;
|
|
847
847
|
/**
|
|
848
|
-
*
|
|
848
|
+
* <p>数据位移偏量</p>
|
|
849
849
|
*/
|
|
850
850
|
Offset?: number;
|
|
851
851
|
/**
|
|
852
|
-
*
|
|
852
|
+
* <p>每页大小</p>
|
|
853
853
|
*/
|
|
854
854
|
Limit?: number;
|
|
855
855
|
/**
|
|
856
|
-
*
|
|
856
|
+
* <p>标签列表</p>
|
|
857
857
|
*/
|
|
858
858
|
Tags?: Array<Tag>;
|
|
859
859
|
/**
|
|
@@ -9,7 +9,7 @@ export declare class Client extends AbstractClient {
|
|
|
9
9
|
constructor(clientConfig: ClientConfig);
|
|
10
10
|
/**
|
|
11
11
|
* 查询开通Mysql结果,`Response.Data.Status = "notexist"` 表示未开通,如果未开通,可以调用 [CreateMySQL](https://cloud.tencent.com/document/api/876/128186) 来开通
|
|
12
|
-
`Response.Data. Status = "success"` 表示开通成功,Mysql开通成功后,可通过接口设置数据库账号相关功能包括但不限于【创建账号、删除账号、查询可授权权限列表、查询账号已有权限、修改主机、修改配置、修改账号库表权限】、集群操作相关【查询集群参数、修改集群参数】,连接设置相关【关闭外网、开通外网、查询集群信息】,备份回档相关【创建手动回档、删除手动回档、修改自动备份配置信息、查询备份文件列表、集群回档、查询任务列表、获取table列表、获取集群数据库列表、查询备份下载地址】,相关功能接口文档:[TDSQL-C MySQL API文档](https://cloud.tencent.com/document/product/1003/48106)
|
|
12
|
+
`Response.Data. Status = "success"` 表示开通成功,Mysql开通成功后,可通过接口设置数据库账号相关功能包括但不限于【创建账号、删除账号、查询可授权权限列表、查询账号已有权限、修改主机、修改配置、修改账号库表权限】、集群操作相关【查询集群参数、修改集群参数】,连接设置相关【关闭外网、开通外网、查询集群信息】,备份回档相关【创建手动回档、删除手动回档、修改自动备份配置信息、查询备份文件列表、集群回档、查询任务列表、获取table列表、获取集群数据库列表、查询备份下载地址】,相关功能接口文档:[TDSQL-C MySQL API文档](https://cloud.tencent.com/document/product/1003/48106),可以通过 [RunSql](https://cloud.tencent.com/document/api/876/127880) 接口来执行 sql 命令,比如创建表格、插入数据、删除表格等 sql 命令
|
|
13
13
|
*/
|
|
14
14
|
DescribeCreateMySQLResult(req: DescribeCreateMySQLResultRequest, cb?: (error: string, rep: DescribeCreateMySQLResultResponse) => void): Promise<DescribeCreateMySQLResultResponse>;
|
|
15
15
|
/**
|
|
@@ -25,13 +25,13 @@ export declare class Client extends AbstractClient {
|
|
|
25
25
|
*/
|
|
26
26
|
CreateHostingDomain(req: CreateHostingDomainRequest, cb?: (error: string, rep: CreateHostingDomainResponse) => void): Promise<CreateHostingDomainResponse>;
|
|
27
27
|
/**
|
|
28
|
-
* 开通Mysql
|
|
28
|
+
* 开通Mysql型数据库
|
|
29
29
|
|
|
30
|
-
开通后,可通过 [DescribeCreateMySQLResult ](https://cloud.tencent.com/document/api/876/128185)
|
|
30
|
+
开通后,可通过 [DescribeCreateMySQLResult ](https://cloud.tencent.com/document/api/876/128185) 查询开通结果,Mysql开通成功后,可通过接口设置数据库账号相关功能包括但不限于【创建账号、删除账号、查询可授权权限列表、查询账号已有权限、修改主机、修改配置、修改账号库表权限】、集群操作相关【查询集群参数、修改集群参数】,连接设置相关【关闭外网、开通外网、查询集群信息】,备份回档相关【创建手动回档、删除手动回档、修改自动备份配置信息、查询备份文件列表、集群回档、查询任务列表、获取table列表、获取集群数据库列表、查询备份下载地址】,相关功能接口文档:[TDSQL-C MySQL API文档](https://cloud.tencent.com/document/product/1003/48106),可以通过 [RunSql](https://cloud.tencent.com/document/api/876/127880) 接口来执行 sql 命令,比如创建表格、插入数据、删除表格等 sql 命令
|
|
31
31
|
*/
|
|
32
32
|
CreateMySQL(req: CreateMySQLRequest, cb?: (error: string, rep: CreateMySQLResponse) => void): Promise<CreateMySQLResponse>;
|
|
33
33
|
/**
|
|
34
|
-
* 本接口(CreateTable)
|
|
34
|
+
* 本接口(CreateTable)用于创建文档型数据库表,支持创建capped类型集合,暂时不支持分片表
|
|
35
35
|
*/
|
|
36
36
|
CreateTable(req: CreateTableRequest, cb?: (error: string, rep: CreateTableResponse) => void): Promise<CreateTableResponse>;
|
|
37
37
|
/**
|
|
@@ -47,11 +47,11 @@ export declare class Client extends AbstractClient {
|
|
|
47
47
|
*/
|
|
48
48
|
CreateEnv(req: CreateEnvRequest, cb?: (error: string, rep: CreateEnvResponse) => void): Promise<CreateEnvResponse>;
|
|
49
49
|
/**
|
|
50
|
-
*
|
|
50
|
+
* 修改文档型数据库权限
|
|
51
51
|
*/
|
|
52
52
|
ModifyDatabaseACL(req: ModifyDatabaseACLRequest, cb?: (error: string, rep: ModifyDatabaseACLResponse) => void): Promise<ModifyDatabaseACLResponse>;
|
|
53
53
|
/**
|
|
54
|
-
*
|
|
54
|
+
* 本接口用于执行文档型数据库命令
|
|
55
55
|
*/
|
|
56
56
|
RunCommands(req: RunCommandsRequest, cb?: (error: string, rep: RunCommandsResponse) => void): Promise<RunCommandsResponse>;
|
|
57
57
|
/**
|
|
@@ -94,7 +94,7 @@ export declare class Client extends AbstractClient {
|
|
|
94
94
|
/**
|
|
95
95
|
* 查询Mysql集群信息
|
|
96
96
|
|
|
97
|
-
调用该接口前需要先查询Mysql是否开通,可通过 [DescribeCreateMySQLResult ](https://cloud.tencent.com/document/api/876/128185)
|
|
97
|
+
调用该接口前需要先查询Mysql是否开通,可通过 [DescribeCreateMySQLResult ](https://cloud.tencent.com/document/api/876/128185) 查询,只有已开通的才能查到集群信息,Mysql开通成功后,可通过接口设置数据库账号相关功能包括但不限于【创建账号、删除账号、查询可授权权限列表、查询账号已有权限、修改主机、修改配置、修改账号库表权限】、集群操作相关【查询集群参数、修改集群参数】,连接设置相关【关闭外网、开通外网、查询集群信息】,备份回档相关【创建手动回档、删除手动回档、修改自动备份配置信息、查询备份文件列表、集群回档、查询任务列表、获取table列表、获取集群数据库列表、查询备份下载地址】,相关功能接口文档:[TDSQL-C MySQL API文档](https://cloud.tencent.com/document/product/1003/48106),可以通过 [RunSql](https://cloud.tencent.com/document/api/876/127880) 接口来执行 sql 命令,比如创建表格、插入数据、删除表格等 sql 命令
|
|
98
98
|
*/
|
|
99
99
|
DescribeMySQLClusterDetail(req: DescribeMySQLClusterDetailRequest, cb?: (error: string, rep: DescribeMySQLClusterDetailResponse) => void): Promise<DescribeMySQLClusterDetailResponse>;
|
|
100
100
|
/**
|
|
@@ -116,7 +116,7 @@ export declare class Client extends AbstractClient {
|
|
|
116
116
|
*/
|
|
117
117
|
ReinstateEnv(req: ReinstateEnvRequest, cb?: (error: string, rep: ReinstateEnvResponse) => void): Promise<ReinstateEnvResponse>;
|
|
118
118
|
/**
|
|
119
|
-
*
|
|
119
|
+
* 获取文档型数据库权限
|
|
120
120
|
*/
|
|
121
121
|
DescribeDatabaseACL(req: DescribeDatabaseACLRequest, cb?: (error: string, rep: DescribeDatabaseACLResponse) => void): Promise<DescribeDatabaseACLResponse>;
|
|
122
122
|
/**
|
|
@@ -128,11 +128,13 @@ export declare class Client extends AbstractClient {
|
|
|
128
128
|
*/
|
|
129
129
|
DescribeStaticStore(req: DescribeStaticStoreRequest, cb?: (error: string, rep: DescribeStaticStoreResponse) => void): Promise<DescribeStaticStoreResponse>;
|
|
130
130
|
/**
|
|
131
|
-
*
|
|
131
|
+
* 查询文档型数据库表的相关信息,包括索引等信息
|
|
132
|
+
|
|
133
|
+
接口入参中的 Tag 为文档型数据库的实例 Id,可以通过 [DescribeEnvs](https://cloud.tencent.com/document/api/876/34820) 接口返回的 EnvList[0].Databases[0].InstanceId 获取
|
|
132
134
|
*/
|
|
133
135
|
DescribeTable(req: DescribeTableRequest, cb?: (error: string, rep: DescribeTableResponse) => void): Promise<DescribeTableResponse>;
|
|
134
136
|
/**
|
|
135
|
-
* 本接口(UpdateTable)
|
|
137
|
+
* 本接口(UpdateTable)用于修改文档型数据库表信息,当前可以支持创建和删除索引
|
|
136
138
|
*/
|
|
137
139
|
UpdateTable(req: UpdateTableRequest, cb?: (error: string, rep: UpdateTableResponse) => void): Promise<UpdateTableResponse>;
|
|
138
140
|
/**
|
|
@@ -144,7 +146,9 @@ export declare class Client extends AbstractClient {
|
|
|
144
146
|
*/
|
|
145
147
|
CheckTcbService(req?: CheckTcbServiceRequest, cb?: (error: string, rep: CheckTcbServiceResponse) => void): Promise<CheckTcbServiceResponse>;
|
|
146
148
|
/**
|
|
147
|
-
* 本接口(ListTables)
|
|
149
|
+
* 本接口(ListTables)用于查询文档型数据库所有表信息,包括表名、表中数据条数、表中数据量、索引个数及索引的大小等
|
|
150
|
+
|
|
151
|
+
该接口跟 [DescribeTables](https://cloud.tencent.com/document/api/876/127962) 接口功能一致,后续该接口可能会下线,请使用 [DescribeTable](https://cloud.tencent.com/document/api/876/127962)接口
|
|
148
152
|
*/
|
|
149
153
|
ListTables(req: ListTablesRequest, cb?: (error: string, rep: ListTablesResponse) => void): Promise<ListTablesResponse>;
|
|
150
154
|
/**
|
|
@@ -183,13 +187,17 @@ export declare class Client extends AbstractClient {
|
|
|
183
187
|
*/
|
|
184
188
|
ModifyEnv(req: ModifyEnvRequest, cb?: (error: string, rep: ModifyEnvResponse) => void): Promise<ModifyEnvResponse>;
|
|
185
189
|
/**
|
|
186
|
-
* 执行
|
|
190
|
+
* 执行MySQL语句
|
|
191
|
+
|
|
192
|
+
该接口用来执行 MySql 语句,比如创建表格、插入数据、修改数据、删除字段、添加索引等可以通过sql 语句实现的都可以使用该接口
|
|
187
193
|
|
|
188
194
|
调用该接口前需要先查询Mysql是否开通,可通过 [DescribeCreateMySQLResult ](https://cloud.tencent.com/document/api/876/128185) 查询,只有开通成功才能操作
|
|
189
195
|
*/
|
|
190
196
|
RunSql(req: RunSqlRequest, cb?: (error: string, rep: RunSqlResponse) => void): Promise<RunSqlResponse>;
|
|
191
197
|
/**
|
|
192
|
-
* 本接口(DeleteTable)
|
|
198
|
+
* 本接口(DeleteTable)用于删除文档型数据库表,删除表后表中数据将会被删除且无法恢复,请谨慎操作
|
|
199
|
+
|
|
200
|
+
接口入参中的 Tag 为文档型数据库的实例 Id,可以通过 [DescribeEnvs](https://cloud.tencent.com/document/api/876/34820) 接口返回的 EnvList[0].Databases[0].InstanceId 获取
|
|
193
201
|
*/
|
|
194
202
|
DeleteTable(req: DeleteTableRequest, cb?: (error: string, rep: DeleteTableResponse) => void): Promise<DeleteTableResponse>;
|
|
195
203
|
/**
|
|
@@ -277,7 +285,7 @@ export declare class Client extends AbstractClient {
|
|
|
277
285
|
*/
|
|
278
286
|
DescribeEnvAccountCircle(req: DescribeEnvAccountCircleRequest, cb?: (error: string, rep: DescribeEnvAccountCircleResponse) => void): Promise<DescribeEnvAccountCircleResponse>;
|
|
279
287
|
/**
|
|
280
|
-
* 本接口(
|
|
288
|
+
* 本接口(DescribeTables)用于查询文档型数据库所有表信息,包括表名、表中数据条数、表中数据量、索引个数及索引的大小等
|
|
281
289
|
*/
|
|
282
290
|
DescribeTables(req: DescribeTablesRequest, cb?: (error: string, rep: DescribeTablesResponse) => void): Promise<DescribeTablesResponse>;
|
|
283
291
|
}
|
|
@@ -29,7 +29,7 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
29
29
|
}
|
|
30
30
|
/**
|
|
31
31
|
* 查询开通Mysql结果,`Response.Data.Status = "notexist"` 表示未开通,如果未开通,可以调用 [CreateMySQL](https://cloud.tencent.com/document/api/876/128186) 来开通
|
|
32
|
-
`Response.Data. Status = "success"` 表示开通成功,Mysql开通成功后,可通过接口设置数据库账号相关功能包括但不限于【创建账号、删除账号、查询可授权权限列表、查询账号已有权限、修改主机、修改配置、修改账号库表权限】、集群操作相关【查询集群参数、修改集群参数】,连接设置相关【关闭外网、开通外网、查询集群信息】,备份回档相关【创建手动回档、删除手动回档、修改自动备份配置信息、查询备份文件列表、集群回档、查询任务列表、获取table列表、获取集群数据库列表、查询备份下载地址】,相关功能接口文档:[TDSQL-C MySQL API文档](https://cloud.tencent.com/document/product/1003/48106)
|
|
32
|
+
`Response.Data. Status = "success"` 表示开通成功,Mysql开通成功后,可通过接口设置数据库账号相关功能包括但不限于【创建账号、删除账号、查询可授权权限列表、查询账号已有权限、修改主机、修改配置、修改账号库表权限】、集群操作相关【查询集群参数、修改集群参数】,连接设置相关【关闭外网、开通外网、查询集群信息】,备份回档相关【创建手动回档、删除手动回档、修改自动备份配置信息、查询备份文件列表、集群回档、查询任务列表、获取table列表、获取集群数据库列表、查询备份下载地址】,相关功能接口文档:[TDSQL-C MySQL API文档](https://cloud.tencent.com/document/product/1003/48106),可以通过 [RunSql](https://cloud.tencent.com/document/api/876/127880) 接口来执行 sql 命令,比如创建表格、插入数据、删除表格等 sql 命令
|
|
33
33
|
*/
|
|
34
34
|
async DescribeCreateMySQLResult(req, cb) {
|
|
35
35
|
return this.request("DescribeCreateMySQLResult", req, cb);
|
|
@@ -53,15 +53,15 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
53
53
|
return this.request("CreateHostingDomain", req, cb);
|
|
54
54
|
}
|
|
55
55
|
/**
|
|
56
|
-
* 开通Mysql
|
|
56
|
+
* 开通Mysql型数据库
|
|
57
57
|
|
|
58
|
-
开通后,可通过 [DescribeCreateMySQLResult ](https://cloud.tencent.com/document/api/876/128185)
|
|
58
|
+
开通后,可通过 [DescribeCreateMySQLResult ](https://cloud.tencent.com/document/api/876/128185) 查询开通结果,Mysql开通成功后,可通过接口设置数据库账号相关功能包括但不限于【创建账号、删除账号、查询可授权权限列表、查询账号已有权限、修改主机、修改配置、修改账号库表权限】、集群操作相关【查询集群参数、修改集群参数】,连接设置相关【关闭外网、开通外网、查询集群信息】,备份回档相关【创建手动回档、删除手动回档、修改自动备份配置信息、查询备份文件列表、集群回档、查询任务列表、获取table列表、获取集群数据库列表、查询备份下载地址】,相关功能接口文档:[TDSQL-C MySQL API文档](https://cloud.tencent.com/document/product/1003/48106),可以通过 [RunSql](https://cloud.tencent.com/document/api/876/127880) 接口来执行 sql 命令,比如创建表格、插入数据、删除表格等 sql 命令
|
|
59
59
|
*/
|
|
60
60
|
async CreateMySQL(req, cb) {
|
|
61
61
|
return this.request("CreateMySQL", req, cb);
|
|
62
62
|
}
|
|
63
63
|
/**
|
|
64
|
-
* 本接口(CreateTable)
|
|
64
|
+
* 本接口(CreateTable)用于创建文档型数据库表,支持创建capped类型集合,暂时不支持分片表
|
|
65
65
|
*/
|
|
66
66
|
async CreateTable(req, cb) {
|
|
67
67
|
return this.request("CreateTable", req, cb);
|
|
@@ -83,13 +83,13 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
83
83
|
return this.request("CreateEnv", req, cb);
|
|
84
84
|
}
|
|
85
85
|
/**
|
|
86
|
-
*
|
|
86
|
+
* 修改文档型数据库权限
|
|
87
87
|
*/
|
|
88
88
|
async ModifyDatabaseACL(req, cb) {
|
|
89
89
|
return this.request("ModifyDatabaseACL", req, cb);
|
|
90
90
|
}
|
|
91
91
|
/**
|
|
92
|
-
*
|
|
92
|
+
* 本接口用于执行文档型数据库命令
|
|
93
93
|
*/
|
|
94
94
|
async RunCommands(req, cb) {
|
|
95
95
|
return this.request("RunCommands", req, cb);
|
|
@@ -146,7 +146,7 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
146
146
|
/**
|
|
147
147
|
* 查询Mysql集群信息
|
|
148
148
|
|
|
149
|
-
调用该接口前需要先查询Mysql是否开通,可通过 [DescribeCreateMySQLResult ](https://cloud.tencent.com/document/api/876/128185)
|
|
149
|
+
调用该接口前需要先查询Mysql是否开通,可通过 [DescribeCreateMySQLResult ](https://cloud.tencent.com/document/api/876/128185) 查询,只有已开通的才能查到集群信息,Mysql开通成功后,可通过接口设置数据库账号相关功能包括但不限于【创建账号、删除账号、查询可授权权限列表、查询账号已有权限、修改主机、修改配置、修改账号库表权限】、集群操作相关【查询集群参数、修改集群参数】,连接设置相关【关闭外网、开通外网、查询集群信息】,备份回档相关【创建手动回档、删除手动回档、修改自动备份配置信息、查询备份文件列表、集群回档、查询任务列表、获取table列表、获取集群数据库列表、查询备份下载地址】,相关功能接口文档:[TDSQL-C MySQL API文档](https://cloud.tencent.com/document/product/1003/48106),可以通过 [RunSql](https://cloud.tencent.com/document/api/876/127880) 接口来执行 sql 命令,比如创建表格、插入数据、删除表格等 sql 命令
|
|
150
150
|
*/
|
|
151
151
|
async DescribeMySQLClusterDetail(req, cb) {
|
|
152
152
|
return this.request("DescribeMySQLClusterDetail", req, cb);
|
|
@@ -178,7 +178,7 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
178
178
|
return this.request("ReinstateEnv", req, cb);
|
|
179
179
|
}
|
|
180
180
|
/**
|
|
181
|
-
*
|
|
181
|
+
* 获取文档型数据库权限
|
|
182
182
|
*/
|
|
183
183
|
async DescribeDatabaseACL(req, cb) {
|
|
184
184
|
return this.request("DescribeDatabaseACL", req, cb);
|
|
@@ -196,13 +196,15 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
196
196
|
return this.request("DescribeStaticStore", req, cb);
|
|
197
197
|
}
|
|
198
198
|
/**
|
|
199
|
-
*
|
|
199
|
+
* 查询文档型数据库表的相关信息,包括索引等信息
|
|
200
|
+
|
|
201
|
+
接口入参中的 Tag 为文档型数据库的实例 Id,可以通过 [DescribeEnvs](https://cloud.tencent.com/document/api/876/34820) 接口返回的 EnvList[0].Databases[0].InstanceId 获取
|
|
200
202
|
*/
|
|
201
203
|
async DescribeTable(req, cb) {
|
|
202
204
|
return this.request("DescribeTable", req, cb);
|
|
203
205
|
}
|
|
204
206
|
/**
|
|
205
|
-
* 本接口(UpdateTable)
|
|
207
|
+
* 本接口(UpdateTable)用于修改文档型数据库表信息,当前可以支持创建和删除索引
|
|
206
208
|
*/
|
|
207
209
|
async UpdateTable(req, cb) {
|
|
208
210
|
return this.request("UpdateTable", req, cb);
|
|
@@ -220,7 +222,9 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
220
222
|
return this.request("CheckTcbService", req, cb);
|
|
221
223
|
}
|
|
222
224
|
/**
|
|
223
|
-
* 本接口(ListTables)
|
|
225
|
+
* 本接口(ListTables)用于查询文档型数据库所有表信息,包括表名、表中数据条数、表中数据量、索引个数及索引的大小等
|
|
226
|
+
|
|
227
|
+
该接口跟 [DescribeTables](https://cloud.tencent.com/document/api/876/127962) 接口功能一致,后续该接口可能会下线,请使用 [DescribeTable](https://cloud.tencent.com/document/api/876/127962)接口
|
|
224
228
|
*/
|
|
225
229
|
async ListTables(req, cb) {
|
|
226
230
|
return this.request("ListTables", req, cb);
|
|
@@ -277,7 +281,9 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
277
281
|
return this.request("ModifyEnv", req, cb);
|
|
278
282
|
}
|
|
279
283
|
/**
|
|
280
|
-
* 执行
|
|
284
|
+
* 执行MySQL语句
|
|
285
|
+
|
|
286
|
+
该接口用来执行 MySql 语句,比如创建表格、插入数据、修改数据、删除字段、添加索引等可以通过sql 语句实现的都可以使用该接口
|
|
281
287
|
|
|
282
288
|
调用该接口前需要先查询Mysql是否开通,可通过 [DescribeCreateMySQLResult ](https://cloud.tencent.com/document/api/876/128185) 查询,只有开通成功才能操作
|
|
283
289
|
*/
|
|
@@ -285,7 +291,9 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
285
291
|
return this.request("RunSql", req, cb);
|
|
286
292
|
}
|
|
287
293
|
/**
|
|
288
|
-
* 本接口(DeleteTable)
|
|
294
|
+
* 本接口(DeleteTable)用于删除文档型数据库表,删除表后表中数据将会被删除且无法恢复,请谨慎操作
|
|
295
|
+
|
|
296
|
+
接口入参中的 Tag 为文档型数据库的实例 Id,可以通过 [DescribeEnvs](https://cloud.tencent.com/document/api/876/34820) 接口返回的 EnvList[0].Databases[0].InstanceId 获取
|
|
289
297
|
*/
|
|
290
298
|
async DeleteTable(req, cb) {
|
|
291
299
|
return this.request("DeleteTable", req, cb);
|
|
@@ -403,7 +411,7 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
403
411
|
return this.request("DescribeEnvAccountCircle", req, cb);
|
|
404
412
|
}
|
|
405
413
|
/**
|
|
406
|
-
* 本接口(
|
|
414
|
+
* 本接口(DescribeTables)用于查询文档型数据库所有表信息,包括表名、表中数据条数、表中数据量、索引个数及索引的大小等
|
|
407
415
|
*/
|
|
408
416
|
async DescribeTables(req, cb) {
|
|
409
417
|
return this.request("DescribeTables", req, cb);
|
|
@@ -1965,6 +1965,10 @@ export interface DescribeTablesRequest {
|
|
|
1965
1965
|
* MongoConnector
|
|
1966
1966
|
*/
|
|
1967
1967
|
MongoConnector?: MongoConnector;
|
|
1968
|
+
/**
|
|
1969
|
+
* 指定表名过滤,为空时返回所有表
|
|
1970
|
+
*/
|
|
1971
|
+
TableNames?: Array<string>;
|
|
1968
1972
|
}
|
|
1969
1973
|
/**
|
|
1970
1974
|
* DescribeUserList请求参数结构体
|
|
@@ -2400,7 +2404,7 @@ export interface DescribeHostingDomainTaskResponse {
|
|
|
2400
2404
|
/**
|
|
2401
2405
|
* todo/doing/done/error
|
|
2402
2406
|
*/
|
|
2403
|
-
Status
|
|
2407
|
+
Status?: string;
|
|
2404
2408
|
/**
|
|
2405
2409
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2406
2410
|
*/
|
|
@@ -349,31 +349,33 @@ export interface ModifyInitNodeScriptsRequest {
|
|
|
349
349
|
*/
|
|
350
350
|
export interface AttachNodesRequest {
|
|
351
351
|
/**
|
|
352
|
-
*
|
|
352
|
+
* <p>集群id</p>
|
|
353
353
|
*/
|
|
354
354
|
ClusterId: string;
|
|
355
355
|
/**
|
|
356
|
-
*
|
|
356
|
+
* <p>节点的实例id列表</p>
|
|
357
357
|
*/
|
|
358
358
|
ResourceSet: Array<string>;
|
|
359
359
|
/**
|
|
360
|
-
*
|
|
361
|
-
SLURM默认队列为:compute。
|
|
362
|
-
|
|
360
|
+
* <p>队列名称。不指定则为默认队列:<br>SLURM默认队列为:compute。</p>
|
|
363
361
|
*/
|
|
364
362
|
QueueName?: string;
|
|
365
363
|
/**
|
|
366
|
-
*
|
|
364
|
+
* <p>指定有效的镜像ID,格式形如img-xxx。目前仅支持公有镜像和特定自定义镜像。如不指定,则该字段是默认镜像。</p>
|
|
367
365
|
*/
|
|
368
366
|
ImageId?: string;
|
|
369
367
|
/**
|
|
370
|
-
*
|
|
368
|
+
* <p>要新增节点的资源类型。<li>CVM:CVM实例类型资源</li><li>WORKSPACE:工作空间类型实例资源</li>默认值:CVM。</p>
|
|
371
369
|
*/
|
|
372
370
|
ResourceType?: string;
|
|
373
371
|
/**
|
|
374
|
-
*
|
|
372
|
+
* <p>提供给实例使用的用户数据,需要以 base64 方式编码,支持的最大数据大小为 16KB。关于获取此参数的详细介绍,请参阅<a href="https://cloud.tencent.com/document/product/213/17526">Windows</a>和<a href="https://cloud.tencent.com/document/product/213/17525">Linux</a>启动时运行命令。</p>
|
|
375
373
|
*/
|
|
376
374
|
UserData?: string;
|
|
375
|
+
/**
|
|
376
|
+
* <p>控制实例加入集群是否跳过重装系统</p><p>默认值:False</p>
|
|
377
|
+
*/
|
|
378
|
+
SkipResetInstance?: boolean;
|
|
377
379
|
}
|
|
378
380
|
/**
|
|
379
381
|
* 描述了工作空间的计费模式
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AbstractClient } from "../../../common/abstract_client";
|
|
2
2
|
import { ClientConfig } from "../../../common/interface";
|
|
3
|
-
import {
|
|
3
|
+
import { ImageTranslateLLMRequest, ImageTranslateLLMResponse, TextTranslateRequest, TextTranslateResponse } from "./tmt_models";
|
|
4
4
|
/**
|
|
5
5
|
* tmt client
|
|
6
6
|
* @class
|
|
@@ -8,14 +8,10 @@ import { ImageTranslateResponse, SpeechTranslateResponse, GetFileTranslateReques
|
|
|
8
8
|
export declare class Client extends AbstractClient {
|
|
9
9
|
constructor(clientConfig: ClientConfig);
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* 腾讯翻译为合作伙伴提供文本翻译、文档翻译、交互翻译、AI同传等多种机器翻译服务,具有toB多行业解决方案。作为WMT世界机器翻译大赛冠军,翻译准确度值得信赖,其中,交互翻译能力是业界领先技术;腾讯同传是AI同传业界标杆。<br />
|
|
12
12
|
提示:对于一般开发者,我们建议优先使用SDK接入简化开发。SDK使用介绍请直接查看 5. 开发者资源 部分。
|
|
13
13
|
*/
|
|
14
|
-
|
|
15
|
-
/**
|
|
16
|
-
* 批量翻译文本的接口
|
|
17
|
-
*/
|
|
18
|
-
TextTranslateBatch(req: TextTranslateBatchRequest, cb?: (error: string, rep: TextTranslateBatchResponse) => void): Promise<TextTranslateBatchResponse>;
|
|
14
|
+
TextTranslate(req: TextTranslateRequest, cb?: (error: string, rep: TextTranslateResponse) => void): Promise<TextTranslateResponse>;
|
|
19
15
|
/**
|
|
20
16
|
* 提供18种语言的图片翻译服务,可自动识别图片中的文本内容并翻译成目标语言,识别后的文本按行翻译,后续会提供可按段落翻译的版本。
|
|
21
17
|
|
|
@@ -25,31 +21,4 @@ export declare class Client extends AbstractClient {
|
|
|
25
21
|
提示:对于一般开发者,我们建议优先使用SDK接入简化开发。SDK使用介绍请直接查看 5. 开发者资源 部分。
|
|
26
22
|
*/
|
|
27
23
|
ImageTranslateLLM(req: ImageTranslateLLMRequest, cb?: (error: string, rep: ImageTranslateLLMResponse) => void): Promise<ImageTranslateLLMResponse>;
|
|
28
|
-
/**
|
|
29
|
-
* 在调用文档翻译请求接口后,有回调和轮询两种方式获取识别结果。
|
|
30
|
-
•当采用回调方式时,翻译完成后会将结果通过 POST 请求的形式通知到用户在请求时填写的回调 URL,具体请参见[文件翻译回调说明](https://cloud.tencent.com/document/product/551/91138)。
|
|
31
|
-
• 当采用轮询方式时,需要主动提交任务ID来轮询识别结果,共有任务成功、等待、执行中和失败四种结果,具体信息请参见参数说明。
|
|
32
|
-
*/
|
|
33
|
-
GetFileTranslate(req: GetFileTranslateRequest, cb?: (error: string, rep: GetFileTranslateResponse) => void): Promise<GetFileTranslateResponse>;
|
|
34
|
-
/**
|
|
35
|
-
* 提供13种语言的图片翻译服务,可自动识别图片中的文本内容并翻译成目标语言,识别后的文本按行翻译,后续会提供可按段落翻译的版本。<br />
|
|
36
|
-
提示:对于一般开发者,我们建议优先使用SDK接入简化开发。SDK使用介绍请直接查看 5. 开发者资源 部分。
|
|
37
|
-
*/
|
|
38
|
-
ImageTranslate(req: ImageTranslateRequest, cb?: (error: string, rep: ImageTranslateResponse) => void): Promise<ImageTranslateResponse>;
|
|
39
|
-
/**
|
|
40
|
-
* 腾讯翻译为合作伙伴提供文本翻译、文档翻译、交互翻译、AI同传等多种机器翻译服务,具有toB多行业解决方案。作为WMT世界机器翻译大赛冠军,翻译准确度值得信赖,其中,交互翻译能力是业界领先技术;腾讯同传是AI同传业界标杆。<br />
|
|
41
|
-
提示:对于一般开发者,我们建议优先使用SDK接入简化开发。SDK使用介绍请直接查看 5. 开发者资源 部分。
|
|
42
|
-
*/
|
|
43
|
-
TextTranslate(req: TextTranslateRequest, cb?: (error: string, rep: TextTranslateResponse) => void): Promise<TextTranslateResponse>;
|
|
44
|
-
/**
|
|
45
|
-
* 提交文档原文内容,输出任务ID, 支持原文为单一语种文档(如出现多语言文档,仅支持以选定的源语言相关内容翻译),文件格式有pdf、docx、pptx、xlsx,支持的文本格式有txt、xml、html、markdown、properties。任务翻译数据可保存7天,7天后不再返回任务数据。请注意保存。
|
|
46
|
-
*/
|
|
47
|
-
FileTranslate(req: FileTranslateRequest, cb?: (error: string, rep: FileTranslateResponse) => void): Promise<FileTranslateResponse>;
|
|
48
|
-
/**
|
|
49
|
-
* 本接口提供上传音频,将音频进行语音识别并翻译成文本的服务,目前开放中英互译的语音翻译服务。
|
|
50
|
-
待识别和翻译的音频文件可以是 pcm、mp3和speex 格式,其中支持流式传输的只有pcm格式,pcm采样率要求16kHz、位深16bit、单声道,音频内语音清晰。<br/>
|
|
51
|
-
如果采用流式传输的方式,要求每个分片时长200ms~500ms;如果采用非流式的传输方式,要求音频时长不超过8s。注意最后一个分片的IsEnd参数设置为1。<br />
|
|
52
|
-
提示:对于一般开发者,我们建议优先使用SDK接入简化开发。SDK使用介绍请直接查看 5. 开发者资源部分。
|
|
53
|
-
*/
|
|
54
|
-
SpeechTranslate(req: SpeechTranslateRequest, cb?: (error: string, rep: SpeechTranslateResponse) => void): Promise<SpeechTranslateResponse>;
|
|
55
24
|
}
|
|
@@ -28,17 +28,11 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
28
28
|
super("tmt.tencentcloudapi.com", "2018-03-21", clientConfig);
|
|
29
29
|
}
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* 腾讯翻译为合作伙伴提供文本翻译、文档翻译、交互翻译、AI同传等多种机器翻译服务,具有toB多行业解决方案。作为WMT世界机器翻译大赛冠军,翻译准确度值得信赖,其中,交互翻译能力是业界领先技术;腾讯同传是AI同传业界标杆。<br />
|
|
32
32
|
提示:对于一般开发者,我们建议优先使用SDK接入简化开发。SDK使用介绍请直接查看 5. 开发者资源 部分。
|
|
33
33
|
*/
|
|
34
|
-
async
|
|
35
|
-
return this.request("
|
|
36
|
-
}
|
|
37
|
-
/**
|
|
38
|
-
* 批量翻译文本的接口
|
|
39
|
-
*/
|
|
40
|
-
async TextTranslateBatch(req, cb) {
|
|
41
|
-
return this.request("TextTranslateBatch", req, cb);
|
|
34
|
+
async TextTranslate(req, cb) {
|
|
35
|
+
return this.request("TextTranslate", req, cb);
|
|
42
36
|
}
|
|
43
37
|
/**
|
|
44
38
|
* 提供18种语言的图片翻译服务,可自动识别图片中的文本内容并翻译成目标语言,识别后的文本按行翻译,后续会提供可按段落翻译的版本。
|
|
@@ -51,42 +45,5 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
51
45
|
async ImageTranslateLLM(req, cb) {
|
|
52
46
|
return this.request("ImageTranslateLLM", req, cb);
|
|
53
47
|
}
|
|
54
|
-
/**
|
|
55
|
-
* 在调用文档翻译请求接口后,有回调和轮询两种方式获取识别结果。
|
|
56
|
-
•当采用回调方式时,翻译完成后会将结果通过 POST 请求的形式通知到用户在请求时填写的回调 URL,具体请参见[文件翻译回调说明](https://cloud.tencent.com/document/product/551/91138)。
|
|
57
|
-
• 当采用轮询方式时,需要主动提交任务ID来轮询识别结果,共有任务成功、等待、执行中和失败四种结果,具体信息请参见参数说明。
|
|
58
|
-
*/
|
|
59
|
-
async GetFileTranslate(req, cb) {
|
|
60
|
-
return this.request("GetFileTranslate", req, cb);
|
|
61
|
-
}
|
|
62
|
-
/**
|
|
63
|
-
* 提供13种语言的图片翻译服务,可自动识别图片中的文本内容并翻译成目标语言,识别后的文本按行翻译,后续会提供可按段落翻译的版本。<br />
|
|
64
|
-
提示:对于一般开发者,我们建议优先使用SDK接入简化开发。SDK使用介绍请直接查看 5. 开发者资源 部分。
|
|
65
|
-
*/
|
|
66
|
-
async ImageTranslate(req, cb) {
|
|
67
|
-
return this.request("ImageTranslate", req, cb);
|
|
68
|
-
}
|
|
69
|
-
/**
|
|
70
|
-
* 腾讯翻译为合作伙伴提供文本翻译、文档翻译、交互翻译、AI同传等多种机器翻译服务,具有toB多行业解决方案。作为WMT世界机器翻译大赛冠军,翻译准确度值得信赖,其中,交互翻译能力是业界领先技术;腾讯同传是AI同传业界标杆。<br />
|
|
71
|
-
提示:对于一般开发者,我们建议优先使用SDK接入简化开发。SDK使用介绍请直接查看 5. 开发者资源 部分。
|
|
72
|
-
*/
|
|
73
|
-
async TextTranslate(req, cb) {
|
|
74
|
-
return this.request("TextTranslate", req, cb);
|
|
75
|
-
}
|
|
76
|
-
/**
|
|
77
|
-
* 提交文档原文内容,输出任务ID, 支持原文为单一语种文档(如出现多语言文档,仅支持以选定的源语言相关内容翻译),文件格式有pdf、docx、pptx、xlsx,支持的文本格式有txt、xml、html、markdown、properties。任务翻译数据可保存7天,7天后不再返回任务数据。请注意保存。
|
|
78
|
-
*/
|
|
79
|
-
async FileTranslate(req, cb) {
|
|
80
|
-
return this.request("FileTranslate", req, cb);
|
|
81
|
-
}
|
|
82
|
-
/**
|
|
83
|
-
* 本接口提供上传音频,将音频进行语音识别并翻译成文本的服务,目前开放中英互译的语音翻译服务。
|
|
84
|
-
待识别和翻译的音频文件可以是 pcm、mp3和speex 格式,其中支持流式传输的只有pcm格式,pcm采样率要求16kHz、位深16bit、单声道,音频内语音清晰。<br/>
|
|
85
|
-
如果采用流式传输的方式,要求每个分片时长200ms~500ms;如果采用非流式的传输方式,要求音频时长不超过8s。注意最后一个分片的IsEnd参数设置为1。<br />
|
|
86
|
-
提示:对于一般开发者,我们建议优先使用SDK接入简化开发。SDK使用介绍请直接查看 5. 开发者资源部分。
|
|
87
|
-
*/
|
|
88
|
-
async SpeechTranslate(req, cb) {
|
|
89
|
-
return this.request("SpeechTranslate", req, cb);
|
|
90
|
-
}
|
|
91
48
|
}
|
|
92
49
|
exports.Client = Client;
|