tencentcloud-sdk-mps 3.0.1119 → 3.0.1125
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 +45 -15
- 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: 7560f7e79769067717e0a352dbe92f498bfa6659
|
4
|
+
data.tar.gz: 67a1cb393dc826c4be020fde6106402bcf23897d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 55d5b5beae8b621a06f91c5868c02a7ec9546cebb7597a87f8cc4b2c04859b8ccfd40c0cfe5e12e71c377ebb6a7aee3326d457e423b45722085ae7b60c7eaf10
|
7
|
+
data.tar.gz: a22b8b5c7a9c8cb27a22397f14783bf3c9b448b9930e2e1ffe191f1865607e0969a75c76d390563edf3d259754c99aaf114eed48d0327dc16324995d458e97c0
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1125
|
data/lib/v20190612/models.rb
CHANGED
@@ -7294,14 +7294,17 @@ module TencentCloud
|
|
7294
7294
|
# @type Name: String
|
7295
7295
|
# @param Comment: 模板描述信息,长度限制:256 个字符。
|
7296
7296
|
# @type Comment: String
|
7297
|
+
# @param RecordType: 录制类型,取值为video(音视频录制)、audio(纯音频录制)、auto(自动探测)。不填时默认值为video。
|
7298
|
+
# @type RecordType: String
|
7297
7299
|
|
7298
|
-
attr_accessor :HLSConfigure, :MP4Configure, :Name, :Comment
|
7300
|
+
attr_accessor :HLSConfigure, :MP4Configure, :Name, :Comment, :RecordType
|
7299
7301
|
|
7300
|
-
def initialize(hlsconfigure=nil, mp4configure=nil, name=nil, comment=nil)
|
7302
|
+
def initialize(hlsconfigure=nil, mp4configure=nil, name=nil, comment=nil, recordtype=nil)
|
7301
7303
|
@HLSConfigure = hlsconfigure
|
7302
7304
|
@MP4Configure = mp4configure
|
7303
7305
|
@Name = name
|
7304
7306
|
@Comment = comment
|
7307
|
+
@RecordType = recordtype
|
7305
7308
|
end
|
7306
7309
|
|
7307
7310
|
def deserialize(params)
|
@@ -7315,6 +7318,7 @@ module TencentCloud
|
|
7315
7318
|
end
|
7316
7319
|
@Name = params['Name']
|
7317
7320
|
@Comment = params['Comment']
|
7321
|
+
@RecordType = params['RecordType']
|
7318
7322
|
end
|
7319
7323
|
end
|
7320
7324
|
|
@@ -14917,16 +14921,22 @@ module TencentCloud
|
|
14917
14921
|
# @type BeginTime: String
|
14918
14922
|
# @param EndTime: 直播切片对应直播结束时间点,采用 ISO 日期格式。
|
14919
14923
|
# @type EndTime: String
|
14924
|
+
# @param Title: 集锦标题。
|
14925
|
+
# @type Title: String
|
14926
|
+
# @param Summary: 集锦概要。
|
14927
|
+
# @type Summary: String
|
14920
14928
|
|
14921
|
-
attr_accessor :Confidence, :StartTimeOffset, :EndTimeOffset, :SegmentTags, :BeginTime, :EndTime
|
14929
|
+
attr_accessor :Confidence, :StartTimeOffset, :EndTimeOffset, :SegmentTags, :BeginTime, :EndTime, :Title, :Summary
|
14922
14930
|
|
14923
|
-
def initialize(confidence=nil, starttimeoffset=nil, endtimeoffset=nil, segmenttags=nil, begintime=nil, endtime=nil)
|
14931
|
+
def initialize(confidence=nil, starttimeoffset=nil, endtimeoffset=nil, segmenttags=nil, begintime=nil, endtime=nil, title=nil, summary=nil)
|
14924
14932
|
@Confidence = confidence
|
14925
14933
|
@StartTimeOffset = starttimeoffset
|
14926
14934
|
@EndTimeOffset = endtimeoffset
|
14927
14935
|
@SegmentTags = segmenttags
|
14928
14936
|
@BeginTime = begintime
|
14929
14937
|
@EndTime = endtime
|
14938
|
+
@Title = title
|
14939
|
+
@Summary = summary
|
14930
14940
|
end
|
14931
14941
|
|
14932
14942
|
def deserialize(params)
|
@@ -14936,6 +14946,8 @@ module TencentCloud
|
|
14936
14946
|
@SegmentTags = params['SegmentTags']
|
14937
14947
|
@BeginTime = params['BeginTime']
|
14938
14948
|
@EndTime = params['EndTime']
|
14949
|
+
@Title = params['Title']
|
14950
|
+
@Summary = params['Summary']
|
14939
14951
|
end
|
14940
14952
|
end
|
14941
14953
|
|
@@ -15718,10 +15730,12 @@ module TencentCloud
|
|
15718
15730
|
# @type CreateTime: String
|
15719
15731
|
# @param UpdateTime: 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
|
15720
15732
|
# @type UpdateTime: String
|
15733
|
+
# @param RecordType: 录制类型,取值为video(音视频录制)、audio(纯音频录制)、auto(自动探测)。
|
15734
|
+
# @type RecordType: String
|
15721
15735
|
|
15722
|
-
attr_accessor :Definition, :HLSConfigure, :MP4Configure, :Name, :Comment, :Type, :CreateTime, :UpdateTime
|
15736
|
+
attr_accessor :Definition, :HLSConfigure, :MP4Configure, :Name, :Comment, :Type, :CreateTime, :UpdateTime, :RecordType
|
15723
15737
|
|
15724
|
-
def initialize(definition=nil, hlsconfigure=nil, mp4configure=nil, name=nil, comment=nil, type=nil, createtime=nil, updatetime=nil)
|
15738
|
+
def initialize(definition=nil, hlsconfigure=nil, mp4configure=nil, name=nil, comment=nil, type=nil, createtime=nil, updatetime=nil, recordtype=nil)
|
15725
15739
|
@Definition = definition
|
15726
15740
|
@HLSConfigure = hlsconfigure
|
15727
15741
|
@MP4Configure = mp4configure
|
@@ -15730,6 +15744,7 @@ module TencentCloud
|
|
15730
15744
|
@Type = type
|
15731
15745
|
@CreateTime = createtime
|
15732
15746
|
@UpdateTime = updatetime
|
15747
|
+
@RecordType = recordtype
|
15733
15748
|
end
|
15734
15749
|
|
15735
15750
|
def deserialize(params)
|
@@ -15747,6 +15762,7 @@ module TencentCloud
|
|
15747
15762
|
@Type = params['Type']
|
15748
15763
|
@CreateTime = params['CreateTime']
|
15749
15764
|
@UpdateTime = params['UpdateTime']
|
15765
|
+
@RecordType = params['RecordType']
|
15750
15766
|
end
|
15751
15767
|
end
|
15752
15768
|
|
@@ -16739,20 +16755,20 @@ module TencentCloud
|
|
16739
16755
|
# 任务处理的事件通知配置。
|
16740
16756
|
class LiveStreamTaskNotifyConfig < TencentCloud::Common::AbstractModel
|
16741
16757
|
# @param NotifyType: 通知类型:
|
16742
|
-
#
|
16758
|
+
# TDMQ-CMQ:消息队列
|
16743
16759
|
# "URL": 指定URL时HTTP回调推送到 NotifyUrl 指定的地址,回调协议http+json,包体内容同[解析直播事件通知接口](https://cloud.tencent.com/document/product/862/39229) 的输出参数
|
16744
16760
|
|
16745
16761
|
# <font color="red"> 注:不填或为空时默认 CMQ,如需采用其他类型需填写对应类型值。 </font>
|
16746
16762
|
# @type NotifyType: String
|
16747
16763
|
# @param NotifyUrl: HTTP回调地址,NotifyType为URL时必填。
|
16748
16764
|
# @type NotifyUrl: String
|
16749
|
-
# @param CmqModel:
|
16765
|
+
# @param CmqModel: 有 Queue 和 Topic 两种模型。
|
16750
16766
|
# @type CmqModel: String
|
16751
|
-
# @param CmqRegion: CMQ 的园区,如 sh,bj 等。
|
16767
|
+
# @param CmqRegion: TDMQ-CMQ 的园区,如 sh,bj 等。
|
16752
16768
|
# @type CmqRegion: String
|
16753
|
-
# @param QueueName: 当模型为 Queue 时有效,表示接收事件通知的 CMQ 的队列名。
|
16769
|
+
# @param QueueName: 当模型为 Queue 时有效,表示接收事件通知的 TDMQ-CMQ 的队列名。
|
16754
16770
|
# @type QueueName: String
|
16755
|
-
# @param TopicName: 当模型为 Topic 时有效,表示接收事件通知的 CMQ 的主题名。
|
16771
|
+
# @param TopicName: 当模型为 Topic 时有效,表示接收事件通知的 TDMQ-CMQ 的主题名。
|
16756
16772
|
# @type TopicName: String
|
16757
16773
|
# @param NotifyKey: 用于生成回调签名的 Key。
|
16758
16774
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
@@ -17069,15 +17085,23 @@ module TencentCloud
|
|
17069
17085
|
# @type Duration: Float
|
17070
17086
|
# @param SegmentSet: 智能精彩集锦子片段列表。
|
17071
17087
|
# @type SegmentSet: Array
|
17088
|
+
# @param HighlightUrl: 智能精彩集锦地址。
|
17089
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
17090
|
+
# @type HighlightUrl: String
|
17091
|
+
# @param CovImgUrl: 智能精彩集锦封面地址。
|
17092
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
17093
|
+
# @type CovImgUrl: String
|
17072
17094
|
|
17073
|
-
attr_accessor :HighlightPath, :CovImgPath, :Confidence, :Duration, :SegmentSet
|
17095
|
+
attr_accessor :HighlightPath, :CovImgPath, :Confidence, :Duration, :SegmentSet, :HighlightUrl, :CovImgUrl
|
17074
17096
|
|
17075
|
-
def initialize(highlightpath=nil, covimgpath=nil, confidence=nil, duration=nil, segmentset=nil)
|
17097
|
+
def initialize(highlightpath=nil, covimgpath=nil, confidence=nil, duration=nil, segmentset=nil, highlighturl=nil, covimgurl=nil)
|
17076
17098
|
@HighlightPath = highlightpath
|
17077
17099
|
@CovImgPath = covimgpath
|
17078
17100
|
@Confidence = confidence
|
17079
17101
|
@Duration = duration
|
17080
17102
|
@SegmentSet = segmentset
|
17103
|
+
@HighlightUrl = highlighturl
|
17104
|
+
@CovImgUrl = covimgurl
|
17081
17105
|
end
|
17082
17106
|
|
17083
17107
|
def deserialize(params)
|
@@ -17093,6 +17117,8 @@ module TencentCloud
|
|
17093
17117
|
@SegmentSet << highlightsegmentitem_tmp
|
17094
17118
|
end
|
17095
17119
|
end
|
17120
|
+
@HighlightUrl = params['HighlightUrl']
|
17121
|
+
@CovImgUrl = params['CovImgUrl']
|
17096
17122
|
end
|
17097
17123
|
end
|
17098
17124
|
|
@@ -18950,15 +18976,18 @@ module TencentCloud
|
|
18950
18976
|
# @type Name: String
|
18951
18977
|
# @param Comment: 模板描述信息,长度限制:256 个字符。
|
18952
18978
|
# @type Comment: String
|
18979
|
+
# @param RecordType: 录制类型,取值为video(音视频录制)、audio(纯音频录制)、auto(自动探测)。
|
18980
|
+
# @type RecordType: String
|
18953
18981
|
|
18954
|
-
attr_accessor :Definition, :HLSConfigure, :MP4Configure, :Name, :Comment
|
18982
|
+
attr_accessor :Definition, :HLSConfigure, :MP4Configure, :Name, :Comment, :RecordType
|
18955
18983
|
|
18956
|
-
def initialize(definition=nil, hlsconfigure=nil, mp4configure=nil, name=nil, comment=nil)
|
18984
|
+
def initialize(definition=nil, hlsconfigure=nil, mp4configure=nil, name=nil, comment=nil, recordtype=nil)
|
18957
18985
|
@Definition = definition
|
18958
18986
|
@HLSConfigure = hlsconfigure
|
18959
18987
|
@MP4Configure = mp4configure
|
18960
18988
|
@Name = name
|
18961
18989
|
@Comment = comment
|
18990
|
+
@RecordType = recordtype
|
18962
18991
|
end
|
18963
18992
|
|
18964
18993
|
def deserialize(params)
|
@@ -18973,6 +19002,7 @@ module TencentCloud
|
|
18973
19002
|
end
|
18974
19003
|
@Name = params['Name']
|
18975
19004
|
@Comment = params['Comment']
|
19005
|
+
@RecordType = params['RecordType']
|
18976
19006
|
end
|
18977
19007
|
end
|
18978
19008
|
|
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.1125
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-08-
|
11
|
+
date: 2025-08-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|