tencentcloud-sdk-dbbrain 3.0.488 → 3.0.490

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/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: 2ce4cb7d21f21eb4e1b6487ba516f6c16a3d3987
4
+ data.tar.gz: 011ef5b51230e509150bea83cc491b953c26d3f8
5
5
  SHA512:
6
- metadata.gz: 138861e45a78ff1c3f8824660f1448f75af67334a861c819fdb59e8593673b6dde5faf602cb67e2230191e67ad27f59ff397e57527343cd38c0595745918c68c
7
- data.tar.gz: a377cbf48a96b1aaca086fcf263ee5d2240b356fd5b1d0f83bf9c8df2f9dd5502c71cde38ce2cd0aa56b4af3e9db784c0fdfabc90e92c51017178ce7f22381d3
6
+ metadata.gz: 63ca1c5bccf42b473d345d72b01323cee2050c9b785a917830224757b021648349b1bbdb5d5982f722de38bb8ae9eaf7c29a959f8a243d1d73c07a4ee8683034
7
+ data.tar.gz: 80f52918a6e168ddb352315a998da579b44b8ffe7468fbe208d16a42bb4b46bf6a397b57a41850a51b4e72eeb2e3228bc381e0877eb398afa81ed161de69ea52
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.488
1
+ 3.0.490
@@ -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.490
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-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common