tencentcloud-sdk-mps 3.0.673 → 3.0.675

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20190612/models.rb +88 -2
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d85c102f04fc841fddf7867cb139450c69e8cfee
4
- data.tar.gz: a75c7817030b7897cb7cc28ed9a007ca25b4c7ec
3
+ metadata.gz: 9cf5e30c7cb3be07e5917ef44b817b4d618a0833
4
+ data.tar.gz: bd6bdd29a0196efe9c3688ed4447e0929126cbb4
5
5
  SHA512:
6
- metadata.gz: 9dfd9dac0e35f13c6bb9ea5478159a9c219e8609ef8bca40d53230b4258fbc40acffca7a79bd9d4de2b5724b2eef14250b56f5a59da2af32a5719a2049d4578f
7
- data.tar.gz: 7e579fe47d330b499657c38c45d28620ca5618f787c075eda50d4ca5f3a897a734ce55a6095c65475550a5967417f6fe72179b76c19dc85699bf221c63f2c04c
6
+ metadata.gz: cd9a2c6172b2281915318a3a6a174c854502ff9796570698bc844b16f4ed7939f8d9a365c2f14b80f1eef0369913c4677698fba698b6d3d28f85305c950ecb26
7
+ data.tar.gz: e9a3b6efdd63d028b048dd8fc5493e1559967606a5a317463312309031cb5b671451e484be9c0ae7cbd00a2a55deae359300dce286ad38a4c929081564ebe58c
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.673
1
+ 3.0.675
@@ -684,16 +684,20 @@ module TencentCloud
684
684
  # @param HighlightTask: 视频内容分析集锦任务的查询结果,当任务类型为 Highlight时有效。
685
685
  # 注意:此字段可能返回 null,表示取不到有效值。
686
686
  # @type HighlightTask: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskHighlightResult`
687
+ # @param DeLogoTask: 视频内容分析去水印任务的查询结果,当任务类型为 DeLogo 时有效。
688
+ # 注意:此字段可能返回 null,表示取不到有效值。
689
+ # @type DeLogoTask: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskDelLogoResult`
687
690
 
688
- attr_accessor :Type, :ClassificationTask, :CoverTask, :TagTask, :FrameTagTask, :HighlightTask
691
+ attr_accessor :Type, :ClassificationTask, :CoverTask, :TagTask, :FrameTagTask, :HighlightTask, :DeLogoTask
689
692
 
690
- def initialize(type=nil, classificationtask=nil, covertask=nil, tagtask=nil, frametagtask=nil, highlighttask=nil)
693
+ def initialize(type=nil, classificationtask=nil, covertask=nil, tagtask=nil, frametagtask=nil, highlighttask=nil, delogotask=nil)
691
694
  @Type = type
692
695
  @ClassificationTask = classificationtask
693
696
  @CoverTask = covertask
694
697
  @TagTask = tagtask
695
698
  @FrameTagTask = frametagtask
696
699
  @HighlightTask = highlighttask
700
+ @DeLogoTask = delogotask
697
701
  end
698
702
 
699
703
  def deserialize(params)
@@ -718,6 +722,10 @@ module TencentCloud
718
722
  @HighlightTask = AiAnalysisTaskHighlightResult.new
719
723
  @HighlightTask.deserialize(params['HighlightTask'])
720
724
  end
725
+ unless params['DeLogoTask'].nil?
726
+ @DeLogoTask = AiAnalysisTaskDelLogoResult.new
727
+ @DeLogoTask.deserialize(params['DeLogoTask'])
728
+ end
721
729
  end
722
730
  end
723
731
 
@@ -892,6 +900,84 @@ module TencentCloud
892
900
  end
893
901
  end
894
902
 
903
+ # 智能去水印任务输入类型
904
+ class AiAnalysisTaskDelLogoInput < TencentCloud::Common::AbstractModel
905
+ # @param Definition: 视频智能去水印模板 ID。
906
+ # @type Definition: Integer
907
+
908
+ attr_accessor :Definition
909
+
910
+ def initialize(definition=nil)
911
+ @Definition = definition
912
+ end
913
+
914
+ def deserialize(params)
915
+ @Definition = params['Definition']
916
+ end
917
+ end
918
+
919
+ # 智能去水印结果信息
920
+ class AiAnalysisTaskDelLogoOutput < TencentCloud::Common::AbstractModel
921
+ # @param Path: 去水印后文件的路径。
922
+ # @type Path: String
923
+ # @param OutputStorage: 去水印后文件的存储位置。
924
+ # @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
925
+
926
+ attr_accessor :Path, :OutputStorage
927
+
928
+ def initialize(path=nil, outputstorage=nil)
929
+ @Path = path
930
+ @OutputStorage = outputstorage
931
+ end
932
+
933
+ def deserialize(params)
934
+ @Path = params['Path']
935
+ unless params['OutputStorage'].nil?
936
+ @OutputStorage = TaskOutputStorage.new
937
+ @OutputStorage.deserialize(params['OutputStorage'])
938
+ end
939
+ end
940
+ end
941
+
942
+ # 智能去水印结果类型
943
+ class AiAnalysisTaskDelLogoResult < TencentCloud::Common::AbstractModel
944
+ # @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
945
+ # @type Status: String
946
+ # @param ErrCode: 错误码,0:成功,其他值:失败。
947
+ # @type ErrCode: Integer
948
+ # @param Message: 错误信息。
949
+ # @type Message: String
950
+ # @param Input: 智能去水印任务输入。
951
+ # @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskDelLogoInput`
952
+ # @param Output: 智能去水印任务输出。
953
+ # 注意:此字段可能返回 null,表示取不到有效值。
954
+ # @type Output: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskDelLogoOutput`
955
+
956
+ attr_accessor :Status, :ErrCode, :Message, :Input, :Output
957
+
958
+ def initialize(status=nil, errcode=nil, message=nil, input=nil, output=nil)
959
+ @Status = status
960
+ @ErrCode = errcode
961
+ @Message = message
962
+ @Input = input
963
+ @Output = output
964
+ end
965
+
966
+ def deserialize(params)
967
+ @Status = params['Status']
968
+ @ErrCode = params['ErrCode']
969
+ @Message = params['Message']
970
+ unless params['Input'].nil?
971
+ @Input = AiAnalysisTaskDelLogoInput.new
972
+ @Input.deserialize(params['Input'])
973
+ end
974
+ unless params['Output'].nil?
975
+ @Output = AiAnalysisTaskDelLogoOutput.new
976
+ @Output.deserialize(params['Output'])
977
+ end
978
+ end
979
+ end
980
+
895
981
  # 智能按帧标签任务输入类型
896
982
  class AiAnalysisTaskFrameTagInput < TencentCloud::Common::AbstractModel
897
983
  # @param Definition: 视频智能按帧标签模板 ID。
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.673
4
+ version: 3.0.675
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-10-10 00:00:00.000000000 Z
11
+ date: 2023-10-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,8 +33,8 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - lib/v20190612/models.rb
37
36
  - lib/v20190612/client.rb
37
+ - lib/v20190612/models.rb
38
38
  - lib/tencentcloud-sdk-mps.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby