tencentcloud-sdk-nodejs 4.1.180 → 4.1.182
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/cloudapp/v20220530/cloudapp_client.js +3 -0
- package/es/services/ctsdb/v20230202/ctsdb_client.js +3 -0
- package/es/services/cynosdb/v20190107/cynosdb_client.js +141 -30
- package/es/services/hunyuan/v20230901/hunyuan_client.js +33 -39
- package/es/services/mps/v20190612/mps_client.js +3 -0
- package/es/services/tcb/v20180608/tcb_client.js +180 -141
- package/es/services/tcr/v20190924/tcr_client.js +3 -0
- package/es/services/vod/v20180717/vod_client.js +47 -20
- 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/aiart/v20221229/aiart_models.d.ts +11 -23
- package/tencentcloud/services/apm/v20210622/apm_client.d.ts +1 -2
- package/tencentcloud/services/apm/v20210622/apm_client.js +1 -2
- package/tencentcloud/services/apm/v20210622/apm_models.d.ts +41 -0
- package/tencentcloud/services/cloudapp/v20220530/cloudapp_client.d.ts +5 -1
- package/tencentcloud/services/cloudapp/v20220530/cloudapp_client.js +6 -0
- package/tencentcloud/services/cloudapp/v20220530/cloudapp_models.d.ts +60 -13
- package/tencentcloud/services/csip/v20221121/csip_models.d.ts +4 -0
- package/tencentcloud/services/ctsdb/v20230202/ctsdb_client.d.ts +5 -1
- package/tencentcloud/services/ctsdb/v20230202/ctsdb_client.js +6 -0
- package/tencentcloud/services/ctsdb/v20230202/ctsdb_models.d.ts +211 -44
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +179 -31
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +267 -45
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +2860 -453
- package/tencentcloud/services/emr/v20190103/emr_models.d.ts +24 -0
- package/tencentcloud/services/es/v20180416/es_models.d.ts +30 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +11 -12
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +60 -393
- package/tencentcloud/services/gme/v20180711/gme_client.d.ts +0 -4
- package/tencentcloud/services/gme/v20180711/gme_client.js +0 -4
- package/tencentcloud/services/gme/v20180711/gme_models.d.ts +7 -10
- package/tencentcloud/services/hunyuan/v20230901/hunyuan_client.d.ts +62 -72
- package/tencentcloud/services/hunyuan/v20230901/hunyuan_client.js +83 -97
- package/tencentcloud/services/hunyuan/v20230901/hunyuan_models.d.ts +0 -99
- package/tencentcloud/services/lke/v20231130/lke_models.d.ts +9 -5
- package/tencentcloud/services/mps/v20190612/mps_client.d.ts +5 -1
- package/tencentcloud/services/mps/v20190612/mps_client.js +6 -0
- package/tencentcloud/services/mps/v20190612/mps_models.d.ts +99 -0
- package/tencentcloud/services/oceanus/v20190422/oceanus_models.d.ts +41 -28
- package/tencentcloud/services/ses/v20201002/ses_models.d.ts +5 -4
- package/tencentcloud/services/tcb/v20180608/tcb_client.d.ts +199 -147
- package/tencentcloud/services/tcb/v20180608/tcb_client.js +296 -218
- package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +1109 -268
- package/tencentcloud/services/tcr/v20190924/tcr_client.d.ts +5 -1
- package/tencentcloud/services/tcr/v20190924/tcr_client.js +6 -0
- package/tencentcloud/services/tcr/v20190924/tcr_models.d.ts +73 -42
- package/tencentcloud/services/teo/v20220901/teo_client.d.ts +2 -1
- package/tencentcloud/services/teo/v20220901/teo_client.js +2 -1
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +98 -48
- package/tencentcloud/services/tse/v20201207/tse_models.d.ts +0 -3
- package/tencentcloud/services/tts/v20190823/tts_models.d.ts +15 -15
- package/tencentcloud/services/vod/v20180717/vod_client.d.ts +83 -47
- package/tencentcloud/services/vod/v20180717/vod_client.js +110 -56
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +903 -411
package/es/common/sdk_version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const sdkVersion = "4.1.
|
|
1
|
+
export const sdkVersion = "4.1.182";
|
|
@@ -6,6 +6,9 @@ export class Client extends AbstractClient {
|
|
|
6
6
|
async VerifyLicense(req, cb) {
|
|
7
7
|
return this.request("VerifyLicense", req, cb);
|
|
8
8
|
}
|
|
9
|
+
async IssueLicense(req, cb) {
|
|
10
|
+
return this.request("IssueLicense", req, cb);
|
|
11
|
+
}
|
|
9
12
|
async DescribeLicense(req, cb) {
|
|
10
13
|
return this.request("DescribeLicense", req, cb);
|
|
11
14
|
}
|
|
@@ -6,6 +6,9 @@ export class Client extends AbstractClient {
|
|
|
6
6
|
async DescribeClusters(req, cb) {
|
|
7
7
|
return this.request("DescribeClusters", req, cb);
|
|
8
8
|
}
|
|
9
|
+
async DescribeClusterDetail(req, cb) {
|
|
10
|
+
return this.request("DescribeClusterDetail", req, cb);
|
|
11
|
+
}
|
|
9
12
|
async DescribeDatabases(req, cb) {
|
|
10
13
|
return this.request("DescribeDatabases", req, cb);
|
|
11
14
|
}
|
|
@@ -12,14 +12,14 @@ export class Client extends AbstractClient {
|
|
|
12
12
|
async DescribeBackupConfig(req, cb) {
|
|
13
13
|
return this.request("DescribeBackupConfig", req, cb);
|
|
14
14
|
}
|
|
15
|
-
async
|
|
16
|
-
return this.request("
|
|
15
|
+
async ModifyAccountDescription(req, cb) {
|
|
16
|
+
return this.request("ModifyAccountDescription", req, cb);
|
|
17
17
|
}
|
|
18
18
|
async ModifyBinlogConfig(req, cb) {
|
|
19
19
|
return this.request("ModifyBinlogConfig", req, cb);
|
|
20
20
|
}
|
|
21
|
-
async
|
|
22
|
-
return this.request("
|
|
21
|
+
async DeleteAccounts(req, cb) {
|
|
22
|
+
return this.request("DeleteAccounts", req, cb);
|
|
23
23
|
}
|
|
24
24
|
async CreateProxyEndPoint(req, cb) {
|
|
25
25
|
return this.request("CreateProxyEndPoint", req, cb);
|
|
@@ -30,6 +30,9 @@ export class Client extends AbstractClient {
|
|
|
30
30
|
async CreateAuditRuleTemplate(req, cb) {
|
|
31
31
|
return this.request("CreateAuditRuleTemplate", req, cb);
|
|
32
32
|
}
|
|
33
|
+
async ModifyLibraDBForwardConfig(req, cb) {
|
|
34
|
+
return this.request("ModifyLibraDBForwardConfig", req, cb);
|
|
35
|
+
}
|
|
33
36
|
async GrantAccountPrivileges(req, cb) {
|
|
34
37
|
return this.request("GrantAccountPrivileges", req, cb);
|
|
35
38
|
}
|
|
@@ -39,8 +42,8 @@ export class Client extends AbstractClient {
|
|
|
39
42
|
async ModifyMaintainPeriodConfig(req, cb) {
|
|
40
43
|
return this.request("ModifyMaintainPeriodConfig", req, cb);
|
|
41
44
|
}
|
|
42
|
-
async
|
|
43
|
-
return this.request("
|
|
45
|
+
async DescribeResourcesByDealName(req, cb) {
|
|
46
|
+
return this.request("DescribeResourcesByDealName", req, cb);
|
|
44
47
|
}
|
|
45
48
|
async ModifyDBInstanceSecurityGroups(req, cb) {
|
|
46
49
|
return this.request("ModifyDBInstanceSecurityGroups", req, cb);
|
|
@@ -54,6 +57,9 @@ export class Client extends AbstractClient {
|
|
|
54
57
|
async CreateAuditLogFile(req, cb) {
|
|
55
58
|
return this.request("CreateAuditLogFile", req, cb);
|
|
56
59
|
}
|
|
60
|
+
async DescribeLibraDBClusters(req, cb) {
|
|
61
|
+
return this.request("DescribeLibraDBClusters", req, cb);
|
|
62
|
+
}
|
|
57
63
|
async DescribeSlaveZones(req, cb) {
|
|
58
64
|
return this.request("DescribeSlaveZones", req, cb);
|
|
59
65
|
}
|
|
@@ -63,6 +69,9 @@ export class Client extends AbstractClient {
|
|
|
63
69
|
async CloseProxy(req, cb) {
|
|
64
70
|
return this.request("CloseProxy", req, cb);
|
|
65
71
|
}
|
|
72
|
+
async OfflineCluster(req, cb) {
|
|
73
|
+
return this.request("OfflineCluster", req, cb);
|
|
74
|
+
}
|
|
66
75
|
async DescribeProxySpecs(req, cb) {
|
|
67
76
|
return this.request("DescribeProxySpecs", req, cb);
|
|
68
77
|
}
|
|
@@ -84,8 +93,14 @@ export class Client extends AbstractClient {
|
|
|
84
93
|
async DescribeBinlogDownloadUrl(req, cb) {
|
|
85
94
|
return this.request("DescribeBinlogDownloadUrl", req, cb);
|
|
86
95
|
}
|
|
87
|
-
async
|
|
88
|
-
return this.request("
|
|
96
|
+
async DeleteLibraDBCluster(req, cb) {
|
|
97
|
+
return this.request("DeleteLibraDBCluster", req, cb);
|
|
98
|
+
}
|
|
99
|
+
async CopyClusterPasswordComplexity(req, cb) {
|
|
100
|
+
return this.request("CopyClusterPasswordComplexity", req, cb);
|
|
101
|
+
}
|
|
102
|
+
async DownloadLibraDBClusterList(req, cb) {
|
|
103
|
+
return this.request("DownloadLibraDBClusterList", req, cb);
|
|
89
104
|
}
|
|
90
105
|
async DescribeRedoLogs(req, cb) {
|
|
91
106
|
return this.request("DescribeRedoLogs", req, cb);
|
|
@@ -102,6 +117,12 @@ export class Client extends AbstractClient {
|
|
|
102
117
|
async RenewClusters(req, cb) {
|
|
103
118
|
return this.request("RenewClusters", req, cb);
|
|
104
119
|
}
|
|
120
|
+
async SearchClusterDatabases(req, cb) {
|
|
121
|
+
return this.request("SearchClusterDatabases", req, cb);
|
|
122
|
+
}
|
|
123
|
+
async IsolateLibraDBCluster(req, cb) {
|
|
124
|
+
return this.request("IsolateLibraDBCluster", req, cb);
|
|
125
|
+
}
|
|
105
126
|
async DisassociateSecurityGroups(req, cb) {
|
|
106
127
|
return this.request("DisassociateSecurityGroups", req, cb);
|
|
107
128
|
}
|
|
@@ -120,12 +141,18 @@ export class Client extends AbstractClient {
|
|
|
120
141
|
async DescribeAccountPrivileges(req, cb) {
|
|
121
142
|
return this.request("DescribeAccountPrivileges", req, cb);
|
|
122
143
|
}
|
|
144
|
+
async OpenClusterReadOnlyInstanceGroupAccess(req, cb) {
|
|
145
|
+
return this.request("OpenClusterReadOnlyInstanceGroupAccess", req, cb);
|
|
146
|
+
}
|
|
123
147
|
async CloseClusterPasswordComplexity(req, cb) {
|
|
124
148
|
return this.request("CloseClusterPasswordComplexity", req, cb);
|
|
125
149
|
}
|
|
126
150
|
async RollBackCluster(req, cb) {
|
|
127
151
|
return this.request("RollBackCluster", req, cb);
|
|
128
152
|
}
|
|
153
|
+
async OfflineLibraDBCluster(req, cb) {
|
|
154
|
+
return this.request("OfflineLibraDBCluster", req, cb);
|
|
155
|
+
}
|
|
129
156
|
async DescribeBinlogSaveDays(req, cb) {
|
|
130
157
|
return this.request("DescribeBinlogSaveDays", req, cb);
|
|
131
158
|
}
|
|
@@ -138,15 +165,24 @@ export class Client extends AbstractClient {
|
|
|
138
165
|
async DescribeIsolatedInstances(req, cb) {
|
|
139
166
|
return this.request("DescribeIsolatedInstances", req, cb);
|
|
140
167
|
}
|
|
141
|
-
async
|
|
142
|
-
return this.request("
|
|
168
|
+
async ModifyLibraDBClusterReplicationObject(req, cb) {
|
|
169
|
+
return this.request("ModifyLibraDBClusterReplicationObject", req, cb);
|
|
143
170
|
}
|
|
144
171
|
async ModifyClusterName(req, cb) {
|
|
145
172
|
return this.request("ModifyClusterName", req, cb);
|
|
146
173
|
}
|
|
174
|
+
async ModifyLibraDBClusterName(req, cb) {
|
|
175
|
+
return this.request("ModifyLibraDBClusterName", req, cb);
|
|
176
|
+
}
|
|
147
177
|
async ModifyProxyRwSplit(req, cb) {
|
|
148
178
|
return this.request("ModifyProxyRwSplit", req, cb);
|
|
149
179
|
}
|
|
180
|
+
async RenewLibraDBClusters(req, cb) {
|
|
181
|
+
return this.request("RenewLibraDBClusters", req, cb);
|
|
182
|
+
}
|
|
183
|
+
async DescribeLibraDBClusterAutoMapRule(req, cb) {
|
|
184
|
+
return this.request("DescribeLibraDBClusterAutoMapRule", req, cb);
|
|
185
|
+
}
|
|
150
186
|
async ModifyVipVport(req, cb) {
|
|
151
187
|
return this.request("ModifyVipVport", req, cb);
|
|
152
188
|
}
|
|
@@ -168,6 +204,9 @@ export class Client extends AbstractClient {
|
|
|
168
204
|
async ModifyClusterPasswordComplexity(req, cb) {
|
|
169
205
|
return this.request("ModifyClusterPasswordComplexity", req, cb);
|
|
170
206
|
}
|
|
207
|
+
async SetLibraDBClusterRenewFlag(req, cb) {
|
|
208
|
+
return this.request("SetLibraDBClusterRenewFlag", req, cb);
|
|
209
|
+
}
|
|
171
210
|
async CreateBackup(req, cb) {
|
|
172
211
|
return this.request("CreateBackup", req, cb);
|
|
173
212
|
}
|
|
@@ -186,8 +225,8 @@ export class Client extends AbstractClient {
|
|
|
186
225
|
async UpgradeProxy(req, cb) {
|
|
187
226
|
return this.request("UpgradeProxy", req, cb);
|
|
188
227
|
}
|
|
189
|
-
async
|
|
190
|
-
return this.request("
|
|
228
|
+
async DescribeLibraDBVersion(req, cb) {
|
|
229
|
+
return this.request("DescribeLibraDBVersion", req, cb);
|
|
191
230
|
}
|
|
192
231
|
async DescribeClusters(req, cb) {
|
|
193
232
|
return this.request("DescribeClusters", req, cb);
|
|
@@ -216,14 +255,20 @@ export class Client extends AbstractClient {
|
|
|
216
255
|
async ModifyResourcePackagesDeductionPriority(req, cb) {
|
|
217
256
|
return this.request("ModifyResourcePackagesDeductionPriority", req, cb);
|
|
218
257
|
}
|
|
219
|
-
async
|
|
220
|
-
return this.request("
|
|
258
|
+
async DescribeLibraDBClusterDetail(req, cb) {
|
|
259
|
+
return this.request("DescribeLibraDBClusterDetail", req, cb);
|
|
260
|
+
}
|
|
261
|
+
async ModifyLibraDBClusterAccountDescription(req, cb) {
|
|
262
|
+
return this.request("ModifyLibraDBClusterAccountDescription", req, cb);
|
|
221
263
|
}
|
|
222
264
|
async DescribeInstanceSlowQueries(req, cb) {
|
|
223
265
|
return this.request("DescribeInstanceSlowQueries", req, cb);
|
|
224
266
|
}
|
|
225
|
-
async
|
|
226
|
-
return this.request("
|
|
267
|
+
async DescribeParamTemplateDetail(req, cb) {
|
|
268
|
+
return this.request("DescribeParamTemplateDetail", req, cb);
|
|
269
|
+
}
|
|
270
|
+
async ActivateLibraDBInstance(req, cb) {
|
|
271
|
+
return this.request("ActivateLibraDBInstance", req, cb);
|
|
227
272
|
}
|
|
228
273
|
async ModifyClusterParam(req, cb) {
|
|
229
274
|
return this.request("ModifyClusterParam", req, cb);
|
|
@@ -237,48 +282,66 @@ export class Client extends AbstractClient {
|
|
|
237
282
|
async CreateAccounts(req, cb) {
|
|
238
283
|
return this.request("CreateAccounts", req, cb);
|
|
239
284
|
}
|
|
285
|
+
async ReplayInstanceAuditLog(req, cb) {
|
|
286
|
+
return this.request("ReplayInstanceAuditLog", req, cb);
|
|
287
|
+
}
|
|
240
288
|
async RollbackToNewCluster(req, cb) {
|
|
241
289
|
return this.request("RollbackToNewCluster", req, cb);
|
|
242
290
|
}
|
|
243
|
-
async
|
|
244
|
-
return this.request("
|
|
291
|
+
async DescribeInstanceParams(req, cb) {
|
|
292
|
+
return this.request("DescribeInstanceParams", req, cb);
|
|
245
293
|
}
|
|
246
294
|
async DescribeAuditLogFiles(req, cb) {
|
|
247
295
|
return this.request("DescribeAuditLogFiles", req, cb);
|
|
248
296
|
}
|
|
297
|
+
async DescribeLibraDBClusterAccountPrivileges(req, cb) {
|
|
298
|
+
return this.request("DescribeLibraDBClusterAccountPrivileges", req, cb);
|
|
299
|
+
}
|
|
249
300
|
async DeleteClusterDatabase(req, cb) {
|
|
250
301
|
return this.request("DeleteClusterDatabase", req, cb);
|
|
251
302
|
}
|
|
252
303
|
async SwitchClusterZone(req, cb) {
|
|
253
304
|
return this.request("SwitchClusterZone", req, cb);
|
|
254
305
|
}
|
|
255
|
-
async
|
|
256
|
-
return this.request("
|
|
306
|
+
async DeleteLibraDBClusterAccounts(req, cb) {
|
|
307
|
+
return this.request("DeleteLibraDBClusterAccounts", req, cb);
|
|
308
|
+
}
|
|
309
|
+
async IsolateLibraDBInstance(req, cb) {
|
|
310
|
+
return this.request("IsolateLibraDBInstance", req, cb);
|
|
257
311
|
}
|
|
258
312
|
async AddInstances(req, cb) {
|
|
259
313
|
return this.request("AddInstances", req, cb);
|
|
260
314
|
}
|
|
315
|
+
async ResumeServerless(req, cb) {
|
|
316
|
+
return this.request("ResumeServerless", req, cb);
|
|
317
|
+
}
|
|
261
318
|
async ModifyInstanceUpgradeLimitDays(req, cb) {
|
|
262
319
|
return this.request("ModifyInstanceUpgradeLimitDays", req, cb);
|
|
263
320
|
}
|
|
264
|
-
async
|
|
265
|
-
return this.request("
|
|
321
|
+
async DescribeLibraDBClusterAccounts(req, cb) {
|
|
322
|
+
return this.request("DescribeLibraDBClusterAccounts", req, cb);
|
|
266
323
|
}
|
|
267
324
|
async RevokeAccountPrivileges(req, cb) {
|
|
268
325
|
return this.request("RevokeAccountPrivileges", req, cb);
|
|
269
326
|
}
|
|
270
|
-
async
|
|
271
|
-
return this.request("
|
|
327
|
+
async ModifyLibraDBClusterAccountPrivilege(req, cb) {
|
|
328
|
+
return this.request("ModifyLibraDBClusterAccountPrivilege", req, cb);
|
|
272
329
|
}
|
|
273
330
|
async OpenClusterTransparentEncrypt(req, cb) {
|
|
274
331
|
return this.request("OpenClusterTransparentEncrypt", req, cb);
|
|
275
332
|
}
|
|
333
|
+
async ModifyLibraDBClusterProject(req, cb) {
|
|
334
|
+
return this.request("ModifyLibraDBClusterProject", req, cb);
|
|
335
|
+
}
|
|
276
336
|
async DescribeParamTemplates(req, cb) {
|
|
277
337
|
return this.request("DescribeParamTemplates", req, cb);
|
|
278
338
|
}
|
|
279
339
|
async DeleteBackup(req, cb) {
|
|
280
340
|
return this.request("DeleteBackup", req, cb);
|
|
281
341
|
}
|
|
342
|
+
async RestartLibraDBInstance(req, cb) {
|
|
343
|
+
return this.request("RestartLibraDBInstance", req, cb);
|
|
344
|
+
}
|
|
282
345
|
async DescribeServerlessStrategy(req, cb) {
|
|
283
346
|
return this.request("DescribeServerlessStrategy", req, cb);
|
|
284
347
|
}
|
|
@@ -333,15 +396,30 @@ export class Client extends AbstractClient {
|
|
|
333
396
|
async ModifySnapBackupCrossRegionConfig(req, cb) {
|
|
334
397
|
return this.request("ModifySnapBackupCrossRegionConfig", req, cb);
|
|
335
398
|
}
|
|
399
|
+
async OfflineLibraDBInstance(req, cb) {
|
|
400
|
+
return this.request("OfflineLibraDBInstance", req, cb);
|
|
401
|
+
}
|
|
336
402
|
async OpenWan(req, cb) {
|
|
337
403
|
return this.request("OpenWan", req, cb);
|
|
338
404
|
}
|
|
405
|
+
async DescribeClusterDatabases(req, cb) {
|
|
406
|
+
return this.request("DescribeClusterDatabases", req, cb);
|
|
407
|
+
}
|
|
408
|
+
async ModifyLibraDBClusterAccountHost(req, cb) {
|
|
409
|
+
return this.request("ModifyLibraDBClusterAccountHost", req, cb);
|
|
410
|
+
}
|
|
411
|
+
async DescribeLibraDBClusterAccountAllPrivileges(req, cb) {
|
|
412
|
+
return this.request("DescribeLibraDBClusterAccountAllPrivileges", req, cb);
|
|
413
|
+
}
|
|
339
414
|
async InquirePriceCreate(req, cb) {
|
|
340
415
|
return this.request("InquirePriceCreate", req, cb);
|
|
341
416
|
}
|
|
342
417
|
async AssociateSecurityGroups(req, cb) {
|
|
343
418
|
return this.request("AssociateSecurityGroups", req, cb);
|
|
344
419
|
}
|
|
420
|
+
async DescribeLibraDBInstanceSpecs(req, cb) {
|
|
421
|
+
return this.request("DescribeLibraDBInstanceSpecs", req, cb);
|
|
422
|
+
}
|
|
345
423
|
async DescribeClusterReadOnly(req, cb) {
|
|
346
424
|
return this.request("DescribeClusterReadOnly", req, cb);
|
|
347
425
|
}
|
|
@@ -351,6 +429,9 @@ export class Client extends AbstractClient {
|
|
|
351
429
|
async ModifyAccountPrivileges(req, cb) {
|
|
352
430
|
return this.request("ModifyAccountPrivileges", req, cb);
|
|
353
431
|
}
|
|
432
|
+
async DescribeLibraDBForwardConfig(req, cb) {
|
|
433
|
+
return this.request("DescribeLibraDBForwardConfig", req, cb);
|
|
434
|
+
}
|
|
354
435
|
async DescribeAuditRuleWithInstanceIds(req, cb) {
|
|
355
436
|
return this.request("DescribeAuditRuleWithInstanceIds", req, cb);
|
|
356
437
|
}
|
|
@@ -369,6 +450,9 @@ export class Client extends AbstractClient {
|
|
|
369
450
|
async DescribeAccounts(req, cb) {
|
|
370
451
|
return this.request("DescribeAccounts", req, cb);
|
|
371
452
|
}
|
|
453
|
+
async CheckCreateLibraDBInstance(req, cb) {
|
|
454
|
+
return this.request("CheckCreateLibraDBInstance", req, cb);
|
|
455
|
+
}
|
|
372
456
|
async SetRenewFlag(req, cb) {
|
|
373
457
|
return this.request("SetRenewFlag", req, cb);
|
|
374
458
|
}
|
|
@@ -384,23 +468,32 @@ export class Client extends AbstractClient {
|
|
|
384
468
|
async ReloadBalanceProxyNode(req, cb) {
|
|
385
469
|
return this.request("ReloadBalanceProxyNode", req, cb);
|
|
386
470
|
}
|
|
471
|
+
async DescribeLibraDBClusterTableMapping(req, cb) {
|
|
472
|
+
return this.request("DescribeLibraDBClusterTableMapping", req, cb);
|
|
473
|
+
}
|
|
387
474
|
async DescribeBackupDownloadRestriction(req, cb) {
|
|
388
475
|
return this.request("DescribeBackupDownloadRestriction", req, cb);
|
|
389
476
|
}
|
|
390
|
-
async
|
|
391
|
-
return this.request("
|
|
477
|
+
async DescribeLibraDBDataSource(req, cb) {
|
|
478
|
+
return this.request("DescribeLibraDBDataSource", req, cb);
|
|
392
479
|
}
|
|
393
480
|
async DescribeClusterDatabaseTables(req, cb) {
|
|
394
481
|
return this.request("DescribeClusterDatabaseTables", req, cb);
|
|
395
482
|
}
|
|
483
|
+
async ActivateLibraDBCluster(req, cb) {
|
|
484
|
+
return this.request("ActivateLibraDBCluster", req, cb);
|
|
485
|
+
}
|
|
396
486
|
async ModifyClusterGlobalEncryption(req, cb) {
|
|
397
487
|
return this.request("ModifyClusterGlobalEncryption", req, cb);
|
|
398
488
|
}
|
|
489
|
+
async DescribeLibraDBSlowLogs(req, cb) {
|
|
490
|
+
return this.request("DescribeLibraDBSlowLogs", req, cb);
|
|
491
|
+
}
|
|
399
492
|
async DescribeBackupList(req, cb) {
|
|
400
493
|
return this.request("DescribeBackupList", req, cb);
|
|
401
494
|
}
|
|
402
|
-
async
|
|
403
|
-
return this.request("
|
|
495
|
+
async CreateResourcePackage(req, cb) {
|
|
496
|
+
return this.request("CreateResourcePackage", req, cb);
|
|
404
497
|
}
|
|
405
498
|
async ModifyServerlessStrategy(req, cb) {
|
|
406
499
|
return this.request("ModifyServerlessStrategy", req, cb);
|
|
@@ -426,12 +519,18 @@ export class Client extends AbstractClient {
|
|
|
426
519
|
async ModifyBackupConfig(req, cb) {
|
|
427
520
|
return this.request("ModifyBackupConfig", req, cb);
|
|
428
521
|
}
|
|
522
|
+
async ModifyLibraDBClusterDataSource(req, cb) {
|
|
523
|
+
return this.request("ModifyLibraDBClusterDataSource", req, cb);
|
|
524
|
+
}
|
|
429
525
|
async DescribeInstances(req, cb) {
|
|
430
526
|
return this.request("DescribeInstances", req, cb);
|
|
431
527
|
}
|
|
432
528
|
async DescribeBinlogConfig(req, cb) {
|
|
433
529
|
return this.request("DescribeBinlogConfig", req, cb);
|
|
434
530
|
}
|
|
531
|
+
async InquirePriceMultiSpec(req, cb) {
|
|
532
|
+
return this.request("InquirePriceMultiSpec", req, cb);
|
|
533
|
+
}
|
|
435
534
|
async UpgradeClusterVersion(req, cb) {
|
|
436
535
|
return this.request("UpgradeClusterVersion", req, cb);
|
|
437
536
|
}
|
|
@@ -444,6 +543,9 @@ export class Client extends AbstractClient {
|
|
|
444
543
|
async DescribeClusterParams(req, cb) {
|
|
445
544
|
return this.request("DescribeClusterParams", req, cb);
|
|
446
545
|
}
|
|
546
|
+
async ResetLibraDBClusterAccountPassword(req, cb) {
|
|
547
|
+
return this.request("ResetLibraDBClusterAccountPassword", req, cb);
|
|
548
|
+
}
|
|
447
549
|
async RefundResourcePackage(req, cb) {
|
|
448
550
|
return this.request("RefundResourcePackage", req, cb);
|
|
449
551
|
}
|
|
@@ -471,6 +573,9 @@ export class Client extends AbstractClient {
|
|
|
471
573
|
async SwitchClusterVpc(req, cb) {
|
|
472
574
|
return this.request("SwitchClusterVpc", req, cb);
|
|
473
575
|
}
|
|
576
|
+
async DescribeLibraDBInstanceDetail(req, cb) {
|
|
577
|
+
return this.request("DescribeLibraDBInstanceDetail", req, cb);
|
|
578
|
+
}
|
|
474
579
|
async CreateProxy(req, cb) {
|
|
475
580
|
return this.request("CreateProxy", req, cb);
|
|
476
581
|
}
|
|
@@ -495,12 +600,18 @@ export class Client extends AbstractClient {
|
|
|
495
600
|
async DeleteParamTemplate(req, cb) {
|
|
496
601
|
return this.request("DeleteParamTemplate", req, cb);
|
|
497
602
|
}
|
|
603
|
+
async CreateLibraDBClusters(req, cb) {
|
|
604
|
+
return this.request("CreateLibraDBClusters", req, cb);
|
|
605
|
+
}
|
|
498
606
|
async UpgradeInstance(req, cb) {
|
|
499
607
|
return this.request("UpgradeInstance", req, cb);
|
|
500
608
|
}
|
|
501
609
|
async DescribeBinlogs(req, cb) {
|
|
502
610
|
return this.request("DescribeBinlogs", req, cb);
|
|
503
611
|
}
|
|
612
|
+
async CreateLibraDBClusterAccounts(req, cb) {
|
|
613
|
+
return this.request("CreateLibraDBClusterAccounts", req, cb);
|
|
614
|
+
}
|
|
504
615
|
async DescribeClusterInstanceGroups(req, cb) {
|
|
505
616
|
return this.request("DescribeClusterInstanceGroups", req, cb);
|
|
506
617
|
}
|
|
@@ -519,8 +630,8 @@ export class Client extends AbstractClient {
|
|
|
519
630
|
async CloseSSL(req, cb) {
|
|
520
631
|
return this.request("CloseSSL", req, cb);
|
|
521
632
|
}
|
|
522
|
-
async
|
|
523
|
-
return this.request("
|
|
633
|
+
async DescribeInstanceErrorLogs(req, cb) {
|
|
634
|
+
return this.request("DescribeInstanceErrorLogs", req, cb);
|
|
524
635
|
}
|
|
525
636
|
async IsolateInstance(req, cb) {
|
|
526
637
|
return this.request("IsolateInstance", req, cb);
|
|
@@ -3,73 +3,67 @@ export class Client extends AbstractClient {
|
|
|
3
3
|
constructor(clientConfig) {
|
|
4
4
|
super("hunyuan.tencentcloudapi.com", "2023-09-01", clientConfig);
|
|
5
5
|
}
|
|
6
|
+
async SetPayMode(req, cb) {
|
|
7
|
+
return this.request("SetPayMode", req, cb);
|
|
8
|
+
}
|
|
9
|
+
async ImageQuestion(req, cb) {
|
|
10
|
+
return this.request("ImageQuestion", req, cb);
|
|
11
|
+
}
|
|
12
|
+
async FilesList(req, cb) {
|
|
13
|
+
return this.request("FilesList", req, cb);
|
|
14
|
+
}
|
|
6
15
|
async GetThread(req, cb) {
|
|
7
16
|
return this.request("GetThread", req, cb);
|
|
8
17
|
}
|
|
9
|
-
async
|
|
10
|
-
return this.request("
|
|
18
|
+
async SubmitHunyuanImageChatJob(req, cb) {
|
|
19
|
+
return this.request("SubmitHunyuanImageChatJob", req, cb);
|
|
20
|
+
}
|
|
21
|
+
async CreateThread(req, cb) {
|
|
22
|
+
return this.request("CreateThread", req, cb);
|
|
23
|
+
}
|
|
24
|
+
async GetTokenCount(req, cb) {
|
|
25
|
+
return this.request("GetTokenCount", req, cb);
|
|
11
26
|
}
|
|
12
27
|
async QueryHunyuanImageJob(req, cb) {
|
|
13
28
|
return this.request("QueryHunyuanImageJob", req, cb);
|
|
14
29
|
}
|
|
15
|
-
async
|
|
16
|
-
return this.request("
|
|
30
|
+
async SubmitHunyuanImageJob(req, cb) {
|
|
31
|
+
return this.request("SubmitHunyuanImageJob", req, cb);
|
|
17
32
|
}
|
|
18
|
-
async
|
|
19
|
-
return this.request("
|
|
33
|
+
async FilesDeletions(req, cb) {
|
|
34
|
+
return this.request("FilesDeletions", req, cb);
|
|
20
35
|
}
|
|
21
36
|
async GetThreadMessageList(req, cb) {
|
|
22
37
|
return this.request("GetThreadMessageList", req, cb);
|
|
23
38
|
}
|
|
24
|
-
async GetEmbedding(req, cb) {
|
|
25
|
-
return this.request("GetEmbedding", req, cb);
|
|
26
|
-
}
|
|
27
|
-
async ImageQuestion(req, cb) {
|
|
28
|
-
return this.request("ImageQuestion", req, cb);
|
|
29
|
-
}
|
|
30
39
|
async GroupChatCompletions(req, cb) {
|
|
31
40
|
return this.request("GroupChatCompletions", req, cb);
|
|
32
41
|
}
|
|
42
|
+
async GetThreadMessage(req, cb) {
|
|
43
|
+
return this.request("GetThreadMessage", req, cb);
|
|
44
|
+
}
|
|
33
45
|
async RunThread(req, cb) {
|
|
34
46
|
return this.request("RunThread", req, cb);
|
|
35
47
|
}
|
|
36
|
-
async
|
|
37
|
-
return this.request("
|
|
48
|
+
async ChatCompletions(req, cb) {
|
|
49
|
+
return this.request("ChatCompletions", req, cb);
|
|
38
50
|
}
|
|
39
51
|
async QueryHunyuanImageChatJob(req, cb) {
|
|
40
52
|
return this.request("QueryHunyuanImageChatJob", req, cb);
|
|
41
53
|
}
|
|
42
|
-
async
|
|
43
|
-
return this.request("
|
|
44
|
-
}
|
|
45
|
-
async FilesDeletions(req, cb) {
|
|
46
|
-
return this.request("FilesDeletions", req, cb);
|
|
54
|
+
async ChatTranslations(req, cb) {
|
|
55
|
+
return this.request("ChatTranslations", req, cb);
|
|
47
56
|
}
|
|
48
|
-
async
|
|
49
|
-
return this.request("
|
|
57
|
+
async GetEmbedding(req, cb) {
|
|
58
|
+
return this.request("GetEmbedding", req, cb);
|
|
50
59
|
}
|
|
51
60
|
async FilesUploads(req, cb) {
|
|
52
61
|
return this.request("FilesUploads", req, cb);
|
|
53
62
|
}
|
|
54
|
-
async ActivateService(req, cb) {
|
|
55
|
-
return this.request("ActivateService", req, cb);
|
|
56
|
-
}
|
|
57
|
-
async FilesList(req, cb) {
|
|
58
|
-
return this.request("FilesList", req, cb);
|
|
59
|
-
}
|
|
60
|
-
async Submit3DSmartTopologyJob(req, cb) {
|
|
61
|
-
return this.request("Submit3DSmartTopologyJob", req, cb);
|
|
62
|
-
}
|
|
63
|
-
async SubmitHunyuanImageChatJob(req, cb) {
|
|
64
|
-
return this.request("SubmitHunyuanImageChatJob", req, cb);
|
|
65
|
-
}
|
|
66
|
-
async ChatCompletions(req, cb) {
|
|
67
|
-
return this.request("ChatCompletions", req, cb);
|
|
68
|
-
}
|
|
69
|
-
async GetTokenCount(req, cb) {
|
|
70
|
-
return this.request("GetTokenCount", req, cb);
|
|
71
|
-
}
|
|
72
63
|
async TextToImageLite(req, cb) {
|
|
73
64
|
return this.request("TextToImageLite", req, cb);
|
|
74
65
|
}
|
|
66
|
+
async ActivateService(req, cb) {
|
|
67
|
+
return this.request("ActivateService", req, cb);
|
|
68
|
+
}
|
|
75
69
|
}
|
|
@@ -345,6 +345,9 @@ export class Client extends AbstractClient {
|
|
|
345
345
|
async DescribeImageSpriteTemplates(req, cb) {
|
|
346
346
|
return this.request("DescribeImageSpriteTemplates", req, cb);
|
|
347
347
|
}
|
|
348
|
+
async SyncDubbing(req, cb) {
|
|
349
|
+
return this.request("SyncDubbing", req, cb);
|
|
350
|
+
}
|
|
348
351
|
async DescribeWatermarkTemplates(req, cb) {
|
|
349
352
|
return this.request("DescribeWatermarkTemplates", req, cb);
|
|
350
353
|
}
|