tencentcloud-sdk-iotcloud 3.0.591 → 3.0.592
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/v20210408/models.rb +19 -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: 830add3a9f4dabb2eaa5b0b9cb2640102f49e1d1
|
4
|
+
data.tar.gz: ba9c025c4656ac64bb95138689d90e1994087361
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d1f576cb8812051ac4294559fcb5bfd8ea27b9dc216bbb802c7e2416c0bf606d53657cd6b10f0489def7e72229569048062a8499ac202abab64a14c6f960d912
|
7
|
+
data.tar.gz: 0e9b5eca93a233e467a9082a4de66e5b4ec9e0d069ee948ed7b67583462cea5db0308a3a4fb56fe9eb553309c8a1d99aa9e0ed39f0a0cdf64c1e99c6ba476767
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.592
|
data/lib/v20210408/models.rb
CHANGED
@@ -2546,10 +2546,13 @@ module TencentCloud
|
|
2546
2546
|
# @param FirmwareUpdateTime: ota最后更新时间
|
2547
2547
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2548
2548
|
# @type FirmwareUpdateTime: Integer
|
2549
|
+
# @param CreateUserId: 创建者 Uin
|
2550
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2551
|
+
# @type CreateUserId: Integer
|
2549
2552
|
|
2550
|
-
attr_accessor :DeviceName, :Online, :LoginTime, :Version, :DeviceCert, :DevicePsk, :Tags, :DeviceType, :Imei, :Isp, :NbiotDeviceID, :ConnIP, :LastUpdateTime, :LoraDevEui, :LoraMoteType, :FirstOnlineTime, :LastOfflineTime, :CreateTime, :LogLevel, :CertState, :EnableState, :Labels, :ClientIP, :FirmwareUpdateTime
|
2553
|
+
attr_accessor :DeviceName, :Online, :LoginTime, :Version, :DeviceCert, :DevicePsk, :Tags, :DeviceType, :Imei, :Isp, :NbiotDeviceID, :ConnIP, :LastUpdateTime, :LoraDevEui, :LoraMoteType, :FirstOnlineTime, :LastOfflineTime, :CreateTime, :LogLevel, :CertState, :EnableState, :Labels, :ClientIP, :FirmwareUpdateTime, :CreateUserId
|
2551
2554
|
|
2552
|
-
def initialize(devicename=nil, online=nil, logintime=nil, version=nil, devicecert=nil, devicepsk=nil, tags=nil, devicetype=nil, imei=nil, isp=nil, nbiotdeviceid=nil, connip=nil, lastupdatetime=nil, loradeveui=nil, loramotetype=nil, firstonlinetime=nil, lastofflinetime=nil, createtime=nil, loglevel=nil, certstate=nil, enablestate=nil, labels=nil, clientip=nil, firmwareupdatetime=nil)
|
2555
|
+
def initialize(devicename=nil, online=nil, logintime=nil, version=nil, devicecert=nil, devicepsk=nil, tags=nil, devicetype=nil, imei=nil, isp=nil, nbiotdeviceid=nil, connip=nil, lastupdatetime=nil, loradeveui=nil, loramotetype=nil, firstonlinetime=nil, lastofflinetime=nil, createtime=nil, loglevel=nil, certstate=nil, enablestate=nil, labels=nil, clientip=nil, firmwareupdatetime=nil, createuserid=nil)
|
2553
2556
|
@DeviceName = devicename
|
2554
2557
|
@Online = online
|
2555
2558
|
@LoginTime = logintime
|
@@ -2574,6 +2577,7 @@ module TencentCloud
|
|
2574
2577
|
@Labels = labels
|
2575
2578
|
@ClientIP = clientip
|
2576
2579
|
@FirmwareUpdateTime = firmwareupdatetime
|
2580
|
+
@CreateUserId = createuserid
|
2577
2581
|
end
|
2578
2582
|
|
2579
2583
|
def deserialize(params)
|
@@ -2615,6 +2619,7 @@ module TencentCloud
|
|
2615
2619
|
end
|
2616
2620
|
@ClientIP = params['ClientIP']
|
2617
2621
|
@FirmwareUpdateTime = params['FirmwareUpdateTime']
|
2622
|
+
@CreateUserId = params['CreateUserId']
|
2618
2623
|
end
|
2619
2624
|
end
|
2620
2625
|
|
@@ -2938,10 +2943,16 @@ module TencentCloud
|
|
2938
2943
|
# @param ProductId: 产品ID
|
2939
2944
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2940
2945
|
# @type ProductId: String
|
2946
|
+
# @param FwType: 固件类型
|
2947
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2948
|
+
# @type FwType: String
|
2949
|
+
# @param CreateUserId: 创建者 Uin
|
2950
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2951
|
+
# @type CreateUserId: Integer
|
2941
2952
|
|
2942
|
-
attr_accessor :Version, :Md5sum, :CreateTime, :ProductName, :Name, :Description, :ProductId
|
2953
|
+
attr_accessor :Version, :Md5sum, :CreateTime, :ProductName, :Name, :Description, :ProductId, :FwType, :CreateUserId
|
2943
2954
|
|
2944
|
-
def initialize(version=nil, md5sum=nil, createtime=nil, productname=nil, name=nil, description=nil, productid=nil)
|
2955
|
+
def initialize(version=nil, md5sum=nil, createtime=nil, productname=nil, name=nil, description=nil, productid=nil, fwtype=nil, createuserid=nil)
|
2945
2956
|
@Version = version
|
2946
2957
|
@Md5sum = md5sum
|
2947
2958
|
@CreateTime = createtime
|
@@ -2949,6 +2960,8 @@ module TencentCloud
|
|
2949
2960
|
@Name = name
|
2950
2961
|
@Description = description
|
2951
2962
|
@ProductId = productid
|
2963
|
+
@FwType = fwtype
|
2964
|
+
@CreateUserId = createuserid
|
2952
2965
|
end
|
2953
2966
|
|
2954
2967
|
def deserialize(params)
|
@@ -2959,6 +2972,8 @@ module TencentCloud
|
|
2959
2972
|
@Name = params['Name']
|
2960
2973
|
@Description = params['Description']
|
2961
2974
|
@ProductId = params['ProductId']
|
2975
|
+
@FwType = params['FwType']
|
2976
|
+
@CreateUserId = params['CreateUserId']
|
2962
2977
|
end
|
2963
2978
|
end
|
2964
2979
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-iotcloud
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.592
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-06-
|
11
|
+
date: 2023-06-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|