tencentcloud-sdk-iotvideo 3.0.687 → 3.0.688
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/v20211125/models.rb +6 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f562ab84e7afea4fb06edf0420e8715ce97f5cfe
|
4
|
+
data.tar.gz: 0d7a3c973c818e2b7a6c90c707eb5b261278341c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 803c903c0027bcfb1a296026dd614f12cdf9319fd81678013c24a2361950381fe562fab18cf5a8f4a5bd53db82149404590b2bda67d25701d40cbe0c5282d232
|
7
|
+
data.tar.gz: cfc20252ab099f373e9fc4bb757a68445246b6155762b34b497d3fe895da5569aeebe3d9f183afa6440086e01c80266aac5494b08961797de598bc6a38dcd820
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.688
|
data/lib/v20211125/models.rb
CHANGED
@@ -4844,17 +4844,21 @@ module TencentCloud
|
|
4844
4844
|
# @type VideoURL: String
|
4845
4845
|
# @param ExpireTime: 播放链接过期时间
|
4846
4846
|
# @type ExpireTime: Integer
|
4847
|
+
# @param ChannelId: 通道ID 非NVR设备不填 NVR设备必填 默认为无
|
4848
|
+
# @type ChannelId: Integer
|
4847
4849
|
|
4848
|
-
attr_accessor :VideoURL, :ExpireTime
|
4850
|
+
attr_accessor :VideoURL, :ExpireTime, :ChannelId
|
4849
4851
|
|
4850
|
-
def initialize(videourl=nil, expiretime=nil)
|
4852
|
+
def initialize(videourl=nil, expiretime=nil, channelid=nil)
|
4851
4853
|
@VideoURL = videourl
|
4852
4854
|
@ExpireTime = expiretime
|
4855
|
+
@ChannelId = channelid
|
4853
4856
|
end
|
4854
4857
|
|
4855
4858
|
def deserialize(params)
|
4856
4859
|
@VideoURL = params['VideoURL']
|
4857
4860
|
@ExpireTime = params['ExpireTime']
|
4861
|
+
@ChannelId = params['ChannelId']
|
4858
4862
|
end
|
4859
4863
|
end
|
4860
4864
|
|