tencentcloud-sdk-nodejs 4.1.282 → 4.1.283

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.
Files changed (34) hide show
  1. package/es/common/sdk_version.js +1 -1
  2. package/es/services/cynosdb/v20190107/cynosdb_client.js +6 -0
  3. package/es/services/dbdc/v20201029/dbdc_client.js +3 -0
  4. package/es/services/es/v20180416/es_client.js +8 -2
  5. package/es/services/mps/v20190612/mps_client.js +15 -6
  6. package/es/services/vod/v20180717/vod_client.js +12 -0
  7. package/package.json +1 -1
  8. package/tencentcloud/common/sdk_version.d.ts +1 -1
  9. package/tencentcloud/common/sdk_version.js +1 -1
  10. package/tencentcloud/services/cfs/v20190719/cfs_models.d.ts +20 -14
  11. package/tencentcloud/services/clb/v20180317/clb_models.d.ts +160 -14
  12. package/tencentcloud/services/ctem/v20231128/ctem_models.d.ts +8 -0
  13. package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +9 -1
  14. package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +12 -0
  15. package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +26 -0
  16. package/tencentcloud/services/dbdc/v20201029/dbdc_client.d.ts +5 -1
  17. package/tencentcloud/services/dbdc/v20201029/dbdc_client.js +6 -0
  18. package/tencentcloud/services/dbdc/v20201029/dbdc_models.d.ts +35 -0
  19. package/tencentcloud/services/dts/v20211206/dts_models.d.ts +21 -17
  20. package/tencentcloud/services/es/v20180416/es_client.d.ts +11 -3
  21. package/tencentcloud/services/es/v20180416/es_client.js +15 -3
  22. package/tencentcloud/services/es/v20180416/es_models.d.ts +178 -60
  23. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +11 -59
  24. package/tencentcloud/services/gwlb/v20240906/gwlb_models.d.ts +7 -11
  25. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.d.ts +1 -1
  26. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +103 -39
  27. package/tencentcloud/services/mps/v20190612/mps_client.d.ts +19 -7
  28. package/tencentcloud/services/mps/v20190612/mps_client.js +27 -9
  29. package/tencentcloud/services/mps/v20190612/mps_models.d.ts +349 -124
  30. package/tencentcloud/services/tke/v20180525/tke_models.d.ts +4 -0
  31. package/tencentcloud/services/tke/v20220501/tke_models.d.ts +4 -0
  32. package/tencentcloud/services/vod/v20180717/vod_client.d.ts +18 -1
  33. package/tencentcloud/services/vod/v20180717/vod_client.js +25 -0
  34. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +898 -467
@@ -1242,6 +1242,19 @@ export interface AdBreakInfo {
1242
1242
  */
1243
1243
  SourceLocationName?: string;
1244
1244
  }
1245
+ /**
1246
+ * CreateAiFissionTask返回参数结构体
1247
+ */
1248
+ export interface CreateAiFissionTaskResponse {
1249
+ /**
1250
+ * <p>任务id</p>
1251
+ */
1252
+ TaskId?: string;
1253
+ /**
1254
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1255
+ */
1256
+ RequestId?: string;
1257
+ }
1245
1258
  /**
1246
1259
  * 自动探测硬字幕区域中,表示字幕区域坐标的数据结构。同时包含置信度。
1247
1260
  */
@@ -2707,6 +2720,77 @@ export interface CreateOutputRTPSettingsDestinations {
2707
2720
  * DescribeStreamLinkActivateState请求参数结构体
2708
2721
  */
2709
2722
  export type DescribeStreamLinkActivateStateRequest = null;
2723
+ /**
2724
+ * 创建输出的配置信息。
2725
+ */
2726
+ export interface CreateOutputInfo {
2727
+ /**
2728
+ * 输出的名称。
2729
+ */
2730
+ OutputName: string;
2731
+ /**
2732
+ * 输出描述。
2733
+ */
2734
+ Description: string;
2735
+ /**
2736
+ * 输出的转推协议,支持SRT|RTP|RTMP|RTMP_PULL|RTSP_PULL|RIST。
2737
+ */
2738
+ Protocol: string;
2739
+ /**
2740
+ * 输出地区。
2741
+ */
2742
+ OutputRegion: string;
2743
+ /**
2744
+ * 输出类型:Internet/TencentCSS
2745
+ */
2746
+ OutputType?: string;
2747
+ /**
2748
+ * 输出模块类型,包括Pinpoint(单点输出,最多支持四路并发输出);MultiMesh(多路输出,支持大于四路的并发输出,目前可以达到200路)。默认类型为 Pinpoint 输出。对于单个 Flow 一个区域最多只能有一个 MultiMesh 输出
2749
+ */
2750
+ OutputKind?: string;
2751
+ /**
2752
+ * 输出的SRT的配置。
2753
+ */
2754
+ SRTSettings?: CreateOutputSRTSettings;
2755
+ /**
2756
+ * 输出的RTMP的配置。
2757
+ */
2758
+ RTMPSettings?: CreateOutputRTMPSettings;
2759
+ /**
2760
+ * 输出的RTP的配置。
2761
+ */
2762
+ RTPSettings?: CreateOutputInfoRTPSettings;
2763
+ /**
2764
+ * IP白名单列表,格式为CIDR,如0.0.0.0/0。
2765
+ 当Protocol为RTMP_PULL有效,为空代表不限制客户端IP。
2766
+ */
2767
+ AllowIpList?: Array<string>;
2768
+ /**
2769
+ * 最大拉流并发数,最大4,默认4。
2770
+ */
2771
+ MaxConcurrent?: number;
2772
+ /**
2773
+ * 绑定的输入安全组 ID。
2774
+ */
2775
+ SecurityGroupIds?: Array<string>;
2776
+ /**
2777
+ * 可用区,output最多只支持输入一个可用区。
2778
+ */
2779
+ Zones?: Array<string>;
2780
+ /**
2781
+ * 输出的RIST的配置。
2782
+ */
2783
+ RISTSettings?: CreateOutputRistSettings;
2784
+ /**
2785
+ * 对于含有多个音/视频轨的流,可以指定需要使用的轨道。PidSelector 与 TrackSelector 只能存在一个
2786
+ * @deprecated
2787
+ */
2788
+ PidSelector?: PidSelector;
2789
+ /**
2790
+ * 对于含有多个音/视频轨的流,可以指定需要使用的轨道。PidSelector 与 TrackSelector 只能存在一个
2791
+ */
2792
+ StreamSelector?: StreamSelector;
2793
+ }
2710
2794
  /**
2711
2795
  * ResetWorkflow返回参数结构体
2712
2796
  */
@@ -3585,6 +3669,27 @@ export interface ModifyStreamPackageLinearAssemblyProgramResponse {
3585
3669
  */
3586
3670
  RequestId?: string;
3587
3671
  }
3672
+ /**
3673
+ * 商品裂变模特信息
3674
+ */
3675
+ export interface CustomModel {
3676
+ /**
3677
+ * <p>性别</p><p>枚举值:</p><ul><li>male: 男性</li><li>female: 女性</li><li>any: 不限</li></ul>
3678
+ */
3679
+ Gender?: string;
3680
+ /**
3681
+ * <p>年龄范围</p><p>枚举值:</p><ul><li>teen: 青年</li><li>young_adult: 成年</li><li>middle_aged: 中年</li><li>mature: 成熟</li></ul>
3682
+ */
3683
+ Age?: string;
3684
+ /**
3685
+ * <p>外貌</p><p>枚举值:</p><ul><li>caucasian: 白人</li><li>asian: 亚裔</li><li>latino: 拉丁裔</li><li>african: 非裔</li><li>middle_eastern: 中东</li></ul>
3686
+ */
3687
+ Appearance?: string;
3688
+ /**
3689
+ * <p>身材</p><p>枚举值:</p><ul><li>slim: 苗条</li><li>standard: 标准</li><li>athletic: 健壮</li><li>chubby: 丰满</li></ul>
3690
+ */
3691
+ BodyType?: string;
3692
+ }
3588
3693
  /**
3589
3694
  * CreateAdaptiveDynamicStreamingTemplate请求参数结构体
3590
3695
  */
@@ -3793,6 +3898,47 @@ export interface DescribeImageSpriteTemplatesRequest {
3793
3898
  */
3794
3899
  Name?: string;
3795
3900
  }
3901
+ /**
3902
+ * 商品裂变任务信息
3903
+ */
3904
+ export interface FissionTaskInfo {
3905
+ /**
3906
+ * <p>视频输出时长</p><p>取值范围:[1, 15]</p><p>单位:秒</p><p>默认值:15</p>
3907
+ */
3908
+ Duration?: number;
3909
+ /**
3910
+ * <p>模型档位</p><p>枚举值:</p><ul><li>standard: 标准版</li><li>flagship: 旗舰版</li></ul>
3911
+ */
3912
+ ModelTier?: string;
3913
+ /**
3914
+ * <p>视频画面比例</p><p>枚举值:</p><ul><li>9:16: 9:16</li><li>16:9: 16:9</li><li>1:1: 1:1</li><li>3:4: 3:4</li><li>4:3: 4:3</li></ul>
3915
+ */
3916
+ Ratio?: string;
3917
+ /**
3918
+ * <p>输出分辨率</p><p>枚举值:</p><ul><li>720p: 720p</li><li>1080p: 1080p</li><li>2k: 2k</li><li>4k: 4k</li></ul>
3919
+ */
3920
+ Resolution?: string;
3921
+ /**
3922
+ * <p>目标市场</p><p>枚举值:</p><ul><li>north_america: 北美</li><li>europe: 欧洲</li><li>china: 中国</li><li>japan: 日本</li><li>korea: 韩国</li><li>southeast_asia: 东南亚</li><li>brazil: 巴西</li><li>global: 全球</li><li>other: 其他</li></ul><p>影响默认出镜模特族裔与本地化风格;未指定 CustomModel 时按市场自动决定人种</p>
3923
+ */
3924
+ Market?: string;
3925
+ /**
3926
+ * <p>口播/字幕语言</p><p>枚举值:</p><ul><li>english: 英文</li><li>chinese: 中文</li><li>japanese: 日语</li><li>korean: 汉语</li><li>spanish: 西班牙语</li><li>portuguese: 葡萄牙语</li><li>music_only: 纯音乐无口播</li></ul>
3927
+ */
3928
+ Language?: string;
3929
+ /**
3930
+ * <p>视频类型</p><p>枚举值:</p><ul><li>ugc: UGC种草</li><li>talk: 产品口播</li><li>display: 产品展示(纯商品、无人声)</li><li>unboxing: 开箱分享</li><li>reaction: 反应展示</li></ul>
3931
+ */
3932
+ VideoType?: string;
3933
+ /**
3934
+ * <p>裂变数量</p><p>取值范围:[0, 1]</p><p>单位:个</p>
3935
+ */
3936
+ SplitCount?: number;
3937
+ /**
3938
+ * <p>定制出镜模特</p>
3939
+ */
3940
+ CustomModel?: CustomModel;
3941
+ }
3796
3942
  /**
3797
3943
  * 查询Event的配置信息。
3798
3944
  */
@@ -3936,13 +4082,9 @@ export interface SlateInfo {
3936
4082
  VodSourceName?: string;
3937
4083
  }
3938
4084
  /**
3939
- * CreateQualityControlTemplate返回参数结构体
4085
+ * DeleteWorkflow返回参数结构体
3940
4086
  */
3941
- export interface CreateQualityControlTemplateResponse {
3942
- /**
3943
- * 媒体质检模板唯一标识。
3944
- */
3945
- Definition?: number;
4087
+ export interface DeleteWorkflowResponse {
3946
4088
  /**
3947
4089
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3948
4090
  */
@@ -4677,6 +4819,35 @@ export interface AudioBeautifyConfig {
4677
4819
  */
4678
4820
  Types?: Array<string>;
4679
4821
  }
4822
+ /**
4823
+ * TextToSpeech返回参数结构体
4824
+ */
4825
+ export interface TextToSpeechResponse {
4826
+ /**
4827
+ * <p>错误码,成功时返回0</p>
4828
+ */
4829
+ ErrorCode?: number;
4830
+ /**
4831
+ * <p>错误信息,成功时返回success</p>
4832
+ */
4833
+ Msg?: string;
4834
+ /**
4835
+ * <p>合成音频的base64编码,默认wav格式</p>
4836
+ */
4837
+ AudioData?: string;
4838
+ /**
4839
+ * <p>合成音频url,有效期24小时</p>
4840
+ */
4841
+ AudioUrl?: string;
4842
+ /**
4843
+ * <p>扩展信息,json字符串 duration: 结果音频时长,单位秒</p>
4844
+ */
4845
+ ExtInfo?: string;
4846
+ /**
4847
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4848
+ */
4849
+ RequestId?: string;
4850
+ }
4680
4851
  /**
4681
4852
  * CreateStreamLinkSecurityGroup请求参数结构体
4682
4853
  */
@@ -5803,6 +5974,31 @@ export interface MP4ConfigureInfo {
5803
5974
  */
5804
5975
  Interval?: number;
5805
5976
  }
5977
+ /**
5978
+ * TextToSpeech请求参数结构体
5979
+ */
5980
+ export interface TextToSpeechRequest {
5981
+ /**
5982
+ * <p>语音合成文本</p>
5983
+ */
5984
+ Text: string;
5985
+ /**
5986
+ * <p>音色ID</p>
5987
+ */
5988
+ VoiceId: string;
5989
+ /**
5990
+ * <p>文本语言。不填默认自动识别<br>当前支持语言:<br>zh 中文 (Chinese)<br>en 英语 (English)<br>ja 日语 (Japanese)<br>de 德语 (German)<br>fr 法语 (French)<br>ko 韩语 (Korean)<br>ru 俄语 (Russian)<br>uk 乌克兰语 (Ukrainian)<br>pt 葡萄牙语 (Portuguese)<br>it 意大利语 (Italian)<br>es 西班牙语 (Spanish)<br>id 印度尼西亚语 (Indonesian)<br>nl 荷兰语 (Dutch)<br>tr 土耳其语 (Turkish)<br>fil 菲律宾语 (Filipino)<br>ms 马来语 (Malay)<br>el 希腊语 (Greek)<br>fi 芬兰语 (Finnish)<br>hr 克罗地亚语 (Croatian)<br>sk 斯洛伐克语 (Slovak)<br>pl 波兰语 (Polish)<br>sv 瑞典语 (Swedish)<br>hi 印地语 (Hindi)<br>bg 保加利亚语 (Bulgarian)<br>ro 罗马尼亚语 (Romanian)<br>ar 阿拉伯语 (Arabic)<br>cs 捷克语 (Czech)<br>da 丹麦语 (Danish)<br>ta 泰米尔语 (Tamil)<br>hun 匈牙利语(Hungarian)<br>vi 越南语(Vietnamese)<br>no 挪威语(Norwegian)<br>yue 粤语(Cantonese)<br>th 泰语(Thai)<br>he 希伯来语(Hebrew)<br>ca 加泰罗尼亚语(Catalan)<br>nn 尼诺斯克语(Nynorsk)<br>af 阿非利卡语(Afrikaans)<br>fa 波斯语(Persian)<br>sl 斯洛文尼亚语(Slovenian)</p>
5991
+ */
5992
+ TextLang?: string;
5993
+ /**
5994
+ * <p>输出相关参数</p>
5995
+ */
5996
+ Output?: SyncDubbingOutputOption;
5997
+ /**
5998
+ * <p>扩展参数,json字符串</p><p><strong>synExt</strong> Object 语音合成扩展参数<br>   <strong>duration</strong> Float 合成音频时长(单位秒),默认不控制时长。示例:5.2<br>   <strong>format</strong> String 输出音频格式,默认wav,支持wav、mp3<br>   <strong>sampleRate</strong> Integer 合成音频采样率,默认16000,支持[8000,16000,22050,24000,32000,44100]</p>
5999
+ */
6000
+ ExtParam?: string;
6001
+ }
5806
6002
  /**
5807
6003
  * 语音鉴黄任务控制参数。
5808
6004
  */
@@ -6554,6 +6750,32 @@ export interface CreateWordSamplesRequest {
6554
6750
  */
6555
6751
  Words: Array<AiSampleWordInfo>;
6556
6752
  }
6753
+ /**
6754
+ * CreateQualityControlTemplate请求参数结构体
6755
+ */
6756
+ export interface CreateQualityControlTemplateRequest {
6757
+ /**
6758
+ * 媒体质检模板名称,长度限制:64 个字符。
6759
+ */
6760
+ Name: string;
6761
+ /**
6762
+ * 媒体质检控制参数。
6763
+ */
6764
+ QualityControlItemSet: Array<QualityControlItemConfig>;
6765
+ /**
6766
+ * 媒体质检模板描述信息,长度限制:256 个字符。
6767
+ */
6768
+ Comment?: string;
6769
+ /**
6770
+ * 录制文件格式。可选值:
6771
+ <li>PNG: PNG图片</li>
6772
+ */
6773
+ RecordFormat?: string;
6774
+ /**
6775
+ * 媒体质检抽检策略。
6776
+ */
6777
+ Strategy?: QualityControlStrategy;
6778
+ }
6557
6779
  /**
6558
6780
  * 智能擦除模板去水印配置
6559
6781
  */
@@ -7296,17 +7518,17 @@ export interface PornConfigureInfoForUpdate {
7296
7518
  OcrReviewInfo?: PornOcrReviewTemplateInfoForUpdate;
7297
7519
  }
7298
7520
  /**
7299
- * 拆条任务输入类型
7521
+ * CreateWorkflow返回参数结构体
7300
7522
  */
7301
- export interface AiAnalysisTaskSegmentInput {
7523
+ export interface CreateWorkflowResponse {
7302
7524
  /**
7303
- * <p>拆条任务模板 ID。</p>
7525
+ * 工作流 ID
7304
7526
  */
7305
- Definition?: number;
7527
+ WorkflowId?: number;
7306
7528
  /**
7307
- * <p>扩展参数。</p>
7529
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7308
7530
  */
7309
- ExtendedParameter?: string;
7531
+ RequestId?: string;
7310
7532
  }
7311
7533
  /**
7312
7534
  * Asr 文字涉黄信息
@@ -7614,21 +7836,33 @@ export interface AiAnalysisTaskDescriptionOutput {
7614
7836
  DescriptionSet: Array<MediaAiAnalysisDescriptionItem>;
7615
7837
  }
7616
7838
  /**
7617
- * DescribeStreamLinkEventAttachedFlows请求参数结构体
7839
+ * CloneVoice返回参数结构体
7618
7840
  */
7619
- export interface DescribeStreamLinkEventAttachedFlowsRequest {
7841
+ export interface CloneVoiceResponse {
7620
7842
  /**
7621
- * EventId。
7843
+ * <p>错误码,成功时返回0</p>
7622
7844
  */
7623
- EventId: string;
7845
+ ErrorCode?: number;
7624
7846
  /**
7625
- * 当前页数,默认1。
7847
+ * <p>错误信息,成功时返回success</p>
7626
7848
  */
7627
- PageNum?: number;
7849
+ Msg?: string;
7628
7850
  /**
7629
- * 每页大小,默认1000。
7851
+ * <p>克隆生成的音色ID</p>
7630
7852
  */
7631
- PageSize?: number;
7853
+ VoiceId?: string;
7854
+ /**
7855
+ * <p>合成音频的base64编码</p>
7856
+ */
7857
+ AudioData?: string;
7858
+ /**
7859
+ * <p>合成音频Url,有效期24小时</p>
7860
+ */
7861
+ AudioUrl?: string;
7862
+ /**
7863
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7864
+ */
7865
+ RequestId?: string;
7632
7866
  }
7633
7867
  /**
7634
7868
  * 转推的RTP目标地址信息。
@@ -8013,6 +8247,23 @@ export interface TagConfigureInfoForUpdate {
8013
8247
  */
8014
8248
  Switch?: string;
8015
8249
  }
8250
+ /**
8251
+ * DescribeStreamLinkEventAttachedFlows请求参数结构体
8252
+ */
8253
+ export interface DescribeStreamLinkEventAttachedFlowsRequest {
8254
+ /**
8255
+ * EventId。
8256
+ */
8257
+ EventId: string;
8258
+ /**
8259
+ * 当前页数,默认1。
8260
+ */
8261
+ PageNum?: number;
8262
+ /**
8263
+ * 每页大小,默认1000。
8264
+ */
8265
+ PageSize?: number;
8266
+ }
8016
8267
  /**
8017
8268
  * CreatePersonSample返回参数结构体
8018
8269
  */
@@ -8740,75 +8991,17 @@ export interface DescribeStreamPackageSourceLocationsRequest {
8740
8991
  PageSize?: number;
8741
8992
  }
8742
8993
  /**
8743
- * 创建输出的配置信息。
8994
+ * 视频裂变输入
8744
8995
  */
8745
- export interface CreateOutputInfo {
8746
- /**
8747
- * 输出的名称。
8748
- */
8749
- OutputName: string;
8750
- /**
8751
- * 输出描述。
8752
- */
8753
- Description: string;
8754
- /**
8755
- * 输出的转推协议,支持SRT|RTP|RTMP|RTMP_PULL|RTSP_PULL|RIST。
8756
- */
8757
- Protocol: string;
8758
- /**
8759
- * 输出地区。
8760
- */
8761
- OutputRegion: string;
8762
- /**
8763
- * 输出类型:Internet/TencentCSS
8764
- */
8765
- OutputType?: string;
8766
- /**
8767
- * 输出模块类型,包括Pinpoint(单点输出,最多支持四路并发输出);MultiMesh(多路输出,支持大于四路的并发输出,目前可以达到200路)。默认类型为 Pinpoint 输出。对于单个 Flow 一个区域最多只能有一个 MultiMesh 输出
8768
- */
8769
- OutputKind?: string;
8770
- /**
8771
- * 输出的SRT的配置。
8772
- */
8773
- SRTSettings?: CreateOutputSRTSettings;
8774
- /**
8775
- * 输出的RTMP的配置。
8776
- */
8777
- RTMPSettings?: CreateOutputRTMPSettings;
8778
- /**
8779
- * 输出的RTP的配置。
8780
- */
8781
- RTPSettings?: CreateOutputInfoRTPSettings;
8782
- /**
8783
- * IP白名单列表,格式为CIDR,如0.0.0.0/0。
8784
- 当Protocol为RTMP_PULL有效,为空代表不限制客户端IP。
8785
- */
8786
- AllowIpList?: Array<string>;
8787
- /**
8788
- * 最大拉流并发数,最大4,默认4。
8789
- */
8790
- MaxConcurrent?: number;
8791
- /**
8792
- * 绑定的输入安全组 ID。
8793
- */
8794
- SecurityGroupIds?: Array<string>;
8795
- /**
8796
- * 可用区,output最多只支持输入一个可用区。
8797
- */
8798
- Zones?: Array<string>;
8799
- /**
8800
- * 输出的RIST的配置。
8801
- */
8802
- RISTSettings?: CreateOutputRistSettings;
8996
+ export interface AiFissionInput {
8803
8997
  /**
8804
- * 对于含有多个音/视频轨的流,可以指定需要使用的轨道。PidSelector 与 TrackSelector 只能存在一个
8805
- * @deprecated
8998
+ * <p>视频裂变参考图url</p>
8806
8999
  */
8807
- PidSelector?: PidSelector;
9000
+ ImageUrls: Array<string>;
8808
9001
  /**
8809
- * 对于含有多个音/视频轨的流,可以指定需要使用的轨道。PidSelector 与 TrackSelector 只能存在一个
9002
+ * <p>视频裂变商品信息参考文案</p>
8810
9003
  */
8811
- StreamSelector?: StreamSelector;
9004
+ Text?: string;
8812
9005
  }
8813
9006
  /**
8814
9007
  * DescribeStreamPackageSourceLocation返回参数结构体
@@ -10122,6 +10315,19 @@ export interface DescribeRTSPPullSourceAddress {
10122
10315
  */
10123
10316
  Url: string;
10124
10317
  }
10318
+ /**
10319
+ * DescribeStreamPackageLinearAssemblyChannelAlerts返回参数结构体
10320
+ */
10321
+ export interface DescribeStreamPackageLinearAssemblyChannelAlertsResponse {
10322
+ /**
10323
+ * 频道告警信息。
10324
+ */
10325
+ Infos?: ChannelAlertResp;
10326
+ /**
10327
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10328
+ */
10329
+ RequestId?: string;
10330
+ }
10125
10331
  /**
10126
10332
  * Type为DASH时manifest配置使用的字段。
10127
10333
  */
@@ -13242,30 +13448,17 @@ export interface DeleteAIAnalysisTemplateResponse {
13242
13448
  RequestId?: string;
13243
13449
  }
13244
13450
  /**
13245
- * CreateQualityControlTemplate请求参数结构体
13451
+ * CreateQualityControlTemplate返回参数结构体
13246
13452
  */
13247
- export interface CreateQualityControlTemplateRequest {
13248
- /**
13249
- * 媒体质检模板名称,长度限制:64 个字符。
13250
- */
13251
- Name: string;
13252
- /**
13253
- * 媒体质检控制参数。
13254
- */
13255
- QualityControlItemSet: Array<QualityControlItemConfig>;
13256
- /**
13257
- * 媒体质检模板描述信息,长度限制:256 个字符。
13258
- */
13259
- Comment?: string;
13453
+ export interface CreateQualityControlTemplateResponse {
13260
13454
  /**
13261
- * 录制文件格式。可选值:
13262
- <li>PNG: PNG图片</li>
13455
+ * 媒体质检模板唯一标识。
13263
13456
  */
13264
- RecordFormat?: string;
13457
+ Definition?: number;
13265
13458
  /**
13266
- * 媒体质检抽检策略。
13459
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
13267
13460
  */
13268
- Strategy?: QualityControlStrategy;
13461
+ RequestId?: string;
13269
13462
  }
13270
13463
  /**
13271
13464
  * embedding 接口的输入:
@@ -17586,6 +17779,23 @@ export interface OutputRISTSourceAddressResp {
17586
17779
  */
17587
17780
  Port?: number;
17588
17781
  }
17782
+ /**
17783
+ * CreateAiFissionTask请求参数结构体
17784
+ */
17785
+ export interface CreateAiFissionTaskRequest {
17786
+ /**
17787
+ * <p>ai视频裂变输入信息</p>
17788
+ */
17789
+ Input: AiFissionInput;
17790
+ /**
17791
+ * <p>用户cos信息</p>
17792
+ */
17793
+ CosInfo?: VideoDramaCosInfo;
17794
+ /**
17795
+ * <p>ai视频裂变任务信息</p>
17796
+ */
17797
+ TaskInfo?: FissionTaskInfo;
17798
+ }
17589
17799
  /**
17590
17800
  * CreateDocToVideoTask返回参数结构体
17591
17801
  */
@@ -18098,17 +18308,17 @@ export interface AiReviewPornTaskOutput {
18098
18308
  SegmentSet?: Array<MediaContentReviewSegmentItem>;
18099
18309
  }
18100
18310
  /**
18101
- * CreateWorkflow返回参数结构体
18311
+ * 拆条任务输入类型
18102
18312
  */
18103
- export interface CreateWorkflowResponse {
18313
+ export interface AiAnalysisTaskSegmentInput {
18104
18314
  /**
18105
- * 工作流 ID
18315
+ * <p>拆条任务模板 ID。</p>
18106
18316
  */
18107
- WorkflowId?: number;
18317
+ Definition?: number;
18108
18318
  /**
18109
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
18319
+ * <p>扩展参数。</p>
18110
18320
  */
18111
- RequestId?: string;
18321
+ ExtendedParameter?: string;
18112
18322
  }
18113
18323
  /**
18114
18324
  * 视频(音频)理解输出内容结果信息
@@ -23013,15 +23223,6 @@ export interface RecognizeAudioSentence {
23013
23223
  */
23014
23224
  WordsInfo?: Array<WordResult>;
23015
23225
  }
23016
- /**
23017
- * DeleteWorkflow返回参数结构体
23018
- */
23019
- export interface DeleteWorkflowResponse {
23020
- /**
23021
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
23022
- */
23023
- RequestId?: string;
23024
- }
23025
23226
  /**
23026
23227
  * ExecuteFunction请求参数结构体
23027
23228
  */
@@ -23587,17 +23788,41 @@ export interface AigcVideoExtraParam {
23587
23788
  EnableBgm?: boolean;
23588
23789
  }
23589
23790
  /**
23590
- * DescribeStreamPackageLinearAssemblyChannelAlerts返回参数结构体
23791
+ * CloneVoice请求参数结构体
23591
23792
  */
23592
- export interface DescribeStreamPackageLinearAssemblyChannelAlertsResponse {
23793
+ export interface CloneVoiceRequest {
23593
23794
  /**
23594
- * 频道告警信息。
23795
+ * <p>克隆音频base64编码</p>
23595
23796
  */
23596
- Infos?: ChannelAlertResp;
23797
+ AudioData?: string;
23597
23798
  /**
23598
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
23799
+ * <p>克隆音频Url,AudioData为空时有效</p>
23599
23800
  */
23600
- RequestId?: string;
23801
+ AudioUrl?: string;
23802
+ /**
23803
+ * <p>克隆音频语言,默认中文。 当前支持语言同语音合成TextLang</p>
23804
+ */
23805
+ AudioLang?: string;
23806
+ /**
23807
+ * <p>音色属性。音色查询和匹配使用</p>
23808
+ */
23809
+ VoiceProfile?: VoiceProfile;
23810
+ /**
23811
+ * <p>试听文本</p>
23812
+ */
23813
+ Text?: string;
23814
+ /**
23815
+ * <p>试听文本语言,不填默认自动检测。当前支持语言同语音合成</p>
23816
+ */
23817
+ TextLang?: string;
23818
+ /**
23819
+ * <p>输出相关参数,可以指定输出音频形式等。默认输出音频base64。</p>
23820
+ */
23821
+ Output?: SyncDubbingOutputOption;
23822
+ /**
23823
+ * <p>扩展参数,json字符串</p>
23824
+ */
23825
+ ExtParam?: string;
23601
23826
  }
23602
23827
  /**
23603
23828
  * 语音关键词识别结果。
@@ -7219,6 +7219,10 @@ export interface CreateClusterNodePoolRequest {
7219
7219
  * <p>删除保护开关</p>
7220
7220
  */
7221
7221
  DeletionProtection?: boolean;
7222
+ /**
7223
+ * <p>跳过校验选项,目前支持 &quot;VpcDnsCheck&quot;</p>
7224
+ */
7225
+ SkipValidateOptions?: Array<string>;
7222
7226
  }
7223
7227
  /**
7224
7228
  * DeleteClusterNodePool返回参数结构体
@@ -421,6 +421,10 @@ export interface CreateNodePoolRequest {
421
421
  * <p>节点 Annotation 列表</p>
422
422
  */
423
423
  Annotations?: Array<Annotation>;
424
+ /**
425
+ * <p>跳过校验选项,支持 &quot;VpcDnsCheck&quot;</p>
426
+ */
427
+ SkipValidateOptions?: Array<string>;
424
428
  }
425
429
  /**
426
430
  * DescribeHealthCheckPolicyBindings返回参数结构体