tencentcloud-sdk-tcaplusdb 3.0.1125 → 3.0.1138

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/v20190823/models.rb +10 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2c2b6b2395a7e9c5be5adc093d5956704341cfd0
4
- data.tar.gz: ea8dbd5d203cb87830faa67f17153369f5fee1f9
3
+ metadata.gz: c43dc48994790489ade69e28deab4d9b4442db5a
4
+ data.tar.gz: e564ca9bd98ad58cfffb40fa9663a9ed0aea3c4f
5
5
  SHA512:
6
- metadata.gz: 1c6d76526965ed0767d5ff4b0dfd460a5f9d79c0508a3393472734b1f97da59e17dc4f8e085c08e87b46605f712598b11a9a55ae19e95b786ea9217becaa7cd8
7
- data.tar.gz: 679eb2979bcb4e7751e6911930162c4454d331f7906aec72a2893c9c12774e7c23059e6e0f4ec3835a1265445556679d7e06216926920f25ed585b2e530d1a4e
6
+ metadata.gz: 8b3c5f41554d135b1557ab127d9dc460acf1549aa9659a7572c897cda214e72a406907099d708fc89c599ebd0372a284e2e6b5880035f0d4d4cc67d0f0a9cc00
7
+ data.tar.gz: fa3195cc6c4af22feebda6e991dd9ec2ed83bedb7cfa7728658e16d3b8ef15fc596a6b8da74142b2842aa0f1c8276b1bd8317acfa34ff1142ffd849475ce2273
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1125
1
+ 3.0.1138
@@ -373,10 +373,14 @@ module TencentCloud
373
373
  # @type IsReadOnlyUlogBackupExpireDay: Integer
374
374
  # @param RestProxyStatus: restproxy状态
375
375
  # @type RestProxyStatus: Integer
376
+ # @param ShardTotalNum: 该集群shard总数
377
+ # @type ShardTotalNum: Integer
378
+ # @param ShardUsedNum: 已使用的shard总数
379
+ # @type ShardUsedNum: Integer
376
380
 
377
- attr_accessor :ClusterName, :ClusterId, :Region, :IdlType, :NetworkType, :VpcId, :SubnetId, :CreatedTime, :Password, :PasswordStatus, :ApiAccessId, :ApiAccessIp, :ApiAccessPort, :OldPasswordExpireTime, :ApiAccessIpv6, :ClusterType, :ClusterStatus, :ReadCapacityUnit, :WriteCapacityUnit, :DiskVolume, :ServerList, :ProxyList, :Censorship, :DbaUins, :DataFlowStatus, :KafkaInfo, :TxhBackupExpireDay, :UlogBackupExpireDay, :IsReadOnlyUlogBackupExpireDay, :RestProxyStatus
381
+ attr_accessor :ClusterName, :ClusterId, :Region, :IdlType, :NetworkType, :VpcId, :SubnetId, :CreatedTime, :Password, :PasswordStatus, :ApiAccessId, :ApiAccessIp, :ApiAccessPort, :OldPasswordExpireTime, :ApiAccessIpv6, :ClusterType, :ClusterStatus, :ReadCapacityUnit, :WriteCapacityUnit, :DiskVolume, :ServerList, :ProxyList, :Censorship, :DbaUins, :DataFlowStatus, :KafkaInfo, :TxhBackupExpireDay, :UlogBackupExpireDay, :IsReadOnlyUlogBackupExpireDay, :RestProxyStatus, :ShardTotalNum, :ShardUsedNum
378
382
 
379
- def initialize(clustername=nil, clusterid=nil, region=nil, idltype=nil, networktype=nil, vpcid=nil, subnetid=nil, createdtime=nil, password=nil, passwordstatus=nil, apiaccessid=nil, apiaccessip=nil, apiaccessport=nil, oldpasswordexpiretime=nil, apiaccessipv6=nil, clustertype=nil, clusterstatus=nil, readcapacityunit=nil, writecapacityunit=nil, diskvolume=nil, serverlist=nil, proxylist=nil, censorship=nil, dbauins=nil, dataflowstatus=nil, kafkainfo=nil, txhbackupexpireday=nil, ulogbackupexpireday=nil, isreadonlyulogbackupexpireday=nil, restproxystatus=nil)
383
+ def initialize(clustername=nil, clusterid=nil, region=nil, idltype=nil, networktype=nil, vpcid=nil, subnetid=nil, createdtime=nil, password=nil, passwordstatus=nil, apiaccessid=nil, apiaccessip=nil, apiaccessport=nil, oldpasswordexpiretime=nil, apiaccessipv6=nil, clustertype=nil, clusterstatus=nil, readcapacityunit=nil, writecapacityunit=nil, diskvolume=nil, serverlist=nil, proxylist=nil, censorship=nil, dbauins=nil, dataflowstatus=nil, kafkainfo=nil, txhbackupexpireday=nil, ulogbackupexpireday=nil, isreadonlyulogbackupexpireday=nil, restproxystatus=nil, shardtotalnum=nil, shardusednum=nil)
380
384
  @ClusterName = clustername
381
385
  @ClusterId = clusterid
382
386
  @Region = region
@@ -407,6 +411,8 @@ module TencentCloud
407
411
  @UlogBackupExpireDay = ulogbackupexpireday
408
412
  @IsReadOnlyUlogBackupExpireDay = isreadonlyulogbackupexpireday
409
413
  @RestProxyStatus = restproxystatus
414
+ @ShardTotalNum = shardtotalnum
415
+ @ShardUsedNum = shardusednum
410
416
  end
411
417
 
412
418
  def deserialize(params)
@@ -457,6 +463,8 @@ module TencentCloud
457
463
  @UlogBackupExpireDay = params['UlogBackupExpireDay']
458
464
  @IsReadOnlyUlogBackupExpireDay = params['IsReadOnlyUlogBackupExpireDay']
459
465
  @RestProxyStatus = params['RestProxyStatus']
466
+ @ShardTotalNum = params['ShardTotalNum']
467
+ @ShardUsedNum = params['ShardUsedNum']
460
468
  end
461
469
  end
462
470
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tcaplusdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1125
4
+ version: 3.0.1138
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-08-18 00:00:00.000000000 Z
11
+ date: 2025-09-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common