tencentcloud-sdk-cdwdoris 3.0.1064 → 3.0.1065
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/v20211228/models.rb +23 -7
- 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: 6b17c3cd1e21d1539ba61dffd97e9999cddc9f53
|
4
|
+
data.tar.gz: e6dfada51792a7e6d823e1bc739b67b63eb0ef20
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cc4ab84b1db8eba68e3ab433431e8353385ca08d8b39ee942731cf8f9b9a1c4b3571bb5800031924ca3e2af9d8352fc9f0e78a76e0b4d89badb1a476cd2c84f0
|
7
|
+
data.tar.gz: 6be161970a9ba4108b0b00f50671337e65b3b6a27ec2b4edd3cc627567bca9b6a45413ec1cc20923f304242ed47f12eb71a5b02ebaf519ce8e1ab3e86f5013f0
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1065
|
data/lib/v20211228/models.rb
CHANGED
@@ -4701,14 +4701,17 @@ module TencentCloud
|
|
4701
4701
|
# @type Type: String
|
4702
4702
|
# @param HaType: 缩容后集群高可用类型:0:非高可用,1:读高可用,2:读写高可用。
|
4703
4703
|
# @type HaType: Integer
|
4704
|
+
# @param CheckAuth: 前端鉴权使用
|
4705
|
+
# @type CheckAuth: Boolean
|
4704
4706
|
|
4705
|
-
attr_accessor :InstanceId, :DelHosts, :Type, :HaType
|
4707
|
+
attr_accessor :InstanceId, :DelHosts, :Type, :HaType, :CheckAuth
|
4706
4708
|
|
4707
|
-
def initialize(instanceid=nil, delhosts=nil, type=nil, hatype=nil)
|
4709
|
+
def initialize(instanceid=nil, delhosts=nil, type=nil, hatype=nil, checkauth=nil)
|
4708
4710
|
@InstanceId = instanceid
|
4709
4711
|
@DelHosts = delhosts
|
4710
4712
|
@Type = type
|
4711
4713
|
@HaType = hatype
|
4714
|
+
@CheckAuth = checkauth
|
4712
4715
|
end
|
4713
4716
|
|
4714
4717
|
def deserialize(params)
|
@@ -4716,6 +4719,7 @@ module TencentCloud
|
|
4716
4719
|
@DelHosts = params['DelHosts']
|
4717
4720
|
@Type = params['Type']
|
4718
4721
|
@HaType = params['HaType']
|
4722
|
+
@CheckAuth = params['CheckAuth']
|
4719
4723
|
end
|
4720
4724
|
end
|
4721
4725
|
|
@@ -5161,14 +5165,17 @@ module TencentCloud
|
|
5161
5165
|
# @type NodeCount: Integer
|
5162
5166
|
# @param HaType: 扩容后集群高可用类型:0:非高可用,1:读高可用,2:读写高可用。
|
5163
5167
|
# @type HaType: Integer
|
5168
|
+
# @param CheckAuth: 前端鉴权使用
|
5169
|
+
# @type CheckAuth: Boolean
|
5164
5170
|
|
5165
|
-
attr_accessor :InstanceId, :Type, :NodeCount, :HaType
|
5171
|
+
attr_accessor :InstanceId, :Type, :NodeCount, :HaType, :CheckAuth
|
5166
5172
|
|
5167
|
-
def initialize(instanceid=nil, type=nil, nodecount=nil, hatype=nil)
|
5173
|
+
def initialize(instanceid=nil, type=nil, nodecount=nil, hatype=nil, checkauth=nil)
|
5168
5174
|
@InstanceId = instanceid
|
5169
5175
|
@Type = type
|
5170
5176
|
@NodeCount = nodecount
|
5171
5177
|
@HaType = hatype
|
5178
|
+
@CheckAuth = checkauth
|
5172
5179
|
end
|
5173
5180
|
|
5174
5181
|
def deserialize(params)
|
@@ -5176,6 +5183,7 @@ module TencentCloud
|
|
5176
5183
|
@Type = params['Type']
|
5177
5184
|
@NodeCount = params['NodeCount']
|
5178
5185
|
@HaType = params['HaType']
|
5186
|
+
@CheckAuth = params['CheckAuth']
|
5179
5187
|
end
|
5180
5188
|
end
|
5181
5189
|
|
@@ -5213,21 +5221,29 @@ module TencentCloud
|
|
5213
5221
|
# @type InstanceId: String
|
5214
5222
|
# @param SpecName: 节点规格
|
5215
5223
|
# @type SpecName: String
|
5216
|
-
# @param Type: 角色(
|
5224
|
+
# @param Type: 角色(MASTER/CORE),MASTER 对应 FE,CORE对应BE
|
5217
5225
|
# @type Type: String
|
5226
|
+
# @param CheckAuth: 前端鉴权使用,后端API调用传false,传true不会执行变配
|
5227
|
+
# @type CheckAuth: Boolean
|
5228
|
+
# @param RollingRestart: 是否滚动重启
|
5229
|
+
# @type RollingRestart: Boolean
|
5218
5230
|
|
5219
|
-
attr_accessor :InstanceId, :SpecName, :Type
|
5231
|
+
attr_accessor :InstanceId, :SpecName, :Type, :CheckAuth, :RollingRestart
|
5220
5232
|
|
5221
|
-
def initialize(instanceid=nil, specname=nil, type=nil)
|
5233
|
+
def initialize(instanceid=nil, specname=nil, type=nil, checkauth=nil, rollingrestart=nil)
|
5222
5234
|
@InstanceId = instanceid
|
5223
5235
|
@SpecName = specname
|
5224
5236
|
@Type = type
|
5237
|
+
@CheckAuth = checkauth
|
5238
|
+
@RollingRestart = rollingrestart
|
5225
5239
|
end
|
5226
5240
|
|
5227
5241
|
def deserialize(params)
|
5228
5242
|
@InstanceId = params['InstanceId']
|
5229
5243
|
@SpecName = params['SpecName']
|
5230
5244
|
@Type = params['Type']
|
5245
|
+
@CheckAuth = params['CheckAuth']
|
5246
|
+
@RollingRestart = params['RollingRestart']
|
5231
5247
|
end
|
5232
5248
|
end
|
5233
5249
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cdwdoris
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1065
|
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-05-
|
11
|
+
date: 2025-05-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|