tencentcloud-sdk-live 3.0.651 → 3.0.652
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/client.rb +24 -0
- data/lib/v20180801/models.rb +72 -0
- 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: 0a42da7eec727c705ee9e1b7090cb8950dc530d1
|
4
|
+
data.tar.gz: 641fbc540f8434b0fc50f63240cf5af78ca8fb0d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c11cc2ea597768f4a05dabf7187662dadb094382b22a757abc1121adac0a6374aebd50f27d77e3b52738a311437f6643c3b8a7af8d104742fa3d1ab43d6aeac3
|
7
|
+
data.tar.gz: 1a9333f1f06ed191844567d3e4b9c791a93483c774dd463671b9321c66ad3a0a2c5f9c65fd9297c44a2490b42f8603ea140cc378c97f3551fee8bbd23894fc07
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.652
|
data/lib/v20180801/client.rb
CHANGED
@@ -1340,6 +1340,30 @@ module TencentCloud
|
|
1340
1340
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1341
1341
|
end
|
1342
1342
|
|
1343
|
+
# 批量获取转推日志的URL。
|
1344
|
+
|
1345
|
+
# @param request: Request instance for DescribeDeliverLogDownList.
|
1346
|
+
# @type request: :class:`Tencentcloud::live::V20180801::DescribeDeliverLogDownListRequest`
|
1347
|
+
# @rtype: :class:`Tencentcloud::live::V20180801::DescribeDeliverLogDownListResponse`
|
1348
|
+
def DescribeDeliverLogDownList(request)
|
1349
|
+
body = send_request('DescribeDeliverLogDownList', request.serialize)
|
1350
|
+
response = JSON.parse(body)
|
1351
|
+
if response['Response'].key?('Error') == false
|
1352
|
+
model = DescribeDeliverLogDownListResponse.new
|
1353
|
+
model.deserialize(response['Response'])
|
1354
|
+
model
|
1355
|
+
else
|
1356
|
+
code = response['Response']['Error']['Code']
|
1357
|
+
message = response['Response']['Error']['Message']
|
1358
|
+
reqid = response['Response']['RequestId']
|
1359
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1360
|
+
end
|
1361
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1362
|
+
raise e
|
1363
|
+
rescue StandardError => e
|
1364
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1365
|
+
end
|
1366
|
+
|
1343
1367
|
# 该接口为监控数据接口,数据采集及统计方式与计费数据不同,仅供运营分析使用,不能用于计费对账参考。
|
1344
1368
|
# 查询按省份和运营商分组的下行播放数据。
|
1345
1369
|
|
data/lib/v20180801/models.rb
CHANGED
@@ -3752,6 +3752,48 @@ module TencentCloud
|
|
3752
3752
|
end
|
3753
3753
|
end
|
3754
3754
|
|
3755
|
+
# DescribeDeliverLogDownList请求参数结构体
|
3756
|
+
class DescribeDeliverLogDownListRequest < TencentCloud::Common::AbstractModel
|
3757
|
+
|
3758
|
+
|
3759
|
+
def initialize()
|
3760
|
+
end
|
3761
|
+
|
3762
|
+
def deserialize(params)
|
3763
|
+
end
|
3764
|
+
end
|
3765
|
+
|
3766
|
+
# DescribeDeliverLogDownList返回参数结构体
|
3767
|
+
class DescribeDeliverLogDownListResponse < TencentCloud::Common::AbstractModel
|
3768
|
+
# @param LogInfoList: 日志信息列表。
|
3769
|
+
# @type LogInfoList: Array
|
3770
|
+
# @param TotalNum: 总条数。
|
3771
|
+
# @type TotalNum: Integer
|
3772
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3773
|
+
# @type RequestId: String
|
3774
|
+
|
3775
|
+
attr_accessor :LogInfoList, :TotalNum, :RequestId
|
3776
|
+
|
3777
|
+
def initialize(loginfolist=nil, totalnum=nil, requestid=nil)
|
3778
|
+
@LogInfoList = loginfolist
|
3779
|
+
@TotalNum = totalnum
|
3780
|
+
@RequestId = requestid
|
3781
|
+
end
|
3782
|
+
|
3783
|
+
def deserialize(params)
|
3784
|
+
unless params['LogInfoList'].nil?
|
3785
|
+
@LogInfoList = []
|
3786
|
+
params['LogInfoList'].each do |i|
|
3787
|
+
pushloginfo_tmp = PushLogInfo.new
|
3788
|
+
pushloginfo_tmp.deserialize(i)
|
3789
|
+
@LogInfoList << pushloginfo_tmp
|
3790
|
+
end
|
3791
|
+
end
|
3792
|
+
@TotalNum = params['TotalNum']
|
3793
|
+
@RequestId = params['RequestId']
|
3794
|
+
end
|
3795
|
+
end
|
3796
|
+
|
3755
3797
|
# DescribeGroupProIspPlayInfoList请求参数结构体
|
3756
3798
|
class DescribeGroupProIspPlayInfoListRequest < TencentCloud::Common::AbstractModel
|
3757
3799
|
# @param StartTime: 起始时间点,
|
@@ -10687,6 +10729,36 @@ module TencentCloud
|
|
10687
10729
|
end
|
10688
10730
|
end
|
10689
10731
|
|
10732
|
+
# 推流域名日志信息。
|
10733
|
+
class PushLogInfo < TencentCloud::Common::AbstractModel
|
10734
|
+
# @param LogName: 日志名称。
|
10735
|
+
# @type LogName: String
|
10736
|
+
# @param LogUrl: 日志下载地址。
|
10737
|
+
# @type LogUrl: String
|
10738
|
+
# @param LogTime: 日志时间。UTC 格式,例如:2018-11-29T19:00:00Z。
|
10739
|
+
# 注意:
|
10740
|
+
# 1. 北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
|
10741
|
+
# @type LogTime: String
|
10742
|
+
# @param FileSize: 文件大小,单位字节。
|
10743
|
+
# @type FileSize: Integer
|
10744
|
+
|
10745
|
+
attr_accessor :LogName, :LogUrl, :LogTime, :FileSize
|
10746
|
+
|
10747
|
+
def initialize(logname=nil, logurl=nil, logtime=nil, filesize=nil)
|
10748
|
+
@LogName = logname
|
10749
|
+
@LogUrl = logurl
|
10750
|
+
@LogTime = logtime
|
10751
|
+
@FileSize = filesize
|
10752
|
+
end
|
10753
|
+
|
10754
|
+
def deserialize(params)
|
10755
|
+
@LogName = params['LogName']
|
10756
|
+
@LogUrl = params['LogUrl']
|
10757
|
+
@LogTime = params['LogTime']
|
10758
|
+
@FileSize = params['FileSize']
|
10759
|
+
end
|
10760
|
+
end
|
10761
|
+
|
10690
10762
|
# 某条流的推流质量详情数据。
|
10691
10763
|
class PushQualityData < TencentCloud::Common::AbstractModel
|
10692
10764
|
# @param Time: 数据时间,使用UTC格式时间,
|
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.652
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-09-
|
11
|
+
date: 2023-09-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|