tencentcloud-sdk-mps 3.0.1119 → 3.0.1123
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 +22 -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: fea34a8e9cb09e0b0f7ff83beaa5aad6094c7878
|
4
|
+
data.tar.gz: 668cb63c2ee9d44fe83c3d42fb59ce73ba166717
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0522a55322d9ad19eb11faaebba967dd32b9bc3e0b3b9a5ef20ea1581930957574c5344cfdbf2fe12872dcea74e744864f00fc7c82085f0466f297ec23e04c4c
|
7
|
+
data.tar.gz: cc157e957314f27094fa87c875fd58f04f88ef622f25753727cb7ccf3485ae5bd898e355faa8168ebcf3f12bc3ec41bec262433af4ac6a45484f837c520d2cd7
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1123
|
data/lib/v20190612/models.rb
CHANGED
@@ -14917,16 +14917,22 @@ module TencentCloud
|
|
14917
14917
|
# @type BeginTime: String
|
14918
14918
|
# @param EndTime: 直播切片对应直播结束时间点,采用 ISO 日期格式。
|
14919
14919
|
# @type EndTime: String
|
14920
|
+
# @param Title: 集锦标题。
|
14921
|
+
# @type Title: String
|
14922
|
+
# @param Summary: 集锦概要。
|
14923
|
+
# @type Summary: String
|
14920
14924
|
|
14921
|
-
attr_accessor :Confidence, :StartTimeOffset, :EndTimeOffset, :SegmentTags, :BeginTime, :EndTime
|
14925
|
+
attr_accessor :Confidence, :StartTimeOffset, :EndTimeOffset, :SegmentTags, :BeginTime, :EndTime, :Title, :Summary
|
14922
14926
|
|
14923
|
-
def initialize(confidence=nil, starttimeoffset=nil, endtimeoffset=nil, segmenttags=nil, begintime=nil, endtime=nil)
|
14927
|
+
def initialize(confidence=nil, starttimeoffset=nil, endtimeoffset=nil, segmenttags=nil, begintime=nil, endtime=nil, title=nil, summary=nil)
|
14924
14928
|
@Confidence = confidence
|
14925
14929
|
@StartTimeOffset = starttimeoffset
|
14926
14930
|
@EndTimeOffset = endtimeoffset
|
14927
14931
|
@SegmentTags = segmenttags
|
14928
14932
|
@BeginTime = begintime
|
14929
14933
|
@EndTime = endtime
|
14934
|
+
@Title = title
|
14935
|
+
@Summary = summary
|
14930
14936
|
end
|
14931
14937
|
|
14932
14938
|
def deserialize(params)
|
@@ -14936,6 +14942,8 @@ module TencentCloud
|
|
14936
14942
|
@SegmentTags = params['SegmentTags']
|
14937
14943
|
@BeginTime = params['BeginTime']
|
14938
14944
|
@EndTime = params['EndTime']
|
14945
|
+
@Title = params['Title']
|
14946
|
+
@Summary = params['Summary']
|
14939
14947
|
end
|
14940
14948
|
end
|
14941
14949
|
|
@@ -17069,15 +17077,23 @@ module TencentCloud
|
|
17069
17077
|
# @type Duration: Float
|
17070
17078
|
# @param SegmentSet: 智能精彩集锦子片段列表。
|
17071
17079
|
# @type SegmentSet: Array
|
17080
|
+
# @param HighlightUrl: 智能精彩集锦地址。
|
17081
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
17082
|
+
# @type HighlightUrl: String
|
17083
|
+
# @param CovImgUrl: 智能精彩集锦封面地址。
|
17084
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
17085
|
+
# @type CovImgUrl: String
|
17072
17086
|
|
17073
|
-
attr_accessor :HighlightPath, :CovImgPath, :Confidence, :Duration, :SegmentSet
|
17087
|
+
attr_accessor :HighlightPath, :CovImgPath, :Confidence, :Duration, :SegmentSet, :HighlightUrl, :CovImgUrl
|
17074
17088
|
|
17075
|
-
def initialize(highlightpath=nil, covimgpath=nil, confidence=nil, duration=nil, segmentset=nil)
|
17089
|
+
def initialize(highlightpath=nil, covimgpath=nil, confidence=nil, duration=nil, segmentset=nil, highlighturl=nil, covimgurl=nil)
|
17076
17090
|
@HighlightPath = highlightpath
|
17077
17091
|
@CovImgPath = covimgpath
|
17078
17092
|
@Confidence = confidence
|
17079
17093
|
@Duration = duration
|
17080
17094
|
@SegmentSet = segmentset
|
17095
|
+
@HighlightUrl = highlighturl
|
17096
|
+
@CovImgUrl = covimgurl
|
17081
17097
|
end
|
17082
17098
|
|
17083
17099
|
def deserialize(params)
|
@@ -17093,6 +17109,8 @@ module TencentCloud
|
|
17093
17109
|
@SegmentSet << highlightsegmentitem_tmp
|
17094
17110
|
end
|
17095
17111
|
end
|
17112
|
+
@HighlightUrl = params['HighlightUrl']
|
17113
|
+
@CovImgUrl = params['CovImgUrl']
|
17096
17114
|
end
|
17097
17115
|
end
|
17098
17116
|
|
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.1123
|
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-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|