tencentcloud-sdk-postgres 3.0.771 → 3.0.772

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/v20170312/models.rb +18 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8118793e10f355c4e7e20999992d03a6585f5546
4
- data.tar.gz: 86e1fc1c6cbfd9d59e6a703c640ad1d08fc634d4
3
+ metadata.gz: 26c86577e116347e719d3fb7b1b18470add9fa2a
4
+ data.tar.gz: 57ea10824f2c6b920fdca94532f1e434c7731276
5
5
  SHA512:
6
- metadata.gz: ad7b78ee7382e36987865ecfba791d4bc341f5ae97bbda37ec4821fc1f4db7007178f96fee882cd12eff67f4e54f0e9245c9bec5bf5f6d5198cc9747863e4a7d
7
- data.tar.gz: dd0ff800855185c2ff7932ff32408cef31971f8556bcf27b93200b7f38a0639838434a7a52f99153079c44e7494bfbcab3981a0900756e3d95f27df3657274ce
6
+ metadata.gz: d1d339b131cbdc77d10fdd57c0f96ddbc73e1d392476df527cc233cba2392d089ed1da2bfe368b238899beecebc4018f2c662c23d930e9d7e102ea4f2c94d996
7
+ data.tar.gz: a86009e7d63cb89c2606e9b47323280fec0404847f493fd6cf0ee25088949ae3192f1decbc2a1f364030b15e798c7d3afa286d59874736c27537052f60ef10ba
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.771
1
+ 3.0.772
@@ -4592,14 +4592,17 @@ module TencentCloud
4592
4592
  # @type DBInstanceId: String
4593
4593
  # @param InstanceChargeType: 【废弃参数,不再生效】,实例计费类型。
4594
4594
  # @type InstanceChargeType: String
4595
+ # @param Cpu: 实例的Cpu大小,单位Core
4596
+ # @type Cpu: Integer
4595
4597
 
4596
- attr_accessor :Storage, :Memory, :DBInstanceId, :InstanceChargeType
4598
+ attr_accessor :Storage, :Memory, :DBInstanceId, :InstanceChargeType, :Cpu
4597
4599
 
4598
- def initialize(storage=nil, memory=nil, dbinstanceid=nil, instancechargetype=nil)
4600
+ def initialize(storage=nil, memory=nil, dbinstanceid=nil, instancechargetype=nil, cpu=nil)
4599
4601
  @Storage = storage
4600
4602
  @Memory = memory
4601
4603
  @DBInstanceId = dbinstanceid
4602
4604
  @InstanceChargeType = instancechargetype
4605
+ @Cpu = cpu
4603
4606
  end
4604
4607
 
4605
4608
  def deserialize(params)
@@ -4607,6 +4610,7 @@ module TencentCloud
4607
4610
  @Memory = params['Memory']
4608
4611
  @DBInstanceId = params['DBInstanceId']
4609
4612
  @InstanceChargeType = params['InstanceChargeType']
4613
+ @Cpu = params['Cpu']
4610
4614
  end
4611
4615
  end
4612
4616
 
@@ -4822,15 +4826,18 @@ module TencentCloud
4822
4826
  # @type BaseBackupRetentionPeriod: Integer
4823
4827
  # @param BackupPeriod: 实例备份周期,按照星期维度,格式为小写星期英文单词
4824
4828
  # @type BackupPeriod: Array
4829
+ # @param LogBackupRetentionPeriod: 实例日志备份保留时长,取值范围为7-1830,单位是天
4830
+ # @type LogBackupRetentionPeriod: Integer
4825
4831
 
4826
- attr_accessor :DBInstanceId, :MinBackupStartTime, :MaxBackupStartTime, :BaseBackupRetentionPeriod, :BackupPeriod
4832
+ attr_accessor :DBInstanceId, :MinBackupStartTime, :MaxBackupStartTime, :BaseBackupRetentionPeriod, :BackupPeriod, :LogBackupRetentionPeriod
4827
4833
 
4828
- def initialize(dbinstanceid=nil, minbackupstarttime=nil, maxbackupstarttime=nil, basebackupretentionperiod=nil, backupperiod=nil)
4834
+ def initialize(dbinstanceid=nil, minbackupstarttime=nil, maxbackupstarttime=nil, basebackupretentionperiod=nil, backupperiod=nil, logbackupretentionperiod=nil)
4829
4835
  @DBInstanceId = dbinstanceid
4830
4836
  @MinBackupStartTime = minbackupstarttime
4831
4837
  @MaxBackupStartTime = maxbackupstarttime
4832
4838
  @BaseBackupRetentionPeriod = basebackupretentionperiod
4833
4839
  @BackupPeriod = backupperiod
4840
+ @LogBackupRetentionPeriod = logbackupretentionperiod
4834
4841
  end
4835
4842
 
4836
4843
  def deserialize(params)
@@ -4839,6 +4846,7 @@ module TencentCloud
4839
4846
  @MaxBackupStartTime = params['MaxBackupStartTime']
4840
4847
  @BaseBackupRetentionPeriod = params['BaseBackupRetentionPeriod']
4841
4848
  @BackupPeriod = params['BackupPeriod']
4849
+ @LogBackupRetentionPeriod = params['LogBackupRetentionPeriod']
4842
4850
  end
4843
4851
  end
4844
4852
 
@@ -5276,10 +5284,12 @@ module TencentCloud
5276
5284
  # @type SwitchStartTime: String
5277
5285
  # @param SwitchEndTime: 切换截止时间,时间格式:HH:MM:SS,例如:01:30:00。当SwitchTag为0或2时,该参数失效。
5278
5286
  # @type SwitchEndTime: String
5287
+ # @param Cpu: 修改后的实例CPU大小,单位Core。
5288
+ # @type Cpu: Integer
5279
5289
 
5280
- attr_accessor :DBInstanceId, :Memory, :Storage, :AutoVoucher, :VoucherIds, :ActivityId, :SwitchTag, :SwitchStartTime, :SwitchEndTime
5290
+ attr_accessor :DBInstanceId, :Memory, :Storage, :AutoVoucher, :VoucherIds, :ActivityId, :SwitchTag, :SwitchStartTime, :SwitchEndTime, :Cpu
5281
5291
 
5282
- def initialize(dbinstanceid=nil, memory=nil, storage=nil, autovoucher=nil, voucherids=nil, activityid=nil, switchtag=nil, switchstarttime=nil, switchendtime=nil)
5292
+ def initialize(dbinstanceid=nil, memory=nil, storage=nil, autovoucher=nil, voucherids=nil, activityid=nil, switchtag=nil, switchstarttime=nil, switchendtime=nil, cpu=nil)
5283
5293
  @DBInstanceId = dbinstanceid
5284
5294
  @Memory = memory
5285
5295
  @Storage = storage
@@ -5289,6 +5299,7 @@ module TencentCloud
5289
5299
  @SwitchTag = switchtag
5290
5300
  @SwitchStartTime = switchstarttime
5291
5301
  @SwitchEndTime = switchendtime
5302
+ @Cpu = cpu
5292
5303
  end
5293
5304
 
5294
5305
  def deserialize(params)
@@ -5301,6 +5312,7 @@ module TencentCloud
5301
5312
  @SwitchTag = params['SwitchTag']
5302
5313
  @SwitchStartTime = params['SwitchStartTime']
5303
5314
  @SwitchEndTime = params['SwitchEndTime']
5315
+ @Cpu = params['Cpu']
5304
5316
  end
5305
5317
  end
5306
5318
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-postgres
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.771
4
+ version: 3.0.772
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-28 00:00:00.000000000 Z
11
+ date: 2024-02-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common