tencentcloud-sdk-iotexplorer 3.0.781 → 3.0.782

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/v20190423/models.rb +42 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fa9052ba601d162554727dbd89db104f8f2e239b
4
- data.tar.gz: 3f8b85667ff6c4cba281489d4ac03dd78776c6dd
3
+ metadata.gz: 3531ad9851eba7e019a96921a188f94d76774344
4
+ data.tar.gz: c4445740dca5d1b028eaefbf2067cdc16c701ef8
5
5
  SHA512:
6
- metadata.gz: 2f5988da54201e5ddd787161861e9eb17d4e8aa6da2df38c75b7d844d367e0abd2e97a24d83460cc83eb311c2e79e0733cf8e67c0c3ba7c122641126c271d417
7
- data.tar.gz: 9d39c568b9ef7425fb7eeb0bbe793871d8fe3ae129136ecb72c54de65a27f07f1d6aa0d69d9016f93094ebf650db00b4af32ef88552084deddc26300be1cf62a
6
+ metadata.gz: fb92a89826d29edff0a6587b75411b68117c5370f5c92ba747a17fd950990e25795e78313911273ea04185f483e327d07aa7bd12e15559910d6a9d01e8d3c6b3
7
+ data.tar.gz: b9c9a9f6306fa6cdf4a39006264598c2e398903532d1d7c3f67ea325bb8f9529d7a30871c8a8b2a2d76ff00d0ba77be4b7c7babb16ccc31858fd1ddef14ea715
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.781
1
+ 3.0.782
@@ -4233,10 +4233,34 @@ module TencentCloud
4233
4233
  # @param Status: 实例状态
4234
4234
  # 注意:此字段可能返回 null,表示取不到有效值。
4235
4235
  # @type Status: Integer
4236
+ # @param UpDownTPS: 消息上下行配置TPS
4237
+ # 注意:此字段可能返回 null,表示取不到有效值。
4238
+ # @type UpDownTPS: Integer
4239
+ # @param UpDownCurrentTPS: 当前消息上下行TPS
4240
+ # 注意:此字段可能返回 null,表示取不到有效值。
4241
+ # @type UpDownCurrentTPS: Integer
4242
+ # @param ForwardTPS: 消息转发配置TPS
4243
+ # 注意:此字段可能返回 null,表示取不到有效值。
4244
+ # @type ForwardTPS: Integer
4245
+ # @param ForwardCurrentTPS: 消息转发当前TPS
4246
+ # 注意:此字段可能返回 null,表示取不到有效值。
4247
+ # @type ForwardCurrentTPS: Integer
4248
+ # @param CellNum: 实例单元数
4249
+ # 注意:此字段可能返回 null,表示取不到有效值。
4250
+ # @type CellNum: Integer
4251
+ # @param BillingTag: 实例Tag
4252
+ # 注意:此字段可能返回 null,表示取不到有效值。
4253
+ # @type BillingTag: String
4254
+ # @param EverydayFreeMessageCount: 每日消息数
4255
+ # 注意:此字段可能返回 null,表示取不到有效值。
4256
+ # @type EverydayFreeMessageCount: Integer
4257
+ # @param MaxDeviceOnlineCount: 最大在线设备数
4258
+ # 注意:此字段可能返回 null,表示取不到有效值。
4259
+ # @type MaxDeviceOnlineCount: Integer
4236
4260
 
4237
- attr_accessor :InstanceId, :InstanceType, :Region, :ZoneId, :TotalDeviceNum, :UsedDeviceNum, :ProjectNum, :ProductNum, :CreateTime, :UpdateTime, :ExpireTime, :TotalDevice, :ActivateDevice, :Description, :Status
4261
+ attr_accessor :InstanceId, :InstanceType, :Region, :ZoneId, :TotalDeviceNum, :UsedDeviceNum, :ProjectNum, :ProductNum, :CreateTime, :UpdateTime, :ExpireTime, :TotalDevice, :ActivateDevice, :Description, :Status, :UpDownTPS, :UpDownCurrentTPS, :ForwardTPS, :ForwardCurrentTPS, :CellNum, :BillingTag, :EverydayFreeMessageCount, :MaxDeviceOnlineCount
4238
4262
 
4239
- def initialize(instanceid=nil, instancetype=nil, region=nil, zoneid=nil, totaldevicenum=nil, useddevicenum=nil, projectnum=nil, productnum=nil, createtime=nil, updatetime=nil, expiretime=nil, totaldevice=nil, activatedevice=nil, description=nil, status=nil)
4263
+ def initialize(instanceid=nil, instancetype=nil, region=nil, zoneid=nil, totaldevicenum=nil, useddevicenum=nil, projectnum=nil, productnum=nil, createtime=nil, updatetime=nil, expiretime=nil, totaldevice=nil, activatedevice=nil, description=nil, status=nil, updowntps=nil, updowncurrenttps=nil, forwardtps=nil, forwardcurrenttps=nil, cellnum=nil, billingtag=nil, everydayfreemessagecount=nil, maxdeviceonlinecount=nil)
4240
4264
  @InstanceId = instanceid
4241
4265
  @InstanceType = instancetype
4242
4266
  @Region = region
@@ -4252,6 +4276,14 @@ module TencentCloud
4252
4276
  @ActivateDevice = activatedevice
4253
4277
  @Description = description
4254
4278
  @Status = status
4279
+ @UpDownTPS = updowntps
4280
+ @UpDownCurrentTPS = updowncurrenttps
4281
+ @ForwardTPS = forwardtps
4282
+ @ForwardCurrentTPS = forwardcurrenttps
4283
+ @CellNum = cellnum
4284
+ @BillingTag = billingtag
4285
+ @EverydayFreeMessageCount = everydayfreemessagecount
4286
+ @MaxDeviceOnlineCount = maxdeviceonlinecount
4255
4287
  end
4256
4288
 
4257
4289
  def deserialize(params)
@@ -4270,6 +4302,14 @@ module TencentCloud
4270
4302
  @ActivateDevice = params['ActivateDevice']
4271
4303
  @Description = params['Description']
4272
4304
  @Status = params['Status']
4305
+ @UpDownTPS = params['UpDownTPS']
4306
+ @UpDownCurrentTPS = params['UpDownCurrentTPS']
4307
+ @ForwardTPS = params['ForwardTPS']
4308
+ @ForwardCurrentTPS = params['ForwardCurrentTPS']
4309
+ @CellNum = params['CellNum']
4310
+ @BillingTag = params['BillingTag']
4311
+ @EverydayFreeMessageCount = params['EverydayFreeMessageCount']
4312
+ @MaxDeviceOnlineCount = params['MaxDeviceOnlineCount']
4273
4313
  end
4274
4314
  end
4275
4315
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-iotexplorer
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.781
4
+ version: 3.0.782
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-03-13 00:00:00.000000000 Z
11
+ date: 2024-03-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common