tencentcloud-sdk-dbbrain 3.0.563 → 3.0.564

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 +18 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5debd6f6c29f3afa0f61381661abec6af3971bcf
4
- data.tar.gz: f7c2b469c98aac12d13749068c2ad32523d6e847
3
+ metadata.gz: fcf2702f26654496be3d7760ce3ba7bb9a1f26a9
4
+ data.tar.gz: 35e84faa514868baf150440f548445d9d5444bb1
5
5
  SHA512:
6
- metadata.gz: 6af52e55374d8ea01ab542d72cd6c9fc5bc2c7f59da992770b2a9fc10431d8a5d904ceef318e87791063046cbbb9d9e99608736e70b5e04541cced329ffcb5ac
7
- data.tar.gz: 7657c2e9e382a37604ff4e1031b38be556d5e3c649afe48ea5798a3dc3a7768745b60d799a935c7639f1ad8160e9e6ab3c8422c22f2d894aa1734c4062672c2d
6
+ metadata.gz: ca0b98705fe79a3baa0f2c7f08297e64ed8979bdc2e4cd4dec6a0e6189710e6c9cd879ee4a8ce5e60cc0e1b60da4103f9f0629bf9041b4f88f4cbcc31e8375a9
7
+ data.tar.gz: 2b3244266f45a3d7dfb3a59661f6d843d671a2f2e3b1e0b635d5ef21b57f211d546eed51a7f6dda3521972f6f6416dced493ab00af76f2eb178b94a7fef0d351
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.563
1
+ 3.0.564
@@ -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
 
@@ -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.564
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-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common