tencentcloud-sdk-keewidb 3.0.715 → 3.0.716

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/v20220308/models.rb +19 -5
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 326975db2fb5ae4563a69f28761642d751290ef1
4
- data.tar.gz: 2e02d580b246bbecd49baff34ef23d72555e9d23
3
+ metadata.gz: 097bd00c28a9819933b6d874bddffa5796adfb4a
4
+ data.tar.gz: 6d984b33b4ec555feef57c37b7a35b6cca1976f3
5
5
  SHA512:
6
- metadata.gz: 1cef62bf8e7c8ffdde39f19f8632087764b5831d32d87a9e5a67aa12a96c8681b7f8f166325872606efc07f52d91302c48b219bce56b37048b9f7bc262bd529a
7
- data.tar.gz: 7649151da60b52f8951598d19b6fccb2590f38d83c8ddaaaea16e4668bc9b9abcc06e8317b642c7526b27b8b1d08a5a8eda0bdd3a98bad9fdc24135fcc617006
6
+ metadata.gz: 99b3555da00972e545fc8f113fd5396a0755793cbd577426b0b0fee959cb61b337e7aa327a3497a313f972306e754113f6a08db0bcb94ac200556ecc537bbc6f
7
+ data.tar.gz: e79470396ffb5c2da01c48a26bc7d2120883aa04f53d6b7366d3f1fc4d71b2bb51a2303442362094d7ac3e8724e75ad95bd46ea749b8d195335d9a68330fcb56
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.715
1
+ 3.0.716
@@ -500,17 +500,25 @@ module TencentCloud
500
500
  # @type InNetLimit: Integer
501
501
  # @param OutNetLimit: 单分片出流量带宽限制,单位:MB。
502
502
  # @type OutNetLimit: Integer
503
- # @param ClientLimit: 单分片连接数限制。
503
+ # @param ClientLimit: 实例当前单分片连接数限制。
504
504
  # @type ClientLimit: Integer
505
+ # @param ClientLimitMin: 单分片连接数限制最小值。
506
+ # 注意:此字段可能返回 null,表示取不到有效值。
507
+ # @type ClientLimitMin: Integer
508
+ # @param ClientLimitMax: 单分片连接数限制最大值。
509
+ # 注意:此字段可能返回 null,表示取不到有效值。
510
+ # @type ClientLimitMax: Integer
505
511
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
506
512
  # @type RequestId: String
507
513
 
508
- attr_accessor :InNetLimit, :OutNetLimit, :ClientLimit, :RequestId
514
+ attr_accessor :InNetLimit, :OutNetLimit, :ClientLimit, :ClientLimitMin, :ClientLimitMax, :RequestId
509
515
 
510
- def initialize(innetlimit=nil, outnetlimit=nil, clientlimit=nil, requestid=nil)
516
+ def initialize(innetlimit=nil, outnetlimit=nil, clientlimit=nil, clientlimitmin=nil, clientlimitmax=nil, requestid=nil)
511
517
  @InNetLimit = innetlimit
512
518
  @OutNetLimit = outnetlimit
513
519
  @ClientLimit = clientlimit
520
+ @ClientLimitMin = clientlimitmin
521
+ @ClientLimitMax = clientlimitmax
514
522
  @RequestId = requestid
515
523
  end
516
524
 
@@ -518,6 +526,8 @@ module TencentCloud
518
526
  @InNetLimit = params['InNetLimit']
519
527
  @OutNetLimit = params['OutNetLimit']
520
528
  @ClientLimit = params['ClientLimit']
529
+ @ClientLimitMin = params['ClientLimitMin']
530
+ @ClientLimitMax = params['ClientLimitMax']
521
531
  @RequestId = params['RequestId']
522
532
  end
523
533
  end
@@ -2661,16 +2671,19 @@ module TencentCloud
2661
2671
  # @type VpcId: String
2662
2672
  # @param Vip: 修改后的 VIP 地址。
2663
2673
  # @type Vip: String
2674
+ # @param TaskId: 任务ID。
2675
+ # @type TaskId: Integer
2664
2676
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2665
2677
  # @type RequestId: String
2666
2678
 
2667
- attr_accessor :Status, :SubnetId, :VpcId, :Vip, :RequestId
2679
+ attr_accessor :Status, :SubnetId, :VpcId, :Vip, :TaskId, :RequestId
2668
2680
 
2669
- def initialize(status=nil, subnetid=nil, vpcid=nil, vip=nil, requestid=nil)
2681
+ def initialize(status=nil, subnetid=nil, vpcid=nil, vip=nil, taskid=nil, requestid=nil)
2670
2682
  @Status = status
2671
2683
  @SubnetId = subnetid
2672
2684
  @VpcId = vpcid
2673
2685
  @Vip = vip
2686
+ @TaskId = taskid
2674
2687
  @RequestId = requestid
2675
2688
  end
2676
2689
 
@@ -2679,6 +2692,7 @@ module TencentCloud
2679
2692
  @SubnetId = params['SubnetId']
2680
2693
  @VpcId = params['VpcId']
2681
2694
  @Vip = params['Vip']
2695
+ @TaskId = params['TaskId']
2682
2696
  @RequestId = params['RequestId']
2683
2697
  end
2684
2698
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-keewidb
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.715
4
+ version: 3.0.716
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-11-28 00:00:00.000000000 Z
11
+ date: 2023-11-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common