tencentcloud-sdk-iotcloud 3.0.589 → 3.0.590
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 +21 -5
- 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: 339c1ac3e92ddfa6b27db5d7fb5e661fdbcf2295
|
4
|
+
data.tar.gz: fa1925ec527198a367329b6fc854fa837e20981d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 93fedeac4b9da21d657ee3f5bad2e98b324ea34a8e12271bedf485c07c0d3df04fa6500add802ebbdd807002c1cabe54773c8a7192149989dae9de9f806be285
|
7
|
+
data.tar.gz: 8f7cce044338b25fba6ead633b056486b851f42370c97315c5c8d2c664f27a4438acb86f0d94979df49ed4a14962e4fa44456e843bb73251ee92770283ba15ca
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.590
|
data/lib/v20210408/models.rb
CHANGED
@@ -3527,15 +3527,23 @@ module TencentCloud
|
|
3527
3527
|
class ProductMetadata < TencentCloud::Common::AbstractModel
|
3528
3528
|
# @param CreationDate: 产品创建时间
|
3529
3529
|
# @type CreationDate: Integer
|
3530
|
+
# @param CreateUserId: 创建者 Uin
|
3531
|
+
# @type CreateUserId: Integer
|
3532
|
+
# @param UserId: 账号 Uin
|
3533
|
+
# @type UserId: Integer
|
3530
3534
|
|
3531
|
-
attr_accessor :CreationDate
|
3535
|
+
attr_accessor :CreationDate, :CreateUserId, :UserId
|
3532
3536
|
|
3533
|
-
def initialize(creationdate=nil)
|
3537
|
+
def initialize(creationdate=nil, createuserid=nil, userid=nil)
|
3534
3538
|
@CreationDate = creationdate
|
3539
|
+
@CreateUserId = createuserid
|
3540
|
+
@UserId = userid
|
3535
3541
|
end
|
3536
3542
|
|
3537
3543
|
def deserialize(params)
|
3538
3544
|
@CreationDate = params['CreationDate']
|
3545
|
+
@CreateUserId = params['CreateUserId']
|
3546
|
+
@UserId = params['UserId']
|
3539
3547
|
end
|
3540
3548
|
end
|
3541
3549
|
|
@@ -3564,7 +3572,7 @@ module TencentCloud
|
|
3564
3572
|
# @type ProductKey: String
|
3565
3573
|
# @param RegisterType: 动态注册类型 0-关闭, 1-预定义设备名 2-动态定义设备名
|
3566
3574
|
# @type RegisterType: Integer
|
3567
|
-
# @param ProductSecret:
|
3575
|
+
# @param ProductSecret: 动态注册产品密钥
|
3568
3576
|
# @type ProductSecret: String
|
3569
3577
|
# @param RegisterLimit: RegisterType为2时,设备动态创建的限制数量
|
3570
3578
|
# @type RegisterLimit: Integer
|
@@ -3574,10 +3582,14 @@ module TencentCloud
|
|
3574
3582
|
# @type PrivateCAName: String
|
3575
3583
|
# @param OriginUserId: 划归的产品,展示为源用户ID,其余为空
|
3576
3584
|
# @type OriginUserId: Integer
|
3585
|
+
# @param DeviceLimit: 设备限制
|
3586
|
+
# @type DeviceLimit: Integer
|
3587
|
+
# @param ForbiddenStatus: 产品禁用状态
|
3588
|
+
# @type ForbiddenStatus: Integer
|
3577
3589
|
|
3578
|
-
attr_accessor :ProductDescription, :EncryptionType, :Region, :ProductType, :Format, :Platform, :Appeui, :ModelId, :ModelName, :ProductKey, :RegisterType, :ProductSecret, :RegisterLimit, :OriginProductId, :PrivateCAName, :OriginUserId
|
3590
|
+
attr_accessor :ProductDescription, :EncryptionType, :Region, :ProductType, :Format, :Platform, :Appeui, :ModelId, :ModelName, :ProductKey, :RegisterType, :ProductSecret, :RegisterLimit, :OriginProductId, :PrivateCAName, :OriginUserId, :DeviceLimit, :ForbiddenStatus
|
3579
3591
|
|
3580
|
-
def initialize(productdescription=nil, encryptiontype=nil, region=nil, producttype=nil, format=nil, platform=nil, appeui=nil, modelid=nil, modelname=nil, productkey=nil, registertype=nil, productsecret=nil, registerlimit=nil, originproductid=nil, privatecaname=nil, originuserid=nil)
|
3592
|
+
def initialize(productdescription=nil, encryptiontype=nil, region=nil, producttype=nil, format=nil, platform=nil, appeui=nil, modelid=nil, modelname=nil, productkey=nil, registertype=nil, productsecret=nil, registerlimit=nil, originproductid=nil, privatecaname=nil, originuserid=nil, devicelimit=nil, forbiddenstatus=nil)
|
3581
3593
|
@ProductDescription = productdescription
|
3582
3594
|
@EncryptionType = encryptiontype
|
3583
3595
|
@Region = region
|
@@ -3594,6 +3606,8 @@ module TencentCloud
|
|
3594
3606
|
@OriginProductId = originproductid
|
3595
3607
|
@PrivateCAName = privatecaname
|
3596
3608
|
@OriginUserId = originuserid
|
3609
|
+
@DeviceLimit = devicelimit
|
3610
|
+
@ForbiddenStatus = forbiddenstatus
|
3597
3611
|
end
|
3598
3612
|
|
3599
3613
|
def deserialize(params)
|
@@ -3613,6 +3627,8 @@ module TencentCloud
|
|
3613
3627
|
@OriginProductId = params['OriginProductId']
|
3614
3628
|
@PrivateCAName = params['PrivateCAName']
|
3615
3629
|
@OriginUserId = params['OriginUserId']
|
3630
|
+
@DeviceLimit = params['DeviceLimit']
|
3631
|
+
@ForbiddenStatus = params['ForbiddenStatus']
|
3616
3632
|
end
|
3617
3633
|
end
|
3618
3634
|
|
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.590
|
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-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|