tencentcloud-sdk-tdmq 3.0.704 → 3.0.706
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20200217/models.rb +19 -4
- 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: 8b8920179a47bd91c69ef53c8ffaf4e3f0a5881c
|
4
|
+
data.tar.gz: 70007c70cbbdc4a2343d9783fcd889df3a9912aa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d884ea8706c52ab1b7026927bbc8f8fe76476dd076d8cc9375d30c66ac62cf4f0a5709de2fc1c77c5649d41996400576405f9b91767871659117b92d2ecac9b
|
7
|
+
data.tar.gz: 7f3969341a47f620699e361ef293953a6739a9285425f5df4ffa0eb2869becf85efe5ec554b70914d6e4f93d0dec25b7c76f09fa061d2c2b8a92cccd86469741
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.706
|
data/lib/v20200217/models.rb
CHANGED
@@ -10355,10 +10355,13 @@ module TencentCloud
|
|
10355
10355
|
# @param MaxRetryTimes: 最大重试次数
|
10356
10356
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10357
10357
|
# @type MaxRetryTimes: Integer
|
10358
|
+
# @param ClientProtocol: 协议类型
|
10359
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10360
|
+
# @type ClientProtocol: String
|
10358
10361
|
|
10359
|
-
attr_accessor :Topic, :Type, :PartitionNum, :ExpressionType, :SubString, :Status, :ConsumerLag, :ClusterId, :ConsumerGroup, :IsOnline, :ConsumeType, :Consistency, :LastUpdateTime, :MaxRetryTimes
|
10362
|
+
attr_accessor :Topic, :Type, :PartitionNum, :ExpressionType, :SubString, :Status, :ConsumerLag, :ClusterId, :ConsumerGroup, :IsOnline, :ConsumeType, :Consistency, :LastUpdateTime, :MaxRetryTimes, :ClientProtocol
|
10360
10363
|
|
10361
|
-
def initialize(topic=nil, type=nil, partitionnum=nil, expressiontype=nil, substring=nil, status=nil, consumerlag=nil, clusterid=nil, consumergroup=nil, isonline=nil, consumetype=nil, consistency=nil, lastupdatetime=nil, maxretrytimes=nil)
|
10364
|
+
def initialize(topic=nil, type=nil, partitionnum=nil, expressiontype=nil, substring=nil, status=nil, consumerlag=nil, clusterid=nil, consumergroup=nil, isonline=nil, consumetype=nil, consistency=nil, lastupdatetime=nil, maxretrytimes=nil, clientprotocol=nil)
|
10362
10365
|
@Topic = topic
|
10363
10366
|
@Type = type
|
10364
10367
|
@PartitionNum = partitionnum
|
@@ -10373,6 +10376,7 @@ module TencentCloud
|
|
10373
10376
|
@Consistency = consistency
|
10374
10377
|
@LastUpdateTime = lastupdatetime
|
10375
10378
|
@MaxRetryTimes = maxretrytimes
|
10379
|
+
@ClientProtocol = clientprotocol
|
10376
10380
|
end
|
10377
10381
|
|
10378
10382
|
def deserialize(params)
|
@@ -10390,6 +10394,7 @@ module TencentCloud
|
|
10390
10394
|
@Consistency = params['Consistency']
|
10391
10395
|
@LastUpdateTime = params['LastUpdateTime']
|
10392
10396
|
@MaxRetryTimes = params['MaxRetryTimes']
|
10397
|
+
@ClientProtocol = params['ClientProtocol']
|
10393
10398
|
end
|
10394
10399
|
end
|
10395
10400
|
|
@@ -10600,10 +10605,16 @@ module TencentCloud
|
|
10600
10605
|
# @param Retention: 实例消息保留时间,小时为单位
|
10601
10606
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10602
10607
|
# @type Retention: Integer
|
10608
|
+
# @param AclEnabled: 是否开启ACL鉴权
|
10609
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10610
|
+
# @type AclEnabled: Boolean
|
10611
|
+
# @param DestroyTime: 销毁时间
|
10612
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10613
|
+
# @type DestroyTime: Integer
|
10603
10614
|
|
10604
|
-
attr_accessor :InstanceId, :InstanceName, :InstanceVersion, :Status, :NodeCount, :ConfigDisplay, :MaxTps, :MaxBandWidth, :MaxStorage, :ExpireTime, :AutoRenewFlag, :PayMode, :Remark, :SpecName, :MaxRetention, :MinRetention, :Retention
|
10615
|
+
attr_accessor :InstanceId, :InstanceName, :InstanceVersion, :Status, :NodeCount, :ConfigDisplay, :MaxTps, :MaxBandWidth, :MaxStorage, :ExpireTime, :AutoRenewFlag, :PayMode, :Remark, :SpecName, :MaxRetention, :MinRetention, :Retention, :AclEnabled, :DestroyTime
|
10605
10616
|
|
10606
|
-
def initialize(instanceid=nil, instancename=nil, instanceversion=nil, status=nil, nodecount=nil, configdisplay=nil, maxtps=nil, maxbandwidth=nil, maxstorage=nil, expiretime=nil, autorenewflag=nil, paymode=nil, remark=nil, specname=nil, maxretention=nil, minretention=nil, retention=nil)
|
10617
|
+
def initialize(instanceid=nil, instancename=nil, instanceversion=nil, status=nil, nodecount=nil, configdisplay=nil, maxtps=nil, maxbandwidth=nil, maxstorage=nil, expiretime=nil, autorenewflag=nil, paymode=nil, remark=nil, specname=nil, maxretention=nil, minretention=nil, retention=nil, aclenabled=nil, destroytime=nil)
|
10607
10618
|
@InstanceId = instanceid
|
10608
10619
|
@InstanceName = instancename
|
10609
10620
|
@InstanceVersion = instanceversion
|
@@ -10621,6 +10632,8 @@ module TencentCloud
|
|
10621
10632
|
@MaxRetention = maxretention
|
10622
10633
|
@MinRetention = minretention
|
10623
10634
|
@Retention = retention
|
10635
|
+
@AclEnabled = aclenabled
|
10636
|
+
@DestroyTime = destroytime
|
10624
10637
|
end
|
10625
10638
|
|
10626
10639
|
def deserialize(params)
|
@@ -10641,6 +10654,8 @@ module TencentCloud
|
|
10641
10654
|
@MaxRetention = params['MaxRetention']
|
10642
10655
|
@MinRetention = params['MinRetention']
|
10643
10656
|
@Retention = params['Retention']
|
10657
|
+
@AclEnabled = params['AclEnabled']
|
10658
|
+
@DestroyTime = params['DestroyTime']
|
10644
10659
|
end
|
10645
10660
|
end
|
10646
10661
|
|
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.706
|
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-11-
|
11
|
+
date: 2023-11-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|