tencentcloud-sdk-iss 3.0.921 → 3.0.922

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20230517/models.rb +13 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 78a3efaf588eb6f6af4857fe68ebfaf6c64f578a
4
- data.tar.gz: 9b0640c4325345e2599982409a17003f48363e71
3
+ metadata.gz: d72bad4a99c3c49132debefddcd3e9b6ecaab723
4
+ data.tar.gz: 28222df280212280ef96abea4a216737169f6b95
5
5
  SHA512:
6
- metadata.gz: e9a3de5de4f6bde46f48f8ca10cc314dd1fdbdcced1576761bf4aaac6598f51a6405ba71c610aff1e90ab23ff348786deb54b8d62c3f4f35176280f8cfb9d0b8
7
- data.tar.gz: 1db3bfc6aef4b5203c9ae7198a9a942d66c8d30a8dc24dc946bef5c044312b5ceacd21241ae1e5dc8defa5463f4ee427b579d2a30400226ab5f09c74e8988ab0
6
+ metadata.gz: 73adf5b9e96be0024abaf157d1bcef0457cd510e40125f789bc808115002c51dff7a07ac183eb136eee25ce60dbf0fed2f1ac606a78c87b7fbcb5d35f3f47f94
7
+ data.tar.gz: 828d60304bb765438be87757721bf1efd16ebdd5fbbbe5dabc660f45e3176742488f3987b069e88f6e0d71fe3fed00c1dce2b48c7336b7f2ba5d4feed4272126
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.921
1
+ 3.0.922
@@ -3618,14 +3618,17 @@ module TencentCloud
3618
3618
  # @type StartTime: Integer
3619
3619
  # @param EndTime: 检索结束时间,UTC秒数,例如:1662114246,开始和结束时间段最长为一天,且不能跨天
3620
3620
  # @type EndTime: Integer
3621
+ # @param WithUrl: 是否携带每个时间段的播放url
3622
+ # @type WithUrl: Boolean
3621
3623
 
3622
- attr_accessor :DeviceId, :ChannelId, :StartTime, :EndTime
3624
+ attr_accessor :DeviceId, :ChannelId, :StartTime, :EndTime, :WithUrl
3623
3625
 
3624
- def initialize(deviceid=nil, channelid=nil, starttime=nil, endtime=nil)
3626
+ def initialize(deviceid=nil, channelid=nil, starttime=nil, endtime=nil, withurl=nil)
3625
3627
  @DeviceId = deviceid
3626
3628
  @ChannelId = channelid
3627
3629
  @StartTime = starttime
3628
3630
  @EndTime = endtime
3631
+ @WithUrl = withurl
3629
3632
  end
3630
3633
 
3631
3634
  def deserialize(params)
@@ -3633,6 +3636,7 @@ module TencentCloud
3633
3636
  @ChannelId = params['ChannelId']
3634
3637
  @StartTime = params['StartTime']
3635
3638
  @EndTime = params['EndTime']
3639
+ @WithUrl = params['WithUrl']
3636
3640
  end
3637
3641
  end
3638
3642
 
@@ -6397,17 +6401,22 @@ module TencentCloud
6397
6401
  # @type Begin: Integer
6398
6402
  # @param End: 时间片段结束时间,UTC秒数,例如:1662114146
6399
6403
  # @type End: Integer
6404
+ # @param HlsUrl: 对应时间片段的播放url
6405
+ # 注意:此字段可能返回 null,表示取不到有效值。
6406
+ # @type HlsUrl: String
6400
6407
 
6401
- attr_accessor :Begin, :End
6408
+ attr_accessor :Begin, :End, :HlsUrl
6402
6409
 
6403
- def initialize(_begin=nil, _end=nil)
6410
+ def initialize(_begin=nil, _end=nil, hlsurl=nil)
6404
6411
  @Begin = _begin
6405
6412
  @End = _end
6413
+ @HlsUrl = hlsurl
6406
6414
  end
6407
6415
 
6408
6416
  def deserialize(params)
6409
6417
  @Begin = params['Begin']
6410
6418
  @End = params['End']
6419
+ @HlsUrl = params['HlsUrl']
6411
6420
  end
6412
6421
  end
6413
6422
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-iss
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.921
4
+ version: 3.0.922
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-10 00:00:00.000000000 Z
11
+ date: 2024-10-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common