tencentcloud-sdk-tdmq 1.0.219 → 1.0.223

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20200217/models.rb +13 -5
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bb9b0dae0d5634fcc1a618642c9a57ced5cd86b7
4
- data.tar.gz: 35b76d759d7da30c26ea0fdab50432cbd4ba49d9
3
+ metadata.gz: 9a4bcd0df46bfdf311669d234de7ba5ba50b6f66
4
+ data.tar.gz: 19e021b0be0211688755abfac3e38a85e0345fcc
5
5
  SHA512:
6
- metadata.gz: 773360a9d5e60e5429a189dea84e970f033e5fee837b1e9d5b32430bb36ad0d3790009b95f86eedd2efe5ce093c1049752777ac881bae3cc9a52603a8722a97e
7
- data.tar.gz: 1d6bd50416803667a3716743ce000f47d4c980b2689e12512d2e479e7d4218557e746978a2906330dbfffdebaa0eee8674a80932b272cff163f9a3183f3ffe86
6
+ metadata.gz: 409d7c148c050e087b2cf8e400b4bab26484b5755d8e58fea9e6db57bfadcd80106e8c61227bb27521cd82a677611e81b48eea91ea1cd33778b1a9b3aec4770b
7
+ data.tar.gz: ab5a018827ebe0b274bfb5ac9aabc2513f994c0fe56d58a14492ce9b0da6436ec3548bb593946913a528d763d95d6a09a64d89fe024bf9da6f2d215ec78bfa7f
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.219
1
+ 1.0.223
@@ -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, Transaction
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.219
4
+ version: 1.0.223
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-08 00:00:00.000000000 Z
11
+ date: 2021-12-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common