tencentcloud-sdk-tdmq 1.0.220 → 1.0.224
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 +13 -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: 0631748d5db17d4ab59b4fc6b1b5aa34ecc1dd7f
|
4
|
+
data.tar.gz: dbd2fd67fc3cd111b51b0d708b82fb7ca373c6d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ec44870a0f2b6d4e05e75f6402beb1637ceed1ddde3bd45b72bd9606922a7f5400c17ad2a3bce12b22c1c95083c1081267a4a2158a3ec1003ff4b08b5a8ae56
|
7
|
+
data.tar.gz: 22fee9a313d970a87c102c4f33a57a6376bb2fb3019eec6b1ff282616af0cca1db9cb4d58bb9752a4bedef92d1f4f93092de0ce60f441de321b03b8e5805567a
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.224
|
data/lib/v20200217/models.rb
CHANGED
@@ -1951,21 +1951,24 @@ module TencentCloud
|
|
1951
1951
|
# @type Topic: String
|
1952
1952
|
# @param Namespaces: 主题所在的命名空间,目前支持在单个命名空间下创建主题
|
1953
1953
|
# @type Namespaces: Array
|
1954
|
-
# @param Type: 主题类型,可选值为Normal, GlobalOrder, PartitionedOrder
|
1954
|
+
# @param Type: 主题类型,可选值为Normal, GlobalOrder, PartitionedOrder
|
1955
1955
|
# @type Type: String
|
1956
1956
|
# @param ClusterId: 集群ID
|
1957
1957
|
# @type ClusterId: String
|
1958
1958
|
# @param Remark: 主题说明,最大128个字符
|
1959
1959
|
# @type Remark: String
|
1960
|
+
# @param PartitionNum: 分区数,全局顺序无效
|
1961
|
+
# @type PartitionNum: Integer
|
1960
1962
|
|
1961
|
-
attr_accessor :Topic, :Namespaces, :Type, :ClusterId, :Remark
|
1963
|
+
attr_accessor :Topic, :Namespaces, :Type, :ClusterId, :Remark, :PartitionNum
|
1962
1964
|
|
1963
|
-
def initialize(topic=nil, namespaces=nil, type=nil, clusterid=nil, remark=nil)
|
1965
|
+
def initialize(topic=nil, namespaces=nil, type=nil, clusterid=nil, remark=nil, partitionnum=nil)
|
1964
1966
|
@Topic = topic
|
1965
1967
|
@Namespaces = namespaces
|
1966
1968
|
@Type = type
|
1967
1969
|
@ClusterId = clusterid
|
1968
1970
|
@Remark = remark
|
1971
|
+
@PartitionNum = partitionnum
|
1969
1972
|
end
|
1970
1973
|
|
1971
1974
|
def deserialize(params)
|
@@ -1974,6 +1977,7 @@ module TencentCloud
|
|
1974
1977
|
@Type = params['Type']
|
1975
1978
|
@ClusterId = params['ClusterId']
|
1976
1979
|
@Remark = params['Remark']
|
1980
|
+
@PartitionNum = params['PartitionNum']
|
1977
1981
|
end
|
1978
1982
|
end
|
1979
1983
|
|
@@ -5878,14 +5882,17 @@ module TencentCloud
|
|
5878
5882
|
# @type Topic: String
|
5879
5883
|
# @param Remark: 说明信息,最大128个字符
|
5880
5884
|
# @type Remark: String
|
5885
|
+
# @param PartitionNum: 分区数,全局类型无效,不可小于当前分区数
|
5886
|
+
# @type PartitionNum: Integer
|
5881
5887
|
|
5882
|
-
attr_accessor :ClusterId, :NamespaceId, :Topic, :Remark
|
5888
|
+
attr_accessor :ClusterId, :NamespaceId, :Topic, :Remark, :PartitionNum
|
5883
5889
|
|
5884
|
-
def initialize(clusterid=nil, namespaceid=nil, topic=nil, remark=nil)
|
5890
|
+
def initialize(clusterid=nil, namespaceid=nil, topic=nil, remark=nil, partitionnum=nil)
|
5885
5891
|
@ClusterId = clusterid
|
5886
5892
|
@NamespaceId = namespaceid
|
5887
5893
|
@Topic = topic
|
5888
5894
|
@Remark = remark
|
5895
|
+
@PartitionNum = partitionnum
|
5889
5896
|
end
|
5890
5897
|
|
5891
5898
|
def deserialize(params)
|
@@ -5893,6 +5900,7 @@ module TencentCloud
|
|
5893
5900
|
@NamespaceId = params['NamespaceId']
|
5894
5901
|
@Topic = params['Topic']
|
5895
5902
|
@Remark = params['Remark']
|
5903
|
+
@PartitionNum = params['PartitionNum']
|
5896
5904
|
end
|
5897
5905
|
end
|
5898
5906
|
|
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: 1.0.
|
4
|
+
version: 1.0.224
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-12-
|
11
|
+
date: 2021-12-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|