tencentcloud-sdk-trocket 3.0.1094 → 3.0.1118
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/models.rb +25 -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: f0d88e85d60da014e5cb293e93814f6547f376df
|
4
|
+
data.tar.gz: 8df42ebd0d64f6f9fb79030890663b61816624c9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 256f659450d70d29a87db02d885452e2a71a298e2282a6fa04ee93794e1b119bbeb322f7928a667734bae2348c12c363afa825301a8439fa8a31f4871db0680c
|
7
|
+
data.tar.gz: 9c222080db8f581b07b742188eb2210c607f1b9c0963deb03a3452e5e2d0afc73d1e907bad4637c91e89c36106e2a4414f6d42056940d0efc7b708ca398617e0
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1118
|
data/lib/v20230308/models.rb
CHANGED
@@ -127,10 +127,15 @@ module TencentCloud
|
|
127
127
|
# @param FullNamespaceV4: 4.x的完整命名空间
|
128
128
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
129
129
|
# @type FullNamespaceV4: String
|
130
|
+
# @param SubscribeTopicNum: 订阅的主题个数
|
131
|
+
# @type SubscribeTopicNum: Integer
|
132
|
+
# @param CreateTime: 1753153590
|
133
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
134
|
+
# @type CreateTime: Integer
|
130
135
|
|
131
|
-
attr_accessor :InstanceId, :ConsumerGroup, :ConsumeEnable, :ConsumeMessageOrderly, :MaxRetryTimes, :Remark, :ClusterIdV4, :NamespaceV4, :ConsumerGroupV4, :FullNamespaceV4
|
136
|
+
attr_accessor :InstanceId, :ConsumerGroup, :ConsumeEnable, :ConsumeMessageOrderly, :MaxRetryTimes, :Remark, :ClusterIdV4, :NamespaceV4, :ConsumerGroupV4, :FullNamespaceV4, :SubscribeTopicNum, :CreateTime
|
132
137
|
|
133
|
-
def initialize(instanceid=nil, consumergroup=nil, consumeenable=nil, consumemessageorderly=nil, maxretrytimes=nil, remark=nil, clusteridv4=nil, namespacev4=nil, consumergroupv4=nil, fullnamespacev4=nil)
|
138
|
+
def initialize(instanceid=nil, consumergroup=nil, consumeenable=nil, consumemessageorderly=nil, maxretrytimes=nil, remark=nil, clusteridv4=nil, namespacev4=nil, consumergroupv4=nil, fullnamespacev4=nil, subscribetopicnum=nil, createtime=nil)
|
134
139
|
@InstanceId = instanceid
|
135
140
|
@ConsumerGroup = consumergroup
|
136
141
|
@ConsumeEnable = consumeenable
|
@@ -141,6 +146,8 @@ module TencentCloud
|
|
141
146
|
@NamespaceV4 = namespacev4
|
142
147
|
@ConsumerGroupV4 = consumergroupv4
|
143
148
|
@FullNamespaceV4 = fullnamespacev4
|
149
|
+
@SubscribeTopicNum = subscribetopicnum
|
150
|
+
@CreateTime = createtime
|
144
151
|
end
|
145
152
|
|
146
153
|
def deserialize(params)
|
@@ -154,6 +161,8 @@ module TencentCloud
|
|
154
161
|
@NamespaceV4 = params['NamespaceV4']
|
155
162
|
@ConsumerGroupV4 = params['ConsumerGroupV4']
|
156
163
|
@FullNamespaceV4 = params['FullNamespaceV4']
|
164
|
+
@SubscribeTopicNum = params['SubscribeTopicNum']
|
165
|
+
@CreateTime = params['CreateTime']
|
157
166
|
end
|
158
167
|
end
|
159
168
|
|
@@ -1286,15 +1295,25 @@ module TencentCloud
|
|
1286
1295
|
# @type Limit: Integer
|
1287
1296
|
# @param FromTopic: 查询指定主题下的消费组
|
1288
1297
|
# @type FromTopic: String
|
1298
|
+
# @param SortedBy: 按照指定字段排序,枚举值如下:
|
1299
|
+
# - subscribeNum:订阅 Topic 个数
|
1300
|
+
# @type SortedBy: String
|
1301
|
+
# @param SortOrder: 按升序或降序排列,枚举值如下:
|
1302
|
+
|
1303
|
+
# - asc:升序
|
1304
|
+
# - desc:降序
|
1305
|
+
# @type SortOrder: String
|
1289
1306
|
|
1290
|
-
attr_accessor :InstanceId, :Filters, :Offset, :Limit, :FromTopic
|
1307
|
+
attr_accessor :InstanceId, :Filters, :Offset, :Limit, :FromTopic, :SortedBy, :SortOrder
|
1291
1308
|
|
1292
|
-
def initialize(instanceid=nil, filters=nil, offset=nil, limit=nil, fromtopic=nil)
|
1309
|
+
def initialize(instanceid=nil, filters=nil, offset=nil, limit=nil, fromtopic=nil, sortedby=nil, sortorder=nil)
|
1293
1310
|
@InstanceId = instanceid
|
1294
1311
|
@Filters = filters
|
1295
1312
|
@Offset = offset
|
1296
1313
|
@Limit = limit
|
1297
1314
|
@FromTopic = fromtopic
|
1315
|
+
@SortedBy = sortedby
|
1316
|
+
@SortOrder = sortorder
|
1298
1317
|
end
|
1299
1318
|
|
1300
1319
|
def deserialize(params)
|
@@ -1310,6 +1329,8 @@ module TencentCloud
|
|
1310
1329
|
@Offset = params['Offset']
|
1311
1330
|
@Limit = params['Limit']
|
1312
1331
|
@FromTopic = params['FromTopic']
|
1332
|
+
@SortedBy = params['SortedBy']
|
1333
|
+
@SortOrder = params['SortOrder']
|
1313
1334
|
end
|
1314
1335
|
end
|
1315
1336
|
|
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.1118
|
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-
|
11
|
+
date: 2025-08-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|