tencentcloud-sdk-dbbrain 3.0.488 → 3.0.489

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20210527/models.rb +45 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c53b18a8a510f8f4741f8564732bebd0c6465113
4
- data.tar.gz: 77e3eafb2606f1ec6b0f3e2e632d71342b01e45a
3
+ metadata.gz: ecda3303b354cadd85afcb6065d644f6b6f3e658
4
+ data.tar.gz: b7362ad03e9aa9651ac76935ee360b2bdca72950
5
5
  SHA512:
6
- metadata.gz: 138861e45a78ff1c3f8824660f1448f75af67334a861c819fdb59e8593673b6dde5faf602cb67e2230191e67ad27f59ff397e57527343cd38c0595745918c68c
7
- data.tar.gz: a377cbf48a96b1aaca086fcf263ee5d2240b356fd5b1d0f83bf9c8df2f9dd5502c71cde38ce2cd0aa56b4af3e9db784c0fdfabc90e92c51017178ce7f22381d3
6
+ metadata.gz: 765e96d80af67e3fa5e5476a9fd7310a78c0306089fabc5294629b2973a275ed0c8e343ff1c2ffac9dd312ec8564c53f0352b2f5772dc9fb3fb81628bb1c2000
7
+ data.tar.gz: 1abe73400017537082a135b3e7d197b65729ea234719b970ed03e08e12c7e59b8abd6b1c7d4767e0b91b79cdbd0f2117cae1dcde5dba88462f2daa1407d2c1f2
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.488
1
+ 3.0.489
@@ -3234,12 +3234,32 @@ module TencentCloud
3234
3234
 
3235
3235
  # 实时会话统计详情。
3236
3236
  class ProcessStatistic < TencentCloud::Common::AbstractModel
3237
+ # @param Items: 会话详情数组。
3238
+ # @type Items: Array
3239
+ # @param AllConnSum: 总连接数。
3240
+ # @type AllConnSum: Integer
3241
+ # @param ActiveConnSum: 总活跃连接数。
3242
+ # @type ActiveConnSum: Integer
3237
3243
 
3244
+ attr_accessor :Items, :AllConnSum, :ActiveConnSum
3238
3245
 
3239
- def initialize()
3246
+ def initialize(items=nil, allconnsum=nil, activeconnsum=nil)
3247
+ @Items = items
3248
+ @AllConnSum = allconnsum
3249
+ @ActiveConnSum = activeconnsum
3240
3250
  end
3241
3251
 
3242
3252
  def deserialize(params)
3253
+ unless params['Items'].nil?
3254
+ @Items = []
3255
+ params['Items'].each do |i|
3256
+ sessionitem_tmp = SessionItem.new
3257
+ sessionitem_tmp.deserialize(i)
3258
+ @Items << sessionitem_tmp
3259
+ end
3260
+ end
3261
+ @AllConnSum = params['AllConnSum']
3262
+ @ActiveConnSum = params['ActiveConnSum']
3243
3263
  end
3244
3264
  end
3245
3265
 
@@ -3608,6 +3628,30 @@ module TencentCloud
3608
3628
  end
3609
3629
  end
3610
3630
 
3631
+ # 实时会话访问来源详情。
3632
+ class SessionItem < TencentCloud::Common::AbstractModel
3633
+ # @param Ip: 访问来源。
3634
+ # @type Ip: String
3635
+ # @param ActiveConn: 当前访问来源活跃连接数
3636
+ # @type ActiveConn: String
3637
+ # @param AllConn: 当前访问来源总连接数
3638
+ # @type AllConn: Integer
3639
+
3640
+ attr_accessor :Ip, :ActiveConn, :AllConn
3641
+
3642
+ def initialize(ip=nil, activeconn=nil, allconn=nil)
3643
+ @Ip = ip
3644
+ @ActiveConn = activeconn
3645
+ @AllConn = allconn
3646
+ end
3647
+
3648
+ def deserialize(params)
3649
+ @Ip = params['Ip']
3650
+ @ActiveConn = params['ActiveConn']
3651
+ @AllConn = params['AllConn']
3652
+ end
3653
+ end
3654
+
3611
3655
  # 慢日志来源地址详情。
3612
3656
  class SlowLogHost < TencentCloud::Common::AbstractModel
3613
3657
  # @param UserHost: 来源地址。
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-dbbrain
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.488
4
+ version: 3.0.489
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-01-06 00:00:00.000000000 Z
11
+ date: 2023-01-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common