tencentcloud-sdk-trocket 3.0.1053 → 3.0.1055
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/v20230308/client.rb +0 -1
- data/lib/v20230308/models.rb +85 -16
- 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: fc086087e17bd684bf02d452e31d86fb09a6e318
|
4
|
+
data.tar.gz: a57e7fb204a5c6ac6adcf4679fd249751961087b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 593374d514c8686e62c7983fe8f62a11874214b73cdb46c370398e04da21e9612c63bb2050b38592390122b9bd77864ccc1d871dce89b8ac081f2f33e6812587
|
7
|
+
data.tar.gz: 5821bdd404463e05ebee6c9d02fd47d1d54a3b24ce952761431618c4d1efd155565b4920bab509b0e39f57498cd8b3f97357a8b1feee056d249b934d4e0e0416
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1055
|
data/lib/v20230308/client.rb
CHANGED
@@ -565,7 +565,6 @@ module TencentCloud
|
|
565
565
|
# 2. InstanceId,集群ID查询
|
566
566
|
# 3. InstanceType, 集群类型查询,支持多选
|
567
567
|
# 4. Version,集群版本查询
|
568
|
-
# 当使用TagFilters查询时,Filters参数失效。
|
569
568
|
|
570
569
|
# @param request: Request instance for DescribeFusionInstanceList.
|
571
570
|
# @type request: :class:`Tencentcloud::trocket::V20230308::DescribeFusionInstanceListRequest`
|
data/lib/v20230308/models.rb
CHANGED
@@ -68,6 +68,38 @@ module TencentCloud
|
|
68
68
|
end
|
69
69
|
end
|
70
70
|
|
71
|
+
# 客户端订阅详情,可用于辅助判断哪些客户端订阅关系不一致
|
72
|
+
class ClientSubscriptionInfo < TencentCloud::Common::AbstractModel
|
73
|
+
# @param ClientId: 客户端ID
|
74
|
+
# @type ClientId: String
|
75
|
+
# @param ClientAddr: 客户端地址
|
76
|
+
# @type ClientAddr: String
|
77
|
+
# @param Topic: 订阅主题
|
78
|
+
# @type Topic: String
|
79
|
+
# @param SubString: 订阅表达式
|
80
|
+
# @type SubString: String
|
81
|
+
# @param ExpressionType: 订阅方式
|
82
|
+
# @type ExpressionType: String
|
83
|
+
|
84
|
+
attr_accessor :ClientId, :ClientAddr, :Topic, :SubString, :ExpressionType
|
85
|
+
|
86
|
+
def initialize(clientid=nil, clientaddr=nil, topic=nil, substring=nil, expressiontype=nil)
|
87
|
+
@ClientId = clientid
|
88
|
+
@ClientAddr = clientaddr
|
89
|
+
@Topic = topic
|
90
|
+
@SubString = substring
|
91
|
+
@ExpressionType = expressiontype
|
92
|
+
end
|
93
|
+
|
94
|
+
def deserialize(params)
|
95
|
+
@ClientId = params['ClientId']
|
96
|
+
@ClientAddr = params['ClientAddr']
|
97
|
+
@Topic = params['Topic']
|
98
|
+
@SubString = params['SubString']
|
99
|
+
@ExpressionType = params['ExpressionType']
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
71
103
|
# 消费组信息
|
72
104
|
class ConsumeGroupItem < TencentCloud::Common::AbstractModel
|
73
105
|
# @param InstanceId: 实例ID
|
@@ -177,16 +209,19 @@ module TencentCloud
|
|
177
209
|
# @type ConsumerGroup: String
|
178
210
|
# @param Remark: 备注
|
179
211
|
# @type Remark: String
|
212
|
+
# @param TagList: 标签列表
|
213
|
+
# @type TagList: Array
|
180
214
|
|
181
|
-
attr_accessor :InstanceId, :MaxRetryTimes, :ConsumeEnable, :ConsumeMessageOrderly, :ConsumerGroup, :Remark
|
215
|
+
attr_accessor :InstanceId, :MaxRetryTimes, :ConsumeEnable, :ConsumeMessageOrderly, :ConsumerGroup, :Remark, :TagList
|
182
216
|
|
183
|
-
def initialize(instanceid=nil, maxretrytimes=nil, consumeenable=nil, consumemessageorderly=nil, consumergroup=nil, remark=nil)
|
217
|
+
def initialize(instanceid=nil, maxretrytimes=nil, consumeenable=nil, consumemessageorderly=nil, consumergroup=nil, remark=nil, taglist=nil)
|
184
218
|
@InstanceId = instanceid
|
185
219
|
@MaxRetryTimes = maxretrytimes
|
186
220
|
@ConsumeEnable = consumeenable
|
187
221
|
@ConsumeMessageOrderly = consumemessageorderly
|
188
222
|
@ConsumerGroup = consumergroup
|
189
223
|
@Remark = remark
|
224
|
+
@TagList = taglist
|
190
225
|
end
|
191
226
|
|
192
227
|
def deserialize(params)
|
@@ -196,6 +231,14 @@ module TencentCloud
|
|
196
231
|
@ConsumeMessageOrderly = params['ConsumeMessageOrderly']
|
197
232
|
@ConsumerGroup = params['ConsumerGroup']
|
198
233
|
@Remark = params['Remark']
|
234
|
+
unless params['TagList'].nil?
|
235
|
+
@TagList = []
|
236
|
+
params['TagList'].each do |i|
|
237
|
+
tag_tmp = Tag.new
|
238
|
+
tag_tmp.deserialize(i)
|
239
|
+
@TagList << tag_tmp
|
240
|
+
end
|
241
|
+
end
|
199
242
|
end
|
200
243
|
end
|
201
244
|
|
@@ -679,16 +722,19 @@ module TencentCloud
|
|
679
722
|
# @type Remark: String
|
680
723
|
# @param MsgTTL: 消息保留时长
|
681
724
|
# @type MsgTTL: Integer
|
725
|
+
# @param TagList: 标签列表
|
726
|
+
# @type TagList: Array
|
682
727
|
|
683
|
-
attr_accessor :InstanceId, :Topic, :TopicType, :QueueNum, :Remark, :MsgTTL
|
728
|
+
attr_accessor :InstanceId, :Topic, :TopicType, :QueueNum, :Remark, :MsgTTL, :TagList
|
684
729
|
|
685
|
-
def initialize(instanceid=nil, topic=nil, topictype=nil, queuenum=nil, remark=nil, msgttl=nil)
|
730
|
+
def initialize(instanceid=nil, topic=nil, topictype=nil, queuenum=nil, remark=nil, msgttl=nil, taglist=nil)
|
686
731
|
@InstanceId = instanceid
|
687
732
|
@Topic = topic
|
688
733
|
@TopicType = topictype
|
689
734
|
@QueueNum = queuenum
|
690
735
|
@Remark = remark
|
691
736
|
@MsgTTL = msgttl
|
737
|
+
@TagList = taglist
|
692
738
|
end
|
693
739
|
|
694
740
|
def deserialize(params)
|
@@ -698,6 +744,14 @@ module TencentCloud
|
|
698
744
|
@QueueNum = params['QueueNum']
|
699
745
|
@Remark = params['Remark']
|
700
746
|
@MsgTTL = params['MsgTTL']
|
747
|
+
unless params['TagList'].nil?
|
748
|
+
@TagList = []
|
749
|
+
params['TagList'].each do |i|
|
750
|
+
tag_tmp = Tag.new
|
751
|
+
tag_tmp.deserialize(i)
|
752
|
+
@TagList << tag_tmp
|
753
|
+
end
|
754
|
+
end
|
701
755
|
end
|
702
756
|
end
|
703
757
|
|
@@ -1176,7 +1230,6 @@ module TencentCloud
|
|
1176
1230
|
# DescribeConsumerGroupList返回参数结构体
|
1177
1231
|
class DescribeConsumerGroupListResponse < TencentCloud::Common::AbstractModel
|
1178
1232
|
# @param TotalCount: 查询总数
|
1179
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1180
1233
|
# @type TotalCount: Integer
|
1181
1234
|
# @param Data: 消费组列表
|
1182
1235
|
# @type Data: Array
|
@@ -1377,7 +1430,6 @@ module TencentCloud
|
|
1377
1430
|
# DescribeFusionInstanceList返回参数结构体
|
1378
1431
|
class DescribeFusionInstanceListResponse < TencentCloud::Common::AbstractModel
|
1379
1432
|
# @param TotalCount: 查询总数
|
1380
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1381
1433
|
# @type TotalCount: Integer
|
1382
1434
|
# @param Data: 实例列表
|
1383
1435
|
# @type Data: Array
|
@@ -1451,7 +1503,6 @@ module TencentCloud
|
|
1451
1503
|
# DescribeInstanceList返回参数结构体
|
1452
1504
|
class DescribeInstanceListResponse < TencentCloud::Common::AbstractModel
|
1453
1505
|
# @param TotalCount: 查询总数
|
1454
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1455
1506
|
# @type TotalCount: Integer
|
1456
1507
|
# @param Data: 实例列表
|
1457
1508
|
# @type Data: Array
|
@@ -2514,7 +2565,6 @@ module TencentCloud
|
|
2514
2565
|
# DescribeMessageList返回参数结构体
|
2515
2566
|
class DescribeMessageListResponse < TencentCloud::Common::AbstractModel
|
2516
2567
|
# @param TotalCount: 查询总数
|
2517
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2518
2568
|
# @type TotalCount: Integer
|
2519
2569
|
# @param Data: 消息记录列表
|
2520
2570
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
@@ -2980,7 +3030,6 @@ module TencentCloud
|
|
2980
3030
|
# DescribeRoleList返回参数结构体
|
2981
3031
|
class DescribeRoleListResponse < TencentCloud::Common::AbstractModel
|
2982
3032
|
# @param TotalCount: 查询总数
|
2983
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2984
3033
|
# @type TotalCount: Integer
|
2985
3034
|
# @param Data: 角色信息列表
|
2986
3035
|
# @type Data: Array
|
@@ -3117,7 +3166,6 @@ module TencentCloud
|
|
3117
3166
|
# DescribeTopicListByGroup返回参数结构体
|
3118
3167
|
class DescribeTopicListByGroupResponse < TencentCloud::Common::AbstractModel
|
3119
3168
|
# @param TotalCount: 查询总数
|
3120
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
3121
3169
|
# @type TotalCount: Integer
|
3122
3170
|
# @param Data: 主题列表
|
3123
3171
|
# @type Data: Array
|
@@ -3566,10 +3614,13 @@ module TencentCloud
|
|
3566
3614
|
# @param DestroyTime: 预销毁时间
|
3567
3615
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3568
3616
|
# @type DestroyTime: Integer
|
3617
|
+
# @param ZoneIds: 所属可用区列表
|
3618
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3619
|
+
# @type ZoneIds: Array
|
3569
3620
|
|
3570
|
-
attr_accessor :InstanceId, :InstanceName, :Version, :InstanceType, :InstanceStatus, :TopicNumLimit, :GroupNumLimit, :PayMode, :ExpiryTime, :Remark, :TopicNum, :GroupNum, :TagList, :SkuCode, :TpsLimit, :ScaledTpsLimit, :MessageRetention, :MaxMessageDelay, :RenewFlag, :InstanceItemExtraInfo, :DestroyTime
|
3621
|
+
attr_accessor :InstanceId, :InstanceName, :Version, :InstanceType, :InstanceStatus, :TopicNumLimit, :GroupNumLimit, :PayMode, :ExpiryTime, :Remark, :TopicNum, :GroupNum, :TagList, :SkuCode, :TpsLimit, :ScaledTpsLimit, :MessageRetention, :MaxMessageDelay, :RenewFlag, :InstanceItemExtraInfo, :DestroyTime, :ZoneIds
|
3571
3622
|
|
3572
|
-
def initialize(instanceid=nil, instancename=nil, version=nil, instancetype=nil, instancestatus=nil, topicnumlimit=nil, groupnumlimit=nil, paymode=nil, expirytime=nil, remark=nil, topicnum=nil, groupnum=nil, taglist=nil, skucode=nil, tpslimit=nil, scaledtpslimit=nil, messageretention=nil, maxmessagedelay=nil, renewflag=nil, instanceitemextrainfo=nil, destroytime=nil)
|
3623
|
+
def initialize(instanceid=nil, instancename=nil, version=nil, instancetype=nil, instancestatus=nil, topicnumlimit=nil, groupnumlimit=nil, paymode=nil, expirytime=nil, remark=nil, topicnum=nil, groupnum=nil, taglist=nil, skucode=nil, tpslimit=nil, scaledtpslimit=nil, messageretention=nil, maxmessagedelay=nil, renewflag=nil, instanceitemextrainfo=nil, destroytime=nil, zoneids=nil)
|
3573
3624
|
@InstanceId = instanceid
|
3574
3625
|
@InstanceName = instancename
|
3575
3626
|
@Version = version
|
@@ -3591,6 +3642,7 @@ module TencentCloud
|
|
3591
3642
|
@RenewFlag = renewflag
|
3592
3643
|
@InstanceItemExtraInfo = instanceitemextrainfo
|
3593
3644
|
@DestroyTime = destroytime
|
3645
|
+
@ZoneIds = zoneids
|
3594
3646
|
end
|
3595
3647
|
|
3596
3648
|
def deserialize(params)
|
@@ -3625,6 +3677,7 @@ module TencentCloud
|
|
3625
3677
|
@InstanceItemExtraInfo.deserialize(params['InstanceItemExtraInfo'])
|
3626
3678
|
end
|
3627
3679
|
@DestroyTime = params['DestroyTime']
|
3680
|
+
@ZoneIds = params['ZoneIds']
|
3628
3681
|
end
|
3629
3682
|
end
|
3630
3683
|
|
@@ -3862,10 +3915,12 @@ module TencentCloud
|
|
3862
3915
|
# @param InstanceStatus: 4.0共享集群状态
|
3863
3916
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3864
3917
|
# @type InstanceStatus: Integer
|
3918
|
+
# @param IsFrozen: 是否已冻结
|
3919
|
+
# @type IsFrozen: Boolean
|
3865
3920
|
|
3866
|
-
attr_accessor :IsVip, :VipInstanceStatus, :MaxBandWidth, :SpecName, :NodeCount, :MaxStorage, :MaxRetention, :MinRetention, :InstanceStatus
|
3921
|
+
attr_accessor :IsVip, :VipInstanceStatus, :MaxBandWidth, :SpecName, :NodeCount, :MaxStorage, :MaxRetention, :MinRetention, :InstanceStatus, :IsFrozen
|
3867
3922
|
|
3868
|
-
def initialize(isvip=nil, vipinstancestatus=nil, maxbandwidth=nil, specname=nil, nodecount=nil, maxstorage=nil, maxretention=nil, minretention=nil, instancestatus=nil)
|
3923
|
+
def initialize(isvip=nil, vipinstancestatus=nil, maxbandwidth=nil, specname=nil, nodecount=nil, maxstorage=nil, maxretention=nil, minretention=nil, instancestatus=nil, isfrozen=nil)
|
3869
3924
|
@IsVip = isvip
|
3870
3925
|
@VipInstanceStatus = vipinstancestatus
|
3871
3926
|
@MaxBandWidth = maxbandwidth
|
@@ -3875,6 +3930,7 @@ module TencentCloud
|
|
3875
3930
|
@MaxRetention = maxretention
|
3876
3931
|
@MinRetention = minretention
|
3877
3932
|
@InstanceStatus = instancestatus
|
3933
|
+
@IsFrozen = isfrozen
|
3878
3934
|
end
|
3879
3935
|
|
3880
3936
|
def deserialize(params)
|
@@ -3887,6 +3943,7 @@ module TencentCloud
|
|
3887
3943
|
@MaxRetention = params['MaxRetention']
|
3888
3944
|
@MinRetention = params['MinRetention']
|
3889
3945
|
@InstanceStatus = params['InstanceStatus']
|
3946
|
+
@IsFrozen = params['IsFrozen']
|
3890
3947
|
end
|
3891
3948
|
end
|
3892
3949
|
|
@@ -5494,10 +5551,13 @@ module TencentCloud
|
|
5494
5551
|
# CLUSTERING 集群模式;
|
5495
5552
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5496
5553
|
# @type MessageModel: String
|
5554
|
+
# @param ClientSubscriptionInfos: 订阅不一致的客户端列表
|
5555
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5556
|
+
# @type ClientSubscriptionInfos: Array
|
5497
5557
|
|
5498
|
-
attr_accessor :InstanceId, :Topic, :TopicType, :TopicQueueNum, :ConsumerGroup, :IsOnline, :ConsumeType, :SubString, :ExpressionType, :Consistency, :ConsumerLag, :LastUpdateTime, :MaxRetryTimes, :ConsumeMessageOrderly, :MessageModel
|
5558
|
+
attr_accessor :InstanceId, :Topic, :TopicType, :TopicQueueNum, :ConsumerGroup, :IsOnline, :ConsumeType, :SubString, :ExpressionType, :Consistency, :ConsumerLag, :LastUpdateTime, :MaxRetryTimes, :ConsumeMessageOrderly, :MessageModel, :ClientSubscriptionInfos
|
5499
5559
|
|
5500
|
-
def initialize(instanceid=nil, topic=nil, topictype=nil, topicqueuenum=nil, consumergroup=nil, isonline=nil, consumetype=nil, substring=nil, expressiontype=nil, consistency=nil, consumerlag=nil, lastupdatetime=nil, maxretrytimes=nil, consumemessageorderly=nil, messagemodel=nil)
|
5560
|
+
def initialize(instanceid=nil, topic=nil, topictype=nil, topicqueuenum=nil, consumergroup=nil, isonline=nil, consumetype=nil, substring=nil, expressiontype=nil, consistency=nil, consumerlag=nil, lastupdatetime=nil, maxretrytimes=nil, consumemessageorderly=nil, messagemodel=nil, clientsubscriptioninfos=nil)
|
5501
5561
|
@InstanceId = instanceid
|
5502
5562
|
@Topic = topic
|
5503
5563
|
@TopicType = topictype
|
@@ -5513,6 +5573,7 @@ module TencentCloud
|
|
5513
5573
|
@MaxRetryTimes = maxretrytimes
|
5514
5574
|
@ConsumeMessageOrderly = consumemessageorderly
|
5515
5575
|
@MessageModel = messagemodel
|
5576
|
+
@ClientSubscriptionInfos = clientsubscriptioninfos
|
5516
5577
|
end
|
5517
5578
|
|
5518
5579
|
def deserialize(params)
|
@@ -5531,6 +5592,14 @@ module TencentCloud
|
|
5531
5592
|
@MaxRetryTimes = params['MaxRetryTimes']
|
5532
5593
|
@ConsumeMessageOrderly = params['ConsumeMessageOrderly']
|
5533
5594
|
@MessageModel = params['MessageModel']
|
5595
|
+
unless params['ClientSubscriptionInfos'].nil?
|
5596
|
+
@ClientSubscriptionInfos = []
|
5597
|
+
params['ClientSubscriptionInfos'].each do |i|
|
5598
|
+
clientsubscriptioninfo_tmp = ClientSubscriptionInfo.new
|
5599
|
+
clientsubscriptioninfo_tmp.deserialize(i)
|
5600
|
+
@ClientSubscriptionInfos << clientsubscriptioninfo_tmp
|
5601
|
+
end
|
5602
|
+
end
|
5534
5603
|
end
|
5535
5604
|
end
|
5536
5605
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-trocket
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1055
|
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-05-
|
11
|
+
date: 2025-05-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|