tencentcloud-sdk-cynosdb 3.0.1181 → 3.0.1184
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190107/models.rb +15 -4
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ae97be5fcb445d8c88e74e93cb03806c46bf9203
|
|
4
|
+
data.tar.gz: 34d4ffdb66e6c360028fa5af446f76e5f61ba7f5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bc6c4452f21aecab371fddd578416176211cc79bad9fa96d47c60fadb8d01e4badd7cb5b2e298eab7210243f11f8945a44cba2ea37ea1422834d1ed2a7eb3e50
|
|
7
|
+
data.tar.gz: 6a1a4ee8023c6481ab00d02c7778ccff8954a0d5b9c4c3e5dfe2c466f39d50156834db00e9abc239e26cadb7e3422591628a29856fc7864f7cd8ed9d07cfb503
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1184
|
data/lib/v20190107/models.rb
CHANGED
|
@@ -11777,10 +11777,12 @@ module TencentCloud
|
|
|
11777
11777
|
# @type MaxRoCount: Integer
|
|
11778
11778
|
# @param AutoArchive: 是否开启归档,可选范围<li>yes</li><li>no</li>默认值:yes
|
|
11779
11779
|
# @type AutoArchive: String
|
|
11780
|
+
# @param UpgradeType: 升级类型。 默认值:upgradeImmediate。 可选值: upgradeImmediate:立即完成修改 upgradeInMaintain:在维护时间窗口内完成修改
|
|
11781
|
+
# @type UpgradeType: String
|
|
11780
11782
|
|
|
11781
|
-
attr_accessor :ClusterId, :AutoPause, :AutoPauseDelay, :AutoScaleUpDelay, :AutoScaleDownDelay, :MinCpu, :MaxCpu, :MinRoCpu, :MaxRoCpu, :MinRoCount, :MaxRoCount, :AutoArchive
|
|
11783
|
+
attr_accessor :ClusterId, :AutoPause, :AutoPauseDelay, :AutoScaleUpDelay, :AutoScaleDownDelay, :MinCpu, :MaxCpu, :MinRoCpu, :MaxRoCpu, :MinRoCount, :MaxRoCount, :AutoArchive, :UpgradeType
|
|
11782
11784
|
|
|
11783
|
-
def initialize(clusterid=nil, autopause=nil, autopausedelay=nil, autoscaleupdelay=nil, autoscaledowndelay=nil, mincpu=nil, maxcpu=nil, minrocpu=nil, maxrocpu=nil, minrocount=nil, maxrocount=nil, autoarchive=nil)
|
|
11785
|
+
def initialize(clusterid=nil, autopause=nil, autopausedelay=nil, autoscaleupdelay=nil, autoscaledowndelay=nil, mincpu=nil, maxcpu=nil, minrocpu=nil, maxrocpu=nil, minrocount=nil, maxrocount=nil, autoarchive=nil, upgradetype=nil)
|
|
11784
11786
|
@ClusterId = clusterid
|
|
11785
11787
|
@AutoPause = autopause
|
|
11786
11788
|
@AutoPauseDelay = autopausedelay
|
|
@@ -11793,6 +11795,7 @@ module TencentCloud
|
|
|
11793
11795
|
@MinRoCount = minrocount
|
|
11794
11796
|
@MaxRoCount = maxrocount
|
|
11795
11797
|
@AutoArchive = autoarchive
|
|
11798
|
+
@UpgradeType = upgradetype
|
|
11796
11799
|
end
|
|
11797
11800
|
|
|
11798
11801
|
def deserialize(params)
|
|
@@ -11808,6 +11811,7 @@ module TencentCloud
|
|
|
11808
11811
|
@MinRoCount = params['MinRoCount']
|
|
11809
11812
|
@MaxRoCount = params['MaxRoCount']
|
|
11810
11813
|
@AutoArchive = params['AutoArchive']
|
|
11814
|
+
@UpgradeType = params['UpgradeType']
|
|
11811
11815
|
end
|
|
11812
11816
|
end
|
|
11813
11817
|
|
|
@@ -11815,18 +11819,25 @@ module TencentCloud
|
|
|
11815
11819
|
class ModifyServerlessStrategyResponse < TencentCloud::Common::AbstractModel
|
|
11816
11820
|
# @param FlowId: 异步流程id
|
|
11817
11821
|
# @type FlowId: Integer
|
|
11822
|
+
# @param TaskId: 任务id
|
|
11823
|
+
# @type TaskId: Integer
|
|
11818
11824
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
11819
11825
|
# @type RequestId: String
|
|
11820
11826
|
|
|
11821
|
-
attr_accessor :FlowId, :RequestId
|
|
11827
|
+
attr_accessor :FlowId, :TaskId, :RequestId
|
|
11828
|
+
extend Gem::Deprecate
|
|
11829
|
+
deprecate :FlowId, :none, 2025, 12
|
|
11830
|
+
deprecate :FlowId=, :none, 2025, 12
|
|
11822
11831
|
|
|
11823
|
-
def initialize(flowid=nil, requestid=nil)
|
|
11832
|
+
def initialize(flowid=nil, taskid=nil, requestid=nil)
|
|
11824
11833
|
@FlowId = flowid
|
|
11834
|
+
@TaskId = taskid
|
|
11825
11835
|
@RequestId = requestid
|
|
11826
11836
|
end
|
|
11827
11837
|
|
|
11828
11838
|
def deserialize(params)
|
|
11829
11839
|
@FlowId = params['FlowId']
|
|
11840
|
+
@TaskId = params['TaskId']
|
|
11830
11841
|
@RequestId = params['RequestId']
|
|
11831
11842
|
end
|
|
11832
11843
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-cynosdb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1184
|
|
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-12-
|
|
11
|
+
date: 2025-12-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|