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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20210408/models.rb +21 -5
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b934e7e04fd86bd2c53ba5c8471a18ada4457c5b
4
- data.tar.gz: 8e38956b2d31a27d515ce073efb5fc7bdabd0774
3
+ metadata.gz: 339c1ac3e92ddfa6b27db5d7fb5e661fdbcf2295
4
+ data.tar.gz: fa1925ec527198a367329b6fc854fa837e20981d
5
5
  SHA512:
6
- metadata.gz: 0856e787bf144fecf7cd283e8705114642248d0505aef47d190145213fb99671369fe4b192c536c7ebeade5e334883fbf5bdbdccd331f638e8e0f339c74bf1e5
7
- data.tar.gz: b7c2e1f93f521bb1de3fd44200909fda5e8e8c6d003e6c96c8f829d63eea9fed4fc39a4718597e806bd03dabc80ad593c34ceb7a15dd0145a607b06a735379ec
6
+ metadata.gz: 93fedeac4b9da21d657ee3f5bad2e98b324ea34a8e12271bedf485c07c0d3df04fa6500add802ebbdd807002c1cabe54773c8a7192149989dae9de9f806be285
7
+ data.tar.gz: 8f7cce044338b25fba6ead633b056486b851f42370c97315c5c8d2c664f27a4438acb86f0d94979df49ed4a14962e4fa44456e843bb73251ee92770283ba15ca
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.589
1
+ 3.0.590
@@ -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.589
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-09 00:00:00.000000000 Z
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