tencentcloud-sdk-cme 1.0.340 → 1.0.341

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: 51dcd1d584606bec535728a001f7ceb21616e7c2
4
- data.tar.gz: 6a1dd6e04cdf88d8c854b7d676798228cdee27fa
3
+ metadata.gz: e73dc56cbe81e5308827c2280f5410ee04257004
4
+ data.tar.gz: abee170fffb1609bf7538a7216b19f3d4a57910c
5
5
  SHA512:
6
- metadata.gz: ab49632f3ae36e1d99122f1e4c75f6be7fb321d46cac2c188461488a7fd8645a96b26cea10f90fe97f8b45a86cd342cc26896fbf874598567b7c46f94eb4ea5d
7
- data.tar.gz: 1f0a9736422c6a9799aec18fe49584ec562702c467539fcee7f4bc85d76ce8778f7833f9b84e14e36ca96c5e543d0b6811e52e51664ef624f9ff518a8c850953
6
+ metadata.gz: f80e6dc30dad5ffdaf4a0e5e9964e92aecc80ad59dfb12df43704b8e1390192ba5b4648eb15ddc022ee976f140853e384185265f5f243f77df5c32cb52daea3d
7
+ data.tar.gz: 3cd36e53b16d9bc45ceed7c9e43791e3008a2ef3c6d7e81f082d0d05e58b217e62ce076c18e45559f9927982bd31875629eb8af65a281bb6474408bdbec2ffc5
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.340
1
+ 1.0.341
@@ -901,7 +901,8 @@ module TencentCloud
901
901
  # - `Start`(开启转推),参见 [示例10](#.E7.A4.BA.E4.BE.8B10-.E5.BC.80.E5.90.AF.E4.BA.91.E8.BD.AC.E6.8E.A8);
902
902
  # - `Stop`(停止转推),参见 [示例11](#.E7.A4.BA.E4.BE.8B11-.E5.81.9C.E6.AD.A2.E4.BA.91.E8.BD.AC.E6.8E.A8);
903
903
  # - `SwitchInput`(切换输入源),参见 [示例12](#.E7.A4.BA.E4.BE.8B12-.E5.88.87.E6.8D.A2.E8.BE.93.E5.85.A5.E6.BA.90);
904
- # - `ModifyCurrentStopTime`(修改当前计划结束时间),参见 [示例13](#.E7.A4.BA.E4.BE.8B13-.E4.BF.AE.E6.94.B9.E8.BD.AC.E6.8E.A8.E7.BB.93.E6.9D.9F.E6.97.B6.E9.97.B4)
904
+ # - `ModifyCurrentStopTime`(修改当前计划结束时间),参见 [示例13](#.E7.A4.BA.E4.BE.8B13-.E4.BF.AE.E6.94.B9.E8.BD.AC.E6.8E.A8.E7.BB.93.E6.9D.9F.E6.97.B6.E9.97.B4);
905
+ # - `DescribeInputPlayInfo`(查询播放进度),参见 [示例14](#.E7.A4.BA.E4.BE.8B14-.E6.9F.A5.E8.AF.A2.E7.82.B9.E6.92.AD.E8.BE.93.E5.85.A5.E6.BA.90.E6.92.AD.E6.94.BE.E8.BF.9B.E5.BA.A6)。
905
906
 
906
907
  # @param request: Request instance for HandleStreamConnectProject.
907
908
  # @type request: :class:`Tencentcloud::cme::V20191029::HandleStreamConnectProjectRequest`
@@ -2838,18 +2838,26 @@ module TencentCloud
2838
2838
  class HandleStreamConnectProjectResponse < TencentCloud::Common::AbstractModel
2839
2839
  # @param StreamInputRtmpPushUrl: 输入源推流地址,当 Operation 取值 AddInput 且 InputType 为 RtmpPush 类型时有效。
2840
2840
  # @type StreamInputRtmpPushUrl: String
2841
+ # @param VodPullInputPlayInfo: 点播输入源播放进度信息,当 Operation 取值 DescribeInputPlayInfo 且 InputType 为 VodPull 类型时有效。
2842
+ # 注意:此字段可能返回 null,表示取不到有效值。
2843
+ # @type VodPullInputPlayInfo: :class:`Tencentcloud::Cme.v20191029.models.VodPullInputPlayInfo`
2841
2844
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2842
2845
  # @type RequestId: String
2843
2846
 
2844
- attr_accessor :StreamInputRtmpPushUrl, :RequestId
2847
+ attr_accessor :StreamInputRtmpPushUrl, :VodPullInputPlayInfo, :RequestId
2845
2848
 
2846
- def initialize(streaminputrtmppushurl=nil, requestid=nil)
2849
+ def initialize(streaminputrtmppushurl=nil, vodpullinputplayinfo=nil, requestid=nil)
2847
2850
  @StreamInputRtmpPushUrl = streaminputrtmppushurl
2851
+ @VodPullInputPlayInfo = vodpullinputplayinfo
2848
2852
  @RequestId = requestid
2849
2853
  end
2850
2854
 
2851
2855
  def deserialize(params)
2852
2856
  @StreamInputRtmpPushUrl = params['StreamInputRtmpPushUrl']
2857
+ unless params['VodPullInputPlayInfo'].nil?
2858
+ @VodPullInputPlayInfo = VodPullInputPlayInfo.new
2859
+ @VodPullInputPlayInfo.deserialize(params['VodPullInputPlayInfo'])
2860
+ end
2853
2861
  @RequestId = params['RequestId']
2854
2862
  end
2855
2863
  end
@@ -6211,6 +6219,26 @@ module TencentCloud
6211
6219
  end
6212
6220
  end
6213
6221
 
6222
+ # 点播文件播放信息,包含当前在播地址和该地址已播时长 。
6223
+ class VodPullInputPlayInfo < TencentCloud::Common::AbstractModel
6224
+ # @param Url: 当前正在播放文件 Url 。
6225
+ # @type Url: String
6226
+ # @param TimeOffset: 点播文件已播放时长,单位:秒。
6227
+ # @type TimeOffset: Float
6228
+
6229
+ attr_accessor :Url, :TimeOffset
6230
+
6231
+ def initialize(url=nil, timeoffset=nil)
6232
+ @Url = url
6233
+ @TimeOffset = timeoffset
6234
+ end
6235
+
6236
+ def deserialize(params)
6237
+ @Url = params['Url']
6238
+ @TimeOffset = params['TimeOffset']
6239
+ end
6240
+ end
6241
+
6214
6242
  # 微博发布信息。
6215
6243
  class WeiboPublishInfo < TencentCloud::Common::AbstractModel
6216
6244
  # @param Title: 视频发布标题。
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cme
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.340
4
+ version: 1.0.341
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-22 00:00:00.000000000 Z
11
+ date: 2022-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common