tencentcloud-sdk-iss 3.0.809 → 3.0.811
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20230517/models.rb +24 -8
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 239621b1de292783a140f5395a78e254ecef60b1
|
4
|
+
data.tar.gz: df18b0b9c7da2e9732f4541de17fff1f4e1851d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9579139c675e17a70fefdc872fa2dadc50821fd3e6ee60c1b16d315e25525e05977c2245c0376818dc2b250576892d38f1eef2b9ccd2e16c11a99cf69c40c64e
|
7
|
+
data.tar.gz: eae9bcd20303c4d09ff117f80870c5e43717549175496512eaeedcfd758e03f15c0596fa86a67d002a0c2ee77451f9b09e759905139b0562ed103668b55253a1
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.811
|
data/lib/v20230517/models.rb
CHANGED
@@ -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.
|
4
|
+
version: 3.0.811
|
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-
|
11
|
+
date: 2024-04-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|