tencentcloud-sdk-live 3.0.1027 → 3.0.1029
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/v20180801/models.rb +22 -18
- 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: d4d1ed90e32250103f44f3948371bcacef41de3f
|
4
|
+
data.tar.gz: 154c69aefc3d8bacade2882a6257de9351aeba46
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bbe2f56bca23dcb5986b986c109ebe43901b7c50b07b831a8ea8b87e2a03c7703da7b74f8e8c2763244634f1f80c2042333c92d90b90ee4f2854fe985f7137a6
|
7
|
+
data.tar.gz: ac1182e3b2a8c2f083d81fb77945b636256af3e0bf32143783cb5e8e2e5d9288891ae3670dbb8eb1a69b692d4c765d41da86f5012d972f337304e1647ccee468
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1029
|
data/lib/v20180801/models.rb
CHANGED
@@ -1192,21 +1192,13 @@ module TencentCloud
|
|
1192
1192
|
# @param LayerId: 布局层ID。
|
1193
1193
|
# 在画面最终渲染时,将按ID从小到大的顺序,由下至上渲染。
|
1194
1194
|
# @type LayerId: Integer
|
1195
|
-
# @param LayerWidth:
|
1196
|
-
# 当该值为大于1的整数值时,单位为像素,允许范围[1,1920]。
|
1197
|
-
# 当该值为小于1大于0的小数时,单位为百分比,表示该层在最终画面上所占的比例值。
|
1195
|
+
# @param LayerWidth: 布局层宽度。单位为百分比,范围[0.0,1.0],表示该层在最终画面上所占的比例值。
|
1198
1196
|
# @type LayerWidth: Float
|
1199
|
-
# @param LayerHeight:
|
1200
|
-
# 当该值为大于1的整数值时,单位为像素,允许范围[1,1920]。
|
1201
|
-
# 当该值为小于1大于0的小数时,单位为百分比,表示该层在最终画面上所占的比例值。
|
1197
|
+
# @param LayerHeight: 布局层高度。单位为百分比,范围[0.0,1.0], 表示该层在最终画面上所占的比例值。
|
1202
1198
|
# @type LayerHeight: Float
|
1203
|
-
# @param LayerLocationX: 布局层位置x
|
1204
|
-
# 当该值为大于1的整数值时,单位为像素,允许范围[1,1920]。
|
1205
|
-
# 当该值为小于1大于0的小数时,单位为百分比,表示该层在最终画面上x坐标所占的比例值。
|
1199
|
+
# @param LayerLocationX: 布局层位置x坐标。单位为百分比,范围[0.0,1.0],表示该层在最终画面上x坐标所占的比例值。
|
1206
1200
|
# @type LayerLocationX: Float
|
1207
|
-
# @param LayerLocationY: 布局层位置Y
|
1208
|
-
# 当该值为大于1的整数值时,单位为像素,允许范围[1,1920]。
|
1209
|
-
# 当该值为小于1大于0的小数时,单位为百分比,表示该层在最终画面Y坐标上所占的比例值。
|
1201
|
+
# @param LayerLocationY: 布局层位置Y坐标。单位为百分比,范围[0.0,1.0], 表示该层在最终画面Y坐标上所占的比例值。
|
1210
1202
|
# @type LayerLocationY: Float
|
1211
1203
|
# @param UsePortraitSegment: 是否启用抠图。
|
1212
1204
|
# @type UsePortraitSegment: Boolean
|
@@ -9067,19 +9059,23 @@ module TencentCloud
|
|
9067
9059
|
# Oversea:则查询国外数据,
|
9068
9060
|
# 默认:查询国内+国外的数据。
|
9069
9061
|
# @type MainlandOrOversea: String
|
9062
|
+
# @param SourceType: 可选值: PullLivePushLive:拉流源类型为直播 PullVodPushLive:拉流源类型为点播 PullPicPushLive:拉流源类型为图片 默认:查询全部拉流源类型
|
9063
|
+
# @type SourceType: String
|
9070
9064
|
|
9071
|
-
attr_accessor :StartTime, :EndTime, :MainlandOrOversea
|
9065
|
+
attr_accessor :StartTime, :EndTime, :MainlandOrOversea, :SourceType
|
9072
9066
|
|
9073
|
-
def initialize(starttime=nil, endtime=nil, mainlandoroversea=nil)
|
9067
|
+
def initialize(starttime=nil, endtime=nil, mainlandoroversea=nil, sourcetype=nil)
|
9074
9068
|
@StartTime = starttime
|
9075
9069
|
@EndTime = endtime
|
9076
9070
|
@MainlandOrOversea = mainlandoroversea
|
9071
|
+
@SourceType = sourcetype
|
9077
9072
|
end
|
9078
9073
|
|
9079
9074
|
def deserialize(params)
|
9080
9075
|
@StartTime = params['StartTime']
|
9081
9076
|
@EndTime = params['EndTime']
|
9082
9077
|
@MainlandOrOversea = params['MainlandOrOversea']
|
9078
|
+
@SourceType = params['SourceType']
|
9083
9079
|
end
|
9084
9080
|
end
|
9085
9081
|
|
@@ -9089,14 +9085,17 @@ module TencentCloud
|
|
9089
9085
|
# @type DataInfoList: Array
|
9090
9086
|
# @param TotalDuration: 拉流转推得总时长
|
9091
9087
|
# @type TotalDuration: Integer
|
9088
|
+
# @param TotalDurationSecond: 拉流转推得总时长(秒)
|
9089
|
+
# @type TotalDurationSecond: Integer
|
9092
9090
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
9093
9091
|
# @type RequestId: String
|
9094
9092
|
|
9095
|
-
attr_accessor :DataInfoList, :TotalDuration, :RequestId
|
9093
|
+
attr_accessor :DataInfoList, :TotalDuration, :TotalDurationSecond, :RequestId
|
9096
9094
|
|
9097
|
-
def initialize(datainfolist=nil, totalduration=nil, requestid=nil)
|
9095
|
+
def initialize(datainfolist=nil, totalduration=nil, totaldurationsecond=nil, requestid=nil)
|
9098
9096
|
@DataInfoList = datainfolist
|
9099
9097
|
@TotalDuration = totalduration
|
9098
|
+
@TotalDurationSecond = totaldurationsecond
|
9100
9099
|
@RequestId = requestid
|
9101
9100
|
end
|
9102
9101
|
|
@@ -9110,6 +9109,7 @@ module TencentCloud
|
|
9110
9109
|
end
|
9111
9110
|
end
|
9112
9111
|
@TotalDuration = params['TotalDuration']
|
9112
|
+
@TotalDurationSecond = params['TotalDurationSecond']
|
9113
9113
|
@RequestId = params['RequestId']
|
9114
9114
|
end
|
9115
9115
|
end
|
@@ -14619,17 +14619,21 @@ module TencentCloud
|
|
14619
14619
|
# @type Time: String
|
14620
14620
|
# @param Duration: 拉流转推任务的时长,单位为分钟
|
14621
14621
|
# @type Duration: Integer
|
14622
|
+
# @param DurationSecond: 拉流转推任务的时长,单位为秒
|
14623
|
+
# @type DurationSecond: Integer
|
14622
14624
|
|
14623
|
-
attr_accessor :Time, :Duration
|
14625
|
+
attr_accessor :Time, :Duration, :DurationSecond
|
14624
14626
|
|
14625
|
-
def initialize(time=nil, duration=nil)
|
14627
|
+
def initialize(time=nil, duration=nil, durationsecond=nil)
|
14626
14628
|
@Time = time
|
14627
14629
|
@Duration = duration
|
14630
|
+
@DurationSecond = durationsecond
|
14628
14631
|
end
|
14629
14632
|
|
14630
14633
|
def deserialize(params)
|
14631
14634
|
@Time = params['Time']
|
14632
14635
|
@Duration = params['Duration']
|
14636
|
+
@DurationSecond = params['DurationSecond']
|
14633
14637
|
end
|
14634
14638
|
end
|
14635
14639
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-live
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1029
|
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-03-
|
11
|
+
date: 2025-03-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|