tencentcloud-sdk-dbbrain 3.0.563 → 3.0.565

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5debd6f6c29f3afa0f61381661abec6af3971bcf
4
- data.tar.gz: f7c2b469c98aac12d13749068c2ad32523d6e847
3
+ metadata.gz: c0802ff08923252030cd71dfce062f10532586aa
4
+ data.tar.gz: 6d95ae1b8e59c0ff0e07a27ae9fd01714f54d599
5
5
  SHA512:
6
- metadata.gz: 6af52e55374d8ea01ab542d72cd6c9fc5bc2c7f59da992770b2a9fc10431d8a5d904ceef318e87791063046cbbb9d9e99608736e70b5e04541cced329ffcb5ac
7
- data.tar.gz: 7657c2e9e382a37604ff4e1031b38be556d5e3c649afe48ea5798a3dc3a7768745b60d799a935c7639f1ad8160e9e6ab3c8422c22f2d894aa1734c4062672c2d
6
+ metadata.gz: d7d060e9709e4322d1bbc10d2f5900d816c4de9792757ee2e5341d55e37bcdc008217145122e687dfa5e4abd3eabf2d1ade18d5638facbbe73d602ffcae19db9
7
+ data.tar.gz: afb14da02eb12a94a57b93727d40f35b287f096d2a115ae57d46d61fe83c3a342b155295b77aeb50515747cc20b1470d6e4035e2854648644d6699693e5b9898
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.563
1
+ 3.0.565
@@ -917,7 +917,7 @@ module TencentCloud
917
917
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
918
918
  end
919
919
 
920
- # 获取指定时间内某个sql模版的慢日志明细
920
+ # 获取指定时间内某个sql模板的慢日志明细
921
921
 
922
922
  # @param request: Request instance for DescribeSlowLogs.
923
923
  # @type request: :class:`Tencentcloud::dbbrain::V20210527::DescribeSlowLogsRequest`
@@ -845,19 +845,23 @@ module TencentCloud
845
845
  # @type SessionToken: String
846
846
  # @param FilterIds: 限流任务ID列表。
847
847
  # @type FilterIds: Array
848
+ # @param Product: 服务产品类型,支持值:"mysql" - 云数据库 MySQL;"cynosdb" - 云数据库 TDSQL-C for MySQL,默认为"mysql"。
849
+ # @type Product: String
848
850
 
849
- attr_accessor :InstanceId, :SessionToken, :FilterIds
851
+ attr_accessor :InstanceId, :SessionToken, :FilterIds, :Product
850
852
 
851
- def initialize(instanceid=nil, sessiontoken=nil, filterids=nil)
853
+ def initialize(instanceid=nil, sessiontoken=nil, filterids=nil, product=nil)
852
854
  @InstanceId = instanceid
853
855
  @SessionToken = sessiontoken
854
856
  @FilterIds = filterids
857
+ @Product = product
855
858
  end
856
859
 
857
860
  def deserialize(params)
858
861
  @InstanceId = params['InstanceId']
859
862
  @SessionToken = params['SessionToken']
860
863
  @FilterIds = params['FilterIds']
864
+ @Product = params['Product']
861
865
  end
862
866
  end
863
867
 
@@ -2321,7 +2325,7 @@ module TencentCloud
2321
2325
  # @type Key: Array
2322
2326
  # @param User: 用户
2323
2327
  # @type User: Array
2324
- # @param Ip: ip
2328
+ # @param Ip: IP
2325
2329
  # @type Ip: Array
2326
2330
  # @param Time: 耗时区间,耗时区间的左右边界分别对应数组的第0个元素和第一个元素
2327
2331
  # @type Time: Array
@@ -2402,15 +2406,18 @@ module TencentCloud
2402
2406
  # @type Offset: Integer
2403
2407
  # @param Limit: 返回数量,默认为20,最大值为100。
2404
2408
  # @type Limit: Integer
2409
+ # @param Product: 服务产品类型,支持值:"mysql" - 云数据库 MySQL;"cynosdb" - 云数据库 TDSQL-C for MySQL,默认为"mysql"。
2410
+ # @type Product: String
2405
2411
 
2406
- attr_accessor :InstanceId, :FilterIds, :Statuses, :Offset, :Limit
2412
+ attr_accessor :InstanceId, :FilterIds, :Statuses, :Offset, :Limit, :Product
2407
2413
 
2408
- def initialize(instanceid=nil, filterids=nil, statuses=nil, offset=nil, limit=nil)
2414
+ def initialize(instanceid=nil, filterids=nil, statuses=nil, offset=nil, limit=nil, product=nil)
2409
2415
  @InstanceId = instanceid
2410
2416
  @FilterIds = filterids
2411
2417
  @Statuses = statuses
2412
2418
  @Offset = offset
2413
2419
  @Limit = limit
2420
+ @Product = product
2414
2421
  end
2415
2422
 
2416
2423
  def deserialize(params)
@@ -2419,6 +2426,7 @@ module TencentCloud
2419
2426
  @Statuses = params['Statuses']
2420
2427
  @Offset = params['Offset']
2421
2428
  @Limit = params['Limit']
2429
+ @Product = params['Product']
2422
2430
  end
2423
2431
  end
2424
2432
 
@@ -3324,15 +3332,18 @@ module TencentCloud
3324
3332
  # @type SqlExecId: String
3325
3333
  # @param Product: 服务产品类型,支持值包括: "mysql" - 云数据库 MySQL, "cynosdb" - 云数据库 CynosDB for MySQL,默认为"mysql"。
3326
3334
  # @type Product: String
3335
+ # @param RecordHistory: 默认是ture, 记录下kill的记录,为了加快kill,可设置为false。
3336
+ # @type RecordHistory: Boolean
3327
3337
 
3328
- attr_accessor :InstanceId, :Stage, :Threads, :SqlExecId, :Product
3338
+ attr_accessor :InstanceId, :Stage, :Threads, :SqlExecId, :Product, :RecordHistory
3329
3339
 
3330
- def initialize(instanceid=nil, stage=nil, threads=nil, sqlexecid=nil, product=nil)
3340
+ def initialize(instanceid=nil, stage=nil, threads=nil, sqlexecid=nil, product=nil, recordhistory=nil)
3331
3341
  @InstanceId = instanceid
3332
3342
  @Stage = stage
3333
3343
  @Threads = threads
3334
3344
  @SqlExecId = sqlexecid
3335
3345
  @Product = product
3346
+ @RecordHistory = recordhistory
3336
3347
  end
3337
3348
 
3338
3349
  def deserialize(params)
@@ -3341,6 +3352,7 @@ module TencentCloud
3341
3352
  @Threads = params['Threads']
3342
3353
  @SqlExecId = params['SqlExecId']
3343
3354
  @Product = params['Product']
3355
+ @RecordHistory = params['RecordHistory']
3344
3356
  end
3345
3357
  end
3346
3358
 
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.563
4
+ version: 3.0.565
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-05-01 00:00:00.000000000 Z
11
+ date: 2023-05-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common