tencentcloud-sdk-nodejs 4.1.60 → 4.1.62
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/ess/v20201111/ess_client.js +6 -0
- package/es/services/essbasic/v20210526/essbasic_client.js +6 -0
- package/es/services/lighthouse/v20200324/lighthouse_client.js +3 -0
- package/es/services/live/v20180801/live_client.js +17 -2
- package/es/services/lke/v20231130/lke_client.js +8 -2
- package/es/services/tiia/v20190529/tiia_client.js +34 -37
- package/es/services/tione/v20211111/tione_client.js +16 -4
- package/es/services/trocket/v20230308/trocket_client.js +8 -2
- 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/antiddos/v20200309/antiddos_models.d.ts +2 -2
- package/tencentcloud/services/asr/v20190614/asr_models.d.ts +1 -1
- package/tencentcloud/services/captcha/v20190722/captcha_models.d.ts +4 -0
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +1 -0
- package/tencentcloud/services/cdwdoris/v20211228/cdwdoris_models.d.ts +2 -2
- package/tencentcloud/services/cfs/v20190719/cfs_models.d.ts +3 -3
- package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +4 -0
- package/tencentcloud/services/cme/v20191029/cme_client.d.ts +13 -13
- package/tencentcloud/services/cme/v20191029/cme_client.js +13 -13
- package/tencentcloud/services/csip/v20221121/csip_models.d.ts +4 -0
- package/tencentcloud/services/es/v20250101/es_models.d.ts +30 -0
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +14 -1
- package/tencentcloud/services/ess/v20201111/ess_client.js +17 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +126 -0
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +17 -2
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +20 -1
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +147 -33
- package/tencentcloud/services/gs/v20191118/gs_models.d.ts +5 -1
- package/tencentcloud/services/hunyuan/v20230901/hunyuan_models.d.ts +5 -3
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_client.d.ts +11 -1
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_client.js +12 -0
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_models.d.ts +22 -0
- package/tencentcloud/services/live/v20180801/live_client.d.ts +23 -3
- package/tencentcloud/services/live/v20180801/live_client.js +33 -3
- package/tencentcloud/services/live/v20180801/live_models.d.ts +330 -70
- package/tencentcloud/services/lke/v20231130/lke_client.d.ts +11 -3
- package/tencentcloud/services/lke/v20231130/lke_client.js +15 -3
- package/tencentcloud/services/lke/v20231130/lke_models.d.ts +153 -85
- package/tencentcloud/services/lkeap/v20240522/lkeap_client.d.ts +1 -1
- package/tencentcloud/services/lkeap/v20240522/lkeap_client.js +1 -1
- package/tencentcloud/services/lkeap/v20240522/lkeap_models.d.ts +4 -2
- package/tencentcloud/services/mps/v20190612/mps_models.d.ts +71 -21
- package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +75 -17
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +1 -1
- package/tencentcloud/services/tiia/v20190529/tiia_client.d.ts +93 -100
- package/tencentcloud/services/tiia/v20190529/tiia_client.js +111 -120
- package/tencentcloud/services/tiia/v20190529/tiia_models.d.ts +12 -86
- package/tencentcloud/services/tione/v20211111/tione_client.d.ts +21 -5
- package/tencentcloud/services/tione/v20211111/tione_client.js +30 -6
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +165 -69
- package/tencentcloud/services/trocket/v20230308/trocket_client.d.ts +21 -3
- package/tencentcloud/services/trocket/v20230308/trocket_client.js +25 -3
- package/tencentcloud/services/trocket/v20230308/trocket_models.d.ts +169 -9
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +1 -1
- package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +2 -0
package/es/common/sdk_version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const sdkVersion = "4.1.
|
|
1
|
+
export const sdkVersion = "4.1.62";
|
|
@@ -24,6 +24,9 @@ export class Client extends AbstractClient {
|
|
|
24
24
|
async DescribeBatchOrganizationRegistrationUrls(req, cb) {
|
|
25
25
|
return this.request("DescribeBatchOrganizationRegistrationUrls", req, cb);
|
|
26
26
|
}
|
|
27
|
+
async DescribeBatchOrganizationRegistrationTasks(req, cb) {
|
|
28
|
+
return this.request("DescribeBatchOrganizationRegistrationTasks", req, cb);
|
|
29
|
+
}
|
|
27
30
|
async CreatePreparedPersonalEsign(req, cb) {
|
|
28
31
|
return this.request("CreatePreparedPersonalEsign", req, cb);
|
|
29
32
|
}
|
|
@@ -243,6 +246,9 @@ export class Client extends AbstractClient {
|
|
|
243
246
|
async DescribeUserFlowType(req, cb) {
|
|
244
247
|
return this.request("DescribeUserFlowType", req, cb);
|
|
245
248
|
}
|
|
249
|
+
async CreateModifyAdminAuthorizationUrl(req, cb) {
|
|
250
|
+
return this.request("CreateModifyAdminAuthorizationUrl", req, cb);
|
|
251
|
+
}
|
|
246
252
|
async CreateIntegrationEmployees(req, cb) {
|
|
247
253
|
return this.request("CreateIntegrationEmployees", req, cb);
|
|
248
254
|
}
|
|
@@ -66,6 +66,9 @@ export class Client extends AbstractClient {
|
|
|
66
66
|
async CreateSealByImage(req, cb) {
|
|
67
67
|
return this.request("CreateSealByImage", req, cb);
|
|
68
68
|
}
|
|
69
|
+
async DescribeBatchOrganizationRegistrationTasks(req, cb) {
|
|
70
|
+
return this.request("DescribeBatchOrganizationRegistrationTasks", req, cb);
|
|
71
|
+
}
|
|
69
72
|
async ChannelCreateConvertTaskApi(req, cb) {
|
|
70
73
|
return this.request("ChannelCreateConvertTaskApi", req, cb);
|
|
71
74
|
}
|
|
@@ -195,6 +198,9 @@ export class Client extends AbstractClient {
|
|
|
195
198
|
async ChannelCreateFlowGroupByFiles(req, cb) {
|
|
196
199
|
return this.request("ChannelCreateFlowGroupByFiles", req, cb);
|
|
197
200
|
}
|
|
201
|
+
async CreateModifyAdminAuthorizationUrl(req, cb) {
|
|
202
|
+
return this.request("CreateModifyAdminAuthorizationUrl", req, cb);
|
|
203
|
+
}
|
|
198
204
|
async DescribeFlowDetailInfo(req, cb) {
|
|
199
205
|
return this.request("DescribeFlowDetailInfo", req, cb);
|
|
200
206
|
}
|
|
@@ -138,6 +138,9 @@ export class Client extends AbstractClient {
|
|
|
138
138
|
async DescribeDockerContainers(req, cb) {
|
|
139
139
|
return this.request("DescribeDockerContainers", req, cb);
|
|
140
140
|
}
|
|
141
|
+
async SyncBlueprint(req, cb) {
|
|
142
|
+
return this.request("SyncBlueprint", req, cb);
|
|
143
|
+
}
|
|
141
144
|
async TerminateDisks(req, cb) {
|
|
142
145
|
return this.request("TerminateDisks", req, cb);
|
|
143
146
|
}
|
|
@@ -57,6 +57,9 @@ export class Client extends AbstractClient {
|
|
|
57
57
|
async DescribeLiveSnapshotRules(req, cb) {
|
|
58
58
|
return this.request("DescribeLiveSnapshotRules", req, cb);
|
|
59
59
|
}
|
|
60
|
+
async DescribeLiveCloudEffectList(req, cb) {
|
|
61
|
+
return this.request("DescribeLiveCloudEffectList", req, cb);
|
|
62
|
+
}
|
|
60
63
|
async ReleaseCaster(req, cb) {
|
|
61
64
|
return this.request("ReleaseCaster", req, cb);
|
|
62
65
|
}
|
|
@@ -192,6 +195,9 @@ export class Client extends AbstractClient {
|
|
|
192
195
|
async DescribeLiveStreamMonitor(req, cb) {
|
|
193
196
|
return this.request("DescribeLiveStreamMonitor", req, cb);
|
|
194
197
|
}
|
|
198
|
+
async SendLiveCloudEffect(req, cb) {
|
|
199
|
+
return this.request("SendLiveCloudEffect", req, cb);
|
|
200
|
+
}
|
|
195
201
|
async DeleteLiveWatermark(req, cb) {
|
|
196
202
|
return this.request("DeleteLiveWatermark", req, cb);
|
|
197
203
|
}
|
|
@@ -213,8 +219,8 @@ export class Client extends AbstractClient {
|
|
|
213
219
|
async DescribeStreamDayPlayInfoList(req, cb) {
|
|
214
220
|
return this.request("DescribeStreamDayPlayInfoList", req, cb);
|
|
215
221
|
}
|
|
216
|
-
async
|
|
217
|
-
return this.request("
|
|
222
|
+
async DescribeLivePadStreamList(req, cb) {
|
|
223
|
+
return this.request("DescribeLivePadStreamList", req, cb);
|
|
218
224
|
}
|
|
219
225
|
async ModifyLiveTranscodeTemplate(req, cb) {
|
|
220
226
|
return this.request("ModifyLiveTranscodeTemplate", req, cb);
|
|
@@ -438,6 +444,9 @@ export class Client extends AbstractClient {
|
|
|
438
444
|
async DescribeCallbackRecordsList(req, cb) {
|
|
439
445
|
return this.request("DescribeCallbackRecordsList", req, cb);
|
|
440
446
|
}
|
|
447
|
+
async StopLivePadStream(req, cb) {
|
|
448
|
+
return this.request("StopLivePadStream", req, cb);
|
|
449
|
+
}
|
|
441
450
|
async CreateLiveRecordRule(req, cb) {
|
|
442
451
|
return this.request("CreateLiveRecordRule", req, cb);
|
|
443
452
|
}
|
|
@@ -468,6 +477,9 @@ export class Client extends AbstractClient {
|
|
|
468
477
|
async DescribeLivePadTemplates(req, cb) {
|
|
469
478
|
return this.request("DescribeLivePadTemplates", req, cb);
|
|
470
479
|
}
|
|
480
|
+
async ModifyLivePushAuthKey(req, cb) {
|
|
481
|
+
return this.request("ModifyLivePushAuthKey", req, cb);
|
|
482
|
+
}
|
|
471
483
|
async DescribeLiveWatermarkRules(req, cb) {
|
|
472
484
|
return this.request("DescribeLiveWatermarkRules", req, cb);
|
|
473
485
|
}
|
|
@@ -585,6 +597,9 @@ export class Client extends AbstractClient {
|
|
|
585
597
|
async DescribeLiveStreamPushInfoList(req, cb) {
|
|
586
598
|
return this.request("DescribeLiveStreamPushInfoList", req, cb);
|
|
587
599
|
}
|
|
600
|
+
async StartLivePadStream(req, cb) {
|
|
601
|
+
return this.request("StartLivePadStream", req, cb);
|
|
602
|
+
}
|
|
588
603
|
async DeleteLiveSnapshotTemplate(req, cb) {
|
|
589
604
|
return this.request("DeleteLiveSnapshotTemplate", req, cb);
|
|
590
605
|
}
|
|
@@ -225,6 +225,9 @@ export class Client extends AbstractClient {
|
|
|
225
225
|
async IgnoreUnsatisfiedReply(req, cb) {
|
|
226
226
|
return this.request("IgnoreUnsatisfiedReply", req, cb);
|
|
227
227
|
}
|
|
228
|
+
async UpdateVar(req, cb) {
|
|
229
|
+
return this.request("UpdateVar", req, cb);
|
|
230
|
+
}
|
|
228
231
|
async ReferShareKnowledge(req, cb) {
|
|
229
232
|
return this.request("ReferShareKnowledge", req, cb);
|
|
230
233
|
}
|
|
@@ -261,8 +264,8 @@ export class Client extends AbstractClient {
|
|
|
261
264
|
async QueryRewrite(req, cb) {
|
|
262
265
|
return this.request("QueryRewrite", req, cb);
|
|
263
266
|
}
|
|
264
|
-
async
|
|
265
|
-
return this.request("
|
|
267
|
+
async DeleteVar(req, cb) {
|
|
268
|
+
return this.request("DeleteVar", req, cb);
|
|
266
269
|
}
|
|
267
270
|
async ModifyApp(req, cb) {
|
|
268
271
|
return this.request("ModifyApp", req, cb);
|
|
@@ -282,6 +285,9 @@ export class Client extends AbstractClient {
|
|
|
282
285
|
async DescribeWorkflowRun(req, cb) {
|
|
283
286
|
return this.request("DescribeWorkflowRun", req, cb);
|
|
284
287
|
}
|
|
288
|
+
async RetryDocAudit(req, cb) {
|
|
289
|
+
return this.request("RetryDocAudit", req, cb);
|
|
290
|
+
}
|
|
285
291
|
async ListReleaseDocPreview(req, cb) {
|
|
286
292
|
return this.request("ListReleaseDocPreview", req, cb);
|
|
287
293
|
}
|
|
@@ -3,70 +3,67 @@ export class Client extends AbstractClient {
|
|
|
3
3
|
constructor(clientConfig) {
|
|
4
4
|
super("tiia.tencentcloudapi.com", "2019-05-29", clientConfig);
|
|
5
5
|
}
|
|
6
|
-
async
|
|
7
|
-
return this.request("
|
|
8
|
-
}
|
|
9
|
-
async DescribeImages(req, cb) {
|
|
10
|
-
return this.request("DescribeImages", req, cb);
|
|
6
|
+
async CreateImage(req, cb) {
|
|
7
|
+
return this.request("CreateImage", req, cb);
|
|
11
8
|
}
|
|
12
|
-
async
|
|
13
|
-
return this.request("
|
|
9
|
+
async UpdateImage(req, cb) {
|
|
10
|
+
return this.request("UpdateImage", req, cb);
|
|
14
11
|
}
|
|
15
|
-
async
|
|
16
|
-
return this.request("
|
|
12
|
+
async DetectLabelPro(req, cb) {
|
|
13
|
+
return this.request("DetectLabelPro", req, cb);
|
|
17
14
|
}
|
|
18
|
-
async
|
|
19
|
-
return this.request("
|
|
15
|
+
async RecognizeCar(req, cb) {
|
|
16
|
+
return this.request("RecognizeCar", req, cb);
|
|
20
17
|
}
|
|
21
18
|
async DetectLabel(req, cb) {
|
|
22
19
|
return this.request("DetectLabel", req, cb);
|
|
23
20
|
}
|
|
21
|
+
async AssessQuality(req, cb) {
|
|
22
|
+
return this.request("AssessQuality", req, cb);
|
|
23
|
+
}
|
|
24
24
|
async DetectChefDress(req, cb) {
|
|
25
25
|
return this.request("DetectChefDress", req, cb);
|
|
26
26
|
}
|
|
27
|
+
async DetectDisgust(req, cb) {
|
|
28
|
+
return this.request("DetectDisgust", req, cb);
|
|
29
|
+
}
|
|
30
|
+
async DescribeGroups(req, cb) {
|
|
31
|
+
return this.request("DescribeGroups", req, cb);
|
|
32
|
+
}
|
|
27
33
|
async DeleteImages(req, cb) {
|
|
28
34
|
return this.request("DeleteImages", req, cb);
|
|
29
35
|
}
|
|
30
36
|
async CropImage(req, cb) {
|
|
31
37
|
return this.request("CropImage", req, cb);
|
|
32
38
|
}
|
|
33
|
-
async
|
|
34
|
-
return this.request("
|
|
35
|
-
}
|
|
36
|
-
async CreateImage(req, cb) {
|
|
37
|
-
return this.request("CreateImage", req, cb);
|
|
38
|
-
}
|
|
39
|
-
async DetectLabelPro(req, cb) {
|
|
40
|
-
return this.request("DetectLabelPro", req, cb);
|
|
41
|
-
}
|
|
42
|
-
async AssessQuality(req, cb) {
|
|
43
|
-
return this.request("AssessQuality", req, cb);
|
|
44
|
-
}
|
|
45
|
-
async DetectDisgust(req, cb) {
|
|
46
|
-
return this.request("DetectDisgust", req, cb);
|
|
39
|
+
async SearchImage(req, cb) {
|
|
40
|
+
return this.request("SearchImage", req, cb);
|
|
47
41
|
}
|
|
48
|
-
async
|
|
49
|
-
return this.request("
|
|
42
|
+
async DescribeImages(req, cb) {
|
|
43
|
+
return this.request("DescribeImages", req, cb);
|
|
50
44
|
}
|
|
51
45
|
async DetectMisbehavior(req, cb) {
|
|
52
46
|
return this.request("DetectMisbehavior", req, cb);
|
|
53
47
|
}
|
|
48
|
+
async CreateGroup(req, cb) {
|
|
49
|
+
return this.request("CreateGroup", req, cb);
|
|
50
|
+
}
|
|
54
51
|
async DetectProduct(req, cb) {
|
|
55
52
|
return this.request("DetectProduct", req, cb);
|
|
56
53
|
}
|
|
57
|
-
async
|
|
58
|
-
return this.request("
|
|
54
|
+
async RecognizeCarPro(req, cb) {
|
|
55
|
+
return this.request("RecognizeCarPro", req, cb);
|
|
59
56
|
}
|
|
60
|
-
async
|
|
61
|
-
return this.request("
|
|
57
|
+
async EnhanceImage(req, cb) {
|
|
58
|
+
return this.request("EnhanceImage", req, cb);
|
|
62
59
|
}
|
|
63
|
-
async
|
|
64
|
-
return this.request("
|
|
60
|
+
async DetectEnvelope(req, cb) {
|
|
61
|
+
return this.request("DetectEnvelope", req, cb);
|
|
65
62
|
}
|
|
66
|
-
async
|
|
67
|
-
return this.request("
|
|
63
|
+
async DetectSecurity(req, cb) {
|
|
64
|
+
return this.request("DetectSecurity", req, cb);
|
|
68
65
|
}
|
|
69
|
-
async
|
|
70
|
-
return this.request("
|
|
66
|
+
async DetectPet(req, cb) {
|
|
67
|
+
return this.request("DetectPet", req, cb);
|
|
71
68
|
}
|
|
72
69
|
}
|
|
@@ -21,8 +21,8 @@ export class Client extends AbstractClient {
|
|
|
21
21
|
async DescribeModelServiceCallInfo(req, cb) {
|
|
22
22
|
return this.request("DescribeModelServiceCallInfo", req, cb);
|
|
23
23
|
}
|
|
24
|
-
async
|
|
25
|
-
return this.request("
|
|
24
|
+
async DescribeTrainingTask(req, cb) {
|
|
25
|
+
return this.request("DescribeTrainingTask", req, cb);
|
|
26
26
|
}
|
|
27
27
|
async DescribeEvents(req, cb) {
|
|
28
28
|
return this.request("DescribeEvents", req, cb);
|
|
@@ -39,11 +39,14 @@ export class Client extends AbstractClient {
|
|
|
39
39
|
async CreateTrainingTask(req, cb) {
|
|
40
40
|
return this.request("CreateTrainingTask", req, cb);
|
|
41
41
|
}
|
|
42
|
+
async ModifyModelServiceAuthorization(req, cb) {
|
|
43
|
+
return this.request("ModifyModelServiceAuthorization", req, cb);
|
|
44
|
+
}
|
|
42
45
|
async DeleteNotebook(req, cb) {
|
|
43
46
|
return this.request("DeleteNotebook", req, cb);
|
|
44
47
|
}
|
|
45
|
-
async
|
|
46
|
-
return this.request("
|
|
48
|
+
async DeleteModelServiceAuthToken(req, cb) {
|
|
49
|
+
return this.request("DeleteModelServiceAuthToken", req, cb);
|
|
47
50
|
}
|
|
48
51
|
async DescribeTrainingTaskPods(req, cb) {
|
|
49
52
|
return this.request("DescribeTrainingTaskPods", req, cb);
|
|
@@ -87,6 +90,9 @@ export class Client extends AbstractClient {
|
|
|
87
90
|
async DescribeTrainingModelVersions(req, cb) {
|
|
88
91
|
return this.request("DescribeTrainingModelVersions", req, cb);
|
|
89
92
|
}
|
|
93
|
+
async ModifyModelServiceAuthToken(req, cb) {
|
|
94
|
+
return this.request("ModifyModelServiceAuthToken", req, cb);
|
|
95
|
+
}
|
|
90
96
|
async CreateModelService(req, cb) {
|
|
91
97
|
return this.request("CreateModelService", req, cb);
|
|
92
98
|
}
|
|
@@ -102,9 +108,15 @@ export class Client extends AbstractClient {
|
|
|
102
108
|
async DescribeDatasets(req, cb) {
|
|
103
109
|
return this.request("DescribeDatasets", req, cb);
|
|
104
110
|
}
|
|
111
|
+
async CreateModelServiceAuthToken(req, cb) {
|
|
112
|
+
return this.request("CreateModelServiceAuthToken", req, cb);
|
|
113
|
+
}
|
|
105
114
|
async DescribeBillingResourceInstanceRunningJobs(req, cb) {
|
|
106
115
|
return this.request("DescribeBillingResourceInstanceRunningJobs", req, cb);
|
|
107
116
|
}
|
|
117
|
+
async DescribeTrainingTasks(req, cb) {
|
|
118
|
+
return this.request("DescribeTrainingTasks", req, cb);
|
|
119
|
+
}
|
|
108
120
|
async ModifyModelService(req, cb) {
|
|
109
121
|
return this.request("ModifyModelService", req, cb);
|
|
110
122
|
}
|
|
@@ -39,6 +39,9 @@ export class Client extends AbstractClient {
|
|
|
39
39
|
async ImportSourceClusterConsumerGroups(req, cb) {
|
|
40
40
|
return this.request("ImportSourceClusterConsumerGroups", req, cb);
|
|
41
41
|
}
|
|
42
|
+
async DescribeSmoothMigrationTaskList(req, cb) {
|
|
43
|
+
return this.request("DescribeSmoothMigrationTaskList", req, cb);
|
|
44
|
+
}
|
|
42
45
|
async DeleteInstance(req, cb) {
|
|
43
46
|
return this.request("DeleteInstance", req, cb);
|
|
44
47
|
}
|
|
@@ -105,6 +108,9 @@ export class Client extends AbstractClient {
|
|
|
105
108
|
async ModifyMQTTInsPublicEndpoint(req, cb) {
|
|
106
109
|
return this.request("ModifyMQTTInsPublicEndpoint", req, cb);
|
|
107
110
|
}
|
|
111
|
+
async ModifyInstance(req, cb) {
|
|
112
|
+
return this.request("ModifyInstance", req, cb);
|
|
113
|
+
}
|
|
108
114
|
async DescribeConsumerGroup(req, cb) {
|
|
109
115
|
return this.request("DescribeConsumerGroup", req, cb);
|
|
110
116
|
}
|
|
@@ -180,8 +186,8 @@ export class Client extends AbstractClient {
|
|
|
180
186
|
async DescribeTopic(req, cb) {
|
|
181
187
|
return this.request("DescribeTopic", req, cb);
|
|
182
188
|
}
|
|
183
|
-
async
|
|
184
|
-
return this.request("
|
|
189
|
+
async DescribeMigrationTaskList(req, cb) {
|
|
190
|
+
return this.request("DescribeMigrationTaskList", req, cb);
|
|
185
191
|
}
|
|
186
192
|
async ChangeMigratingTopicToNextStage(req, cb) {
|
|
187
193
|
return this.request("ChangeMigratingTopicToNextStage", req, cb);
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const sdkVersion = "4.1.
|
|
1
|
+
export declare const sdkVersion = "4.1.62";
|
|
@@ -586,7 +586,7 @@ export interface DescribeListBGPInstancesRequest {
|
|
|
586
586
|
*/
|
|
587
587
|
FilterTransRegionFlag?: number;
|
|
588
588
|
/**
|
|
589
|
-
*
|
|
589
|
+
* ZoneID列表
|
|
590
590
|
*/
|
|
591
591
|
FilterZoneIdList?: Array<number | bigint>;
|
|
592
592
|
}
|
|
@@ -5111,7 +5111,7 @@ export interface DescribeBizTrendRequest {
|
|
|
5111
5111
|
*/
|
|
5112
5112
|
ProtoInfo?: Array<ProtocolPort>;
|
|
5113
5113
|
/**
|
|
5114
|
-
*
|
|
5114
|
+
* 业务类型:</br>
|
|
5115
5115
|
port:端口业务
|
|
5116
5116
|
domain:域名业务
|
|
5117
5117
|
*/
|
|
@@ -959,7 +959,7 @@ export interface CreateRecTaskRequest {
|
|
|
959
959
|
**注意:电话通讯场景,请务必使用以下8k引擎**
|
|
960
960
|
• 8k_zh:中文电话通讯;
|
|
961
961
|
• 8k_en:英文电话通讯;
|
|
962
|
-
•
|
|
962
|
+
• 8k_zh_large:中文电话场景专用大模型引擎。通过显著提升模型参数规模与语言建模能力,实现对电话音频中复杂场景(如口音干扰、背景噪声)的高精度识别,识别准确率较常规版本大幅提升。[点击这里](https://console.cloud.tencent.com/asr/demonstrate) 对比常规版本与普方大模型效果;
|
|
963
963
|
|
|
964
964
|
注意:如您有电话通讯场景识别需求,但发现需求语种仅支持16k,可将8k音频传入下方16k引擎,亦能获取识别结果。但**16k引擎并非基于电话通讯数据训练,无法承诺此种调用方式的识别效果,需由您自行验证识别结果是否可用**
|
|
965
965
|
|
|
@@ -683,6 +683,10 @@ export interface DescribeCaptchaResultResponse {
|
|
|
683
683
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
684
684
|
*/
|
|
685
685
|
DeviceRiskCategory?: string;
|
|
686
|
+
/**
|
|
687
|
+
* 验证码评分
|
|
688
|
+
*/
|
|
689
|
+
Score?: number;
|
|
686
690
|
/**
|
|
687
691
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
688
692
|
*/
|
|
@@ -635,7 +635,7 @@ export interface ZoneInfo {
|
|
|
635
635
|
*/
|
|
636
636
|
ZoneId?: number;
|
|
637
637
|
/**
|
|
638
|
-
*
|
|
638
|
+
* Encrypted
|
|
639
639
|
*/
|
|
640
640
|
Encrypt?: number;
|
|
641
641
|
/**
|
|
@@ -2797,7 +2797,7 @@ export interface BackupStatus {
|
|
|
2797
2797
|
*/
|
|
2798
2798
|
BackupJobId?: number;
|
|
2799
2799
|
/**
|
|
2800
|
-
* 实例对应
|
|
2800
|
+
* 实例对应Snapshot的id
|
|
2801
2801
|
*/
|
|
2802
2802
|
TaskId?: number;
|
|
2803
2803
|
}
|
|
@@ -488,7 +488,7 @@ export interface ModifyFileSystemAutoScaleUpRuleRequest {
|
|
|
488
488
|
*/
|
|
489
489
|
ScaleUpThreshold: number;
|
|
490
490
|
/**
|
|
491
|
-
* 扩容后目标阈值,范围[
|
|
491
|
+
* 扩容后目标阈值,范围[10-90],该值要小于 ScaleUpThreshold
|
|
492
492
|
*/
|
|
493
493
|
TargetThreshold: number;
|
|
494
494
|
/**
|
|
@@ -1152,7 +1152,7 @@ export interface ModifyFileSystemAutoScaleUpRuleResponse {
|
|
|
1152
1152
|
*/
|
|
1153
1153
|
ScaleUpThreshold?: number;
|
|
1154
1154
|
/**
|
|
1155
|
-
* 扩容后达到阈值,范围[
|
|
1155
|
+
* 扩容后达到阈值,范围[10-90]
|
|
1156
1156
|
*/
|
|
1157
1157
|
TargetThreshold?: number;
|
|
1158
1158
|
/**
|
|
@@ -1385,7 +1385,7 @@ export interface AutoScaleUpRule {
|
|
|
1385
1385
|
*/
|
|
1386
1386
|
ScaleThreshold?: number;
|
|
1387
1387
|
/**
|
|
1388
|
-
* 扩容后使用量跟集群总量比例,范围[
|
|
1388
|
+
* 扩容后使用量跟集群总量比例,范围[10-90]
|
|
1389
1389
|
*/
|
|
1390
1390
|
TargetThreshold?: number;
|
|
1391
1391
|
}
|
|
@@ -2049,6 +2049,10 @@ export interface CreateAlertCenterOmitRequest {
|
|
|
2049
2049
|
AlertTable 告警中心 InterceptionTable拦截列表
|
|
2050
2050
|
*/
|
|
2051
2051
|
TableType: string;
|
|
2052
|
+
/**
|
|
2053
|
+
* 处置对象,事件ID列表
|
|
2054
|
+
*/
|
|
2055
|
+
HandleEventIdList?: Array<string>;
|
|
2052
2056
|
}
|
|
2053
2057
|
/**
|
|
2054
2058
|
* DescribeVpcAcRule请求参数结构体
|
|
@@ -144,20 +144,20 @@ export declare class Client extends AbstractClient {
|
|
|
144
144
|
/**
|
|
145
145
|
* 对媒体转推项目进行操作。
|
|
146
146
|
### 操作类型<a id="Operation"></a>
|
|
147
|
-
- `AddSource`(添加输入源),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.
|
|
148
|
-
- `DeleteSource`(删除输入源),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.
|
|
149
|
-
- `SwitchSource`(切换当前播放的输入源),项目状态为 Working 时可以操作。参见 [示例](#.E7.A4.BA.E4.BE.
|
|
150
|
-
- `AddDestination`( 添加输出源),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.
|
|
151
|
-
- `DeleteDestination`(删除输出源),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.
|
|
152
|
-
- `EnableDestination`(启动输出源),项目状态为 Working 时可以操作。参见 [示例](#.E7.A4.BA.E4.BE.
|
|
153
|
-
- `DisableDestination`(停止输出源),项目状态为 Working 时可以操作。参见 [示例](#.E7.A4.BA.E4.BE.
|
|
154
|
-
- `ModifyDestination`(修改输出源),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.
|
|
155
|
-
- `Start`(启动媒体转推),项目状态为 Idle 时可以操作。参见 [示例](#.E7.A4.BA.E4.BE.
|
|
147
|
+
- `AddSource`(添加输入源),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B6-.E6.B7.BB.E5.8A.A0.E8.BE.93.E5.85.A5.E6.BA.90);
|
|
148
|
+
- `DeleteSource`(删除输入源),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B3-.E5.88.A0.E9.99.A4.E8.BE.93.E5.85.A5.E6.BA.90);
|
|
149
|
+
- `SwitchSource`(切换当前播放的输入源),项目状态为 Working 时可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B13-.E5.88.87.E6.8D.A2.E5.BD.93.E5.89.8D.E6.92.AD.E6.94.BE.E7.9A.84.E8.BE.93.E5.85.A5.E6.BA.90)
|
|
150
|
+
- `AddDestination`( 添加输出源),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B7-.E6.B7.BB.E5.8A.A0.E8.BE.93.E5.87.BA.E6.BA.90);
|
|
151
|
+
- `DeleteDestination`(删除输出源),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B4-.E5.88.A0.E9.99.A4.E8.BE.93.E5.87.BA.E6.BA.90);
|
|
152
|
+
- `EnableDestination`(启动输出源),项目状态为 Working 时可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B5-.E5.90.AF.E5.8A.A8.E8.BE.93.E5.87.BA.E6.BA.90);
|
|
153
|
+
- `DisableDestination`(停止输出源),项目状态为 Working 时可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B2-.E5.81.9C.E6.AD.A2.E8.BE.93.E5.87.BA.E6.BA.90);
|
|
154
|
+
- `ModifyDestination`(修改输出源),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B1-.E4.BF.AE.E6.94.B9.E8.BE.93.E5.87.BA.E6.BA.90);
|
|
155
|
+
- `Start`(启动媒体转推),项目状态为 Idle 时可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B10-.E5.90.AF.E5.8A.A8.E5.AA.92.E4.BD.93.E8.BD.AC.E6.8E.A8)。发起 Start 请求成功后,媒体转推项目开始启动,30秒内还需要再进行一次 Confirm操作进行确认;
|
|
156
156
|
- `Confirm`(确认媒体转推项目启动),项目状态为 Working 时可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B14-.E7.A1.AE.E8.AE.A4.E5.AA.92.E4.BD.93.E8.BD.AC.E6.8E.A8.E9.A1.B9.E7.9B.AE.E5.90.AF.E5.8A.A8);
|
|
157
|
-
- `Stop`(停止媒体转推),项目状态为 Working 时可以操作。参见 [示例](#.E7.A4.BA.E4.BE.
|
|
158
|
-
- `ModifyOutputMediaSetting`(修改媒体输出配置),项目状态为 Idle 时可以操作。参见 [示例](#.E7.A4.BA.E4.BE.
|
|
159
|
-
- `ModifyPlaySetting`(修改播放结束时间),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.
|
|
160
|
-
- `DescribePlayInfo`(查询播放信息),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.
|
|
157
|
+
- `Stop`(停止媒体转推),项目状态为 Working 时可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B9-.E5.81.9C.E6.AD.A2.E5.AA.92.E4.BD.93.E8.BD.AC.E6.8E.A8);
|
|
158
|
+
- `ModifyOutputMediaSetting`(修改媒体输出配置),项目状态为 Idle 时可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B12-.E4.BF.AE.E6.94.B9.E8.BE.93.E5.87.BA.E7.9A.84.E5.AA.92.E4.BD.93.E9.85.8D.E7.BD.AE);
|
|
159
|
+
- `ModifyPlaySetting`(修改播放结束时间),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B8-.E4.BF.AE.E6.94.B9.E7.BB.93.E6.9D.9F.E6.97.B6.E9.97.B4);
|
|
160
|
+
- `DescribePlayInfo`(查询播放信息),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B15-.E6.9F.A5.E8.AF.A2.E5.AA.92.E4.BD.93.E8.BD.AC.E6.8E.A8.E9.A1.B9.E7.9B.AE.E7.9A.84.E6.92.AD.E6.94.BE.E4.BF.A1.E6.81.AF)。
|
|
161
161
|
*/
|
|
162
162
|
HandleMediaCastProject(req: HandleMediaCastProjectRequest, cb?: (error: string, rep: HandleMediaCastProjectResponse) => void): Promise<HandleMediaCastProjectResponse>;
|
|
163
163
|
/**
|
|
@@ -226,20 +226,20 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
226
226
|
/**
|
|
227
227
|
* 对媒体转推项目进行操作。
|
|
228
228
|
### 操作类型<a id="Operation"></a>
|
|
229
|
-
- `AddSource`(添加输入源),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.
|
|
230
|
-
- `DeleteSource`(删除输入源),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.
|
|
231
|
-
- `SwitchSource`(切换当前播放的输入源),项目状态为 Working 时可以操作。参见 [示例](#.E7.A4.BA.E4.BE.
|
|
232
|
-
- `AddDestination`( 添加输出源),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.
|
|
233
|
-
- `DeleteDestination`(删除输出源),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.
|
|
234
|
-
- `EnableDestination`(启动输出源),项目状态为 Working 时可以操作。参见 [示例](#.E7.A4.BA.E4.BE.
|
|
235
|
-
- `DisableDestination`(停止输出源),项目状态为 Working 时可以操作。参见 [示例](#.E7.A4.BA.E4.BE.
|
|
236
|
-
- `ModifyDestination`(修改输出源),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.
|
|
237
|
-
- `Start`(启动媒体转推),项目状态为 Idle 时可以操作。参见 [示例](#.E7.A4.BA.E4.BE.
|
|
229
|
+
- `AddSource`(添加输入源),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B6-.E6.B7.BB.E5.8A.A0.E8.BE.93.E5.85.A5.E6.BA.90);
|
|
230
|
+
- `DeleteSource`(删除输入源),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B3-.E5.88.A0.E9.99.A4.E8.BE.93.E5.85.A5.E6.BA.90);
|
|
231
|
+
- `SwitchSource`(切换当前播放的输入源),项目状态为 Working 时可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B13-.E5.88.87.E6.8D.A2.E5.BD.93.E5.89.8D.E6.92.AD.E6.94.BE.E7.9A.84.E8.BE.93.E5.85.A5.E6.BA.90)
|
|
232
|
+
- `AddDestination`( 添加输出源),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B7-.E6.B7.BB.E5.8A.A0.E8.BE.93.E5.87.BA.E6.BA.90);
|
|
233
|
+
- `DeleteDestination`(删除输出源),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B4-.E5.88.A0.E9.99.A4.E8.BE.93.E5.87.BA.E6.BA.90);
|
|
234
|
+
- `EnableDestination`(启动输出源),项目状态为 Working 时可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B5-.E5.90.AF.E5.8A.A8.E8.BE.93.E5.87.BA.E6.BA.90);
|
|
235
|
+
- `DisableDestination`(停止输出源),项目状态为 Working 时可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B2-.E5.81.9C.E6.AD.A2.E8.BE.93.E5.87.BA.E6.BA.90);
|
|
236
|
+
- `ModifyDestination`(修改输出源),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B1-.E4.BF.AE.E6.94.B9.E8.BE.93.E5.87.BA.E6.BA.90);
|
|
237
|
+
- `Start`(启动媒体转推),项目状态为 Idle 时可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B10-.E5.90.AF.E5.8A.A8.E5.AA.92.E4.BD.93.E8.BD.AC.E6.8E.A8)。发起 Start 请求成功后,媒体转推项目开始启动,30秒内还需要再进行一次 Confirm操作进行确认;
|
|
238
238
|
- `Confirm`(确认媒体转推项目启动),项目状态为 Working 时可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B14-.E7.A1.AE.E8.AE.A4.E5.AA.92.E4.BD.93.E8.BD.AC.E6.8E.A8.E9.A1.B9.E7.9B.AE.E5.90.AF.E5.8A.A8);
|
|
239
|
-
- `Stop`(停止媒体转推),项目状态为 Working 时可以操作。参见 [示例](#.E7.A4.BA.E4.BE.
|
|
240
|
-
- `ModifyOutputMediaSetting`(修改媒体输出配置),项目状态为 Idle 时可以操作。参见 [示例](#.E7.A4.BA.E4.BE.
|
|
241
|
-
- `ModifyPlaySetting`(修改播放结束时间),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.
|
|
242
|
-
- `DescribePlayInfo`(查询播放信息),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.
|
|
239
|
+
- `Stop`(停止媒体转推),项目状态为 Working 时可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B9-.E5.81.9C.E6.AD.A2.E5.AA.92.E4.BD.93.E8.BD.AC.E6.8E.A8);
|
|
240
|
+
- `ModifyOutputMediaSetting`(修改媒体输出配置),项目状态为 Idle 时可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B12-.E4.BF.AE.E6.94.B9.E8.BE.93.E5.87.BA.E7.9A.84.E5.AA.92.E4.BD.93.E9.85.8D.E7.BD.AE);
|
|
241
|
+
- `ModifyPlaySetting`(修改播放结束时间),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B8-.E4.BF.AE.E6.94.B9.E7.BB.93.E6.9D.9F.E6.97.B6.E9.97.B4);
|
|
242
|
+
- `DescribePlayInfo`(查询播放信息),项目状态为 Idle、Working 时均可以操作。参见 [示例](#.E7.A4.BA.E4.BE.8B15-.E6.9F.A5.E8.AF.A2.E5.AA.92.E4.BD.93.E8.BD.AC.E6.8E.A8.E9.A1.B9.E7.9B.AE.E7.9A.84.E6.92.AD.E6.94.BE.E4.BF.A1.E6.81.AF)。
|
|
243
243
|
*/
|
|
244
244
|
async HandleMediaCastProject(req, cb) {
|
|
245
245
|
return this.request("HandleMediaCastProject", req, cb);
|
|
@@ -159,6 +159,16 @@ export interface Usage {
|
|
|
159
159
|
*/
|
|
160
160
|
TotalTokens?: number;
|
|
161
161
|
}
|
|
162
|
+
/**
|
|
163
|
+
* 文档解析配置
|
|
164
|
+
*/
|
|
165
|
+
export interface DocumentParseConfig {
|
|
166
|
+
/**
|
|
167
|
+
* 0:图片以链接形式返回
|
|
168
|
+
1:返回图片中提取的文本内容
|
|
169
|
+
*/
|
|
170
|
+
ImageResponseType?: number;
|
|
171
|
+
}
|
|
162
172
|
/**
|
|
163
173
|
* ParseDocument返回参数结构体
|
|
164
174
|
*/
|
|
@@ -242,6 +252,10 @@ export interface ChunkDocumentResponse {
|
|
|
242
252
|
* 无
|
|
243
253
|
*/
|
|
244
254
|
Chunks?: Array<Chunk>;
|
|
255
|
+
/**
|
|
256
|
+
* token消耗量
|
|
257
|
+
*/
|
|
258
|
+
Usage?: Usage;
|
|
245
259
|
/**
|
|
246
260
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
247
261
|
*/
|
|
@@ -347,6 +361,10 @@ export interface ChunkConfig {
|
|
|
347
361
|
* 分隔符列表
|
|
348
362
|
*/
|
|
349
363
|
Delimiters?: Array<string>;
|
|
364
|
+
/**
|
|
365
|
+
* 相邻切片重合字符数,需要小于分片长度
|
|
366
|
+
*/
|
|
367
|
+
ChunkOverlap?: number;
|
|
350
368
|
}
|
|
351
369
|
/**
|
|
352
370
|
* 会话内容,按对话时间从旧到新在数组中排列,长度受模型窗口大小限制。
|
|
@@ -388,6 +406,18 @@ export interface ParseDocument {
|
|
|
388
406
|
支持的图片像素:单边介于20-10000px之间。
|
|
389
407
|
*/
|
|
390
408
|
FileContent?: string;
|
|
409
|
+
/**
|
|
410
|
+
* 文档解析配置
|
|
411
|
+
*/
|
|
412
|
+
DocumentParseConfig?: DocumentParseConfig;
|
|
413
|
+
/**
|
|
414
|
+
* 文档的起始页码
|
|
415
|
+
*/
|
|
416
|
+
FileStartPageNumber?: number;
|
|
417
|
+
/**
|
|
418
|
+
* 文档的结束页码
|
|
419
|
+
*/
|
|
420
|
+
FileEndPageNumber?: number;
|
|
391
421
|
}
|
|
392
422
|
/**
|
|
393
423
|
* GetDocumentChunkResult返回参数结构体
|