tencentcloud-sdk-mps 3.0.474 → 3.0.476
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190612/models.rb +12 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c620ebc8a3d8f3db221ba601a8a7ab56ceddf412
|
4
|
+
data.tar.gz: d81924ad4390d764174e1b0d303597c9f4fd4791
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5232ad9ae9585a3ba87dff344e53f8a780c54ec44a30861c4b61a942efdfb77bb3783c5ad1d1f26d3dbb71dc6b446218be3ab949664dbf23a153b58c7b798aee
|
7
|
+
data.tar.gz: f9f9625a13dd9193f1fdfb6044e790148dd3d110edd22b7efbafcb2978bc835df0c01865043db67c4de0d410a6d3af4e4335b431ea4eeb59ebda86ff222acf3f
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.476
|
data/lib/v20190612/models.rb
CHANGED
@@ -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: 输入来源对象的类型,支持 COS
|
10691
|
+
# @param Type: 输入来源对象的类型,支持 COS、URL 两种。
|
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
|
-
#
|
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.
|
4
|
+
version: 3.0.476
|
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-
|
11
|
+
date: 2022-12-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|