tencentcloud-sdk-tdmq 3.0.1201 → 3.0.1205
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/v20200217/models.rb +21 -8
- 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: 88414346189077d69742b8b74eb3d83da8b110f0
|
|
4
|
+
data.tar.gz: b7e415b095dc2fad829313556c53cecceb4d52ad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5636f63b28c9fbecd9137e3edcb54df383d1207e23f57b0e0bcd35b1a8f4c56af267c7f564f07340f308055ae415903a3a28660386fc55893d5cc1d012d012a3
|
|
7
|
+
data.tar.gz: a0a4f75de7f0982de43842f48eea72278d16ca1fbf50bd97f4b139d33841ca3e3c98548e93075c4f0da826b06e386e24ea003b90ca8ca9665123dc955f12d6f7
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1205
|
data/lib/v20200217/models.rb
CHANGED
|
@@ -2336,8 +2336,6 @@ module TencentCloud
|
|
|
2336
2336
|
# @type Name: String
|
|
2337
2337
|
# @param Spec: 集群规格,支持规格有 1.通用型:rocket-vip-basic-0; 2.基础型:rocket-vip-basic-1; 3.标准型:rocket-vip-basic-2; 4.高阶Ⅰ型:rocket-vip-basic-3; 5.高阶Ⅱ型:rocket-vip-basic-4
|
|
2338
2338
|
# @type Spec: String
|
|
2339
|
-
# @param NodeCount: 节点数量,最小2,最大20
|
|
2340
|
-
# @type NodeCount: Integer
|
|
2341
2339
|
# @param StorageSize: 单节点存储空间,GB为单位,最低200GB
|
|
2342
2340
|
# @type StorageSize: Integer
|
|
2343
2341
|
# @param ZoneIds: 节点部署的区域ID列表,如广州一区,则是100001,具体可查询腾讯云官网
|
|
@@ -2346,6 +2344,10 @@ module TencentCloud
|
|
|
2346
2344
|
# @type VpcInfo: :class:`Tencentcloud::Tdmq.v20200217.models.VpcInfo`
|
|
2347
2345
|
# @param TimeSpan: 购买时长,月为单位
|
|
2348
2346
|
# @type TimeSpan: Integer
|
|
2347
|
+
# @param NodeCount: 节点数量,创建专享集群时必填
|
|
2348
|
+
# @type NodeCount: Integer
|
|
2349
|
+
# @param GeneralSkuCode: 通用集群规格标识,新购通用集群时必填,从 [DescribeRocketMQGeneralSKUs](https://cloud.tencent.com/document/api/1179/127066) 接口返回的 [GeneralSKU](https://cloud.tencent.com/document/api/1179/46089#GeneralSKU) 字段获取。
|
|
2350
|
+
# @type GeneralSkuCode: String
|
|
2349
2351
|
# @param SupportsMigrateToCloud: 是否用于迁移上云,默认为false
|
|
2350
2352
|
# @type SupportsMigrateToCloud: Boolean
|
|
2351
2353
|
# @param EnablePublic: 是否开启公网
|
|
@@ -2357,16 +2359,17 @@ module TencentCloud
|
|
|
2357
2359
|
# @param Tags: 标签
|
|
2358
2360
|
# @type Tags: Array
|
|
2359
2361
|
|
|
2360
|
-
attr_accessor :Name, :Spec, :
|
|
2362
|
+
attr_accessor :Name, :Spec, :StorageSize, :ZoneIds, :VpcInfo, :TimeSpan, :NodeCount, :GeneralSkuCode, :SupportsMigrateToCloud, :EnablePublic, :Bandwidth, :IpRules, :Tags
|
|
2361
2363
|
|
|
2362
|
-
def initialize(name=nil, spec=nil,
|
|
2364
|
+
def initialize(name=nil, spec=nil, storagesize=nil, zoneids=nil, vpcinfo=nil, timespan=nil, nodecount=nil, generalskucode=nil, supportsmigratetocloud=nil, enablepublic=nil, bandwidth=nil, iprules=nil, tags=nil)
|
|
2363
2365
|
@Name = name
|
|
2364
2366
|
@Spec = spec
|
|
2365
|
-
@NodeCount = nodecount
|
|
2366
2367
|
@StorageSize = storagesize
|
|
2367
2368
|
@ZoneIds = zoneids
|
|
2368
2369
|
@VpcInfo = vpcinfo
|
|
2369
2370
|
@TimeSpan = timespan
|
|
2371
|
+
@NodeCount = nodecount
|
|
2372
|
+
@GeneralSkuCode = generalskucode
|
|
2370
2373
|
@SupportsMigrateToCloud = supportsmigratetocloud
|
|
2371
2374
|
@EnablePublic = enablepublic
|
|
2372
2375
|
@Bandwidth = bandwidth
|
|
@@ -2377,7 +2380,6 @@ module TencentCloud
|
|
|
2377
2380
|
def deserialize(params)
|
|
2378
2381
|
@Name = params['Name']
|
|
2379
2382
|
@Spec = params['Spec']
|
|
2380
|
-
@NodeCount = params['NodeCount']
|
|
2381
2383
|
@StorageSize = params['StorageSize']
|
|
2382
2384
|
@ZoneIds = params['ZoneIds']
|
|
2383
2385
|
unless params['VpcInfo'].nil?
|
|
@@ -2385,6 +2387,8 @@ module TencentCloud
|
|
|
2385
2387
|
@VpcInfo.deserialize(params['VpcInfo'])
|
|
2386
2388
|
end
|
|
2387
2389
|
@TimeSpan = params['TimeSpan']
|
|
2390
|
+
@NodeCount = params['NodeCount']
|
|
2391
|
+
@GeneralSkuCode = params['GeneralSkuCode']
|
|
2388
2392
|
@SupportsMigrateToCloud = params['SupportsMigrateToCloud']
|
|
2389
2393
|
@EnablePublic = params['EnablePublic']
|
|
2390
2394
|
@Bandwidth = params['Bandwidth']
|
|
@@ -12734,10 +12738,15 @@ module TencentCloud
|
|
|
12734
12738
|
# @type TopicNumUpperLimit: Integer
|
|
12735
12739
|
# @param SendReceiveRatio: 控制生产和消费消息的 TPS 占比,取值范围0~1,默认值为0.5
|
|
12736
12740
|
# @type SendReceiveRatio: Float
|
|
12741
|
+
# @param TpsLimit: 收发 TPS 峰值上限
|
|
12742
|
+
# @type TpsLimit: Integer
|
|
12743
|
+
# @param GeneralSkuCode: 通用集群规格
|
|
12744
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
12745
|
+
# @type GeneralSkuCode: String
|
|
12737
12746
|
|
|
12738
|
-
attr_accessor :MaxTpsPerNamespace, :MaxNamespaceNum, :UsedNamespaceNum, :MaxTopicNum, :UsedTopicNum, :MaxGroupNum, :UsedGroupNum, :ConfigDisplay, :NodeCount, :NodeDistribution, :TopicDistribution, :MaxQueuesPerTopic, :MaxRetention, :MinRetention, :Retention, :TopicNumLowerLimit, :TopicNumUpperLimit, :SendReceiveRatio
|
|
12747
|
+
attr_accessor :MaxTpsPerNamespace, :MaxNamespaceNum, :UsedNamespaceNum, :MaxTopicNum, :UsedTopicNum, :MaxGroupNum, :UsedGroupNum, :ConfigDisplay, :NodeCount, :NodeDistribution, :TopicDistribution, :MaxQueuesPerTopic, :MaxRetention, :MinRetention, :Retention, :TopicNumLowerLimit, :TopicNumUpperLimit, :SendReceiveRatio, :TpsLimit, :GeneralSkuCode
|
|
12739
12748
|
|
|
12740
|
-
def initialize(maxtpspernamespace=nil, maxnamespacenum=nil, usednamespacenum=nil, maxtopicnum=nil, usedtopicnum=nil, maxgroupnum=nil, usedgroupnum=nil, configdisplay=nil, nodecount=nil, nodedistribution=nil, topicdistribution=nil, maxqueuespertopic=nil, maxretention=nil, minretention=nil, retention=nil, topicnumlowerlimit=nil, topicnumupperlimit=nil, sendreceiveratio=nil)
|
|
12749
|
+
def initialize(maxtpspernamespace=nil, maxnamespacenum=nil, usednamespacenum=nil, maxtopicnum=nil, usedtopicnum=nil, maxgroupnum=nil, usedgroupnum=nil, configdisplay=nil, nodecount=nil, nodedistribution=nil, topicdistribution=nil, maxqueuespertopic=nil, maxretention=nil, minretention=nil, retention=nil, topicnumlowerlimit=nil, topicnumupperlimit=nil, sendreceiveratio=nil, tpslimit=nil, generalskucode=nil)
|
|
12741
12750
|
@MaxTpsPerNamespace = maxtpspernamespace
|
|
12742
12751
|
@MaxNamespaceNum = maxnamespacenum
|
|
12743
12752
|
@UsedNamespaceNum = usednamespacenum
|
|
@@ -12756,6 +12765,8 @@ module TencentCloud
|
|
|
12756
12765
|
@TopicNumLowerLimit = topicnumlowerlimit
|
|
12757
12766
|
@TopicNumUpperLimit = topicnumupperlimit
|
|
12758
12767
|
@SendReceiveRatio = sendreceiveratio
|
|
12768
|
+
@TpsLimit = tpslimit
|
|
12769
|
+
@GeneralSkuCode = generalskucode
|
|
12759
12770
|
end
|
|
12760
12771
|
|
|
12761
12772
|
def deserialize(params)
|
|
@@ -12791,6 +12802,8 @@ module TencentCloud
|
|
|
12791
12802
|
@TopicNumLowerLimit = params['TopicNumLowerLimit']
|
|
12792
12803
|
@TopicNumUpperLimit = params['TopicNumUpperLimit']
|
|
12793
12804
|
@SendReceiveRatio = params['SendReceiveRatio']
|
|
12805
|
+
@TpsLimit = params['TpsLimit']
|
|
12806
|
+
@GeneralSkuCode = params['GeneralSkuCode']
|
|
12794
12807
|
end
|
|
12795
12808
|
end
|
|
12796
12809
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-tdmq
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1205
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-01-
|
|
11
|
+
date: 2026-01-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|