tencentcloud-sdk-iss 3.0.920 → 3.0.922

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/v20230517/models.rb +13 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 020d63848992be6a6c9074b6de2d5d039b14c5d3
4
- data.tar.gz: 97d679e6878309fb7e75b1bb6651e464d5f0ee80
3
+ metadata.gz: d72bad4a99c3c49132debefddcd3e9b6ecaab723
4
+ data.tar.gz: 28222df280212280ef96abea4a216737169f6b95
5
5
  SHA512:
6
- metadata.gz: 3d1ed2ad445af9f33ad58f6596a48d2f2c214c23b28bb7b11cdf0193ecfbc509e81c4e4860c0b87ce0e2b6db9820a5c538d1cc65fbee9d1be34bf74b00d513a2
7
- data.tar.gz: d55badf6ebd3eabf509d61a1c83ddaec86b9a90c153302c58ed4a6d3a0611a3876b2469f343ad2e1a5dbcfac9976363a9f78b60788d2ae6db425c49949fdef3d
6
+ metadata.gz: 73adf5b9e96be0024abaf157d1bcef0457cd510e40125f789bc808115002c51dff7a07ac183eb136eee25ce60dbf0fed2f1ac606a78c87b7fbcb5d35f3f47f94
7
+ data.tar.gz: 828d60304bb765438be87757721bf1efd16ebdd5fbbbe5dabc660f45e3176742488f3987b069e88f6e0d71fe3fed00c1dce2b48c7336b7f2ba5d4feed4272126
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.920
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.920
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-09 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