tencentcloud-sdk-mps 3.0.474 → 3.0.475

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 (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20190612/models.rb +12 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f46e6492186e5f8eaad2bf830a5d0022f6065e43
4
- data.tar.gz: 13d657e6083ba5a2e8f3ffa9cec066b77b21d46b
3
+ metadata.gz: e6a81d0a089890971b2d430cb75094d0bce1431e
4
+ data.tar.gz: 8758dd331adb1f63990f701392dc7eea2dc60e0c
5
5
  SHA512:
6
- metadata.gz: 09293a58a5cf32da0beee8e44b427ec2682dd5ed46aa3c8f3a64d411e0c977e1cd4e82bd60abcacb6d4c00374639d4903c43c7b53435c35b4c4922ea5c13a3d3
7
- data.tar.gz: e142f56619c564edb314b8997372b42fd522e9c3a260022c4d6c564111d4b39a1da57b23b8c63a915364ab2ab6cee36f21097d3b452504a45e58d5580538108d
6
+ metadata.gz: d1df99d8eb25a9fd0991bd68252362f207cb5e043d4c3fdd482c5dbd9a56b96d1c4549c3d79bb174edc3efc8d81f7cd6721e4924284de1861f0b3ce974578001
7
+ data.tar.gz: 2b5353977d4173656b524dcedfaa54ee6a86ada1e6b5c72060e0981973bb09f1baedc3037283e29b43502959c6b264e0321f65869a5c811decc5c974ab920e14
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.474
1
+ 3.0.475
@@ -10111,6 +10111,8 @@ module TencentCloud
10111
10111
  # @param TopicName: 当模型为 Topic 时有效,表示接收事件通知的 CMQ 的主题名。
10112
10112
  # @type TopicName: String
10113
10113
  # @param NotifyType: 通知类型,默认CMQ,指定URL时HTTP回调推送到 NotifyUrl 指定的地址。
10114
+
10115
+ # <font color="red"> 注:不填或为空时默认 CMQ,如需采用其他类型需填写对应类型值。 </font>
10114
10116
  # @type NotifyType: String
10115
10117
  # @param NotifyUrl: HTTP回调地址,NotifyType为URL时必填。
10116
10118
  # @type NotifyUrl: String
@@ -10686,7 +10688,7 @@ module TencentCloud
10686
10688
 
10687
10689
  # 媒体处理的输入对象信息。
10688
10690
  class MediaInputInfo < TencentCloud::Common::AbstractModel
10689
- # @param Type: 输入来源对象的类型,支持 COSURL 两种。
10691
+ # @param Type: 输入来源对象的类型,支持 COSURL 两种。
10690
10692
  # @type Type: String
10691
10693
  # @param CosInputInfo: 当 Type 为 COS 时有效,则该项为必填,表示媒体处理 COS 对象信息。
10692
10694
  # @type CosInputInfo: :class:`Tencentcloud::Mps.v20190612.models.CosInputInfo`
@@ -13622,10 +13624,14 @@ module TencentCloud
13622
13624
 
13623
13625
  # 注意3:编排的 Trigger 只是用来自动化触发场景,在手动发起的请求中已经配置的 Trigger 无意义。
13624
13626
  # @type ScheduleId: Integer
13627
+ # @param TaskType: 任务类型,默认Online
13628
+ # <li> Online:实时任务</li>
13629
+ # <li> Offline:闲时任务,不保证实效性,默认3天内处理完</li>
13630
+ # @type TaskType: String
13625
13631
 
13626
- attr_accessor :InputInfo, :OutputStorage, :OutputDir, :MediaProcessTask, :AiContentReviewTask, :AiAnalysisTask, :AiRecognitionTask, :TaskNotifyConfig, :TasksPriority, :SessionId, :SessionContext, :ScheduleId
13632
+ attr_accessor :InputInfo, :OutputStorage, :OutputDir, :MediaProcessTask, :AiContentReviewTask, :AiAnalysisTask, :AiRecognitionTask, :TaskNotifyConfig, :TasksPriority, :SessionId, :SessionContext, :ScheduleId, :TaskType
13627
13633
 
13628
- def initialize(inputinfo=nil, outputstorage=nil, outputdir=nil, mediaprocesstask=nil, aicontentreviewtask=nil, aianalysistask=nil, airecognitiontask=nil, tasknotifyconfig=nil, taskspriority=nil, sessionid=nil, sessioncontext=nil, scheduleid=nil)
13634
+ def initialize(inputinfo=nil, outputstorage=nil, outputdir=nil, mediaprocesstask=nil, aicontentreviewtask=nil, aianalysistask=nil, airecognitiontask=nil, tasknotifyconfig=nil, taskspriority=nil, sessionid=nil, sessioncontext=nil, scheduleid=nil, tasktype=nil)
13629
13635
  @InputInfo = inputinfo
13630
13636
  @OutputStorage = outputstorage
13631
13637
  @OutputDir = outputdir
@@ -13638,6 +13644,7 @@ module TencentCloud
13638
13644
  @SessionId = sessionid
13639
13645
  @SessionContext = sessioncontext
13640
13646
  @ScheduleId = scheduleid
13647
+ @TaskType = tasktype
13641
13648
  end
13642
13649
 
13643
13650
  def deserialize(params)
@@ -13674,6 +13681,7 @@ module TencentCloud
13674
13681
  @SessionId = params['SessionId']
13675
13682
  @SessionContext = params['SessionContext']
13676
13683
  @ScheduleId = params['ScheduleId']
13684
+ @TaskType = params['TaskType']
13677
13685
  end
13678
13686
  end
13679
13687
 
@@ -15150,7 +15158,7 @@ module TencentCloud
15150
15158
  # <li>TDMQ-CMQ:消息队列</li>
15151
15159
  # <li>URL:指定URL时HTTP回调推送到 NotifyUrl 指定的地址,回调协议http+json,包体内容同解析事件通知接口的输出参数 </li>
15152
15160
  # <li>SCF:不推荐使用,需要在控制台额外配置SCF</li>
15153
- # 目前 默认CMQ
15161
+ # <font color="red"> 注:不填或为空时默认 CMQ,如需采用其他类型需填写对应类型值。 </font>
15154
15162
  # @type NotifyType: String
15155
15163
  # @param NotifyUrl: HTTP回调地址,NotifyType为URL时必填。
15156
15164
  # @type NotifyUrl: String
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.474
4
+ version: 3.0.475
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-12-15 00:00:00.000000000 Z
11
+ date: 2022-12-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common