tencentcloud-sdk-iotvideo 1.0.212 → 1.0.216
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/v20201215/models.rb +13 -4
- 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: 7cda8fb64b3ee837f7cee22a3390367282162c95
|
4
|
+
data.tar.gz: 7a46d68be5e18d5c4709d44161ab9aa1c181ff78
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 32bad596f32c4a646116d55de9b2a42063076dcb8da39ee43b841fa6fc17446c62f8d7d17e6ef549d0f4ff165f382944ae2f0b6eec061bc451a50756d9083b5e
|
7
|
+
data.tar.gz: c05d95a82ee77caf6ef5792f434fbe3489ec32839ceea3475cc3480352acd37c972f4c58989f549491976ce2f94ed7f0be6876dbb0317575712b3d04f626a912
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.216
|
data/lib/v20201215/models.rb
CHANGED
@@ -1010,10 +1010,12 @@ module TencentCloud
|
|
1010
1010
|
# @type ProductDescription: String
|
1011
1011
|
# @param EncryptionType: 认证方式 只支持取值为2 psk认证
|
1012
1012
|
# @type EncryptionType: Integer
|
1013
|
+
# @param NetType: 连接类型,wifi表示WIFI连接,cellular表示4G连接
|
1014
|
+
# @type NetType: String
|
1013
1015
|
|
1014
|
-
attr_accessor :ProductName, :DeviceType, :ProductVaildYears, :Features, :ChipOs, :ChipManufactureId, :ChipId, :ProductDescription, :EncryptionType
|
1016
|
+
attr_accessor :ProductName, :DeviceType, :ProductVaildYears, :Features, :ChipOs, :ChipManufactureId, :ChipId, :ProductDescription, :EncryptionType, :NetType
|
1015
1017
|
|
1016
|
-
def initialize(productname=nil, devicetype=nil, productvaildyears=nil, features=nil, chipos=nil, chipmanufactureid=nil, chipid=nil, productdescription=nil, encryptiontype=nil)
|
1018
|
+
def initialize(productname=nil, devicetype=nil, productvaildyears=nil, features=nil, chipos=nil, chipmanufactureid=nil, chipid=nil, productdescription=nil, encryptiontype=nil, nettype=nil)
|
1017
1019
|
@ProductName = productname
|
1018
1020
|
@DeviceType = devicetype
|
1019
1021
|
@ProductVaildYears = productvaildyears
|
@@ -1023,6 +1025,7 @@ module TencentCloud
|
|
1023
1025
|
@ChipId = chipid
|
1024
1026
|
@ProductDescription = productdescription
|
1025
1027
|
@EncryptionType = encryptiontype
|
1028
|
+
@NetType = nettype
|
1026
1029
|
end
|
1027
1030
|
|
1028
1031
|
def deserialize(params)
|
@@ -1035,6 +1038,7 @@ module TencentCloud
|
|
1035
1038
|
@ChipId = params['ChipId']
|
1036
1039
|
@ProductDescription = params['ProductDescription']
|
1037
1040
|
@EncryptionType = params['EncryptionType']
|
1041
|
+
@NetType = params['NetType']
|
1038
1042
|
end
|
1039
1043
|
end
|
1040
1044
|
|
@@ -5052,10 +5056,13 @@ module TencentCloud
|
|
5052
5056
|
# @type CreateTime: Integer
|
5053
5057
|
# @param UpdateTime: 修改时间unix时间戳
|
5054
5058
|
# @type UpdateTime: Integer
|
5059
|
+
# @param NetType: 连接类型,wifi表示WIFI连接,cellular表示4G连接
|
5060
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5061
|
+
# @type NetType: String
|
5055
5062
|
|
5056
|
-
attr_accessor :ProductId, :ProductName, :DeviceType, :EncryptionType, :Features, :ChipOs, :ChipManufactureId, :ChipId, :ProductDescription, :CreateTime, :UpdateTime
|
5063
|
+
attr_accessor :ProductId, :ProductName, :DeviceType, :EncryptionType, :Features, :ChipOs, :ChipManufactureId, :ChipId, :ProductDescription, :CreateTime, :UpdateTime, :NetType
|
5057
5064
|
|
5058
|
-
def initialize(productid=nil, productname=nil, devicetype=nil, encryptiontype=nil, features=nil, chipos=nil, chipmanufactureid=nil, chipid=nil, productdescription=nil, createtime=nil, updatetime=nil)
|
5065
|
+
def initialize(productid=nil, productname=nil, devicetype=nil, encryptiontype=nil, features=nil, chipos=nil, chipmanufactureid=nil, chipid=nil, productdescription=nil, createtime=nil, updatetime=nil, nettype=nil)
|
5059
5066
|
@ProductId = productid
|
5060
5067
|
@ProductName = productname
|
5061
5068
|
@DeviceType = devicetype
|
@@ -5067,6 +5074,7 @@ module TencentCloud
|
|
5067
5074
|
@ProductDescription = productdescription
|
5068
5075
|
@CreateTime = createtime
|
5069
5076
|
@UpdateTime = updatetime
|
5077
|
+
@NetType = nettype
|
5070
5078
|
end
|
5071
5079
|
|
5072
5080
|
def deserialize(params)
|
@@ -5081,6 +5089,7 @@ module TencentCloud
|
|
5081
5089
|
@ProductDescription = params['ProductDescription']
|
5082
5090
|
@CreateTime = params['CreateTime']
|
5083
5091
|
@UpdateTime = params['UpdateTime']
|
5092
|
+
@NetType = params['NetType']
|
5084
5093
|
end
|
5085
5094
|
end
|
5086
5095
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-iotvideo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.216
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-12-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|