tencentcloud-sdk-live 3.0.1028 → 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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180801/models.rb +18 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 27b7b83f6b591f1e1922319086a955e0bdab6ce6
4
- data.tar.gz: f29d5480d9db0bc743606998457927778bd5d227
3
+ metadata.gz: d4d1ed90e32250103f44f3948371bcacef41de3f
4
+ data.tar.gz: 154c69aefc3d8bacade2882a6257de9351aeba46
5
5
  SHA512:
6
- metadata.gz: efacd553f2017642e1d42ac05ba2d476063bd4e0ff751437cd3f38ee3a7bb8c34d6f544bc49591e060c385b20ed5458be4108072a57453645ef7854e4876263f
7
- data.tar.gz: 9b403b2f4ed29821feb1a46e7115b2daee6b59a2380fa402e9dbba325dcb97c652c9f8060ce464962fac1ff964bace469d31a363b392c04cdb14f974a5464f73
6
+ metadata.gz: bbe2f56bca23dcb5986b986c109ebe43901b7c50b07b831a8ea8b87e2a03c7703da7b74f8e8c2763244634f1f80c2042333c92d90b90ee4f2854fe985f7137a6
7
+ data.tar.gz: ac1182e3b2a8c2f083d81fb77945b636256af3e0bf32143783cb5e8e2e5d9288891ae3670dbb8eb1a69b692d4c765d41da86f5012d972f337304e1647ccee468
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1028
1
+ 3.0.1029
@@ -9059,19 +9059,23 @@ module TencentCloud
9059
9059
  # Oversea:则查询国外数据,
9060
9060
  # 默认:查询国内+国外的数据。
9061
9061
  # @type MainlandOrOversea: String
9062
+ # @param SourceType: 可选值: PullLivePushLive:拉流源类型为直播 PullVodPushLive:拉流源类型为点播 PullPicPushLive:拉流源类型为图片 默认:查询全部拉流源类型
9063
+ # @type SourceType: String
9062
9064
 
9063
- attr_accessor :StartTime, :EndTime, :MainlandOrOversea
9065
+ attr_accessor :StartTime, :EndTime, :MainlandOrOversea, :SourceType
9064
9066
 
9065
- def initialize(starttime=nil, endtime=nil, mainlandoroversea=nil)
9067
+ def initialize(starttime=nil, endtime=nil, mainlandoroversea=nil, sourcetype=nil)
9066
9068
  @StartTime = starttime
9067
9069
  @EndTime = endtime
9068
9070
  @MainlandOrOversea = mainlandoroversea
9071
+ @SourceType = sourcetype
9069
9072
  end
9070
9073
 
9071
9074
  def deserialize(params)
9072
9075
  @StartTime = params['StartTime']
9073
9076
  @EndTime = params['EndTime']
9074
9077
  @MainlandOrOversea = params['MainlandOrOversea']
9078
+ @SourceType = params['SourceType']
9075
9079
  end
9076
9080
  end
9077
9081
 
@@ -9081,14 +9085,17 @@ module TencentCloud
9081
9085
  # @type DataInfoList: Array
9082
9086
  # @param TotalDuration: 拉流转推得总时长
9083
9087
  # @type TotalDuration: Integer
9088
+ # @param TotalDurationSecond: 拉流转推得总时长(秒)
9089
+ # @type TotalDurationSecond: Integer
9084
9090
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9085
9091
  # @type RequestId: String
9086
9092
 
9087
- attr_accessor :DataInfoList, :TotalDuration, :RequestId
9093
+ attr_accessor :DataInfoList, :TotalDuration, :TotalDurationSecond, :RequestId
9088
9094
 
9089
- def initialize(datainfolist=nil, totalduration=nil, requestid=nil)
9095
+ def initialize(datainfolist=nil, totalduration=nil, totaldurationsecond=nil, requestid=nil)
9090
9096
  @DataInfoList = datainfolist
9091
9097
  @TotalDuration = totalduration
9098
+ @TotalDurationSecond = totaldurationsecond
9092
9099
  @RequestId = requestid
9093
9100
  end
9094
9101
 
@@ -9102,6 +9109,7 @@ module TencentCloud
9102
9109
  end
9103
9110
  end
9104
9111
  @TotalDuration = params['TotalDuration']
9112
+ @TotalDurationSecond = params['TotalDurationSecond']
9105
9113
  @RequestId = params['RequestId']
9106
9114
  end
9107
9115
  end
@@ -14611,17 +14619,21 @@ module TencentCloud
14611
14619
  # @type Time: String
14612
14620
  # @param Duration: 拉流转推任务的时长,单位为分钟
14613
14621
  # @type Duration: Integer
14622
+ # @param DurationSecond: 拉流转推任务的时长,单位为秒
14623
+ # @type DurationSecond: Integer
14614
14624
 
14615
- attr_accessor :Time, :Duration
14625
+ attr_accessor :Time, :Duration, :DurationSecond
14616
14626
 
14617
- def initialize(time=nil, duration=nil)
14627
+ def initialize(time=nil, duration=nil, durationsecond=nil)
14618
14628
  @Time = time
14619
14629
  @Duration = duration
14630
+ @DurationSecond = durationsecond
14620
14631
  end
14621
14632
 
14622
14633
  def deserialize(params)
14623
14634
  @Time = params['Time']
14624
14635
  @Duration = params['Duration']
14636
+ @DurationSecond = params['DurationSecond']
14625
14637
  end
14626
14638
  end
14627
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.1028
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-26 00:00:00.000000000 Z
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