tencentcloud-sdk-cdb 3.0.1076 → 3.0.1081

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/v20170320/models.rb +32 -22
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8ba96e806ca7ded91955127c5f0bd631e686a680
4
- data.tar.gz: 414ce3f8a97523275bff63f9a6a042282f5ed341
3
+ metadata.gz: b541c492270bd76890128b9e1f8ce20a2434170d
4
+ data.tar.gz: 7635a08c0740d763e392c1c65ed41636801be30a
5
5
  SHA512:
6
- metadata.gz: f09ff7fbc478ea45a27b6c2901f153394f27d918bc3cfdfb878bf3c1d1e1e7f73c61e04b0d9000dc57260945d88e34272dd7c170b4e194a65717e851ac278287
7
- data.tar.gz: ffd46ba03bddc0f16b7dbb65c7df672bea07280caa1620b1ede43880b039f09f631490ad75640493d701f601d61d3885c99db72a3c904984828088a830a1af21
6
+ metadata.gz: 8580664dadddbaea50c3c68a917ca8126d383658d2835dd4194a86f6921ea04f632f300c941c2fb8d59ecab57f8a6991b4fcd761f80a97c863025f5117eb12f2
7
+ data.tar.gz: 45db5cf45f799e4bdab27f3a04ec6055509ff2a444358c650a1cd6d609a9fa01270963b680df1ede286e675d375b29433f79969847bdced2c414cf5c79001c81
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1076
1
+ 3.0.1081
@@ -5552,7 +5552,7 @@ module TencentCloud
5552
5552
 
5553
5553
  # DescribeCPUExpandStrategyInfo请求参数结构体
5554
5554
  class DescribeCPUExpandStrategyInfoRequest < TencentCloud::Common::AbstractModel
5555
- # @param InstanceId: 实例 ID
5555
+ # @param InstanceId: 实例 ID。
5556
5556
  # @type InstanceId: String
5557
5557
 
5558
5558
  attr_accessor :InstanceId
@@ -5568,18 +5568,18 @@ module TencentCloud
5568
5568
 
5569
5569
  # DescribeCPUExpandStrategyInfo返回参数结构体
5570
5570
  class DescribeCPUExpandStrategyInfoResponse < TencentCloud::Common::AbstractModel
5571
- # @param Type: 策略类型。可选值 auto、manual。如果返回为NULL说明尚未开通弹性扩容策略
5571
+ # @param Type: 策略类型。输出值 auto、manual。如果返回为 NULL 说明尚未开通弹性扩容策略。
5572
5572
  # 注意:此字段可能返回 null,表示取不到有效值。
5573
5573
  # @type Type: String
5574
- # @param ExpandCpu: 手动扩容的 CPU 。Type为 manual 时有效。
5574
+ # @param ExpandCpu: 手动扩容的 CPU 。Type 为 manual 时有效。
5575
5575
  # 注意:此字段可能返回 null,表示取不到有效值。
5576
5576
  # @type ExpandCpu: Integer
5577
- # @param AutoStrategy: 自动扩容策略。Type 为 auto 时有效
5577
+ # @param AutoStrategy: 自动扩容策略。Type 为 auto 时有效。
5578
5578
  # 注意:此字段可能返回 null,表示取不到有效值。
5579
5579
  # @type AutoStrategy: :class:`Tencentcloud::Cdb.v20170320.models.AutoStrategy`
5580
5580
  # @param PeriodStrategy: 按周期扩容策略。
5581
5581
  # @type PeriodStrategy: :class:`Tencentcloud::Cdb.v20170320.models.PeriodStrategy`
5582
- # @param TimeIntervalStrategy: 按时间段扩容策略
5582
+ # @param TimeIntervalStrategy: 按时间段扩容策略。
5583
5583
  # @type TimeIntervalStrategy: :class:`Tencentcloud::Cdb.v20170320.models.TimeIntervalStrategy`
5584
5584
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5585
5585
  # @type RequestId: String
@@ -13626,18 +13626,19 @@ module TencentCloud
13626
13626
 
13627
13627
  # StartCpuExpand请求参数结构体
13628
13628
  class StartCpuExpandRequest < TencentCloud::Common::AbstractModel
13629
- # @param InstanceId: 实例 ID
13629
+ # @param InstanceId: 实例 ID。
13630
13630
  # @type InstanceId: String
13631
- # @param Type: 扩容类型。auto 自动 manual 立即生效 timeInterval 按时间段 period 按周期
13631
+ # @param Type: 扩容类型,支持自动扩容和自定义扩容。
13632
+ # 说明:1. auto 表示自动扩容。2. manual 表示自定义扩容,扩容时间为立即生效。3. timeInterval 表示自定义扩容,扩容时间为按时间段。4. period 表示自定义扩容,扩容时间为按周期。
13632
13633
  # @type Type: String
13633
- # @param ExpandCpu: 手动扩容时,扩容的 CPU 核心数。
13634
- # 说明:1. Type 为 manual 时必传。2. 扩容的 CPU 核心数上限为当前实例 CPU 核心数,比如8核16G最大可手动扩容的 CPU 核心数为8,即范围为1 - 8。
13634
+ # @param ExpandCpu: 自定义扩容时,扩容的 CPU 核心数。
13635
+ # 说明:1. Type 为 manual、timeInterval、period 时必传。2. 扩容的 CPU 核心数上限为当前实例 CPU 核心数,比如8核16G最大可手动扩容的 CPU 核心数为8,即范围为1 - 8。
13635
13636
  # @type ExpandCpu: Integer
13636
13637
  # @param AutoStrategy: 自动扩容策略。Type 为 auto 时必传。
13637
13638
  # @type AutoStrategy: :class:`Tencentcloud::Cdb.v20170320.models.AutoStrategy`
13638
- # @param TimeIntervalStrategy: 按时间段扩容策略
13639
+ # @param TimeIntervalStrategy: 按时间段扩容策略。
13639
13640
  # @type TimeIntervalStrategy: :class:`Tencentcloud::Cdb.v20170320.models.TimeIntervalStrategy`
13640
- # @param PeriodStrategy: 按周期扩容策略
13641
+ # @param PeriodStrategy: 按周期扩容策略。
13641
13642
  # @type PeriodStrategy: :class:`Tencentcloud::Cdb.v20170320.models.PeriodStrategy`
13642
13643
 
13643
13644
  attr_accessor :InstanceId, :Type, :ExpandCpu, :AutoStrategy, :TimeIntervalStrategy, :PeriodStrategy
@@ -14064,19 +14065,26 @@ module TencentCloud
14064
14065
 
14065
14066
  # 扩容的周期
14066
14067
  class TImeCycle < TencentCloud::Common::AbstractModel
14067
- # @param Monday: 周一的扩容时间段
14068
+ # @param Monday: 按周期扩容时,是否选择周一扩容。
14069
+ # 说明:取值 true,表示选择,取值 false,表示不选择。
14068
14070
  # @type Monday: Boolean
14069
- # @param Tuesday: 周二的扩容时间段
14071
+ # @param Tuesday: 按周期扩容时,是否选择周二扩容。
14072
+ # 说明:取值 true,表示选择,取值 false,表示不选择。
14070
14073
  # @type Tuesday: Boolean
14071
- # @param Wednesday: 周三的扩容时间段
14074
+ # @param Wednesday: 按周期扩容时,是否选择周三扩容。
14075
+ # 说明:取值 true,表示选择,取值 false,表示不选择。
14072
14076
  # @type Wednesday: Boolean
14073
- # @param Thursday: 周四的扩容时间段
14077
+ # @param Thursday: 按周期扩容时,是否选择周四扩容。
14078
+ # 说明:取值 true,表示选择,取值 false,表示不选择。
14074
14079
  # @type Thursday: Boolean
14075
- # @param Friday: 周五的扩容时间段
14080
+ # @param Friday: 按周期扩容时,是否选择周五扩容。
14081
+ # 说明:取值 true,表示选择,取值 false,表示不选择。
14076
14082
  # @type Friday: Boolean
14077
- # @param Saturday: 周六的扩容时间段
14083
+ # @param Saturday: 按周期扩容时,是否选择周六扩容。
14084
+ # 说明:取值 true,表示选择,取值 false,表示不选择。
14078
14085
  # @type Saturday: Boolean
14079
- # @param Sunday: 周日的扩容时间段
14086
+ # @param Sunday: 按周期扩容时,是否选择周日扩容。
14087
+ # 说明:取值 true,表示选择,取值 false,表示不选择。
14080
14088
  # @type Sunday: Boolean
14081
14089
 
14082
14090
  attr_accessor :Monday, :Tuesday, :Wednesday, :Thursday, :Friday, :Saturday, :Sunday
@@ -14341,9 +14349,9 @@ module TencentCloud
14341
14349
 
14342
14350
  # 时间段
14343
14351
  class TimeInterval < TencentCloud::Common::AbstractModel
14344
- # @param StartTime: 开始时间
14352
+ # @param StartTime: 开始时间。
14345
14353
  # @type StartTime: String
14346
- # @param EndTime: 结束时间
14354
+ # @param EndTime: 结束时间。
14347
14355
  # @type EndTime: String
14348
14356
 
14349
14357
  attr_accessor :StartTime, :EndTime
@@ -14361,9 +14369,11 @@ module TencentCloud
14361
14369
 
14362
14370
  # 按时间段扩容策略
14363
14371
  class TimeIntervalStrategy < TencentCloud::Common::AbstractModel
14364
- # @param StartTime: 开始扩容时间
14372
+ # @param StartTime: 开始扩容时间。
14373
+ # 说明:此值的格式为 Integer 的时间戳。
14365
14374
  # @type StartTime: Integer
14366
- # @param EndTime: 结束扩容时间
14375
+ # @param EndTime: 结束扩容时间。
14376
+ # 说明:此值的格式为 Integer 的时间戳。
14367
14377
  # @type EndTime: Integer
14368
14378
 
14369
14379
  attr_accessor :StartTime, :EndTime
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1076
4
+ version: 3.0.1081
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-06-08 00:00:00.000000000 Z
11
+ date: 2025-06-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common