tencentcloud-sdk-live 3.0.1203 → 3.0.1206

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ffb8facb2ea55313b57f7fb72ebb21c6b5ae75f8
4
- data.tar.gz: 4ee29aef325f6c6441d153d0018911c0a6d7c1e5
3
+ metadata.gz: 279337efaf6ecabec9252e7b74d01920f2814d73
4
+ data.tar.gz: 984056273919cbfe17699f32e38e20dbeb98467a
5
5
  SHA512:
6
- metadata.gz: 308c7077643300c167303bfc231d1d7eaafb24645cee1490da96d0687c9fc8907396e81ef53605421fb85620f0d18465204c880a57b42368ac64c26db98f8338
7
- data.tar.gz: 34aa794ce7b7cd35bd08b5095c958c8126c4a2d0d0b5c89673b75bb4a02b6650d7d2c24e39ae5bdab01fff6496748f3d438a7328b1fcd67a1b3985075615e5bf
6
+ metadata.gz: e9e60cab8060d538364090152d5dae726dc89386e216a761c1cac6dc1e162645dd8084ef5858269046fbcfc5fed2286f2585b93ac57ffc68fdc9950f512e4202
7
+ data.tar.gz: 8205fe5f014a5b22d2a4bedf46114ca4c2493776b55cc5f532cf96ba07c40cfbbb4bffe5246989547fb5f88cfe91b492970c81fc3bdc45628be784c280c45fbe
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1203
1
+ 3.0.1206
@@ -2383,6 +2383,30 @@ module TencentCloud
2383
2383
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2384
2384
  end
2385
2385
 
2386
+ # 使用该接口查询云端特效配置信息。
2387
+
2388
+ # @param request: Request instance for DescribeLiveCloudEffectConfig.
2389
+ # @type request: :class:`Tencentcloud::live::V20180801::DescribeLiveCloudEffectConfigRequest`
2390
+ # @rtype: :class:`Tencentcloud::live::V20180801::DescribeLiveCloudEffectConfigResponse`
2391
+ def DescribeLiveCloudEffectConfig(request)
2392
+ body = send_request('DescribeLiveCloudEffectConfig', request.serialize)
2393
+ response = JSON.parse(body)
2394
+ if response['Response'].key?('Error') == false
2395
+ model = DescribeLiveCloudEffectConfigResponse.new
2396
+ model.deserialize(response['Response'])
2397
+ model
2398
+ else
2399
+ code = response['Response']['Error']['Code']
2400
+ message = response['Response']['Error']['Message']
2401
+ reqid = response['Response']['RequestId']
2402
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2403
+ end
2404
+ rescue TencentCloud::Common::TencentCloudSDKException => e
2405
+ raise e
2406
+ rescue StandardError => e
2407
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2408
+ end
2409
+
2386
2410
  # 使用该接口查询云端特效列表,特效列表中包含一部分官方精品特效,同时包含用户自定义生成的特效。
2387
2411
 
2388
2412
  # @param request: Request instance for DescribeLiveCloudEffectList.
@@ -1755,6 +1755,38 @@ module TencentCloud
1755
1755
  end
1756
1756
  end
1757
1757
 
1758
+ # 云端特效模板信息。
1759
+ class CloudEffectTemplateInfo < TencentCloud::Common::AbstractModel
1760
+ # @param TemplateId: <p>特效模板ID。</p>
1761
+ # @type TemplateId: String
1762
+ # @param TemplateName: <p>特效模板名称。</p>
1763
+ # @type TemplateName: String
1764
+ # @param VideoUrl: <p>模板预览URL。</p>
1765
+ # @type VideoUrl: String
1766
+ # @param CoverImageUrl: <p>模板封面图片URL。</p>
1767
+ # @type CoverImageUrl: String
1768
+ # @param VideoRatio: <p>模板视频宽高比。</p>
1769
+ # @type VideoRatio: String
1770
+
1771
+ attr_accessor :TemplateId, :TemplateName, :VideoUrl, :CoverImageUrl, :VideoRatio
1772
+
1773
+ def initialize(templateid=nil, templatename=nil, videourl=nil, coverimageurl=nil, videoratio=nil)
1774
+ @TemplateId = templateid
1775
+ @TemplateName = templatename
1776
+ @VideoUrl = videourl
1777
+ @CoverImageUrl = coverimageurl
1778
+ @VideoRatio = videoratio
1779
+ end
1780
+
1781
+ def deserialize(params)
1782
+ @TemplateId = params['TemplateId']
1783
+ @TemplateName = params['TemplateName']
1784
+ @VideoUrl = params['VideoUrl']
1785
+ @CoverImageUrl = params['CoverImageUrl']
1786
+ @VideoRatio = params['VideoRatio']
1787
+ end
1788
+ end
1789
+
1758
1790
  # 通用混流控制参数
1759
1791
  class CommonMixControlParams < TencentCloud::Common::AbstractModel
1760
1792
  # @param UseMixCropCenter: 取值范围[0,1]。
@@ -6635,6 +6667,44 @@ module TencentCloud
6635
6667
  end
6636
6668
  end
6637
6669
 
6670
+ # DescribeLiveCloudEffectConfig请求参数结构体
6671
+ class DescribeLiveCloudEffectConfigRequest < TencentCloud::Common::AbstractModel
6672
+
6673
+
6674
+ def initialize()
6675
+ end
6676
+
6677
+ def deserialize(params)
6678
+ end
6679
+ end
6680
+
6681
+ # DescribeLiveCloudEffectConfig返回参数结构体
6682
+ class DescribeLiveCloudEffectConfigResponse < TencentCloud::Common::AbstractModel
6683
+ # @param EffectTemplateList: <p>模板生礼物的模板信息列表。</p>
6684
+ # @type EffectTemplateList: Array
6685
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6686
+ # @type RequestId: String
6687
+
6688
+ attr_accessor :EffectTemplateList, :RequestId
6689
+
6690
+ def initialize(effecttemplatelist=nil, requestid=nil)
6691
+ @EffectTemplateList = effecttemplatelist
6692
+ @RequestId = requestid
6693
+ end
6694
+
6695
+ def deserialize(params)
6696
+ unless params['EffectTemplateList'].nil?
6697
+ @EffectTemplateList = []
6698
+ params['EffectTemplateList'].each do |i|
6699
+ cloudeffecttemplateinfo_tmp = CloudEffectTemplateInfo.new
6700
+ cloudeffecttemplateinfo_tmp.deserialize(i)
6701
+ @EffectTemplateList << cloudeffecttemplateinfo_tmp
6702
+ end
6703
+ end
6704
+ @RequestId = params['RequestId']
6705
+ end
6706
+ end
6707
+
6638
6708
  # DescribeLiveCloudEffectList请求参数结构体
6639
6709
  class DescribeLiveCloudEffectListRequest < TencentCloud::Common::AbstractModel
6640
6710
  # @param Id: 云端特效ID。
@@ -8562,27 +8632,19 @@ module TencentCloud
8562
8632
 
8563
8633
  # DescribeLiveTranscodeDetailInfo请求参数结构体
8564
8634
  class DescribeLiveTranscodeDetailInfoRequest < TencentCloud::Common::AbstractModel
8565
- # @param PushDomain: 推流域名。
8635
+ # @param PushDomain: <p>推流域名。</p>
8566
8636
  # @type PushDomain: String
8567
- # @param StreamName: 流名称。
8637
+ # @param StreamName: <p>流名称。</p>
8568
8638
  # @type StreamName: String
8569
- # @param DayTime: 查询时间,北京时间,
8570
- # 格式:yyyymmdd。
8571
- # 注意:支持查询近1个月内某天的详细数据,截止到昨天。
8639
+ # @param DayTime: <p>查询时间,北京时间,<br>格式:yyyymmdd。<br>注意:支持查询近1个月内某天的详细数据,截止到昨天。</p>
8572
8640
  # @type DayTime: String
8573
- # @param PageNum: 页数,默认1
8574
- # 不超过100页。
8641
+ # @param PageNum: <p>页数,默认1,<br>不超过100页。</p>
8575
8642
  # @type PageNum: Integer
8576
- # @param PageSize: 每页个数,默认20
8577
- # 范围:[10,1000]。
8643
+ # @param PageSize: <p>每页个数,默认20,<br>范围:[10,1000]。</p>
8578
8644
  # @type PageSize: Integer
8579
- # @param StartDayTime: 起始天时间,北京时间,
8580
- # 格式:yyyymmdd。
8581
- # 注意:支持查询近1个月内的详细数据。
8645
+ # @param StartDayTime: <p>起始天时间,北京时间,<br>格式:yyyymmdd。<br>注意:支持查询近1个月内的详细数据。</p>
8582
8646
  # @type StartDayTime: String
8583
- # @param EndDayTime: 结束天时间,北京时间,
8584
- # 格式:yyyymmdd。
8585
- # 注意:支持查询近1个月内的详细数据,截止到昨天,注意DayTime 与(StartDayTime,EndDayTime)必须要传一个,如果都传,会以DayTime为准 。
8647
+ # @param EndDayTime: <p>结束天时间,北京时间,<br>格式:yyyymmdd。<br>注意:支持查询近1个月内的详细数据,截止到昨天,注意DayTime 与(StartDayTime,EndDayTime)必须要传一个,如果都传,会以DayTime为准 。</p>
8586
8648
  # @type EndDayTime: String
8587
8649
 
8588
8650
  attr_accessor :PushDomain, :StreamName, :DayTime, :PageNum, :PageSize, :StartDayTime, :EndDayTime
@@ -8610,15 +8672,15 @@ module TencentCloud
8610
8672
 
8611
8673
  # DescribeLiveTranscodeDetailInfo返回参数结构体
8612
8674
  class DescribeLiveTranscodeDetailInfoResponse < TencentCloud::Common::AbstractModel
8613
- # @param DataInfoList: 统计数据列表。
8675
+ # @param DataInfoList: <p>统计数据列表。</p>
8614
8676
  # @type DataInfoList: Array
8615
- # @param PageNum: 页码。
8677
+ # @param PageNum: <p>页码。</p>
8616
8678
  # @type PageNum: Integer
8617
- # @param PageSize: 每页个数。
8679
+ # @param PageSize: <p>每页个数。</p>
8618
8680
  # @type PageSize: Integer
8619
- # @param TotalNum: 总个数。
8681
+ # @param TotalNum: <p>总个数。</p>
8620
8682
  # @type TotalNum: Integer
8621
- # @param TotalPage: 总页数。
8683
+ # @param TotalPage: <p>总页数。</p>
8622
8684
  # @type TotalPage: Integer
8623
8685
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8624
8686
  # @type RequestId: String
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.1203
4
+ version: 3.0.1206
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-01-18 00:00:00.000000000 Z
11
+ date: 2026-01-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common