tencentcloud-sdk-tdmq 3.0.1094 → 3.0.1099

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 +12 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 06a530e72f233b13e6d2adc6b697336509bff5a8
4
- data.tar.gz: e96bc84188b107492318bc636eee581b07993eec
3
+ metadata.gz: 6760a6dca4661bf41ba469af95b0873730556759
4
+ data.tar.gz: 57435bd89d48afe0e69a39b1e1338fc311a37a0d
5
5
  SHA512:
6
- metadata.gz: bd048dd749e77d617490ecc32925406d5638108ff1a12ab2c8393f89b5712851917cfbbe4d0bc8e8e12233eaf343dfb2d2d621c256621f7125402b730dbbaac1
7
- data.tar.gz: 1b239f4f343bf7d655c6ed852e16b5174fecdf6e16041060292aa14410042504e5fd682ff17e4ed4d8faa1d84d7f6b0172a1b52705c5be154719cc86e60f3563
6
+ metadata.gz: febed5e1e492c22317719c214cee4d4e8fd7d83ea2043bccac5f37ba241459efcaf3c89fbcf79080a2077a853ec512e45981494cd7f916527ff7713d2eb89776
7
+ data.tar.gz: 2d17c4caa9c5203eedeeb9cd73129434355e27f18c8919d90f8b21cc3854ba6da38790520f6ab187265a4001a4cb9deb980937a37c2605f7e95060eda1bd9b66
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1094
1
+ 3.0.1099
@@ -4567,10 +4567,12 @@ module TencentCloud
4567
4567
  # @type Bundle: String
4568
4568
  # @param OwnerBroker: bundle 所属的 broker IP 地址,支持模糊查询
4569
4569
  # @type OwnerBroker: String
4570
+ # @param Tenant: 租户(如果没有自定义租户名称,和 tenantId 相同;如果有配置自定义租户名称,则为自定义租户名 user_tenant)
4571
+ # @type Tenant: String
4570
4572
 
4571
- attr_accessor :ClusterName, :TenantId, :NamespaceName, :NeedMetrics, :Limit, :Offset, :Bundle, :OwnerBroker
4573
+ attr_accessor :ClusterName, :TenantId, :NamespaceName, :NeedMetrics, :Limit, :Offset, :Bundle, :OwnerBroker, :Tenant
4572
4574
 
4573
- def initialize(clustername=nil, tenantid=nil, namespacename=nil, needmetrics=nil, limit=nil, offset=nil, bundle=nil, ownerbroker=nil)
4575
+ def initialize(clustername=nil, tenantid=nil, namespacename=nil, needmetrics=nil, limit=nil, offset=nil, bundle=nil, ownerbroker=nil, tenant=nil)
4574
4576
  @ClusterName = clustername
4575
4577
  @TenantId = tenantid
4576
4578
  @NamespaceName = namespacename
@@ -4579,6 +4581,7 @@ module TencentCloud
4579
4581
  @Offset = offset
4580
4582
  @Bundle = bundle
4581
4583
  @OwnerBroker = ownerbroker
4584
+ @Tenant = tenant
4582
4585
  end
4583
4586
 
4584
4587
  def deserialize(params)
@@ -4590,6 +4593,7 @@ module TencentCloud
4590
4593
  @Offset = params['Offset']
4591
4594
  @Bundle = params['Bundle']
4592
4595
  @OwnerBroker = params['OwnerBroker']
4596
+ @Tenant = params['Tenant']
4593
4597
  end
4594
4598
  end
4595
4599
 
@@ -10287,10 +10291,12 @@ module TencentCloud
10287
10291
  # @type DefaultPartitionNumber: Integer
10288
10292
  # @param Tenant: 用户自定义的租户别名,如果没有,会复用专业集群 ID
10289
10293
  # @type Tenant: String
10294
+ # @param DeleteProtection: 删除保护开关标识
10295
+ # @type DeleteProtection: Integer
10290
10296
 
10291
- attr_accessor :ClusterId, :ClusterName, :Remark, :CreateTime, :Status, :Version, :NodeDistribution, :MaxStorage, :CanEditRoute, :BillingLabelVersion, :ExpireTime, :AutoCreateTopicStatus, :DefaultPartitionNumber, :Tenant
10297
+ attr_accessor :ClusterId, :ClusterName, :Remark, :CreateTime, :Status, :Version, :NodeDistribution, :MaxStorage, :CanEditRoute, :BillingLabelVersion, :ExpireTime, :AutoCreateTopicStatus, :DefaultPartitionNumber, :Tenant, :DeleteProtection
10292
10298
 
10293
- def initialize(clusterid=nil, clustername=nil, remark=nil, createtime=nil, status=nil, version=nil, nodedistribution=nil, maxstorage=nil, caneditroute=nil, billinglabelversion=nil, expiretime=nil, autocreatetopicstatus=nil, defaultpartitionnumber=nil, tenant=nil)
10299
+ def initialize(clusterid=nil, clustername=nil, remark=nil, createtime=nil, status=nil, version=nil, nodedistribution=nil, maxstorage=nil, caneditroute=nil, billinglabelversion=nil, expiretime=nil, autocreatetopicstatus=nil, defaultpartitionnumber=nil, tenant=nil, deleteprotection=nil)
10294
10300
  @ClusterId = clusterid
10295
10301
  @ClusterName = clustername
10296
10302
  @Remark = remark
@@ -10305,6 +10311,7 @@ module TencentCloud
10305
10311
  @AutoCreateTopicStatus = autocreatetopicstatus
10306
10312
  @DefaultPartitionNumber = defaultpartitionnumber
10307
10313
  @Tenant = tenant
10314
+ @DeleteProtection = deleteprotection
10308
10315
  end
10309
10316
 
10310
10317
  def deserialize(params)
@@ -10329,6 +10336,7 @@ module TencentCloud
10329
10336
  @AutoCreateTopicStatus = params['AutoCreateTopicStatus']
10330
10337
  @DefaultPartitionNumber = params['DefaultPartitionNumber']
10331
10338
  @Tenant = params['Tenant']
10339
+ @DeleteProtection = params['DeleteProtection']
10332
10340
  end
10333
10341
  end
10334
10342
 
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.1094
4
+ version: 3.0.1099
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-07-05 00:00:00.000000000 Z
11
+ date: 2025-07-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common