tencentcloud-sdk-mps 3.0.545 → 3.0.546
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190612/models.rb +402 -33
- metadata +4 -4
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 481de69303716f2397ebaf18246df0f3ff11aad8
         | 
| 4 | 
            +
              data.tar.gz: 98847cbee1d8f1afd92ecbd7d3228e7fbf0fc077
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: fff047ddeee1faaf17caae800565b9655676e90f177ef161661b6d85781c3f07d2ac4a7af28bef09223614a6aef664f20466965148f4d68e1e1b38cc64e73947
         | 
| 7 | 
            +
              data.tar.gz: 889ef8b01a74f30d9fc66b5bcfb14ba9ee88a4813d064df1d9152e168800db80db2647085bedc879416f44698075435540f0d49ef0c4b5b062b0e547e475d53e
         | 
    
        data/lib/VERSION
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
            3.0. | 
| 1 | 
            +
            3.0.546
         | 
    
        data/lib/v20190612/models.rb
    CHANGED
    
    | @@ -194,10 +194,13 @@ module TencentCloud | |
| 194 194 | 
             
                    # <li>action-image-sprite:雪碧图</li>
         | 
| 195 195 | 
             
                    # <li>action-snapshotByTimeOffset: 时间点截图</li>
         | 
| 196 196 | 
             
                    # <li>action-adaptive-substream:自适应码流</li>
         | 
| 197 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 197 198 | 
             
                    # @type ActivityType: String
         | 
| 198 199 | 
             
                    # @param ReardriveIndex: 后驱节点索引数组
         | 
| 200 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 199 201 | 
             
                    # @type ReardriveIndex: Array
         | 
| 200 202 | 
             
                    # @param ActivityPara: 原子任务参数
         | 
| 203 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 201 204 | 
             
                    # @type ActivityPara: :class:`Tencentcloud::Mps.v20190612.models.ActivityPara`
         | 
| 202 205 |  | 
| 203 206 | 
             
                    attr_accessor :ActivityType, :ReardriveIndex, :ActivityPara
         | 
| @@ -613,15 +616,19 @@ module TencentCloud | |
| 613 616 | 
             
                    # @param FrameTagTask: 视频内容分析智能按帧标签任务的查询结果,当任务类型为 FrameTag 时有效。
         | 
| 614 617 | 
             
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 615 618 | 
             
                    # @type FrameTagTask: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskFrameTagResult`
         | 
| 619 | 
            +
                    # @param HighlightTask: 视频内容分析集锦任务的查询结果,当任务类型为 Highlight时有效。
         | 
| 620 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 621 | 
            +
                    # @type HighlightTask: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskHighlightResult`
         | 
| 616 622 |  | 
| 617 | 
            -
                    attr_accessor :Type, :ClassificationTask, :CoverTask, :TagTask, :FrameTagTask
         | 
| 623 | 
            +
                    attr_accessor :Type, :ClassificationTask, :CoverTask, :TagTask, :FrameTagTask, :HighlightTask
         | 
| 618 624 |  | 
| 619 | 
            -
                    def initialize(type=nil, classificationtask=nil, covertask=nil, tagtask=nil, frametagtask=nil)
         | 
| 625 | 
            +
                    def initialize(type=nil, classificationtask=nil, covertask=nil, tagtask=nil, frametagtask=nil, highlighttask=nil)
         | 
| 620 626 | 
             
                      @Type = type
         | 
| 621 627 | 
             
                      @ClassificationTask = classificationtask
         | 
| 622 628 | 
             
                      @CoverTask = covertask
         | 
| 623 629 | 
             
                      @TagTask = tagtask
         | 
| 624 630 | 
             
                      @FrameTagTask = frametagtask
         | 
| 631 | 
            +
                      @HighlightTask = highlighttask
         | 
| 625 632 | 
             
                    end
         | 
| 626 633 |  | 
| 627 634 | 
             
                    def deserialize(params)
         | 
| @@ -642,6 +649,10 @@ module TencentCloud | |
| 642 649 | 
             
                        @FrameTagTask = AiAnalysisTaskFrameTagResult.new
         | 
| 643 650 | 
             
                        @FrameTagTask.deserialize(params['FrameTagTask'])
         | 
| 644 651 | 
             
                      end
         | 
| 652 | 
            +
                      unless params['HighlightTask'].nil?
         | 
| 653 | 
            +
                        @HighlightTask = AiAnalysisTaskHighlightResult.new
         | 
| 654 | 
            +
                        @HighlightTask.deserialize(params['HighlightTask'])
         | 
| 655 | 
            +
                      end
         | 
| 645 656 | 
             
                    end
         | 
| 646 657 | 
             
                  end
         | 
| 647 658 |  | 
| @@ -898,6 +909,91 @@ module TencentCloud | |
| 898 909 | 
             
                    end
         | 
| 899 910 | 
             
                  end
         | 
| 900 911 |  | 
| 912 | 
            +
                  # 智能精彩片段任务输入类型
         | 
| 913 | 
            +
                  class AiAnalysisTaskHighlightInput < TencentCloud::Common::AbstractModel
         | 
| 914 | 
            +
                    # @param Definition: 视频智能精彩片段模板 ID。
         | 
| 915 | 
            +
                    # @type Definition: Integer
         | 
| 916 | 
            +
             | 
| 917 | 
            +
                    attr_accessor :Definition
         | 
| 918 | 
            +
                    
         | 
| 919 | 
            +
                    def initialize(definition=nil)
         | 
| 920 | 
            +
                      @Definition = definition
         | 
| 921 | 
            +
                    end
         | 
| 922 | 
            +
             | 
| 923 | 
            +
                    def deserialize(params)
         | 
| 924 | 
            +
                      @Definition = params['Definition']
         | 
| 925 | 
            +
                    end
         | 
| 926 | 
            +
                  end
         | 
| 927 | 
            +
             | 
| 928 | 
            +
                  # 智能精彩片段结果信息
         | 
| 929 | 
            +
                  class AiAnalysisTaskHighlightOutput < TencentCloud::Common::AbstractModel
         | 
| 930 | 
            +
                    # @param HighlightSet: 视频智能精彩片段列表。
         | 
| 931 | 
            +
                    # @type HighlightSet: Array
         | 
| 932 | 
            +
                    # @param OutputStorage: 精彩片段的存储位置。
         | 
| 933 | 
            +
                    # @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
         | 
| 934 | 
            +
             | 
| 935 | 
            +
                    attr_accessor :HighlightSet, :OutputStorage
         | 
| 936 | 
            +
                    
         | 
| 937 | 
            +
                    def initialize(highlightset=nil, outputstorage=nil)
         | 
| 938 | 
            +
                      @HighlightSet = highlightset
         | 
| 939 | 
            +
                      @OutputStorage = outputstorage
         | 
| 940 | 
            +
                    end
         | 
| 941 | 
            +
             | 
| 942 | 
            +
                    def deserialize(params)
         | 
| 943 | 
            +
                      unless params['HighlightSet'].nil?
         | 
| 944 | 
            +
                        @HighlightSet = []
         | 
| 945 | 
            +
                        params['HighlightSet'].each do |i|
         | 
| 946 | 
            +
                          mediaaianalysishighlightitem_tmp = MediaAiAnalysisHighlightItem.new
         | 
| 947 | 
            +
                          mediaaianalysishighlightitem_tmp.deserialize(i)
         | 
| 948 | 
            +
                          @HighlightSet << mediaaianalysishighlightitem_tmp
         | 
| 949 | 
            +
                        end
         | 
| 950 | 
            +
                      end
         | 
| 951 | 
            +
                      unless params['OutputStorage'].nil?
         | 
| 952 | 
            +
                        @OutputStorage = TaskOutputStorage.new
         | 
| 953 | 
            +
                        @OutputStorage.deserialize(params['OutputStorage'])
         | 
| 954 | 
            +
                      end
         | 
| 955 | 
            +
                    end
         | 
| 956 | 
            +
                  end
         | 
| 957 | 
            +
             | 
| 958 | 
            +
                  # 智能精彩片段结果类型
         | 
| 959 | 
            +
                  class AiAnalysisTaskHighlightResult < TencentCloud::Common::AbstractModel
         | 
| 960 | 
            +
                    # @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
         | 
| 961 | 
            +
                    # @type Status: String
         | 
| 962 | 
            +
                    # @param ErrCode: 错误码,0:成功,其他值:失败。
         | 
| 963 | 
            +
                    # @type ErrCode: Integer
         | 
| 964 | 
            +
                    # @param Message: 错误信息。
         | 
| 965 | 
            +
                    # @type Message: String
         | 
| 966 | 
            +
                    # @param Input: 智能精彩片段任务输入。
         | 
| 967 | 
            +
                    # @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskHighlightInput`
         | 
| 968 | 
            +
                    # @param Output: 智能精彩片段任务输出。
         | 
| 969 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 970 | 
            +
                    # @type Output: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskHighlightOutput`
         | 
| 971 | 
            +
             | 
| 972 | 
            +
                    attr_accessor :Status, :ErrCode, :Message, :Input, :Output
         | 
| 973 | 
            +
                    
         | 
| 974 | 
            +
                    def initialize(status=nil, errcode=nil, message=nil, input=nil, output=nil)
         | 
| 975 | 
            +
                      @Status = status
         | 
| 976 | 
            +
                      @ErrCode = errcode
         | 
| 977 | 
            +
                      @Message = message
         | 
| 978 | 
            +
                      @Input = input
         | 
| 979 | 
            +
                      @Output = output
         | 
| 980 | 
            +
                    end
         | 
| 981 | 
            +
             | 
| 982 | 
            +
                    def deserialize(params)
         | 
| 983 | 
            +
                      @Status = params['Status']
         | 
| 984 | 
            +
                      @ErrCode = params['ErrCode']
         | 
| 985 | 
            +
                      @Message = params['Message']
         | 
| 986 | 
            +
                      unless params['Input'].nil?
         | 
| 987 | 
            +
                        @Input = AiAnalysisTaskHighlightInput.new
         | 
| 988 | 
            +
                        @Input.deserialize(params['Input'])
         | 
| 989 | 
            +
                      end
         | 
| 990 | 
            +
                      unless params['Output'].nil?
         | 
| 991 | 
            +
                        @Output = AiAnalysisTaskHighlightOutput.new
         | 
| 992 | 
            +
                        @Output.deserialize(params['Output'])
         | 
| 993 | 
            +
                      end
         | 
| 994 | 
            +
                    end
         | 
| 995 | 
            +
                  end
         | 
| 996 | 
            +
             | 
| 901 997 | 
             
                  # AI 视频智能分析输入参数类型
         | 
| 902 998 | 
             
                  class AiAnalysisTaskInput < TencentCloud::Common::AbstractModel
         | 
| 903 999 | 
             
                    # @param Definition: 视频内容分析模板 ID。
         | 
| @@ -1132,6 +1228,28 @@ module TencentCloud | |
| 1132 1228 | 
             
                    end
         | 
| 1133 1229 | 
             
                  end
         | 
| 1134 1230 |  | 
| 1231 | 
            +
                  # 视频质检输入参数类型
         | 
| 1232 | 
            +
                  class AiQualityControlTaskInput < TencentCloud::Common::AbstractModel
         | 
| 1233 | 
            +
                    # @param Definition: 视频质检模板 ID 。
         | 
| 1234 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1235 | 
            +
                    # @type Definition: Integer
         | 
| 1236 | 
            +
                    # @param ChannelExtPara: 渠道扩展参数json序列化字符串。
         | 
| 1237 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1238 | 
            +
                    # @type ChannelExtPara: String
         | 
| 1239 | 
            +
             | 
| 1240 | 
            +
                    attr_accessor :Definition, :ChannelExtPara
         | 
| 1241 | 
            +
                    
         | 
| 1242 | 
            +
                    def initialize(definition=nil, channelextpara=nil)
         | 
| 1243 | 
            +
                      @Definition = definition
         | 
| 1244 | 
            +
                      @ChannelExtPara = channelextpara
         | 
| 1245 | 
            +
                    end
         | 
| 1246 | 
            +
             | 
| 1247 | 
            +
                    def deserialize(params)
         | 
| 1248 | 
            +
                      @Definition = params['Definition']
         | 
| 1249 | 
            +
                      @ChannelExtPara = params['ChannelExtPara']
         | 
| 1250 | 
            +
                    end
         | 
| 1251 | 
            +
                  end
         | 
| 1252 | 
            +
             | 
| 1135 1253 | 
             
                  # 智能识别结果。
         | 
| 1136 1254 | 
             
                  class AiRecognitionResult < TencentCloud::Common::AbstractModel
         | 
| 1137 1255 | 
             
                    # @param Type: 任务的类型,取值范围:
         | 
| @@ -3571,21 +3689,21 @@ module TencentCloud | |
| 3571 3689 |  | 
| 3572 3690 | 
             
                  # AWS S3 文件是上传触发器。
         | 
| 3573 3691 | 
             
                  class AwsS3FileUploadTrigger < TencentCloud::Common::AbstractModel
         | 
| 3574 | 
            -
                    # @param S3Bucket:  | 
| 3692 | 
            +
                    # @param S3Bucket: 绑定的 AWS S3 存储桶。
         | 
| 3575 3693 | 
             
                    # @type S3Bucket: String
         | 
| 3576 | 
            -
                    # @param S3Region:  | 
| 3694 | 
            +
                    # @param S3Region: 绑定的桶所在 AWS 区域。
         | 
| 3577 3695 | 
             
                    # @type S3Region: String
         | 
| 3578 | 
            -
                    # @param Dir:  | 
| 3696 | 
            +
                    # @param Dir: 绑定的输入路径目录,必须为绝对路径,即以 `/` 开头和结尾。如`/movie/201907/`,不填代表根目录`/`。
         | 
| 3579 3697 | 
             
                    # @type Dir: String
         | 
| 3580 | 
            -
                    # @param Formats:  | 
| 3698 | 
            +
                    # @param Formats: 允许触发的文件格式列表,如 ["mp4", "flv", "mov"]。不填代表所有格式的文件都可以触发工作流。
         | 
| 3581 3699 | 
             
                    # @type Formats: Array
         | 
| 3582 | 
            -
                    # @param S3SecretId:  | 
| 3700 | 
            +
                    # @param S3SecretId: 绑定的 AWS S3 存储桶的秘钥ID。
         | 
| 3583 3701 | 
             
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 3584 3702 | 
             
                    # @type S3SecretId: String
         | 
| 3585 | 
            -
                    # @param S3SecretKey:  | 
| 3703 | 
            +
                    # @param S3SecretKey: 绑定的 AWS S3 存储桶的秘钥Key。
         | 
| 3586 3704 | 
             
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 3587 3705 | 
             
                    # @type S3SecretKey: String
         | 
| 3588 | 
            -
                    # @param AwsSQS:  | 
| 3706 | 
            +
                    # @param AwsSQS: 绑定的 AWS S3 存储桶对应的 SQS事件队列。
         | 
| 3589 3707 | 
             
                    # 注意:队列和桶需要在同一区域。
         | 
| 3590 3708 | 
             
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 3591 3709 | 
             
                    # @type AwsSQS: :class:`Tencentcloud::Mps.v20190612.models.AwsSQS`
         | 
| @@ -4978,13 +5096,14 @@ module TencentCloud | |
| 4978 5096 | 
             
                  class CreateScheduleRequest < TencentCloud::Common::AbstractModel
         | 
| 4979 5097 | 
             
                    # @param ScheduleName: 编排名称,最多128字符。同一个用户该名称唯一。
         | 
| 4980 5098 | 
             
                    # @type ScheduleName: String
         | 
| 4981 | 
            -
                    # @param Trigger:  | 
| 5099 | 
            +
                    # @param Trigger: 编排绑定的触发规则,当上传视频命中该规则到该对象时即触发编排。
         | 
| 4982 5100 | 
             
                    # @type Trigger: :class:`Tencentcloud::Mps.v20190612.models.WorkflowTrigger`
         | 
| 4983 5101 | 
             
                    # @param Activities: 编排任务列表。
         | 
| 4984 5102 | 
             
                    # @type Activities: Array
         | 
| 4985 5103 | 
             
                    # @param OutputStorage: 媒体处理的文件输出存储位置。不填则继承 Trigger 中的存储位置。
         | 
| 4986 5104 | 
             
                    # @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
         | 
| 4987 | 
            -
                    # @param OutputDir:  | 
| 5105 | 
            +
                    # @param OutputDir: 媒体处理生成的文件输出的目标目录,必选以 / 开头和结尾,如`/movie/201907/`。
         | 
| 5106 | 
            +
                    # 如果不填,表示与触发文件所在的目录一致。
         | 
| 4988 5107 | 
             
                    # @type OutputDir: String
         | 
| 4989 5108 | 
             
                    # @param TaskNotifyConfig: 任务的事件通知配置,不填代表不获取事件通知。
         | 
| 4990 5109 | 
             
                    # @type TaskNotifyConfig: :class:`Tencentcloud::Mps.v20190612.models.TaskNotifyConfig`
         | 
| @@ -5468,7 +5587,8 @@ module TencentCloud | |
| 5468 5587 | 
             
                    # @type Trigger: :class:`Tencentcloud::Mps.v20190612.models.WorkflowTrigger`
         | 
| 5469 5588 | 
             
                    # @param OutputStorage: 媒体处理的文件输出存储位置。不填则继承 Trigger 中的存储位置。
         | 
| 5470 5589 | 
             
                    # @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
         | 
| 5471 | 
            -
                    # @param OutputDir:  | 
| 5590 | 
            +
                    # @param OutputDir: 媒体处理生成的文件输出的目标目录,必选以 / 开头和结尾,如`/movie/201907/`。
         | 
| 5591 | 
            +
                    # 如果不填,表示与触发文件所在的目录一致。
         | 
| 5472 5592 | 
             
                    # @type OutputDir: String
         | 
| 5473 5593 | 
             
                    # @param MediaProcessTask: 媒体处理类型任务参数。
         | 
| 5474 5594 | 
             
                    # @type MediaProcessTask: :class:`Tencentcloud::Mps.v20190612.models.MediaProcessTaskInput`
         | 
| @@ -7380,20 +7500,26 @@ module TencentCloud | |
| 7380 7500 | 
             
                  class DescribeSchedulesRequest < TencentCloud::Common::AbstractModel
         | 
| 7381 7501 | 
             
                    # @param ScheduleIds: 编排 ID 过滤条件,数组长度限制:100。
         | 
| 7382 7502 | 
             
                    # @type ScheduleIds: Array
         | 
| 7503 | 
            +
                    # @param TriggerType: 编排触发类型,可选值:
         | 
| 7504 | 
            +
                    # <li>CosFileUpload: 腾讯云 COS 文件上传触发</li>
         | 
| 7505 | 
            +
                    # <li>AwsS3FileUpload:Aws S3 文件上传触发。</li>
         | 
| 7506 | 
            +
                    # 不填或者为空表示全部。
         | 
| 7507 | 
            +
                    # @type TriggerType: String
         | 
| 7383 7508 | 
             
                    # @param Status: 状态,取值范围:
         | 
| 7384 7509 | 
             
                    # <li>Enabled:已启用,</li>
         | 
| 7385 7510 | 
             
                    # <li>Disabled:已禁用。</li>
         | 
| 7386 | 
            -
                    #  | 
| 7511 | 
            +
                    # 不填此参数,则不区编排状态。
         | 
| 7387 7512 | 
             
                    # @type Status: String
         | 
| 7388 7513 | 
             
                    # @param Offset: 分页偏移量,默认值:0。
         | 
| 7389 7514 | 
             
                    # @type Offset: Integer
         | 
| 7390 7515 | 
             
                    # @param Limit: 返回记录条数,默认值:10,最大值:100。
         | 
| 7391 7516 | 
             
                    # @type Limit: Integer
         | 
| 7392 7517 |  | 
| 7393 | 
            -
                    attr_accessor :ScheduleIds, :Status, :Offset, :Limit
         | 
| 7518 | 
            +
                    attr_accessor :ScheduleIds, :TriggerType, :Status, :Offset, :Limit
         | 
| 7394 7519 |  | 
| 7395 | 
            -
                    def initialize(scheduleids=nil, status=nil, offset=nil, limit=nil)
         | 
| 7520 | 
            +
                    def initialize(scheduleids=nil, triggertype=nil, status=nil, offset=nil, limit=nil)
         | 
| 7396 7521 | 
             
                      @ScheduleIds = scheduleids
         | 
| 7522 | 
            +
                      @TriggerType = triggertype
         | 
| 7397 7523 | 
             
                      @Status = status
         | 
| 7398 7524 | 
             
                      @Offset = offset
         | 
| 7399 7525 | 
             
                      @Limit = limit
         | 
| @@ -7401,6 +7527,7 @@ module TencentCloud | |
| 7401 7527 |  | 
| 7402 7528 | 
             
                    def deserialize(params)
         | 
| 7403 7529 | 
             
                      @ScheduleIds = params['ScheduleIds']
         | 
| 7530 | 
            +
                      @TriggerType = params['TriggerType']
         | 
| 7404 7531 | 
             
                      @Status = params['Status']
         | 
| 7405 7532 | 
             
                      @Offset = params['Offset']
         | 
| 7406 7533 | 
             
                      @Limit = params['Limit']
         | 
| @@ -9647,6 +9774,30 @@ module TencentCloud | |
| 9647 9774 | 
             
                    end
         | 
| 9648 9775 | 
             
                  end
         | 
| 9649 9776 |  | 
| 9777 | 
            +
                  # 智能精彩集锦片段列表。
         | 
| 9778 | 
            +
                  class HighlightSegmentItem < TencentCloud::Common::AbstractModel
         | 
| 9779 | 
            +
                    # @param Confidence: 置信度。
         | 
| 9780 | 
            +
                    # @type Confidence: Float
         | 
| 9781 | 
            +
                    # @param StartTimeOffset: 片段起始时间偏移。
         | 
| 9782 | 
            +
                    # @type StartTimeOffset: Float
         | 
| 9783 | 
            +
                    # @param EndTimeOffset: 片段结束时间偏移。
         | 
| 9784 | 
            +
                    # @type EndTimeOffset: Float
         | 
| 9785 | 
            +
             | 
| 9786 | 
            +
                    attr_accessor :Confidence, :StartTimeOffset, :EndTimeOffset
         | 
| 9787 | 
            +
                    
         | 
| 9788 | 
            +
                    def initialize(confidence=nil, starttimeoffset=nil, endtimeoffset=nil)
         | 
| 9789 | 
            +
                      @Confidence = confidence
         | 
| 9790 | 
            +
                      @StartTimeOffset = starttimeoffset
         | 
| 9791 | 
            +
                      @EndTimeOffset = endtimeoffset
         | 
| 9792 | 
            +
                    end
         | 
| 9793 | 
            +
             | 
| 9794 | 
            +
                    def deserialize(params)
         | 
| 9795 | 
            +
                      @Confidence = params['Confidence']
         | 
| 9796 | 
            +
                      @StartTimeOffset = params['StartTimeOffset']
         | 
| 9797 | 
            +
                      @EndTimeOffset = params['EndTimeOffset']
         | 
| 9798 | 
            +
                    end
         | 
| 9799 | 
            +
                  end
         | 
| 9800 | 
            +
             | 
| 9650 9801 | 
             
                  # 综合增强配置
         | 
| 9651 9802 | 
             
                  class ImageQualityEnhanceConfig < TencentCloud::Common::AbstractModel
         | 
| 9652 9803 | 
             
                    # @param Switch: 能力配置开关,可选值:
         | 
| @@ -10777,6 +10928,45 @@ module TencentCloud | |
| 10777 10928 | 
             
                    end
         | 
| 10778 10929 | 
             
                  end
         | 
| 10779 10930 |  | 
| 10931 | 
            +
                  # 智能精彩片段信息
         | 
| 10932 | 
            +
                  class MediaAiAnalysisHighlightItem < TencentCloud::Common::AbstractModel
         | 
| 10933 | 
            +
                    # @param HighlightPath: 智能精彩集锦地址。
         | 
| 10934 | 
            +
                    # @type HighlightPath: String
         | 
| 10935 | 
            +
                    # @param CovImgPath: 智能精彩集锦封面地址。
         | 
| 10936 | 
            +
                    # @type CovImgPath: String
         | 
| 10937 | 
            +
                    # @param Confidence: 智能精彩集锦的可信度,取值范围是 0 到 100。
         | 
| 10938 | 
            +
                    # @type Confidence: Float
         | 
| 10939 | 
            +
                    # @param Duration: 智能精彩集锦持续时间。
         | 
| 10940 | 
            +
                    # @type Duration: Float
         | 
| 10941 | 
            +
                    # @param SegmentSet: 智能精彩集锦子片段列表。
         | 
| 10942 | 
            +
                    # @type SegmentSet: Array
         | 
| 10943 | 
            +
             | 
| 10944 | 
            +
                    attr_accessor :HighlightPath, :CovImgPath, :Confidence, :Duration, :SegmentSet
         | 
| 10945 | 
            +
                    
         | 
| 10946 | 
            +
                    def initialize(highlightpath=nil, covimgpath=nil, confidence=nil, duration=nil, segmentset=nil)
         | 
| 10947 | 
            +
                      @HighlightPath = highlightpath
         | 
| 10948 | 
            +
                      @CovImgPath = covimgpath
         | 
| 10949 | 
            +
                      @Confidence = confidence
         | 
| 10950 | 
            +
                      @Duration = duration
         | 
| 10951 | 
            +
                      @SegmentSet = segmentset
         | 
| 10952 | 
            +
                    end
         | 
| 10953 | 
            +
             | 
| 10954 | 
            +
                    def deserialize(params)
         | 
| 10955 | 
            +
                      @HighlightPath = params['HighlightPath']
         | 
| 10956 | 
            +
                      @CovImgPath = params['CovImgPath']
         | 
| 10957 | 
            +
                      @Confidence = params['Confidence']
         | 
| 10958 | 
            +
                      @Duration = params['Duration']
         | 
| 10959 | 
            +
                      unless params['SegmentSet'].nil?
         | 
| 10960 | 
            +
                        @SegmentSet = []
         | 
| 10961 | 
            +
                        params['SegmentSet'].each do |i|
         | 
| 10962 | 
            +
                          highlightsegmentitem_tmp = HighlightSegmentItem.new
         | 
| 10963 | 
            +
                          highlightsegmentitem_tmp.deserialize(i)
         | 
| 10964 | 
            +
                          @SegmentSet << highlightsegmentitem_tmp
         | 
| 10965 | 
            +
                        end
         | 
| 10966 | 
            +
                      end
         | 
| 10967 | 
            +
                    end
         | 
| 10968 | 
            +
                  end
         | 
| 10969 | 
            +
             | 
| 10780 10970 | 
             
                  # 智能标签结果信息
         | 
| 10781 10971 | 
             
                  class MediaAiAnalysisTagItem < TencentCloud::Common::AbstractModel
         | 
| 10782 10972 | 
             
                    # @param Tag: 标签名称。
         | 
| @@ -12670,7 +12860,7 @@ module TencentCloud | |
| 12670 12860 | 
             
                    # @type Activities: Array
         | 
| 12671 12861 | 
             
                    # @param OutputStorage: 媒体处理的文件输出存储位置。
         | 
| 12672 12862 | 
             
                    # @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
         | 
| 12673 | 
            -
                    # @param OutputDir:  | 
| 12863 | 
            +
                    # @param OutputDir: 媒体处理生成的文件输出的目标目录,必选以 / 开头和结尾。
         | 
| 12674 12864 | 
             
                    # 注意:如果设置为空,则表示取消老配置的OutputDir值。
         | 
| 12675 12865 | 
             
                    # @type OutputDir: String
         | 
| 12676 12866 | 
             
                    # @param TaskNotifyConfig: 任务的事件通知配置。
         | 
| @@ -14143,8 +14333,17 @@ module TencentCloud | |
| 14143 14333 | 
             
                    # @type InputInfo: :class:`Tencentcloud::Mps.v20190612.models.MediaInputInfo`
         | 
| 14144 14334 | 
             
                    # @param OutputStorage: 媒体处理输出文件的目标存储。不填则继承 InputInfo 中的存储位置。
         | 
| 14145 14335 | 
             
                    # @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
         | 
| 14146 | 
            -
                    # @param OutputDir:  | 
| 14336 | 
            +
                    # @param OutputDir: 媒体处理生成的文件输出的目标目录,必选以 / 开头和结尾,如`/movie/201907/`。
         | 
| 14337 | 
            +
                    # 如果不填,表示与 InputInfo 中文件所在的目录一致。
         | 
| 14147 14338 | 
             
                    # @type OutputDir: String
         | 
| 14339 | 
            +
                    # @param ScheduleId: 编排ID。
         | 
| 14340 | 
            +
                    # 注意1:对于OutputStorage、OutputDir参数:
         | 
| 14341 | 
            +
                    # <li>当服务编排中子任务节点配置了OutputStorage、OutputDir时,该子任务节点中配置的输出作为子任务的输出。</li>
         | 
| 14342 | 
            +
                    # <li>当服务编排中子任务节点没有配置OutputStorage、OutputDir时,若创建任务接口(ProcessMedia)有输出,将覆盖原有编排的默认输出。</li>
         | 
| 14343 | 
            +
                    # 注意2:对于TaskNotifyConfig参数,若创建任务接口(ProcessMedia)有设置,将覆盖原有编排的默认回调。
         | 
| 14344 | 
            +
             | 
| 14345 | 
            +
                    # 注意3:编排的 Trigger 只是用来自动化触发场景,在手动发起的请求中已经配置的 Trigger 无意义。
         | 
| 14346 | 
            +
                    # @type ScheduleId: Integer
         | 
| 14148 14347 | 
             
                    # @param MediaProcessTask: 媒体处理类型任务参数。
         | 
| 14149 14348 | 
             
                    # @type MediaProcessTask: :class:`Tencentcloud::Mps.v20190612.models.MediaProcessTaskInput`
         | 
| 14150 14349 | 
             
                    # @param AiContentReviewTask: 视频内容审核类型任务参数。
         | 
| @@ -14153,6 +14352,8 @@ module TencentCloud | |
| 14153 14352 | 
             
                    # @type AiAnalysisTask: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskInput`
         | 
| 14154 14353 | 
             
                    # @param AiRecognitionTask: 视频内容识别类型任务参数。
         | 
| 14155 14354 | 
             
                    # @type AiRecognitionTask: :class:`Tencentcloud::Mps.v20190612.models.AiRecognitionTaskInput`
         | 
| 14355 | 
            +
                    # @param AiQualityControlTask: 视频质检类型任务参数。
         | 
| 14356 | 
            +
                    # @type AiQualityControlTask: :class:`Tencentcloud::Mps.v20190612.models.AiQualityControlTaskInput`
         | 
| 14156 14357 | 
             
                    # @param TaskNotifyConfig: 任务的事件通知信息,不填代表不获取事件通知。
         | 
| 14157 14358 | 
             
                    # @type TaskNotifyConfig: :class:`Tencentcloud::Mps.v20190612.models.TaskNotifyConfig`
         | 
| 14158 14359 | 
             
                    # @param TasksPriority: 任务流的优先级,数值越大优先级越高,取值范围是-10到 10,不填代表0。
         | 
| @@ -14161,34 +14362,27 @@ module TencentCloud | |
| 14161 14362 | 
             
                    # @type SessionId: String
         | 
| 14162 14363 | 
             
                    # @param SessionContext: 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
         | 
| 14163 14364 | 
             
                    # @type SessionContext: String
         | 
| 14164 | 
            -
                    # @param ScheduleId: 编排ID。
         | 
| 14165 | 
            -
                    # 注意1:对于OutputStorage、OutputDir参数:
         | 
| 14166 | 
            -
                    # <li>当服务编排中子任务节点配置了OutputStorage、OutputDir时,该子任务节点中配置的输出作为子任务的输出。</li>
         | 
| 14167 | 
            -
                    # <li>当服务编排中子任务节点没有配置OutputStorage、OutputDir时,若创建任务接口(ProcessMedia)有输出,将覆盖原有编排的默认输出。</li>
         | 
| 14168 | 
            -
                    # 注意2:对于TaskNotifyConfig参数,若创建任务接口(ProcessMedia)有设置,将覆盖原有编排的默认回调。
         | 
| 14169 | 
            -
             | 
| 14170 | 
            -
                    # 注意3:编排的 Trigger 只是用来自动化触发场景,在手动发起的请求中已经配置的 Trigger 无意义。
         | 
| 14171 | 
            -
                    # @type ScheduleId: Integer
         | 
| 14172 14365 | 
             
                    # @param TaskType: 任务类型,默认Online
         | 
| 14173 14366 | 
             
                    # <li> Online:实时任务</li>
         | 
| 14174 14367 | 
             
                    # <li> Offline:闲时任务,不保证实效性,默认3天内处理完</li>
         | 
| 14175 14368 | 
             
                    # @type TaskType: String
         | 
| 14176 14369 |  | 
| 14177 | 
            -
                    attr_accessor :InputInfo, :OutputStorage, :OutputDir, :MediaProcessTask, :AiContentReviewTask, :AiAnalysisTask, :AiRecognitionTask, :TaskNotifyConfig, :TasksPriority, :SessionId, :SessionContext, : | 
| 14370 | 
            +
                    attr_accessor :InputInfo, :OutputStorage, :OutputDir, :ScheduleId, :MediaProcessTask, :AiContentReviewTask, :AiAnalysisTask, :AiRecognitionTask, :AiQualityControlTask, :TaskNotifyConfig, :TasksPriority, :SessionId, :SessionContext, :TaskType
         | 
| 14178 14371 |  | 
| 14179 | 
            -
                    def initialize(inputinfo=nil, outputstorage=nil, outputdir=nil, mediaprocesstask=nil, aicontentreviewtask=nil, aianalysistask=nil, airecognitiontask=nil, tasknotifyconfig=nil, taskspriority=nil, sessionid=nil, sessioncontext=nil,  | 
| 14372 | 
            +
                    def initialize(inputinfo=nil, outputstorage=nil, outputdir=nil, scheduleid=nil, mediaprocesstask=nil, aicontentreviewtask=nil, aianalysistask=nil, airecognitiontask=nil, aiqualitycontroltask=nil, tasknotifyconfig=nil, taskspriority=nil, sessionid=nil, sessioncontext=nil, tasktype=nil)
         | 
| 14180 14373 | 
             
                      @InputInfo = inputinfo
         | 
| 14181 14374 | 
             
                      @OutputStorage = outputstorage
         | 
| 14182 14375 | 
             
                      @OutputDir = outputdir
         | 
| 14376 | 
            +
                      @ScheduleId = scheduleid
         | 
| 14183 14377 | 
             
                      @MediaProcessTask = mediaprocesstask
         | 
| 14184 14378 | 
             
                      @AiContentReviewTask = aicontentreviewtask
         | 
| 14185 14379 | 
             
                      @AiAnalysisTask = aianalysistask
         | 
| 14186 14380 | 
             
                      @AiRecognitionTask = airecognitiontask
         | 
| 14381 | 
            +
                      @AiQualityControlTask = aiqualitycontroltask
         | 
| 14187 14382 | 
             
                      @TaskNotifyConfig = tasknotifyconfig
         | 
| 14188 14383 | 
             
                      @TasksPriority = taskspriority
         | 
| 14189 14384 | 
             
                      @SessionId = sessionid
         | 
| 14190 14385 | 
             
                      @SessionContext = sessioncontext
         | 
| 14191 | 
            -
                      @ScheduleId = scheduleid
         | 
| 14192 14386 | 
             
                      @TaskType = tasktype
         | 
| 14193 14387 | 
             
                    end
         | 
| 14194 14388 |  | 
| @@ -14202,6 +14396,7 @@ module TencentCloud | |
| 14202 14396 | 
             
                        @OutputStorage.deserialize(params['OutputStorage'])
         | 
| 14203 14397 | 
             
                      end
         | 
| 14204 14398 | 
             
                      @OutputDir = params['OutputDir']
         | 
| 14399 | 
            +
                      @ScheduleId = params['ScheduleId']
         | 
| 14205 14400 | 
             
                      unless params['MediaProcessTask'].nil?
         | 
| 14206 14401 | 
             
                        @MediaProcessTask = MediaProcessTaskInput.new
         | 
| 14207 14402 | 
             
                        @MediaProcessTask.deserialize(params['MediaProcessTask'])
         | 
| @@ -14218,6 +14413,10 @@ module TencentCloud | |
| 14218 14413 | 
             
                        @AiRecognitionTask = AiRecognitionTaskInput.new
         | 
| 14219 14414 | 
             
                        @AiRecognitionTask.deserialize(params['AiRecognitionTask'])
         | 
| 14220 14415 | 
             
                      end
         | 
| 14416 | 
            +
                      unless params['AiQualityControlTask'].nil?
         | 
| 14417 | 
            +
                        @AiQualityControlTask = AiQualityControlTaskInput.new
         | 
| 14418 | 
            +
                        @AiQualityControlTask.deserialize(params['AiQualityControlTask'])
         | 
| 14419 | 
            +
                      end
         | 
| 14221 14420 | 
             
                      unless params['TaskNotifyConfig'].nil?
         | 
| 14222 14421 | 
             
                        @TaskNotifyConfig = TaskNotifyConfig.new
         | 
| 14223 14422 | 
             
                        @TaskNotifyConfig.deserialize(params['TaskNotifyConfig'])
         | 
| @@ -14225,7 +14424,6 @@ module TencentCloud | |
| 14225 14424 | 
             
                      @TasksPriority = params['TasksPriority']
         | 
| 14226 14425 | 
             
                      @SessionId = params['SessionId']
         | 
| 14227 14426 | 
             
                      @SessionContext = params['SessionContext']
         | 
| 14228 | 
            -
                      @ScheduleId = params['ScheduleId']
         | 
| 14229 14427 | 
             
                      @TaskType = params['TaskType']
         | 
| 14230 14428 | 
             
                    end
         | 
| 14231 14429 | 
             
                  end
         | 
| @@ -14408,6 +14606,118 @@ module TencentCloud | |
| 14408 14606 | 
             
                    end
         | 
| 14409 14607 | 
             
                  end
         | 
| 14410 14608 |  | 
| 14609 | 
            +
                  # 质检结果输出。
         | 
| 14610 | 
            +
                  class QualityControlData < TencentCloud::Common::AbstractModel
         | 
| 14611 | 
            +
                    # @param NoAudio: 为true时表示视频无音频轨。
         | 
| 14612 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14613 | 
            +
                    # @type NoAudio: Boolean
         | 
| 14614 | 
            +
                    # @param NoVideo: 为true时表示视频无视频轨。
         | 
| 14615 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14616 | 
            +
                    # @type NoVideo: Boolean
         | 
| 14617 | 
            +
                    # @param QualityEvaluationScore: 视频无参考质量打分,百分制。
         | 
| 14618 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14619 | 
            +
                    # @type QualityEvaluationScore: Integer
         | 
| 14620 | 
            +
                    # @param QualityControlResultSet: 质检检出异常项。
         | 
| 14621 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14622 | 
            +
                    # @type QualityControlResultSet: Array
         | 
| 14623 | 
            +
             | 
| 14624 | 
            +
                    attr_accessor :NoAudio, :NoVideo, :QualityEvaluationScore, :QualityControlResultSet
         | 
| 14625 | 
            +
                    
         | 
| 14626 | 
            +
                    def initialize(noaudio=nil, novideo=nil, qualityevaluationscore=nil, qualitycontrolresultset=nil)
         | 
| 14627 | 
            +
                      @NoAudio = noaudio
         | 
| 14628 | 
            +
                      @NoVideo = novideo
         | 
| 14629 | 
            +
                      @QualityEvaluationScore = qualityevaluationscore
         | 
| 14630 | 
            +
                      @QualityControlResultSet = qualitycontrolresultset
         | 
| 14631 | 
            +
                    end
         | 
| 14632 | 
            +
             | 
| 14633 | 
            +
                    def deserialize(params)
         | 
| 14634 | 
            +
                      @NoAudio = params['NoAudio']
         | 
| 14635 | 
            +
                      @NoVideo = params['NoVideo']
         | 
| 14636 | 
            +
                      @QualityEvaluationScore = params['QualityEvaluationScore']
         | 
| 14637 | 
            +
                      unless params['QualityControlResultSet'].nil?
         | 
| 14638 | 
            +
                        @QualityControlResultSet = []
         | 
| 14639 | 
            +
                        params['QualityControlResultSet'].each do |i|
         | 
| 14640 | 
            +
                          qualitycontrolresult_tmp = QualityControlResult.new
         | 
| 14641 | 
            +
                          qualitycontrolresult_tmp.deserialize(i)
         | 
| 14642 | 
            +
                          @QualityControlResultSet << qualitycontrolresult_tmp
         | 
| 14643 | 
            +
                        end
         | 
| 14644 | 
            +
                      end
         | 
| 14645 | 
            +
                    end
         | 
| 14646 | 
            +
                  end
         | 
| 14647 | 
            +
             | 
| 14648 | 
            +
                  # 质检结果项
         | 
| 14649 | 
            +
                  class QualityControlItem < TencentCloud::Common::AbstractModel
         | 
| 14650 | 
            +
                    # @param Confidence: 置信度,取值范围是 0 到 100。
         | 
| 14651 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14652 | 
            +
                    # @type Confidence: Integer
         | 
| 14653 | 
            +
                    # @param StartTimeOffset: 出现的起始时间戳,秒。
         | 
| 14654 | 
            +
                    # @type StartTimeOffset: Float
         | 
| 14655 | 
            +
                    # @param EndTimeOffset: 出现的结束时间戳,秒。
         | 
| 14656 | 
            +
                    # @type EndTimeOffset: Float
         | 
| 14657 | 
            +
                    # @param AreaCoordSet: 区域坐标(px),即左上角坐标、右下角坐标。
         | 
| 14658 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 14659 | 
            +
                    # @type AreaCoordSet: Array
         | 
| 14660 | 
            +
             | 
| 14661 | 
            +
                    attr_accessor :Confidence, :StartTimeOffset, :EndTimeOffset, :AreaCoordSet
         | 
| 14662 | 
            +
                    
         | 
| 14663 | 
            +
                    def initialize(confidence=nil, starttimeoffset=nil, endtimeoffset=nil, areacoordset=nil)
         | 
| 14664 | 
            +
                      @Confidence = confidence
         | 
| 14665 | 
            +
                      @StartTimeOffset = starttimeoffset
         | 
| 14666 | 
            +
                      @EndTimeOffset = endtimeoffset
         | 
| 14667 | 
            +
                      @AreaCoordSet = areacoordset
         | 
| 14668 | 
            +
                    end
         | 
| 14669 | 
            +
             | 
| 14670 | 
            +
                    def deserialize(params)
         | 
| 14671 | 
            +
                      @Confidence = params['Confidence']
         | 
| 14672 | 
            +
                      @StartTimeOffset = params['StartTimeOffset']
         | 
| 14673 | 
            +
                      @EndTimeOffset = params['EndTimeOffset']
         | 
| 14674 | 
            +
                      @AreaCoordSet = params['AreaCoordSet']
         | 
| 14675 | 
            +
                    end
         | 
| 14676 | 
            +
                  end
         | 
| 14677 | 
            +
             | 
| 14678 | 
            +
                  # 质检异常项。
         | 
| 14679 | 
            +
                  class QualityControlResult < TencentCloud::Common::AbstractModel
         | 
| 14680 | 
            +
                    # @param Type: 异常类型,取值范围:
         | 
| 14681 | 
            +
                    # Jitter:抖动,
         | 
| 14682 | 
            +
                    # Blur:模糊,
         | 
| 14683 | 
            +
                    # LowLighting:低光照,
         | 
| 14684 | 
            +
                    # HighLighting:过曝,
         | 
| 14685 | 
            +
                    # CrashScreen:花屏,
         | 
| 14686 | 
            +
                    # BlackWhiteEdge:黑白边,
         | 
| 14687 | 
            +
                    # SolidColorScreen:纯色屏,
         | 
| 14688 | 
            +
                    # Noise:噪点,
         | 
| 14689 | 
            +
                    # Mosaic:马赛克,
         | 
| 14690 | 
            +
                    # QRCode:二维码,
         | 
| 14691 | 
            +
                    # AppletCode:小程序码,
         | 
| 14692 | 
            +
                    # BarCode:条形码,
         | 
| 14693 | 
            +
                    # LowVoice:低音,
         | 
| 14694 | 
            +
                    # HighVoice:爆音,
         | 
| 14695 | 
            +
                    # NoVoice:静音,
         | 
| 14696 | 
            +
                    # LowEvaluation:无参考打分低于阈值。
         | 
| 14697 | 
            +
                    # @type Type: String
         | 
| 14698 | 
            +
                    # @param QualityControlItems: 质检结果项。
         | 
| 14699 | 
            +
                    # @type QualityControlItems: Array
         | 
| 14700 | 
            +
             | 
| 14701 | 
            +
                    attr_accessor :Type, :QualityControlItems
         | 
| 14702 | 
            +
                    
         | 
| 14703 | 
            +
                    def initialize(type=nil, qualitycontrolitems=nil)
         | 
| 14704 | 
            +
                      @Type = type
         | 
| 14705 | 
            +
                      @QualityControlItems = qualitycontrolitems
         | 
| 14706 | 
            +
                    end
         | 
| 14707 | 
            +
             | 
| 14708 | 
            +
                    def deserialize(params)
         | 
| 14709 | 
            +
                      @Type = params['Type']
         | 
| 14710 | 
            +
                      unless params['QualityControlItems'].nil?
         | 
| 14711 | 
            +
                        @QualityControlItems = []
         | 
| 14712 | 
            +
                        params['QualityControlItems'].each do |i|
         | 
| 14713 | 
            +
                          qualitycontrolitem_tmp = QualityControlItem.new
         | 
| 14714 | 
            +
                          qualitycontrolitem_tmp.deserialize(i)
         | 
| 14715 | 
            +
                          @QualityControlItems << qualitycontrolitem_tmp
         | 
| 14716 | 
            +
                        end
         | 
| 14717 | 
            +
                      end
         | 
| 14718 | 
            +
                    end
         | 
| 14719 | 
            +
                  end
         | 
| 14720 | 
            +
             | 
| 14411 14721 | 
             
                  # RTMP转推的目标地址信息。
         | 
| 14412 14722 | 
             
                  class RTMPAddressDestination < TencentCloud::Common::AbstractModel
         | 
| 14413 14723 | 
             
                    # @param Url: 转推RTMP的目标Url,格式如'rtmp://domain/live'。
         | 
| @@ -15101,6 +15411,49 @@ module TencentCloud | |
| 15101 15411 | 
             
                    end
         | 
| 15102 15412 | 
             
                  end
         | 
| 15103 15413 |  | 
| 15414 | 
            +
                  # 质检任务结果类型
         | 
| 15415 | 
            +
                  class ScheduleQualityControlTaskResult < TencentCloud::Common::AbstractModel
         | 
| 15416 | 
            +
                    # @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
         | 
| 15417 | 
            +
                    # @type Status: String
         | 
| 15418 | 
            +
                    # @param ErrCodeExt: 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
         | 
| 15419 | 
            +
                    # @type ErrCodeExt: String
         | 
| 15420 | 
            +
                    # @param ErrCode: 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
         | 
| 15421 | 
            +
                    # @type ErrCode: Integer
         | 
| 15422 | 
            +
                    # @param Message: 错误信息。
         | 
| 15423 | 
            +
                    # @type Message: String
         | 
| 15424 | 
            +
                    # @param Input: 质检任务的输入。
         | 
| 15425 | 
            +
                    # @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiQualityControlTaskInput`
         | 
| 15426 | 
            +
                    # @param Output: 质检任务的输出。
         | 
| 15427 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15428 | 
            +
                    # @type Output: :class:`Tencentcloud::Mps.v20190612.models.QualityControlData`
         | 
| 15429 | 
            +
             | 
| 15430 | 
            +
                    attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output
         | 
| 15431 | 
            +
                    
         | 
| 15432 | 
            +
                    def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil)
         | 
| 15433 | 
            +
                      @Status = status
         | 
| 15434 | 
            +
                      @ErrCodeExt = errcodeext
         | 
| 15435 | 
            +
                      @ErrCode = errcode
         | 
| 15436 | 
            +
                      @Message = message
         | 
| 15437 | 
            +
                      @Input = input
         | 
| 15438 | 
            +
                      @Output = output
         | 
| 15439 | 
            +
                    end
         | 
| 15440 | 
            +
             | 
| 15441 | 
            +
                    def deserialize(params)
         | 
| 15442 | 
            +
                      @Status = params['Status']
         | 
| 15443 | 
            +
                      @ErrCodeExt = params['ErrCodeExt']
         | 
| 15444 | 
            +
                      @ErrCode = params['ErrCode']
         | 
| 15445 | 
            +
                      @Message = params['Message']
         | 
| 15446 | 
            +
                      unless params['Input'].nil?
         | 
| 15447 | 
            +
                        @Input = AiQualityControlTaskInput.new
         | 
| 15448 | 
            +
                        @Input.deserialize(params['Input'])
         | 
| 15449 | 
            +
                      end
         | 
| 15450 | 
            +
                      unless params['Output'].nil?
         | 
| 15451 | 
            +
                        @Output = QualityControlData.new
         | 
| 15452 | 
            +
                        @Output.deserialize(params['Output'])
         | 
| 15453 | 
            +
                      end
         | 
| 15454 | 
            +
                    end
         | 
| 15455 | 
            +
                  end
         | 
| 15456 | 
            +
             | 
| 15104 15457 | 
             
                  # 编排视频识别任务结果类型
         | 
| 15105 15458 | 
             
                  class ScheduleRecognitionTaskResult < TencentCloud::Common::AbstractModel
         | 
| 15106 15459 | 
             
                    # @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
         | 
| @@ -15203,6 +15556,10 @@ module TencentCloud | |
| 15203 15556 | 
             
                    # <li>PROCESSING:处理中;</li>
         | 
| 15204 15557 | 
             
                    # <li>FINISH:已完成。</li>
         | 
| 15205 15558 | 
             
                    # @type Status: String
         | 
| 15559 | 
            +
                    # @param ErrCode: 源异常时返回非0错误码,返回0 时请使用各个具体任务的 ErrCode。
         | 
| 15560 | 
            +
                    # @type ErrCode: Integer
         | 
| 15561 | 
            +
                    # @param Message: 源异常时返回对应异常Message,否则请使用各个具体任务的 Message。
         | 
| 15562 | 
            +
                    # @type Message: String
         | 
| 15206 15563 | 
             
                    # @param InputInfo: 媒体处理的目标文件信息。
         | 
| 15207 15564 | 
             
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15208 15565 | 
             
                    # @type InputInfo: :class:`Tencentcloud::Mps.v20190612.models.MediaInputInfo`
         | 
| @@ -15213,11 +15570,13 @@ module TencentCloud | |
| 15213 15570 | 
             
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 15214 15571 | 
             
                    # @type ActivityResultSet: Array
         | 
| 15215 15572 |  | 
| 15216 | 
            -
                    attr_accessor :TaskId, :Status, :InputInfo, :MetaData, :ActivityResultSet
         | 
| 15573 | 
            +
                    attr_accessor :TaskId, :Status, :ErrCode, :Message, :InputInfo, :MetaData, :ActivityResultSet
         | 
| 15217 15574 |  | 
| 15218 | 
            -
                    def initialize(taskid=nil, status=nil, inputinfo=nil, metadata=nil, activityresultset=nil)
         | 
| 15575 | 
            +
                    def initialize(taskid=nil, status=nil, errcode=nil, message=nil, inputinfo=nil, metadata=nil, activityresultset=nil)
         | 
| 15219 15576 | 
             
                      @TaskId = taskid
         | 
| 15220 15577 | 
             
                      @Status = status
         | 
| 15578 | 
            +
                      @ErrCode = errcode
         | 
| 15579 | 
            +
                      @Message = message
         | 
| 15221 15580 | 
             
                      @InputInfo = inputinfo
         | 
| 15222 15581 | 
             
                      @MetaData = metadata
         | 
| 15223 15582 | 
             
                      @ActivityResultSet = activityresultset
         | 
| @@ -15226,6 +15585,8 @@ module TencentCloud | |
| 15226 15585 | 
             
                    def deserialize(params)
         | 
| 15227 15586 | 
             
                      @TaskId = params['TaskId']
         | 
| 15228 15587 | 
             
                      @Status = params['Status']
         | 
| 15588 | 
            +
                      @ErrCode = params['ErrCode']
         | 
| 15589 | 
            +
                      @Message = params['Message']
         | 
| 15229 15590 | 
             
                      unless params['InputInfo'].nil?
         | 
| 15230 15591 | 
             
                        @InputInfo = MediaInputInfo.new
         | 
| 15231 15592 | 
             
                        @InputInfo.deserialize(params['InputInfo'])
         | 
| @@ -17246,10 +17607,13 @@ module TencentCloud | |
| 17246 17607 | 
             
                    # @type AiAnalysisResultSet: Array
         | 
| 17247 17608 | 
             
                    # @param AiRecognitionResultSet: 视频内容识别任务的执行状态与结果。
         | 
| 17248 17609 | 
             
                    # @type AiRecognitionResultSet: Array
         | 
| 17610 | 
            +
                    # @param AiQualityControlTaskResult: 视频质检任务的执行状态与结果。
         | 
| 17611 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 17612 | 
            +
                    # @type AiQualityControlTaskResult: :class:`Tencentcloud::Mps.v20190612.models.ScheduleQualityControlTaskResult`
         | 
| 17249 17613 |  | 
| 17250 | 
            -
                    attr_accessor :TaskId, :Status, :ErrCode, :Message, :InputInfo, :MetaData, :MediaProcessResultSet, :AiContentReviewResultSet, :AiAnalysisResultSet, :AiRecognitionResultSet
         | 
| 17614 | 
            +
                    attr_accessor :TaskId, :Status, :ErrCode, :Message, :InputInfo, :MetaData, :MediaProcessResultSet, :AiContentReviewResultSet, :AiAnalysisResultSet, :AiRecognitionResultSet, :AiQualityControlTaskResult
         | 
| 17251 17615 |  | 
| 17252 | 
            -
                    def initialize(taskid=nil, status=nil, errcode=nil, message=nil, inputinfo=nil, metadata=nil, mediaprocessresultset=nil, aicontentreviewresultset=nil, aianalysisresultset=nil, airecognitionresultset=nil)
         | 
| 17616 | 
            +
                    def initialize(taskid=nil, status=nil, errcode=nil, message=nil, inputinfo=nil, metadata=nil, mediaprocessresultset=nil, aicontentreviewresultset=nil, aianalysisresultset=nil, airecognitionresultset=nil, aiqualitycontroltaskresult=nil)
         | 
| 17253 17617 | 
             
                      @TaskId = taskid
         | 
| 17254 17618 | 
             
                      @Status = status
         | 
| 17255 17619 | 
             
                      @ErrCode = errcode
         | 
| @@ -17260,6 +17624,7 @@ module TencentCloud | |
| 17260 17624 | 
             
                      @AiContentReviewResultSet = aicontentreviewresultset
         | 
| 17261 17625 | 
             
                      @AiAnalysisResultSet = aianalysisresultset
         | 
| 17262 17626 | 
             
                      @AiRecognitionResultSet = airecognitionresultset
         | 
| 17627 | 
            +
                      @AiQualityControlTaskResult = aiqualitycontroltaskresult
         | 
| 17263 17628 | 
             
                    end
         | 
| 17264 17629 |  | 
| 17265 17630 | 
             
                    def deserialize(params)
         | 
| @@ -17307,6 +17672,10 @@ module TencentCloud | |
| 17307 17672 | 
             
                          @AiRecognitionResultSet << airecognitionresult_tmp
         | 
| 17308 17673 | 
             
                        end
         | 
| 17309 17674 | 
             
                      end
         | 
| 17675 | 
            +
                      unless params['AiQualityControlTaskResult'].nil?
         | 
| 17676 | 
            +
                        @AiQualityControlTaskResult = ScheduleQualityControlTaskResult.new
         | 
| 17677 | 
            +
                        @AiQualityControlTaskResult.deserialize(params['AiQualityControlTaskResult'])
         | 
| 17678 | 
            +
                      end
         | 
| 17310 17679 | 
             
                    end
         | 
| 17311 17680 | 
             
                  end
         | 
| 17312 17681 |  | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: tencentcloud-sdk-mps
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 3.0. | 
| 4 | 
            +
              version: 3.0.546
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Tencent Cloud
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2023-04- | 
| 11 | 
            +
            date: 2023-04-07 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: tencentcloud-sdk-common
         | 
| @@ -33,9 +33,9 @@ executables: [] | |
| 33 33 | 
             
            extensions: []
         | 
| 34 34 | 
             
            extra_rdoc_files: []
         | 
| 35 35 | 
             
            files:
         | 
| 36 | 
            -
            - lib/v20190612/models.rb
         | 
| 37 | 
            -
            - lib/v20190612/client.rb
         | 
| 38 36 | 
             
            - lib/tencentcloud-sdk-mps.rb
         | 
| 37 | 
            +
            - lib/v20190612/client.rb
         | 
| 38 | 
            +
            - lib/v20190612/models.rb
         | 
| 39 39 | 
             
            - lib/VERSION
         | 
| 40 40 | 
             
            homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
         | 
| 41 41 | 
             
            licenses:
         |