tencentcloud-sdk-nodejs 4.0.680 → 4.0.681
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 +147 -0
- package/SERVICE_CHANGELOG.md +193 -260
- package/package.json +1 -1
- package/products.md +17 -17
- package/src/common/sdk_version.ts +1 -1
- package/src/services/asr/v20190614/asr_client.ts +11 -10
- package/src/services/asr/v20190614/asr_models.ts +48 -17
- package/src/services/ccc/v20200210/ccc_models.ts +3 -3
- package/src/services/cfw/v20190904/cfw_client.ts +29 -3
- package/src/services/cfw/v20190904/cfw_models.ts +150 -47
- package/src/services/clb/v20180317/clb_models.ts +15 -5
- package/src/services/dbbrain/v20210527/dbbrain_client.ts +41 -11
- package/src/services/dbbrain/v20210527/dbbrain_models.ts +391 -96
- package/src/services/dnspod/v20210323/dnspod_models.ts +27 -23
- package/src/services/ecm/v20190719/ecm_models.ts +3 -2
- package/src/services/live/v20180801/live_client.ts +13 -0
- package/src/services/live/v20180801/live_models.ts +47 -0
- package/src/services/mps/v20190612/mps_client.ts +6 -1
- package/src/services/mps/v20190612/mps_models.ts +153 -38
- package/src/services/tsf/v20180326/tsf_client.ts +1 -1
- package/src/services/tsf/v20180326/tsf_models.ts +1 -1
- package/src/services/vod/v20180717/vod_models.ts +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/asr/v20190614/asr_client.d.ts +11 -10
- package/tencentcloud/services/asr/v20190614/asr_client.js +11 -10
- package/tencentcloud/services/asr/v20190614/asr_models.d.ts +48 -17
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +3 -3
- package/tencentcloud/services/cfw/v20190904/cfw_client.d.ts +10 -1
- package/tencentcloud/services/cfw/v20190904/cfw_client.js +13 -0
- package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +145 -47
- package/tencentcloud/services/clb/v20180317/clb_models.d.ts +15 -5
- package/tencentcloud/services/dbbrain/v20210527/dbbrain_client.d.ts +11 -3
- package/tencentcloud/services/dbbrain/v20210527/dbbrain_client.js +15 -3
- package/tencentcloud/services/dbbrain/v20210527/dbbrain_models.d.ts +381 -96
- package/tencentcloud/services/dnspod/v20210323/dnspod_models.d.ts +27 -23
- package/tencentcloud/services/ecm/v20190719/ecm_models.d.ts +3 -2
- package/tencentcloud/services/live/v20180801/live_client.d.ts +5 -1
- package/tencentcloud/services/live/v20180801/live_client.js +6 -0
- package/tencentcloud/services/live/v20180801/live_models.d.ts +44 -0
- package/tencentcloud/services/mps/v20190612/mps_client.d.ts +1 -1
- package/tencentcloud/services/mps/v20190612/mps_models.d.ts +148 -38
- package/tencentcloud/services/tsf/v20180326/tsf_client.d.ts +1 -1
- package/tencentcloud/services/tsf/v20180326/tsf_client.js +1 -1
- package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +1 -1
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +1 -1
- package/test/cfw.v20190904.test.js +20 -0
- package/test/dbbrain.v20210527.test.js +22 -2
- package/test/live.v20180801.test.js +10 -0
|
@@ -605,98 +605,98 @@ export interface DomainInfo {
|
|
|
605
605
|
/**
|
|
606
606
|
* 域名ID
|
|
607
607
|
*/
|
|
608
|
-
DomainId
|
|
608
|
+
DomainId?: number
|
|
609
609
|
/**
|
|
610
610
|
* 域名状态
|
|
611
611
|
*/
|
|
612
|
-
Status
|
|
612
|
+
Status?: string
|
|
613
613
|
/**
|
|
614
614
|
* 域名套餐等级
|
|
615
615
|
*/
|
|
616
|
-
Grade
|
|
616
|
+
Grade?: string
|
|
617
617
|
/**
|
|
618
618
|
* 域名分组ID
|
|
619
619
|
*/
|
|
620
|
-
GroupId
|
|
620
|
+
GroupId?: number
|
|
621
621
|
/**
|
|
622
622
|
* 是否星标域名
|
|
623
623
|
*/
|
|
624
|
-
IsMark
|
|
624
|
+
IsMark?: string
|
|
625
625
|
/**
|
|
626
626
|
* TTL(DNS记录缓存时间)
|
|
627
627
|
*/
|
|
628
|
-
TTL
|
|
628
|
+
TTL?: number
|
|
629
629
|
/**
|
|
630
630
|
* cname加速启用状态
|
|
631
631
|
*/
|
|
632
|
-
CnameSpeedup
|
|
632
|
+
CnameSpeedup?: string
|
|
633
633
|
/**
|
|
634
634
|
* 域名备注
|
|
635
635
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
636
636
|
*/
|
|
637
|
-
Remark
|
|
637
|
+
Remark?: string
|
|
638
638
|
/**
|
|
639
639
|
* 域名Punycode
|
|
640
640
|
*/
|
|
641
|
-
Punycode
|
|
641
|
+
Punycode?: string
|
|
642
642
|
/**
|
|
643
643
|
* 域名DNS状态
|
|
644
644
|
*/
|
|
645
|
-
DnsStatus
|
|
645
|
+
DnsStatus?: string
|
|
646
646
|
/**
|
|
647
647
|
* 域名的NS列表
|
|
648
648
|
*/
|
|
649
|
-
DnspodNsList
|
|
649
|
+
DnspodNsList?: Array<string>
|
|
650
650
|
/**
|
|
651
651
|
* 域名
|
|
652
652
|
*/
|
|
653
|
-
Domain
|
|
653
|
+
Domain?: string
|
|
654
654
|
/**
|
|
655
655
|
* 域名等级代号
|
|
656
656
|
*/
|
|
657
|
-
GradeLevel
|
|
657
|
+
GradeLevel?: number
|
|
658
658
|
/**
|
|
659
659
|
* 域名所属的用户ID
|
|
660
660
|
*/
|
|
661
|
-
UserId
|
|
661
|
+
UserId?: number
|
|
662
662
|
/**
|
|
663
663
|
* 是否为付费域名
|
|
664
664
|
*/
|
|
665
|
-
IsVip
|
|
665
|
+
IsVip?: string
|
|
666
666
|
/**
|
|
667
667
|
* 域名所有者的账号
|
|
668
668
|
*/
|
|
669
|
-
Owner
|
|
669
|
+
Owner?: string
|
|
670
670
|
/**
|
|
671
671
|
* 域名等级的描述
|
|
672
672
|
*/
|
|
673
|
-
GradeTitle
|
|
673
|
+
GradeTitle?: string
|
|
674
674
|
/**
|
|
675
675
|
* 域名创建时间
|
|
676
676
|
*/
|
|
677
|
-
CreatedOn
|
|
677
|
+
CreatedOn?: string
|
|
678
678
|
/**
|
|
679
679
|
* 最后操作时间
|
|
680
680
|
*/
|
|
681
|
-
UpdatedOn
|
|
681
|
+
UpdatedOn?: string
|
|
682
682
|
/**
|
|
683
683
|
* 腾讯云账户Uin
|
|
684
684
|
*/
|
|
685
|
-
Uin
|
|
685
|
+
Uin?: string
|
|
686
686
|
/**
|
|
687
687
|
* 域名实际使用的NS列表
|
|
688
688
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
689
689
|
*/
|
|
690
|
-
ActualNsList
|
|
690
|
+
ActualNsList?: Array<string>
|
|
691
691
|
/**
|
|
692
692
|
* 域名的记录数量
|
|
693
693
|
*/
|
|
694
|
-
RecordCount
|
|
694
|
+
RecordCount?: number
|
|
695
695
|
/**
|
|
696
696
|
* 域名所有者的账户昵称
|
|
697
697
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
698
698
|
*/
|
|
699
|
-
OwnerNick
|
|
699
|
+
OwnerNick?: string
|
|
700
700
|
/**
|
|
701
701
|
* 是否在付费套餐宽限期
|
|
702
702
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -737,6 +737,10 @@ export interface DomainInfo {
|
|
|
737
737
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
738
738
|
*/
|
|
739
739
|
TagList?: Array<TagItem>
|
|
740
|
+
/**
|
|
741
|
+
* 是否启用搜索引擎推送
|
|
742
|
+
*/
|
|
743
|
+
SearchEnginePush?: string
|
|
740
744
|
}
|
|
741
745
|
|
|
742
746
|
/**
|
|
@@ -6622,7 +6622,7 @@ export interface ZoneInstanceCountISP {
|
|
|
6622
6622
|
CTCC:中国电信
|
|
6623
6623
|
CUCC:中国联通
|
|
6624
6624
|
CMCC:中国移动
|
|
6625
|
-
|
|
6625
|
+
CMCC;CUCC;CTCC:三网;三网需要开通白名单,请直接联系腾讯云客服。
|
|
6626
6626
|
*/
|
|
6627
6627
|
ISP: string
|
|
6628
6628
|
/**
|
|
@@ -6642,7 +6642,8 @@ CMCC:中国移动
|
|
|
6642
6642
|
*/
|
|
6643
6643
|
Ipv6AddressCount?: number
|
|
6644
6644
|
/**
|
|
6645
|
-
* 指定创建三网ipv6地址,使用的subnet
|
|
6645
|
+
* 指定创建三网ipv6地址,使用的subnet数组,只创建ipv4不创建ipv6和单网ipv6子网依然使用SubnetId字段;
|
|
6646
|
+
该数组必须且仅支持传入三个不同的子网,并且这三个子网各自分配了电信、联通、移动三个运营商的其中一个IPV6 CIDR网段
|
|
6646
6647
|
*/
|
|
6647
6648
|
Ipv6SubnetIds?: Array<string>
|
|
6648
6649
|
}
|
|
@@ -141,8 +141,10 @@ import {
|
|
|
141
141
|
DescribeLiveStreamEventListRequest,
|
|
142
142
|
CallBackTemplateInfo,
|
|
143
143
|
DeleteLiveRecordResponse,
|
|
144
|
+
DescribeDeliverLogDownListResponse,
|
|
144
145
|
ModifyLivePullStreamTaskRequest,
|
|
145
146
|
PullStreamConfig,
|
|
147
|
+
DescribeDeliverLogDownListRequest,
|
|
146
148
|
DescribeLiveStreamPushInfoListRequest,
|
|
147
149
|
DescribeLiveTimeShiftTemplatesRequest,
|
|
148
150
|
StopLiveStreamMonitorResponse,
|
|
@@ -318,6 +320,7 @@ import {
|
|
|
318
320
|
ModifyLivePlayAuthKeyRequest,
|
|
319
321
|
DescribeLiveDelayInfoListRequest,
|
|
320
322
|
DescribeLiveTranscodeTemplateResponse,
|
|
323
|
+
PushLogInfo,
|
|
321
324
|
DescribeScreenShotSheetNumListResponse,
|
|
322
325
|
CreateLiveRecordRuleResponse,
|
|
323
326
|
ModifyLivePullStreamTaskResponse,
|
|
@@ -1116,6 +1119,16 @@ DomainName+AppName+StreamName+TemplateId唯一标识单个转码规则,如需
|
|
|
1116
1119
|
return this.request("ModifyLiveDomainCertBindings", req, cb)
|
|
1117
1120
|
}
|
|
1118
1121
|
|
|
1122
|
+
/**
|
|
1123
|
+
* 批量获取转推日志的URL。
|
|
1124
|
+
*/
|
|
1125
|
+
async DescribeDeliverLogDownList(
|
|
1126
|
+
req?: DescribeDeliverLogDownListRequest,
|
|
1127
|
+
cb?: (error: string, rep: DescribeDeliverLogDownListResponse) => void
|
|
1128
|
+
): Promise<DescribeDeliverLogDownListResponse> {
|
|
1129
|
+
return this.request("DescribeDeliverLogDownList", req, cb)
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1119
1132
|
/**
|
|
1120
1133
|
* 根据域名状态、类型等信息查询用户的域名信息。
|
|
1121
1134
|
*/
|
|
@@ -2979,6 +2979,24 @@ export interface DeleteLiveRecordResponse {
|
|
|
2979
2979
|
RequestId?: string
|
|
2980
2980
|
}
|
|
2981
2981
|
|
|
2982
|
+
/**
|
|
2983
|
+
* DescribeDeliverLogDownList返回参数结构体
|
|
2984
|
+
*/
|
|
2985
|
+
export interface DescribeDeliverLogDownListResponse {
|
|
2986
|
+
/**
|
|
2987
|
+
* 日志信息列表。
|
|
2988
|
+
*/
|
|
2989
|
+
LogInfoList?: Array<PushLogInfo>
|
|
2990
|
+
/**
|
|
2991
|
+
* 总条数。
|
|
2992
|
+
*/
|
|
2993
|
+
TotalNum?: number
|
|
2994
|
+
/**
|
|
2995
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2996
|
+
*/
|
|
2997
|
+
RequestId?: string
|
|
2998
|
+
}
|
|
2999
|
+
|
|
2982
3000
|
/**
|
|
2983
3001
|
* ModifyLivePullStreamTask请求参数结构体
|
|
2984
3002
|
*/
|
|
@@ -3149,6 +3167,11 @@ UTC格式时间,例如:2019-01-08T10:00:00Z。
|
|
|
3149
3167
|
Status: string
|
|
3150
3168
|
}
|
|
3151
3169
|
|
|
3170
|
+
/**
|
|
3171
|
+
* DescribeDeliverLogDownList请求参数结构体
|
|
3172
|
+
*/
|
|
3173
|
+
export type DescribeDeliverLogDownListRequest = null
|
|
3174
|
+
|
|
3152
3175
|
/**
|
|
3153
3176
|
* DescribeLiveStreamPushInfoList请求参数结构体
|
|
3154
3177
|
*/
|
|
@@ -7493,6 +7516,30 @@ export interface DescribeLiveTranscodeTemplateResponse {
|
|
|
7493
7516
|
RequestId?: string
|
|
7494
7517
|
}
|
|
7495
7518
|
|
|
7519
|
+
/**
|
|
7520
|
+
* 推流域名日志信息。
|
|
7521
|
+
*/
|
|
7522
|
+
export interface PushLogInfo {
|
|
7523
|
+
/**
|
|
7524
|
+
* 日志名称。
|
|
7525
|
+
*/
|
|
7526
|
+
LogName: string
|
|
7527
|
+
/**
|
|
7528
|
+
* 日志下载地址。
|
|
7529
|
+
*/
|
|
7530
|
+
LogUrl: string
|
|
7531
|
+
/**
|
|
7532
|
+
* 日志时间。UTC 格式,例如:2018-11-29T19:00:00Z。
|
|
7533
|
+
注意:
|
|
7534
|
+
1. 北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
7535
|
+
*/
|
|
7536
|
+
LogTime: string
|
|
7537
|
+
/**
|
|
7538
|
+
* 文件大小,单位字节。
|
|
7539
|
+
*/
|
|
7540
|
+
FileSize: number
|
|
7541
|
+
}
|
|
7542
|
+
|
|
7496
7543
|
/**
|
|
7497
7544
|
* DescribeScreenShotSheetNumList返回参数结构体
|
|
7498
7545
|
*/
|
|
@@ -121,9 +121,11 @@ import {
|
|
|
121
121
|
TagConfigureInfo,
|
|
122
122
|
DescribeWordSamplesResponse,
|
|
123
123
|
FlowStatisticsArray,
|
|
124
|
+
AudioSeparateConfig,
|
|
124
125
|
DeleteAIRecognitionTemplateRequest,
|
|
125
126
|
DescribeInputSRTSettings,
|
|
126
127
|
AiAnalysisTaskCoverResult,
|
|
128
|
+
AudioBeautifyConfig,
|
|
127
129
|
DescribeStreamLinkEventResponse,
|
|
128
130
|
EnableWorkflowRequest,
|
|
129
131
|
CreateStreamLinkFlowResponse,
|
|
@@ -151,6 +153,7 @@ import {
|
|
|
151
153
|
EditMediaResponse,
|
|
152
154
|
PoliticalOcrReviewTemplateInfoForUpdate,
|
|
153
155
|
CreateOutputRtmpSettingsDestinations,
|
|
156
|
+
AudioDenoiseConfig,
|
|
154
157
|
PornAsrReviewTemplateInfoForUpdate,
|
|
155
158
|
DescribeSnapshotByTimeOffsetTemplatesRequest,
|
|
156
159
|
ScheduleRecognitionTaskResult,
|
|
@@ -289,6 +292,7 @@ import {
|
|
|
289
292
|
CreateStreamLinkInputRequest,
|
|
290
293
|
ScheduleQualityControlTaskResult,
|
|
291
294
|
TerrorismConfigureInfoForUpdate,
|
|
295
|
+
DescribePersonSamplesRequest,
|
|
292
296
|
EnableScheduleResponse,
|
|
293
297
|
OutputSRTSourceAddressResp,
|
|
294
298
|
DeleteAdaptiveDynamicStreamingTemplateResponse,
|
|
@@ -455,6 +459,7 @@ import {
|
|
|
455
459
|
DescribeTasksResponse,
|
|
456
460
|
DescribeOutputSRTSettings,
|
|
457
461
|
AiRecognitionTaskFaceResultInput,
|
|
462
|
+
VolumeBalanceConfig,
|
|
458
463
|
AiReviewPoliticalTaskOutput,
|
|
459
464
|
AiReviewTaskPoliticalResult,
|
|
460
465
|
AiRecognitionTaskTransTextResultOutput,
|
|
@@ -547,7 +552,7 @@ import {
|
|
|
547
552
|
RTSPPullSourceAddress,
|
|
548
553
|
DescribeHLSPullSourceAddress,
|
|
549
554
|
MediaImageSpriteItem,
|
|
550
|
-
|
|
555
|
+
AudioEnhanceConfig,
|
|
551
556
|
AiRecognitionTaskFaceResultItem,
|
|
552
557
|
DescribeStreamLinkFlowMediaStatisticsRequest,
|
|
553
558
|
AiAnalysisTaskCoverInput,
|
|
@@ -985,6 +985,11 @@ export interface EnhanceConfig {
|
|
|
985
985
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
986
986
|
*/
|
|
987
987
|
VideoEnhance?: VideoEnhanceConfig
|
|
988
|
+
/**
|
|
989
|
+
* 音频增强配置。
|
|
990
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
991
|
+
*/
|
|
992
|
+
AudioEnhance?: AudioEnhanceConfig
|
|
988
993
|
}
|
|
989
994
|
|
|
990
995
|
/**
|
|
@@ -2612,6 +2617,35 @@ export interface FlowStatisticsArray {
|
|
|
2612
2617
|
FlowStatistics: Array<FlowStatistics>
|
|
2613
2618
|
}
|
|
2614
2619
|
|
|
2620
|
+
/**
|
|
2621
|
+
* 音频分离配置
|
|
2622
|
+
*/
|
|
2623
|
+
export interface AudioSeparateConfig {
|
|
2624
|
+
/**
|
|
2625
|
+
* 能力配置开关,可选值:
|
|
2626
|
+
<li>ON:开启;</li>
|
|
2627
|
+
<li>OFF:关闭。</li>
|
|
2628
|
+
默认值:ON。
|
|
2629
|
+
*/
|
|
2630
|
+
Switch?: string
|
|
2631
|
+
/**
|
|
2632
|
+
* 场景类型,可选值:
|
|
2633
|
+
<li>normal:人声背景声场景</li>
|
|
2634
|
+
<li>music:演唱伴奏场景</li>
|
|
2635
|
+
默认值:normal。
|
|
2636
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2637
|
+
*/
|
|
2638
|
+
Type?: string
|
|
2639
|
+
/**
|
|
2640
|
+
* 输出音轨,可选值:
|
|
2641
|
+
<li>vocal:输出人声</li>
|
|
2642
|
+
<li>background:应用场景为normal时输出背景声,应用场景为music时输出伴奏</li>
|
|
2643
|
+
默认值:vocal。
|
|
2644
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2645
|
+
*/
|
|
2646
|
+
Track?: string
|
|
2647
|
+
}
|
|
2648
|
+
|
|
2615
2649
|
/**
|
|
2616
2650
|
* DeleteAIRecognitionTemplate请求参数结构体
|
|
2617
2651
|
*/
|
|
@@ -2697,6 +2731,27 @@ export interface AiAnalysisTaskCoverResult {
|
|
|
2697
2731
|
Output: AiAnalysisTaskCoverOutput
|
|
2698
2732
|
}
|
|
2699
2733
|
|
|
2734
|
+
/**
|
|
2735
|
+
* 音量美化配置
|
|
2736
|
+
*/
|
|
2737
|
+
export interface AudioBeautifyConfig {
|
|
2738
|
+
/**
|
|
2739
|
+
* 能力配置开关,可选值:
|
|
2740
|
+
<li>ON:开启;</li>
|
|
2741
|
+
<li>OFF:关闭。</li>
|
|
2742
|
+
默认值:ON。
|
|
2743
|
+
*/
|
|
2744
|
+
Switch?: string
|
|
2745
|
+
/**
|
|
2746
|
+
* 类型,可多选,可选值:
|
|
2747
|
+
<li>declick:杂音去除</li>
|
|
2748
|
+
<li>deesser:齿音压制</li>
|
|
2749
|
+
默认值:declick。
|
|
2750
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2751
|
+
*/
|
|
2752
|
+
Types?: Array<string>
|
|
2753
|
+
}
|
|
2754
|
+
|
|
2700
2755
|
/**
|
|
2701
2756
|
* DescribeStreamLinkEvent返回参数结构体
|
|
2702
2757
|
*/
|
|
@@ -3212,6 +3267,19 @@ export interface CreateOutputRtmpSettingsDestinations {
|
|
|
3212
3267
|
StreamKey: string
|
|
3213
3268
|
}
|
|
3214
3269
|
|
|
3270
|
+
/**
|
|
3271
|
+
* 音频降噪配置
|
|
3272
|
+
*/
|
|
3273
|
+
export interface AudioDenoiseConfig {
|
|
3274
|
+
/**
|
|
3275
|
+
* 能力配置开关,可选值:
|
|
3276
|
+
<li>ON:开启;</li>
|
|
3277
|
+
<li>OFF:关闭。</li>
|
|
3278
|
+
默认值:ON。
|
|
3279
|
+
*/
|
|
3280
|
+
Switch?: string
|
|
3281
|
+
}
|
|
3282
|
+
|
|
3215
3283
|
/**
|
|
3216
3284
|
* 语音鉴黄任务控制参数。
|
|
3217
3285
|
*/
|
|
@@ -6399,6 +6467,41 @@ export interface TerrorismConfigureInfoForUpdate {
|
|
|
6399
6467
|
OcrReviewInfo?: TerrorismOcrReviewTemplateInfoForUpdate
|
|
6400
6468
|
}
|
|
6401
6469
|
|
|
6470
|
+
/**
|
|
6471
|
+
* DescribePersonSamples请求参数结构体
|
|
6472
|
+
*/
|
|
6473
|
+
export interface DescribePersonSamplesRequest {
|
|
6474
|
+
/**
|
|
6475
|
+
* 拉取的素材类型,可选值:
|
|
6476
|
+
<li>UserDefine:用户自定义素材库;</li>
|
|
6477
|
+
<li>Default:系统默认素材库。</li>
|
|
6478
|
+
|
|
6479
|
+
默认值:UserDefine,拉取用户自定义素材库素材。
|
|
6480
|
+
说明:如果是拉取系统默认素材库,只能使用素材名字或者素材 ID + 素材名字的方式进行拉取,且人脸图片只返回一张。
|
|
6481
|
+
*/
|
|
6482
|
+
Type?: string
|
|
6483
|
+
/**
|
|
6484
|
+
* 素材 ID,数组长度限制:100。
|
|
6485
|
+
*/
|
|
6486
|
+
PersonIds?: Array<string>
|
|
6487
|
+
/**
|
|
6488
|
+
* 素材名称,数组长度限制:20。
|
|
6489
|
+
*/
|
|
6490
|
+
Names?: Array<string>
|
|
6491
|
+
/**
|
|
6492
|
+
* 素材标签,数组长度限制:20。
|
|
6493
|
+
*/
|
|
6494
|
+
Tags?: Array<string>
|
|
6495
|
+
/**
|
|
6496
|
+
* 分页偏移量,默认值:0。
|
|
6497
|
+
*/
|
|
6498
|
+
Offset?: number
|
|
6499
|
+
/**
|
|
6500
|
+
* 返回记录条数,默认值:100,最大值:100。
|
|
6501
|
+
*/
|
|
6502
|
+
Limit?: number
|
|
6503
|
+
}
|
|
6504
|
+
|
|
6402
6505
|
/**
|
|
6403
6506
|
* EnableSchedule返回参数结构体
|
|
6404
6507
|
*/
|
|
@@ -7895,69 +7998,69 @@ export interface TranscodeTemplate {
|
|
|
7895
7998
|
/**
|
|
7896
7999
|
* 转码模板唯一标识。
|
|
7897
8000
|
*/
|
|
7898
|
-
Definition
|
|
8001
|
+
Definition?: string
|
|
7899
8002
|
/**
|
|
7900
8003
|
* 封装格式,取值:mp4、flv、hls、mp3、flac、ogg。
|
|
7901
8004
|
*/
|
|
7902
|
-
Container
|
|
8005
|
+
Container?: string
|
|
7903
8006
|
/**
|
|
7904
8007
|
* 转码模板名称。
|
|
7905
8008
|
*/
|
|
7906
|
-
Name
|
|
8009
|
+
Name?: string
|
|
7907
8010
|
/**
|
|
7908
8011
|
* 模板描述信息。
|
|
7909
8012
|
*/
|
|
7910
|
-
Comment
|
|
8013
|
+
Comment?: string
|
|
7911
8014
|
/**
|
|
7912
8015
|
* 模板类型,取值:
|
|
7913
8016
|
<li>Preset:系统预置模板;</li>
|
|
7914
8017
|
<li>Custom:用户自定义模板。</li>
|
|
7915
8018
|
*/
|
|
7916
|
-
Type
|
|
8019
|
+
Type?: string
|
|
7917
8020
|
/**
|
|
7918
8021
|
* 是否去除视频数据,取值:
|
|
7919
8022
|
<li>0:保留;</li>
|
|
7920
8023
|
<li>1:去除。</li>
|
|
7921
8024
|
*/
|
|
7922
|
-
RemoveVideo
|
|
8025
|
+
RemoveVideo?: number
|
|
7923
8026
|
/**
|
|
7924
8027
|
* 是否去除音频数据,取值:
|
|
7925
8028
|
<li>0:保留;</li>
|
|
7926
8029
|
<li>1:去除。</li>
|
|
7927
8030
|
*/
|
|
7928
|
-
RemoveAudio
|
|
8031
|
+
RemoveAudio?: number
|
|
7929
8032
|
/**
|
|
7930
8033
|
* 视频流配置参数,仅当 RemoveVideo 为 0,该字段有效。
|
|
7931
8034
|
*/
|
|
7932
|
-
VideoTemplate
|
|
8035
|
+
VideoTemplate?: VideoTemplateInfo
|
|
7933
8036
|
/**
|
|
7934
8037
|
* 音频流配置参数,仅当 RemoveAudio 为 0,该字段有效 。
|
|
7935
8038
|
*/
|
|
7936
|
-
AudioTemplate
|
|
8039
|
+
AudioTemplate?: AudioTemplateInfo
|
|
7937
8040
|
/**
|
|
7938
8041
|
* 极速高清转码参数。
|
|
7939
8042
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
7940
8043
|
*/
|
|
7941
|
-
TEHDConfig
|
|
8044
|
+
TEHDConfig?: TEHDConfig
|
|
7942
8045
|
/**
|
|
7943
8046
|
* 封装格式过滤条件,可选值:
|
|
7944
8047
|
<li>Video:视频格式,可以同时包含视频流和音频流的封装格式;</li>
|
|
7945
8048
|
<li>PureAudio:纯音频格式,只能包含音频流的封装格式板。</li>
|
|
7946
8049
|
*/
|
|
7947
|
-
ContainerType
|
|
8050
|
+
ContainerType?: string
|
|
7948
8051
|
/**
|
|
7949
8052
|
* 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
|
|
7950
8053
|
*/
|
|
7951
|
-
CreateTime
|
|
8054
|
+
CreateTime?: string
|
|
7952
8055
|
/**
|
|
7953
8056
|
* 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
|
|
7954
8057
|
*/
|
|
7955
|
-
UpdateTime
|
|
8058
|
+
UpdateTime?: string
|
|
7956
8059
|
/**
|
|
7957
8060
|
* 音视频增强配置。
|
|
7958
8061
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
7959
8062
|
*/
|
|
7960
|
-
EnhanceConfig
|
|
8063
|
+
EnhanceConfig?: EnhanceConfig
|
|
7961
8064
|
}
|
|
7962
8065
|
|
|
7963
8066
|
/**
|
|
@@ -10432,6 +10535,27 @@ export interface AiRecognitionTaskFaceResultInput {
|
|
|
10432
10535
|
Definition: number
|
|
10433
10536
|
}
|
|
10434
10537
|
|
|
10538
|
+
/**
|
|
10539
|
+
* 音量均衡配置
|
|
10540
|
+
*/
|
|
10541
|
+
export interface VolumeBalanceConfig {
|
|
10542
|
+
/**
|
|
10543
|
+
* 能力配置开关,可选值:
|
|
10544
|
+
<li>ON:开启;</li>
|
|
10545
|
+
<li>OFF:关闭。</li>
|
|
10546
|
+
默认值:ON。
|
|
10547
|
+
*/
|
|
10548
|
+
Switch?: string
|
|
10549
|
+
/**
|
|
10550
|
+
* 类型,可选值:
|
|
10551
|
+
<li>loudNorm:响度标准化</li>
|
|
10552
|
+
<li>gainControl:减小突变</li>
|
|
10553
|
+
默认值:loudNorm。
|
|
10554
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10555
|
+
*/
|
|
10556
|
+
Type?: string
|
|
10557
|
+
}
|
|
10558
|
+
|
|
10435
10559
|
/**
|
|
10436
10560
|
* 涉敏信息
|
|
10437
10561
|
*/
|
|
@@ -10890,7 +11014,7 @@ export interface CreateTranscodeTemplateResponse {
|
|
|
10890
11014
|
/**
|
|
10891
11015
|
* 转码模板唯一标识。
|
|
10892
11016
|
*/
|
|
10893
|
-
Definition
|
|
11017
|
+
Definition?: number
|
|
10894
11018
|
/**
|
|
10895
11019
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
10896
11020
|
*/
|
|
@@ -12891,38 +13015,29 @@ export interface MediaImageSpriteItem {
|
|
|
12891
13015
|
}
|
|
12892
13016
|
|
|
12893
13017
|
/**
|
|
12894
|
-
*
|
|
13018
|
+
* 音频增强配置
|
|
12895
13019
|
*/
|
|
12896
|
-
export interface
|
|
12897
|
-
/**
|
|
12898
|
-
* 拉取的素材类型,可选值:
|
|
12899
|
-
<li>UserDefine:用户自定义素材库;</li>
|
|
12900
|
-
<li>Default:系统默认素材库。</li>
|
|
12901
|
-
|
|
12902
|
-
默认值:UserDefine,拉取用户自定义素材库素材。
|
|
12903
|
-
说明:如果是拉取系统默认素材库,只能使用素材名字或者素材 ID + 素材名字的方式进行拉取,且人脸图片只返回一张。
|
|
12904
|
-
*/
|
|
12905
|
-
Type?: string
|
|
13020
|
+
export interface AudioEnhanceConfig {
|
|
12906
13021
|
/**
|
|
12907
|
-
*
|
|
12908
|
-
|
|
12909
|
-
PersonIds?: Array<string>
|
|
12910
|
-
/**
|
|
12911
|
-
* 素材名称,数组长度限制:20。
|
|
13022
|
+
* 音频降噪配置。
|
|
13023
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12912
13024
|
*/
|
|
12913
|
-
|
|
13025
|
+
Denoise?: AudioDenoiseConfig
|
|
12914
13026
|
/**
|
|
12915
|
-
*
|
|
13027
|
+
* 音频分离配置。
|
|
13028
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12916
13029
|
*/
|
|
12917
|
-
|
|
13030
|
+
Separate?: AudioSeparateConfig
|
|
12918
13031
|
/**
|
|
12919
|
-
*
|
|
13032
|
+
* 音量均衡配置。
|
|
13033
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12920
13034
|
*/
|
|
12921
|
-
|
|
13035
|
+
VolumeBalance?: VolumeBalanceConfig
|
|
12922
13036
|
/**
|
|
12923
|
-
*
|
|
13037
|
+
* 音频美化配置。
|
|
13038
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12924
13039
|
*/
|
|
12925
|
-
|
|
13040
|
+
Beautify?: AudioBeautifyConfig
|
|
12926
13041
|
}
|
|
12927
13042
|
|
|
12928
13043
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const sdkVersion = "4.0.
|
|
1
|
+
export declare const sdkVersion = "4.0.681";
|