tencentcloud-sdk-iss 3.0.809 → 3.0.810

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 +24 -8
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fe4ddfe71915692426f4d6e345759a89f8246d3e
4
- data.tar.gz: 1d6d562b248d36923b56ee02bddb51be74152dbe
3
+ metadata.gz: 6f830d161309113b8b0183f2a6b8c08115e5bf52
4
+ data.tar.gz: feeca63497d826500953b1947f57a000153d840f
5
5
  SHA512:
6
- metadata.gz: 782e32984a75d919cb2aea3f40c3a1aab949117fe165ea56fe090684e9b70aef80ed299e09939997e9cb28362984685d9a98e2a6caa8725e1220d5bdcea934ca
7
- data.tar.gz: 481f6ae4ba832e65959c5bb1a50bf1ff4c58c11eff6625e3a134f27e3fbfeba30cd8821ea86eaeb323679688676d43ff70518e2426e1c73d437728df347f44e3
6
+ metadata.gz: 5b5afda41b9d450bdad1d767fee90f95be9a68543abe5c60556c09dd7a49e0d992ef164fb40f36d35f0898538d191db5a3c8e2c952c74a1336083d58558f49d7
7
+ data.tar.gz: 63e612e56bcd1254d5720e3705a81199b2c872c6f8cb9cb2fa98893820884af9cc63fdc87bfd4e61562e8c556c9f9e8bec0a7cd7e1465e3e7098552596d912ff
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.809
1
+ 3.0.810
@@ -1668,19 +1668,23 @@ module TencentCloud
1668
1668
  # 6:1080P/I;
1669
1669
  # 自定义的19201080等等(需设备支持)(不可以和 StreamType 同时下发))
1670
1670
  # @type Resolution: String
1671
+ # @param IsInternal: 是否内网
1672
+ # @type IsInternal: Boolean
1671
1673
 
1672
- attr_accessor :ChannelId, :StreamType, :Resolution
1674
+ attr_accessor :ChannelId, :StreamType, :Resolution, :IsInternal
1673
1675
 
1674
- def initialize(channelid=nil, streamtype=nil, resolution=nil)
1676
+ def initialize(channelid=nil, streamtype=nil, resolution=nil, isinternal=nil)
1675
1677
  @ChannelId = channelid
1676
1678
  @StreamType = streamtype
1677
1679
  @Resolution = resolution
1680
+ @IsInternal = isinternal
1678
1681
  end
1679
1682
 
1680
1683
  def deserialize(params)
1681
1684
  @ChannelId = params['ChannelId']
1682
1685
  @StreamType = params['StreamType']
1683
1686
  @Resolution = params['Resolution']
1687
+ @IsInternal = params['IsInternal']
1684
1688
  end
1685
1689
  end
1686
1690
 
@@ -3593,19 +3597,23 @@ module TencentCloud
3593
3597
  # @type StartTime: Integer
3594
3598
  # @param EndTime: 回放结束时间,UTC秒数,例如:1662114246,开始和结束时间段最长为一天,且不能跨天
3595
3599
  # @type EndTime: Integer
3600
+ # @param IsInternal: 是否获取内网地址
3601
+ # @type IsInternal: Boolean
3596
3602
 
3597
- attr_accessor :ChannelId, :StartTime, :EndTime
3603
+ attr_accessor :ChannelId, :StartTime, :EndTime, :IsInternal
3598
3604
 
3599
- def initialize(channelid=nil, starttime=nil, endtime=nil)
3605
+ def initialize(channelid=nil, starttime=nil, endtime=nil, isinternal=nil)
3600
3606
  @ChannelId = channelid
3601
3607
  @StartTime = starttime
3602
3608
  @EndTime = endtime
3609
+ @IsInternal = isinternal
3603
3610
  end
3604
3611
 
3605
3612
  def deserialize(params)
3606
3613
  @ChannelId = params['ChannelId']
3607
3614
  @StartTime = params['StartTime']
3608
3615
  @EndTime = params['EndTime']
3616
+ @IsInternal = params['IsInternal']
3609
3617
  end
3610
3618
  end
3611
3619
 
@@ -4097,15 +4105,18 @@ module TencentCloud
4097
4105
  # @type FileType: String
4098
4106
  # @param IsRespActualTime: 响应data中是否携带实际下载录像的开始时间与结束时间
4099
4107
  # @type IsRespActualTime: Boolean
4108
+ # @param IsInternal: 是否返回内网下载URL,默认是false,返回公网下载URL,true则返回内网下载URL
4109
+ # @type IsInternal: Boolean
4100
4110
 
4101
- attr_accessor :ChannelId, :BeginTime, :EndTime, :FileType, :IsRespActualTime
4111
+ attr_accessor :ChannelId, :BeginTime, :EndTime, :FileType, :IsRespActualTime, :IsInternal
4102
4112
 
4103
- def initialize(channelid=nil, begintime=nil, endtime=nil, filetype=nil, isrespactualtime=nil)
4113
+ def initialize(channelid=nil, begintime=nil, endtime=nil, filetype=nil, isrespactualtime=nil, isinternal=nil)
4104
4114
  @ChannelId = channelid
4105
4115
  @BeginTime = begintime
4106
4116
  @EndTime = endtime
4107
4117
  @FileType = filetype
4108
4118
  @IsRespActualTime = isrespactualtime
4119
+ @IsInternal = isinternal
4109
4120
  end
4110
4121
 
4111
4122
  def deserialize(params)
@@ -4114,6 +4125,7 @@ module TencentCloud
4114
4125
  @EndTime = params['EndTime']
4115
4126
  @FileType = params['FileType']
4116
4127
  @IsRespActualTime = params['IsRespActualTime']
4128
+ @IsInternal = params['IsInternal']
4117
4129
  end
4118
4130
  end
4119
4131
 
@@ -5801,15 +5813,18 @@ module TencentCloud
5801
5813
  # @type StreamType: Integer
5802
5814
  # @param Resolution: 分辨率(1:QCIF;2:CIF; 3:4CIF; 4:D1; 5:720P; 6:1080P/I; 自定义的19201080等等(需设备支持)(不可以和 StreamType 同时下发))
5803
5815
  # @type Resolution: String
5816
+ # @param IsInternal: 是否内网
5817
+ # @type IsInternal: Boolean
5804
5818
 
5805
- attr_accessor :ChannelId, :Start, :End, :StreamType, :Resolution
5819
+ attr_accessor :ChannelId, :Start, :End, :StreamType, :Resolution, :IsInternal
5806
5820
 
5807
- def initialize(channelid=nil, start=nil, _end=nil, streamtype=nil, resolution=nil)
5821
+ def initialize(channelid=nil, start=nil, _end=nil, streamtype=nil, resolution=nil, isinternal=nil)
5808
5822
  @ChannelId = channelid
5809
5823
  @Start = start
5810
5824
  @End = _end
5811
5825
  @StreamType = streamtype
5812
5826
  @Resolution = resolution
5827
+ @IsInternal = isinternal
5813
5828
  end
5814
5829
 
5815
5830
  def deserialize(params)
@@ -5818,6 +5833,7 @@ module TencentCloud
5818
5833
  @End = params['End']
5819
5834
  @StreamType = params['StreamType']
5820
5835
  @Resolution = params['Resolution']
5836
+ @IsInternal = params['IsInternal']
5821
5837
  end
5822
5838
  end
5823
5839
 
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.809
4
+ version: 3.0.810
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-04-23 00:00:00.000000000 Z
11
+ date: 2024-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common