tencentcloud-sdk-nodejs 4.0.532 → 4.0.533
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 +284 -0
- package/SERVICE_CHANGELOG.md +448 -40
- package/package.json +1 -1
- package/products.md +18 -18
- package/src/common/sdk_version.ts +1 -1
- package/src/services/cdwch/v20200915/cdwch_client.ts +92 -3
- package/src/services/cdwch/v20200915/cdwch_models.ts +532 -33
- package/src/services/clb/v20180317/clb_models.ts +2 -2
- package/src/services/cynosdb/v20190107/cynosdb_client.ts +13 -1
- package/src/services/cynosdb/v20190107/cynosdb_models.ts +39 -14
- package/src/services/dasb/v20191018/dasb_client.ts +1 -0
- package/src/services/dasb/v20191018/dasb_models.ts +29 -0
- package/src/services/dlc/v20210125/dlc_client.ts +12 -0
- package/src/services/dlc/v20210125/dlc_models.ts +68 -5
- package/src/services/iotvideo/v20211125/iotvideo_models.ts +5 -0
- package/src/services/live/v20180801/live_client.ts +106 -20
- package/src/services/live/v20180801/live_models.ts +540 -220
- package/src/services/redis/v20180412/redis_models.ts +1 -1
- package/src/services/tem/v20210701/tem_models.ts +29 -9
- package/src/services/teo/v20220901/teo_models.ts +11 -10
- package/src/services/tiia/v20190529/tiia_models.ts +3 -3
- package/src/services/vm/v20201229/vm_models.ts +6 -0
- package/src/services/vod/v20180717/vod_client.ts +106 -53
- package/src/services/vod/v20180717/vod_models.ts +320 -100
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/cdwch/v20200915/cdwch_client.d.ts +29 -1
- package/tencentcloud/services/cdwch/v20200915/cdwch_client.js +42 -0
- package/tencentcloud/services/cdwch/v20200915/cdwch_models.d.ts +455 -33
- package/tencentcloud/services/clb/v20180317/clb_models.d.ts +2 -2
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +5 -1
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +6 -0
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +34 -12
- package/tencentcloud/services/dasb/v20191018/dasb_models.d.ts +25 -0
- package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +5 -1
- package/tencentcloud/services/dlc/v20210125/dlc_client.js +6 -0
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +57 -5
- package/tencentcloud/services/iotvideo/v20211125/iotvideo_models.d.ts +4 -0
- package/tencentcloud/services/live/v20180801/live_client.d.ts +34 -5
- package/tencentcloud/services/live/v20180801/live_client.js +49 -6
- package/tencentcloud/services/live/v20180801/live_models.d.ts +453 -176
- package/tencentcloud/services/redis/v20180412/redis_models.d.ts +1 -1
- package/tencentcloud/services/tem/v20210701/tem_models.d.ts +25 -9
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +11 -10
- package/tencentcloud/services/tiia/v20190529/tiia_models.d.ts +3 -3
- package/tencentcloud/services/vm/v20201229/vm_models.d.ts +5 -0
- package/tencentcloud/services/vod/v20180717/vod_client.d.ts +37 -18
- package/tencentcloud/services/vod/v20180717/vod_client.js +51 -24
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +271 -84
- package/test/cdwch.v20200915.test.js +70 -0
- package/test/cynosdb.v20190107.test.js +10 -0
- package/test/dlc.v20210125.test.js +10 -0
- package/test/live.v20180801.test.js +74 -4
- package/test/vod.v20180717.test.js +54 -14
|
@@ -4225,7 +4225,7 @@ export interface InstanceSet {
|
|
|
4225
4225
|
DiskSize: number
|
|
4226
4226
|
|
|
4227
4227
|
/**
|
|
4228
|
-
* 监控版本。<ul><li>1m
|
|
4228
|
+
* 监控版本。<ul><li>1m:1分钟粒度监控。</li><li>5s:5秒粒度监控。</li></ul>
|
|
4229
4229
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4230
4230
|
*/
|
|
4231
4231
|
MonitorVersion: string
|
|
@@ -32,7 +32,7 @@ export interface CreateResourceRequest {
|
|
|
32
32
|
/**
|
|
33
33
|
* 资源 Id
|
|
34
34
|
*/
|
|
35
|
-
ResourceId
|
|
35
|
+
ResourceId?: string
|
|
36
36
|
|
|
37
37
|
/**
|
|
38
38
|
* 来源渠道
|
|
@@ -613,7 +613,7 @@ export interface CreateEnvironmentResponse {
|
|
|
613
613
|
* 成功时为环境ID,失败为null
|
|
614
614
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
615
615
|
*/
|
|
616
|
-
Result
|
|
616
|
+
Result?: string
|
|
617
617
|
|
|
618
618
|
/**
|
|
619
619
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -972,19 +972,19 @@ export interface CreateEnvironmentRequest {
|
|
|
972
972
|
EnvironmentName: string
|
|
973
973
|
|
|
974
974
|
/**
|
|
975
|
-
*
|
|
975
|
+
* 环境描述
|
|
976
976
|
*/
|
|
977
|
-
|
|
977
|
+
Description?: string
|
|
978
978
|
|
|
979
979
|
/**
|
|
980
|
-
*
|
|
980
|
+
* 私有网络名称
|
|
981
981
|
*/
|
|
982
|
-
|
|
982
|
+
Vpc?: string
|
|
983
983
|
|
|
984
984
|
/**
|
|
985
|
-
*
|
|
985
|
+
* 子网列表
|
|
986
986
|
*/
|
|
987
|
-
|
|
987
|
+
SubnetIds?: Array<string>
|
|
988
988
|
|
|
989
989
|
/**
|
|
990
990
|
* K8s version
|
|
@@ -1015,6 +1015,26 @@ export interface CreateEnvironmentRequest {
|
|
|
1015
1015
|
* 创建环境的region
|
|
1016
1016
|
*/
|
|
1017
1017
|
CreateRegion?: string
|
|
1018
|
+
|
|
1019
|
+
/**
|
|
1020
|
+
* 是否创建私有网络
|
|
1021
|
+
*/
|
|
1022
|
+
SetupVpc?: boolean
|
|
1023
|
+
|
|
1024
|
+
/**
|
|
1025
|
+
* 是否创建 Prometheus 实例
|
|
1026
|
+
*/
|
|
1027
|
+
SetupPrometheus?: boolean
|
|
1028
|
+
|
|
1029
|
+
/**
|
|
1030
|
+
* prometheus 实例 id
|
|
1031
|
+
*/
|
|
1032
|
+
PrometheusId?: string
|
|
1033
|
+
|
|
1034
|
+
/**
|
|
1035
|
+
* apm id
|
|
1036
|
+
*/
|
|
1037
|
+
ApmId?: string
|
|
1018
1038
|
}
|
|
1019
1039
|
|
|
1020
1040
|
/**
|
|
@@ -2346,7 +2366,7 @@ export interface CreateResourceResponse {
|
|
|
2346
2366
|
* 成功与否
|
|
2347
2367
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2348
2368
|
*/
|
|
2349
|
-
Result
|
|
2369
|
+
Result?: boolean
|
|
2350
2370
|
|
|
2351
2371
|
/**
|
|
2352
2372
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -5887,7 +5887,8 @@ export interface Action {
|
|
|
5887
5887
|
<li> TlsVersion;</li>
|
|
5888
5888
|
<li> OcspStapling;</li>
|
|
5889
5889
|
<li> HTTP/2 访问(Http2);</li>
|
|
5890
|
-
<li> 回源跟随重定向(UpstreamFollowRedirect)
|
|
5890
|
+
<li> 回源跟随重定向(UpstreamFollowRedirect);</li>
|
|
5891
|
+
<li> 修改源站(Origin)。</li>
|
|
5891
5892
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5892
5893
|
*/
|
|
5893
5894
|
NormalAction?: NormalAction
|
|
@@ -8028,17 +8029,17 @@ export interface OriginGroup {
|
|
|
8028
8029
|
/**
|
|
8029
8030
|
* 站点ID。
|
|
8030
8031
|
*/
|
|
8031
|
-
ZoneId
|
|
8032
|
+
ZoneId?: string
|
|
8032
8033
|
|
|
8033
8034
|
/**
|
|
8034
8035
|
* 站点名称。
|
|
8035
8036
|
*/
|
|
8036
|
-
ZoneName
|
|
8037
|
+
ZoneName?: string
|
|
8037
8038
|
|
|
8038
8039
|
/**
|
|
8039
8040
|
* 源站组ID。
|
|
8040
8041
|
*/
|
|
8041
|
-
OriginGroupId
|
|
8042
|
+
OriginGroupId?: string
|
|
8042
8043
|
|
|
8043
8044
|
/**
|
|
8044
8045
|
* 源站类型,取值有:
|
|
@@ -8046,12 +8047,12 @@ export interface OriginGroup {
|
|
|
8046
8047
|
<li>third_party:第三方源站;</li>
|
|
8047
8048
|
<li>cos:腾讯云COS源站。</li>
|
|
8048
8049
|
*/
|
|
8049
|
-
OriginType
|
|
8050
|
+
OriginType?: string
|
|
8050
8051
|
|
|
8051
8052
|
/**
|
|
8052
8053
|
* 源站组名称。
|
|
8053
8054
|
*/
|
|
8054
|
-
OriginGroupName
|
|
8055
|
+
OriginGroupName?: string
|
|
8055
8056
|
|
|
8056
8057
|
/**
|
|
8057
8058
|
* 源站配置类型,当OriginType=self时,取值有:
|
|
@@ -8059,23 +8060,23 @@ export interface OriginGroup {
|
|
|
8059
8060
|
<li>weight: 按权重配置。</li>
|
|
8060
8061
|
<li>proto: 按HTTP协议配置。</li>当OriginType=third_party/cos时放空。
|
|
8061
8062
|
*/
|
|
8062
|
-
ConfigurationType
|
|
8063
|
+
ConfigurationType?: string
|
|
8063
8064
|
|
|
8064
8065
|
/**
|
|
8065
8066
|
* 源站记录信息。
|
|
8066
8067
|
*/
|
|
8067
|
-
OriginRecords
|
|
8068
|
+
OriginRecords?: Array<OriginRecord>
|
|
8068
8069
|
|
|
8069
8070
|
/**
|
|
8070
8071
|
* 源站组更新时间。
|
|
8071
8072
|
*/
|
|
8072
|
-
UpdateTime
|
|
8073
|
+
UpdateTime?: string
|
|
8073
8074
|
|
|
8074
8075
|
/**
|
|
8075
8076
|
* 当OriginType=self时,表示回源Host。
|
|
8076
8077
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
8077
8078
|
*/
|
|
8078
|
-
HostHeader
|
|
8079
|
+
HostHeader?: string
|
|
8079
8080
|
}
|
|
8080
8081
|
|
|
8081
8082
|
/**
|
|
@@ -902,9 +902,9 @@ export interface CreateGroupRequest {
|
|
|
902
902
|
GroupName: string
|
|
903
903
|
|
|
904
904
|
/**
|
|
905
|
-
*
|
|
906
|
-
|
|
907
|
-
|
|
905
|
+
* 图片库可容纳的最大图片特征条数,一张图片对应一条图片特征数据,不支持修改。
|
|
906
|
+
单个图片库容量最大可达亿级,达到容量限制后继续创建图片将会报错。
|
|
907
|
+
注意,包月计费下支持绑定的最小库容量为500万。
|
|
908
908
|
*/
|
|
909
909
|
MaxCapacity: number
|
|
910
910
|
|
|
@@ -26,6 +26,7 @@ import {
|
|
|
26
26
|
DescribeFileAttributesTask,
|
|
27
27
|
ReviewAudioVideoTaskInput,
|
|
28
28
|
DescribeAllClassRequest,
|
|
29
|
+
DescribeRoundPlaysRequest,
|
|
29
30
|
WeChatMiniProgramPublishRequest,
|
|
30
31
|
AiAnalysisTaskClassificationInput,
|
|
31
32
|
SvgWatermarkInput,
|
|
@@ -97,6 +98,7 @@ import {
|
|
|
97
98
|
MediaProcessTaskSampleSnapshotResult,
|
|
98
99
|
DescribeDailyMediaPlayStatRequest,
|
|
99
100
|
TerrorismImgReviewTemplateInfoForUpdate,
|
|
101
|
+
FaceConfigureInfoForUpdate,
|
|
100
102
|
ModifyTranscodeTemplateRequest,
|
|
101
103
|
AiAnalysisTaskHighlightResult,
|
|
102
104
|
DeleteAIAnalysisTemplateResponse,
|
|
@@ -172,7 +174,7 @@ import {
|
|
|
172
174
|
TaskStatData,
|
|
173
175
|
CreateVodDomainRequest,
|
|
174
176
|
OcrFullTextConfigureInfoForUpdate,
|
|
175
|
-
|
|
177
|
+
DeleteRoundPlayRequest,
|
|
176
178
|
MediaImageSpriteInfo,
|
|
177
179
|
ProductInstanceRecource,
|
|
178
180
|
MediaProcessTaskAnimatedGraphicResult,
|
|
@@ -219,6 +221,7 @@ import {
|
|
|
219
221
|
ForbidMediaDistributionResponse,
|
|
220
222
|
TimeRange,
|
|
221
223
|
DescribeAdaptiveDynamicStreamingTemplatesRequest,
|
|
224
|
+
ModifyRoundPlayRequest,
|
|
222
225
|
ImageWatermarkInput,
|
|
223
226
|
ObjectConfigureInfo,
|
|
224
227
|
AsrFullTextConfigureInfoForUpdate,
|
|
@@ -243,6 +246,7 @@ import {
|
|
|
243
246
|
AiReviewTaskPornOcrResult,
|
|
244
247
|
ModifyContentReviewTemplateResponse,
|
|
245
248
|
DescribeWatermarkTemplatesRequest,
|
|
249
|
+
RoundPlayInfo,
|
|
246
250
|
CoverBySnapshotTaskInput,
|
|
247
251
|
SegmentConfigureInfoForUpdate,
|
|
248
252
|
UserDefineConfigureInfo,
|
|
@@ -268,6 +272,7 @@ import {
|
|
|
268
272
|
ModifyMediaStorageClassRequest,
|
|
269
273
|
AiAnalysisTaskTagOutput,
|
|
270
274
|
AiAnalysisTaskHighlightOutput,
|
|
275
|
+
CreateRoundPlayResponse,
|
|
271
276
|
MediaSubtitleInput,
|
|
272
277
|
ProcessMediaRequest,
|
|
273
278
|
PornImageResult,
|
|
@@ -280,6 +285,7 @@ import {
|
|
|
280
285
|
RestoreMediaResponse,
|
|
281
286
|
MediaProcessTaskSnapshotByTimeOffsetResult,
|
|
282
287
|
ManageTaskRequest,
|
|
288
|
+
RoundPlayListItemInfo,
|
|
283
289
|
ModifyEventConfigRequest,
|
|
284
290
|
AiRecognitionTaskAsrWordsResultOutput,
|
|
285
291
|
DescribeHeadTailTemplatesRequest,
|
|
@@ -410,6 +416,7 @@ import {
|
|
|
410
416
|
AiReviewPoliticalAsrTaskInput,
|
|
411
417
|
PullUploadRequest,
|
|
412
418
|
SortBy,
|
|
419
|
+
ProcessMediaByProcedureRequest,
|
|
413
420
|
ClipTask2017,
|
|
414
421
|
TranscodeTemplate,
|
|
415
422
|
DescribeCDNUsageDataRequest,
|
|
@@ -422,6 +429,7 @@ import {
|
|
|
422
429
|
AiReviewProhibitedAsrTaskInput,
|
|
423
430
|
MediaContentReviewSegmentItem,
|
|
424
431
|
TerrorismOcrReviewTemplateInfo,
|
|
432
|
+
CreateRoundPlayRequest,
|
|
425
433
|
AiReviewTaskPornResult,
|
|
426
434
|
AiRecognitionTaskObjectResultOutput,
|
|
427
435
|
DescribeMediaPlayStatDetailsRequest,
|
|
@@ -443,6 +451,7 @@ import {
|
|
|
443
451
|
DescribeCDNStatDetailsRequest,
|
|
444
452
|
HeadTailTaskInput,
|
|
445
453
|
DescribeImageReviewUsageDataResponse,
|
|
454
|
+
DeleteRoundPlayResponse,
|
|
446
455
|
StatDataItem,
|
|
447
456
|
CreateStorageRegionResponse,
|
|
448
457
|
AccelerateAreaInfo,
|
|
@@ -454,7 +463,6 @@ import {
|
|
|
454
463
|
HeadTailConfigureInfo,
|
|
455
464
|
EventContent,
|
|
456
465
|
HighlightsConfigureInfoForUpdate,
|
|
457
|
-
AiRecognitionTaskObjectResult,
|
|
458
466
|
UserDefineConfigureInfoForUpdate,
|
|
459
467
|
ExtractTraceWatermarkTaskInput,
|
|
460
468
|
AiReviewPoliticalAsrTaskOutput,
|
|
@@ -514,6 +522,7 @@ import {
|
|
|
514
522
|
CreateClassRequest,
|
|
515
523
|
AiSampleFailFaceInfo,
|
|
516
524
|
UserDefineFaceReviewTemplateInfoForUpdate,
|
|
525
|
+
ModifyRoundPlayResponse,
|
|
517
526
|
CreateProcedureTemplateResponse,
|
|
518
527
|
DomainHTTPSConfig,
|
|
519
528
|
DescribeMediaProcessUsageDataResponse,
|
|
@@ -577,6 +586,7 @@ import {
|
|
|
577
586
|
ImageOperation,
|
|
578
587
|
DescribeWatermarkTemplatesResponse,
|
|
579
588
|
WeChatMiniProgramPublishResponse,
|
|
589
|
+
DescribeRoundPlaysResponse,
|
|
580
590
|
ImageTransform,
|
|
581
591
|
CreateAnimatedGraphicsTemplateRequest,
|
|
582
592
|
FrameTagConfigureInfo,
|
|
@@ -595,7 +605,7 @@ import {
|
|
|
595
605
|
SplitMediaResponse,
|
|
596
606
|
RestoreMediaRequest,
|
|
597
607
|
PullEventsRequest,
|
|
598
|
-
|
|
608
|
+
AiRecognitionTaskObjectResult,
|
|
599
609
|
DescribeAIAnalysisTemplatesResponse,
|
|
600
610
|
CreateSnapshotByTimeOffsetTemplateRequest,
|
|
601
611
|
AiRecognitionTaskAsrWordsResult,
|
|
@@ -684,13 +694,15 @@ export class Client extends AbstractClient {
|
|
|
684
694
|
}
|
|
685
695
|
|
|
686
696
|
/**
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
697
|
+
* 该接口用于创建轮播播单,数量上限:100。
|
|
698
|
+
轮播播单的每个文件可以指定源文件,也可以指定某个转码文件。
|
|
699
|
+
指定的文件必须是hls格式,所有的播单文件最好保持相同的码率和分辨率。
|
|
700
|
+
*/
|
|
701
|
+
async CreateRoundPlay(
|
|
702
|
+
req: CreateRoundPlayRequest,
|
|
703
|
+
cb?: (error: string, rep: CreateRoundPlayResponse) => void
|
|
704
|
+
): Promise<CreateRoundPlayResponse> {
|
|
705
|
+
return this.request("CreateRoundPlay", req, cb)
|
|
694
706
|
}
|
|
695
707
|
|
|
696
708
|
/**
|
|
@@ -772,13 +784,13 @@ export class Client extends AbstractClient {
|
|
|
772
784
|
}
|
|
773
785
|
|
|
774
786
|
/**
|
|
775
|
-
*
|
|
787
|
+
* 创建用户自定义指定时间点截图模板,数量上限:16。
|
|
776
788
|
*/
|
|
777
|
-
async
|
|
778
|
-
req:
|
|
779
|
-
cb?: (error: string, rep:
|
|
780
|
-
): Promise<
|
|
781
|
-
return this.request("
|
|
789
|
+
async CreateSnapshotByTimeOffsetTemplate(
|
|
790
|
+
req: CreateSnapshotByTimeOffsetTemplateRequest,
|
|
791
|
+
cb?: (error: string, rep: CreateSnapshotByTimeOffsetTemplateResponse) => void
|
|
792
|
+
): Promise<CreateSnapshotByTimeOffsetTemplateResponse> {
|
|
793
|
+
return this.request("CreateSnapshotByTimeOffsetTemplate", req, cb)
|
|
782
794
|
}
|
|
783
795
|
|
|
784
796
|
/**
|
|
@@ -992,15 +1004,13 @@ export class Client extends AbstractClient {
|
|
|
992
1004
|
}
|
|
993
1005
|
|
|
994
1006
|
/**
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
): Promise<CreateStorageRegionResponse> {
|
|
1003
|
-
return this.request("CreateStorageRegion", req, cb)
|
|
1007
|
+
* 该接口用于批量创建关键词样本,样本用于通过OCR、ASR技术,进行不适宜内容识别、内容识别等视频处理。
|
|
1008
|
+
*/
|
|
1009
|
+
async CreateWordSamples(
|
|
1010
|
+
req: CreateWordSamplesRequest,
|
|
1011
|
+
cb?: (error: string, rep: CreateWordSamplesResponse) => void
|
|
1012
|
+
): Promise<CreateWordSamplesResponse> {
|
|
1013
|
+
return this.request("CreateWordSamples", req, cb)
|
|
1004
1014
|
}
|
|
1005
1015
|
|
|
1006
1016
|
/**
|
|
@@ -1453,13 +1463,26 @@ export class Client extends AbstractClient {
|
|
|
1453
1463
|
}
|
|
1454
1464
|
|
|
1455
1465
|
/**
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1466
|
+
* 该接口用于开通某地域的存储。
|
|
1467
|
+
1. 用户开通点播业务时,系统默认为用户开通了部分地域的存储,用户如果需要开通其它地域的存储,可以通过该接口进行开通。
|
|
1468
|
+
2. 通过 DescribeStorageRegions 接口可以查询到所有存储地域及已经开通的地域。
|
|
1469
|
+
*/
|
|
1470
|
+
async CreateStorageRegion(
|
|
1471
|
+
req: CreateStorageRegionRequest,
|
|
1472
|
+
cb?: (error: string, rep: CreateStorageRegionResponse) => void
|
|
1473
|
+
): Promise<CreateStorageRegionResponse> {
|
|
1474
|
+
return this.request("CreateStorageRegion", req, cb)
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1477
|
+
/**
|
|
1478
|
+
* 该接口用于修改轮播播单。
|
|
1479
|
+
修改后只有新的播放请求会生效,已经在播放中的用户在七天之内还可以播放修改前的播单。
|
|
1480
|
+
*/
|
|
1481
|
+
async ModifyRoundPlay(
|
|
1482
|
+
req: ModifyRoundPlayRequest,
|
|
1483
|
+
cb?: (error: string, rep: ModifyRoundPlayResponse) => void
|
|
1484
|
+
): Promise<ModifyRoundPlayResponse> {
|
|
1485
|
+
return this.request("ModifyRoundPlay", req, cb)
|
|
1463
1486
|
}
|
|
1464
1487
|
|
|
1465
1488
|
/**
|
|
@@ -1474,6 +1497,16 @@ export class Client extends AbstractClient {
|
|
|
1474
1497
|
return this.request("DescribeDailyMediaPlayStat", req, cb)
|
|
1475
1498
|
}
|
|
1476
1499
|
|
|
1500
|
+
/**
|
|
1501
|
+
* 删除用户自定义转动图模板。
|
|
1502
|
+
*/
|
|
1503
|
+
async DeleteAnimatedGraphicsTemplate(
|
|
1504
|
+
req: DeleteAnimatedGraphicsTemplateRequest,
|
|
1505
|
+
cb?: (error: string, rep: DeleteAnimatedGraphicsTemplateResponse) => void
|
|
1506
|
+
): Promise<DeleteAnimatedGraphicsTemplateResponse> {
|
|
1507
|
+
return this.request("DeleteAnimatedGraphicsTemplate", req, cb)
|
|
1508
|
+
}
|
|
1509
|
+
|
|
1477
1510
|
/**
|
|
1478
1511
|
* 该 API 已经<font color=red>不再维护</font>,新版审核模板支持音视频审核和图片审核,详细请参考 [删除审核模板](https://cloud.tencent.com/document/api/266/84390)。
|
|
1479
1512
|
删除用户自定义音视频内容审核模板。
|
|
@@ -1748,6 +1781,16 @@ export class Client extends AbstractClient {
|
|
|
1748
1781
|
return this.request("CreateSubAppId", req, cb)
|
|
1749
1782
|
}
|
|
1750
1783
|
|
|
1784
|
+
/**
|
|
1785
|
+
* 该接口用于根据素材 ID,修改素材样本信息,包括名称、描述的修改,以及五官、标签的添加、删除、重置操作。五官删除操作需保证至少剩余 1 张图片,否则,请使用重置操作。
|
|
1786
|
+
*/
|
|
1787
|
+
async ModifyPersonSample(
|
|
1788
|
+
req: ModifyPersonSampleRequest,
|
|
1789
|
+
cb?: (error: string, rep: ModifyPersonSampleResponse) => void
|
|
1790
|
+
): Promise<ModifyPersonSampleResponse> {
|
|
1791
|
+
return this.request("ModifyPersonSample", req, cb)
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1751
1794
|
/**
|
|
1752
1795
|
* 查询转动图模板列表,支持根据条件,分页查询。
|
|
1753
1796
|
*/
|
|
@@ -1826,13 +1869,13 @@ export class Client extends AbstractClient {
|
|
|
1826
1869
|
}
|
|
1827
1870
|
|
|
1828
1871
|
/**
|
|
1829
|
-
*
|
|
1872
|
+
* 该接口用于获取轮播播单列表。
|
|
1830
1873
|
*/
|
|
1831
|
-
async
|
|
1832
|
-
req:
|
|
1833
|
-
cb?: (error: string, rep:
|
|
1834
|
-
): Promise<
|
|
1835
|
-
return this.request("
|
|
1874
|
+
async DescribeRoundPlays(
|
|
1875
|
+
req: DescribeRoundPlaysRequest,
|
|
1876
|
+
cb?: (error: string, rep: DescribeRoundPlaysResponse) => void
|
|
1877
|
+
): Promise<DescribeRoundPlaysResponse> {
|
|
1878
|
+
return this.request("DescribeRoundPlays", req, cb)
|
|
1836
1879
|
}
|
|
1837
1880
|
|
|
1838
1881
|
/**
|
|
@@ -1963,13 +2006,14 @@ export class Client extends AbstractClient {
|
|
|
1963
2006
|
}
|
|
1964
2007
|
|
|
1965
2008
|
/**
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
2009
|
+
* 该 API 已经<font color='red'>不再维护</font>,新版播放器签名不再使用播放器配置模板,详细请参考 [播放器签名](https://cloud.tencent.com/document/product/266/45554)。
|
|
2010
|
+
查询播放器配置,支持根据条件,分页查询。
|
|
2011
|
+
*/
|
|
2012
|
+
async DescribeSuperPlayerConfigs(
|
|
2013
|
+
req: DescribeSuperPlayerConfigsRequest,
|
|
2014
|
+
cb?: (error: string, rep: DescribeSuperPlayerConfigsResponse) => void
|
|
2015
|
+
): Promise<DescribeSuperPlayerConfigsResponse> {
|
|
2016
|
+
return this.request("DescribeSuperPlayerConfigs", req, cb)
|
|
1973
2017
|
}
|
|
1974
2018
|
|
|
1975
2019
|
/**
|
|
@@ -2269,6 +2313,16 @@ export class Client extends AbstractClient {
|
|
|
2269
2313
|
return this.request("ModifySubAppIdStatus", req, cb)
|
|
2270
2314
|
}
|
|
2271
2315
|
|
|
2316
|
+
/**
|
|
2317
|
+
* 该接口用于删除轮播播单。
|
|
2318
|
+
*/
|
|
2319
|
+
async DeleteRoundPlay(
|
|
2320
|
+
req: DeleteRoundPlayRequest,
|
|
2321
|
+
cb?: (error: string, rep: DeleteRoundPlayResponse) => void
|
|
2322
|
+
): Promise<DeleteRoundPlayResponse> {
|
|
2323
|
+
return this.request("DeleteRoundPlay", req, cb)
|
|
2324
|
+
}
|
|
2325
|
+
|
|
2272
2326
|
/**
|
|
2273
2327
|
* 该 API 已经<font color=red>不再维护</font>,新版审核模板支持音视频审核和图片审核,详细请参考 [修改审核模板](https://cloud.tencent.com/document/api/266/84388)。
|
|
2274
2328
|
修改用户自定义音视频内容审核模板。
|
|
@@ -2292,14 +2346,13 @@ export class Client extends AbstractClient {
|
|
|
2292
2346
|
}
|
|
2293
2347
|
|
|
2294
2348
|
/**
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
return this.request("DescribeSuperPlayerConfigs", req, cb)
|
|
2349
|
+
* 创建用户自定义音视频内容识别模板,数量上限:50。
|
|
2350
|
+
*/
|
|
2351
|
+
async CreateAIRecognitionTemplate(
|
|
2352
|
+
req: CreateAIRecognitionTemplateRequest,
|
|
2353
|
+
cb?: (error: string, rep: CreateAIRecognitionTemplateResponse) => void
|
|
2354
|
+
): Promise<CreateAIRecognitionTemplateResponse> {
|
|
2355
|
+
return this.request("CreateAIRecognitionTemplate", req, cb)
|
|
2303
2356
|
}
|
|
2304
2357
|
|
|
2305
2358
|
/**
|