tencentcloud-sdk-cynosdb 3.0.532 → 3.0.533
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 +9 -5
- 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: 139533385a41e5ca54382939d2f7eca8e1b51635
|
|
4
|
+
data.tar.gz: 0dce01de68ca64afb3759493fe14a9c8df99f40d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 508336d04f65de5438b8d6df3d703d26145904b204ca79c47ded0241f793a15bacc8a6fe559598e01124aed566896867bda18807c7c7454468462f7e5e96b438
|
|
7
|
+
data.tar.gz: 318cbfec5e9886df68cd6c940bab4cf963284288f724d886d0cc872ad49fdf9ad2028688ce4c9824cfa95550f7b02de71a5e9d70ebe20a41c731f39cf35592b3
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.533
|
data/lib/v20190107/models.rb
CHANGED
|
@@ -193,11 +193,11 @@ module TencentCloud
|
|
|
193
193
|
# @type Memory: Integer
|
|
194
194
|
# @param ReadOnlyCount: 新增只读实例数,取值范围为[0,4]
|
|
195
195
|
# @type ReadOnlyCount: Integer
|
|
196
|
-
# @param InstanceGrpId: 实例组ID,在已有RO组中新增实例时使用,不传则新增RO
|
|
196
|
+
# @param InstanceGrpId: 实例组ID,在已有RO组中新增实例时使用,不传则新增RO组。当前版本不建议传输该值。当前版本已废弃。
|
|
197
197
|
# @type InstanceGrpId: String
|
|
198
|
-
# @param VpcId: 所属VPC网络ID
|
|
198
|
+
# @param VpcId: 所属VPC网络ID。
|
|
199
199
|
# @type VpcId: String
|
|
200
|
-
# @param SubnetId: 所属子网ID,如果设置了VpcId,则SubnetId
|
|
200
|
+
# @param SubnetId: 所属子网ID,如果设置了VpcId,则SubnetId必填。
|
|
201
201
|
# @type SubnetId: String
|
|
202
202
|
# @param Port: 新增RO组时使用的Port,取值范围为[0,65535)
|
|
203
203
|
# @type Port: Integer
|
|
@@ -216,10 +216,12 @@ module TencentCloud
|
|
|
216
216
|
# @type ParamTemplateId: Integer
|
|
217
217
|
# @param InstanceParams: 参数列表,ParamTemplateId 传入时InstanceParams才有效
|
|
218
218
|
# @type InstanceParams: Array
|
|
219
|
+
# @param SecurityGroupIds: 安全组ID,新建只读实例时可以指定安全组。
|
|
220
|
+
# @type SecurityGroupIds: Array
|
|
219
221
|
|
|
220
|
-
attr_accessor :ClusterId, :Cpu, :Memory, :ReadOnlyCount, :InstanceGrpId, :VpcId, :SubnetId, :Port, :InstanceName, :AutoVoucher, :DbType, :OrderSource, :DealMode, :ParamTemplateId, :InstanceParams
|
|
222
|
+
attr_accessor :ClusterId, :Cpu, :Memory, :ReadOnlyCount, :InstanceGrpId, :VpcId, :SubnetId, :Port, :InstanceName, :AutoVoucher, :DbType, :OrderSource, :DealMode, :ParamTemplateId, :InstanceParams, :SecurityGroupIds
|
|
221
223
|
|
|
222
|
-
def initialize(clusterid=nil, cpu=nil, memory=nil, readonlycount=nil, instancegrpid=nil, vpcid=nil, subnetid=nil, port=nil, instancename=nil, autovoucher=nil, dbtype=nil, ordersource=nil, dealmode=nil, paramtemplateid=nil, instanceparams=nil)
|
|
224
|
+
def initialize(clusterid=nil, cpu=nil, memory=nil, readonlycount=nil, instancegrpid=nil, vpcid=nil, subnetid=nil, port=nil, instancename=nil, autovoucher=nil, dbtype=nil, ordersource=nil, dealmode=nil, paramtemplateid=nil, instanceparams=nil, securitygroupids=nil)
|
|
223
225
|
@ClusterId = clusterid
|
|
224
226
|
@Cpu = cpu
|
|
225
227
|
@Memory = memory
|
|
@@ -235,6 +237,7 @@ module TencentCloud
|
|
|
235
237
|
@DealMode = dealmode
|
|
236
238
|
@ParamTemplateId = paramtemplateid
|
|
237
239
|
@InstanceParams = instanceparams
|
|
240
|
+
@SecurityGroupIds = securitygroupids
|
|
238
241
|
end
|
|
239
242
|
|
|
240
243
|
def deserialize(params)
|
|
@@ -260,6 +263,7 @@ module TencentCloud
|
|
|
260
263
|
@InstanceParams << modifyparamitem_tmp
|
|
261
264
|
end
|
|
262
265
|
end
|
|
266
|
+
@SecurityGroupIds = params['SecurityGroupIds']
|
|
263
267
|
end
|
|
264
268
|
end
|
|
265
269
|
|
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.533
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-03-
|
|
11
|
+
date: 2023-03-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|