tencentcloud-sdk-trocket 3.0.774 → 3.0.776
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 +143 -35
- 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: d2bd5af7108bb13f8bc5aecdb45d0f3fd12b0ce0
|
4
|
+
data.tar.gz: 89b2bed1471c308e3f0058ce976093b07cf7a9de
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 21837a1a7e1648606976527d83ba372034c1c87286a6ed2925d6537273f04ecf494eed84cf63fe57ce852b42887de527cfddd3f889784acf4cea21ae49e477d8
|
7
|
+
data.tar.gz: 4f309ccd99eb244b6de79b7720068630875c92b8bae6a50e29161252304819ea7e2b7563ef2d34919d94d9e54d54b5c2aaea5338b30799181da76dc1130d8f37
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.776
|
data/lib/v20230308/models.rb
CHANGED
@@ -130,7 +130,24 @@ module TencentCloud
|
|
130
130
|
# basic_1k,
|
131
131
|
# basic_2k,
|
132
132
|
# basic_4k,
|
133
|
-
# basic_6k
|
133
|
+
# basic_6k,
|
134
|
+
# pro_4k,
|
135
|
+
# pro_6k,
|
136
|
+
# pro_1w,
|
137
|
+
# pro_2w,
|
138
|
+
# pro_3w,
|
139
|
+
# pro_4w,
|
140
|
+
# pro_5w,
|
141
|
+
# platinum_6k,
|
142
|
+
# platinum_1w,
|
143
|
+
# platinum_2w,
|
144
|
+
# platinum_4w,
|
145
|
+
# platinum_10w,
|
146
|
+
# platinum_15w,
|
147
|
+
# platinum_20w,
|
148
|
+
# platinum_40w,
|
149
|
+
# platinum_60w,
|
150
|
+
# platinum_100w
|
134
151
|
# @type SkuCode: String
|
135
152
|
# @param Remark: 备注信息
|
136
153
|
# @type Remark: String
|
@@ -140,16 +157,24 @@ module TencentCloud
|
|
140
157
|
# @type VpcList: Array
|
141
158
|
# @param EnablePublic: 是否开启公网
|
142
159
|
# @type EnablePublic: Boolean
|
143
|
-
# @param Bandwidth:
|
160
|
+
# @param Bandwidth: 公网带宽(单位:兆)
|
144
161
|
# @type Bandwidth: Integer
|
145
162
|
# @param IpRules: 公网访问白名单
|
146
163
|
# @type IpRules: Array
|
147
|
-
# @param MessageRetention:
|
164
|
+
# @param MessageRetention: 消息保留时长(单位:小时)
|
148
165
|
# @type MessageRetention: Integer
|
166
|
+
# @param PayMode: 付费模式(0: 后付费;1: 预付费)
|
167
|
+
# @type PayMode: Integer
|
168
|
+
# @param RenewFlag: 是否自动续费(0: 不自动续费;1: 自动续费)
|
169
|
+
# @type RenewFlag: Integer
|
170
|
+
# @param TimeSpan: 购买时长(单位:月)
|
171
|
+
# @type TimeSpan: Integer
|
172
|
+
# @param MaxTopicNum: 最大可创建主题数
|
173
|
+
# @type MaxTopicNum: Integer
|
149
174
|
|
150
|
-
attr_accessor :InstanceType, :Name, :SkuCode, :Remark, :TagList, :VpcList, :EnablePublic, :Bandwidth, :IpRules, :MessageRetention
|
175
|
+
attr_accessor :InstanceType, :Name, :SkuCode, :Remark, :TagList, :VpcList, :EnablePublic, :Bandwidth, :IpRules, :MessageRetention, :PayMode, :RenewFlag, :TimeSpan, :MaxTopicNum
|
151
176
|
|
152
|
-
def initialize(instancetype=nil, name=nil, skucode=nil, remark=nil, taglist=nil, vpclist=nil, enablepublic=nil, bandwidth=nil, iprules=nil, messageretention=nil)
|
177
|
+
def initialize(instancetype=nil, name=nil, skucode=nil, remark=nil, taglist=nil, vpclist=nil, enablepublic=nil, bandwidth=nil, iprules=nil, messageretention=nil, paymode=nil, renewflag=nil, timespan=nil, maxtopicnum=nil)
|
153
178
|
@InstanceType = instancetype
|
154
179
|
@Name = name
|
155
180
|
@SkuCode = skucode
|
@@ -160,6 +185,10 @@ module TencentCloud
|
|
160
185
|
@Bandwidth = bandwidth
|
161
186
|
@IpRules = iprules
|
162
187
|
@MessageRetention = messageretention
|
188
|
+
@PayMode = paymode
|
189
|
+
@RenewFlag = renewflag
|
190
|
+
@TimeSpan = timespan
|
191
|
+
@MaxTopicNum = maxtopicnum
|
163
192
|
end
|
164
193
|
|
165
194
|
def deserialize(params)
|
@@ -194,6 +223,10 @@ module TencentCloud
|
|
194
223
|
end
|
195
224
|
end
|
196
225
|
@MessageRetention = params['MessageRetention']
|
226
|
+
@PayMode = params['PayMode']
|
227
|
+
@RenewFlag = params['RenewFlag']
|
228
|
+
@TimeSpan = params['TimeSpan']
|
229
|
+
@MaxTopicNum = params['MaxTopicNum']
|
197
230
|
end
|
198
231
|
end
|
199
232
|
|
@@ -556,15 +589,18 @@ module TencentCloud
|
|
556
589
|
# @type QueueNum: Integer
|
557
590
|
# @param Remark: 备注
|
558
591
|
# @type Remark: String
|
592
|
+
# @param MsgTTL: 消息保留时长
|
593
|
+
# @type MsgTTL: Integer
|
559
594
|
|
560
|
-
attr_accessor :InstanceId, :Topic, :TopicType, :QueueNum, :Remark
|
595
|
+
attr_accessor :InstanceId, :Topic, :TopicType, :QueueNum, :Remark, :MsgTTL
|
561
596
|
|
562
|
-
def initialize(instanceid=nil, topic=nil, topictype=nil, queuenum=nil, remark=nil)
|
597
|
+
def initialize(instanceid=nil, topic=nil, topictype=nil, queuenum=nil, remark=nil, msgttl=nil)
|
563
598
|
@InstanceId = instanceid
|
564
599
|
@Topic = topic
|
565
600
|
@TopicType = topictype
|
566
601
|
@QueueNum = queuenum
|
567
602
|
@Remark = remark
|
603
|
+
@MsgTTL = msgttl
|
568
604
|
end
|
569
605
|
|
570
606
|
def deserialize(params)
|
@@ -573,6 +609,7 @@ module TencentCloud
|
|
573
609
|
@TopicType = params['TopicType']
|
574
610
|
@QueueNum = params['QueueNum']
|
575
611
|
@Remark = params['Remark']
|
612
|
+
@MsgTTL = params['MsgTTL']
|
576
613
|
end
|
577
614
|
end
|
578
615
|
|
@@ -1139,7 +1176,6 @@ module TencentCloud
|
|
1139
1176
|
# BASIC 基础版
|
1140
1177
|
# PRO 专业版
|
1141
1178
|
# PLATINUM 铂金版
|
1142
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1143
1179
|
# @type InstanceType: String
|
1144
1180
|
# @param InstanceId: 实例ID
|
1145
1181
|
# @type InstanceId: String
|
@@ -1187,12 +1223,29 @@ module TencentCloud
|
|
1187
1223
|
# @type SkuCode: String
|
1188
1224
|
# @param PayMode: 计费模式
|
1189
1225
|
# @type PayMode: String
|
1226
|
+
# @param ScaledTpsEnabled: 是否开启弹性TPS
|
1227
|
+
# @type ScaledTpsEnabled: Boolean
|
1228
|
+
# @param RenewFlag: 是否自动续费
|
1229
|
+
# @type RenewFlag: Integer
|
1230
|
+
# @param ExpiryTime: 到期时间
|
1231
|
+
# @type ExpiryTime: Integer
|
1232
|
+
# @param RoleNumLimit: 角色数量限制
|
1233
|
+
# @type RoleNumLimit: Integer
|
1234
|
+
# @param AclEnabled: 是否开启 ACL
|
1235
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1236
|
+
# @type AclEnabled: Boolean
|
1237
|
+
# @param TopicNumLowerLimit: topic个数免费额度
|
1238
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1239
|
+
# @type TopicNumLowerLimit: Integer
|
1240
|
+
# @param TopicNumUpperLimit: 最大可设置的topic个数
|
1241
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1242
|
+
# @type TopicNumUpperLimit: Integer
|
1190
1243
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1191
1244
|
# @type RequestId: String
|
1192
1245
|
|
1193
|
-
attr_accessor :InstanceType, :InstanceId, :InstanceName, :TopicNum, :TopicNumLimit, :GroupNum, :GroupNumLimit, :MessageRetention, :RetentionUpperLimit, :RetentionLowerLimit, :TpsLimit, :ScaledTpsLimit, :MaxMessageDelay, :CreatedTime, :SendReceiveRatio, :TagList, :EndpointList, :TopicQueueNumUpperLimit, :TopicQueueNumLowerLimit, :Remark, :InstanceStatus, :SkuCode, :PayMode, :RequestId
|
1246
|
+
attr_accessor :InstanceType, :InstanceId, :InstanceName, :TopicNum, :TopicNumLimit, :GroupNum, :GroupNumLimit, :MessageRetention, :RetentionUpperLimit, :RetentionLowerLimit, :TpsLimit, :ScaledTpsLimit, :MaxMessageDelay, :CreatedTime, :SendReceiveRatio, :TagList, :EndpointList, :TopicQueueNumUpperLimit, :TopicQueueNumLowerLimit, :Remark, :InstanceStatus, :SkuCode, :PayMode, :ScaledTpsEnabled, :RenewFlag, :ExpiryTime, :RoleNumLimit, :AclEnabled, :TopicNumLowerLimit, :TopicNumUpperLimit, :RequestId
|
1194
1247
|
|
1195
|
-
def initialize(instancetype=nil, instanceid=nil, instancename=nil, topicnum=nil, topicnumlimit=nil, groupnum=nil, groupnumlimit=nil, messageretention=nil, retentionupperlimit=nil, retentionlowerlimit=nil, tpslimit=nil, scaledtpslimit=nil, maxmessagedelay=nil, createdtime=nil, sendreceiveratio=nil, taglist=nil, endpointlist=nil, topicqueuenumupperlimit=nil, topicqueuenumlowerlimit=nil, remark=nil, instancestatus=nil, skucode=nil, paymode=nil, requestid=nil)
|
1248
|
+
def initialize(instancetype=nil, instanceid=nil, instancename=nil, topicnum=nil, topicnumlimit=nil, groupnum=nil, groupnumlimit=nil, messageretention=nil, retentionupperlimit=nil, retentionlowerlimit=nil, tpslimit=nil, scaledtpslimit=nil, maxmessagedelay=nil, createdtime=nil, sendreceiveratio=nil, taglist=nil, endpointlist=nil, topicqueuenumupperlimit=nil, topicqueuenumlowerlimit=nil, remark=nil, instancestatus=nil, skucode=nil, paymode=nil, scaledtpsenabled=nil, renewflag=nil, expirytime=nil, rolenumlimit=nil, aclenabled=nil, topicnumlowerlimit=nil, topicnumupperlimit=nil, requestid=nil)
|
1196
1249
|
@InstanceType = instancetype
|
1197
1250
|
@InstanceId = instanceid
|
1198
1251
|
@InstanceName = instancename
|
@@ -1216,6 +1269,13 @@ module TencentCloud
|
|
1216
1269
|
@InstanceStatus = instancestatus
|
1217
1270
|
@SkuCode = skucode
|
1218
1271
|
@PayMode = paymode
|
1272
|
+
@ScaledTpsEnabled = scaledtpsenabled
|
1273
|
+
@RenewFlag = renewflag
|
1274
|
+
@ExpiryTime = expirytime
|
1275
|
+
@RoleNumLimit = rolenumlimit
|
1276
|
+
@AclEnabled = aclenabled
|
1277
|
+
@TopicNumLowerLimit = topicnumlowerlimit
|
1278
|
+
@TopicNumUpperLimit = topicnumupperlimit
|
1219
1279
|
@RequestId = requestid
|
1220
1280
|
end
|
1221
1281
|
|
@@ -1257,6 +1317,13 @@ module TencentCloud
|
|
1257
1317
|
@InstanceStatus = params['InstanceStatus']
|
1258
1318
|
@SkuCode = params['SkuCode']
|
1259
1319
|
@PayMode = params['PayMode']
|
1320
|
+
@ScaledTpsEnabled = params['ScaledTpsEnabled']
|
1321
|
+
@RenewFlag = params['RenewFlag']
|
1322
|
+
@ExpiryTime = params['ExpiryTime']
|
1323
|
+
@RoleNumLimit = params['RoleNumLimit']
|
1324
|
+
@AclEnabled = params['AclEnabled']
|
1325
|
+
@TopicNumLowerLimit = params['TopicNumLowerLimit']
|
1326
|
+
@TopicNumUpperLimit = params['TopicNumUpperLimit']
|
1260
1327
|
@RequestId = params['RequestId']
|
1261
1328
|
end
|
1262
1329
|
end
|
@@ -2089,26 +2156,24 @@ module TencentCloud
|
|
2089
2156
|
class DescribeTopicListRequest < TencentCloud::Common::AbstractModel
|
2090
2157
|
# @param InstanceId: 实例ID
|
2091
2158
|
# @type InstanceId: String
|
2159
|
+
# @param Filters: 查询条件列表
|
2160
|
+
# @type Filters: Array
|
2092
2161
|
# @param Offset: 查询起始位置
|
2093
2162
|
# @type Offset: Integer
|
2094
2163
|
# @param Limit: 查询结果限制数量
|
2095
2164
|
# @type Limit: Integer
|
2096
|
-
# @param Filters: 查询条件列表
|
2097
|
-
# @type Filters: Array
|
2098
2165
|
|
2099
|
-
attr_accessor :InstanceId, :
|
2166
|
+
attr_accessor :InstanceId, :Filters, :Offset, :Limit
|
2100
2167
|
|
2101
|
-
def initialize(instanceid=nil,
|
2168
|
+
def initialize(instanceid=nil, filters=nil, offset=nil, limit=nil)
|
2102
2169
|
@InstanceId = instanceid
|
2170
|
+
@Filters = filters
|
2103
2171
|
@Offset = offset
|
2104
2172
|
@Limit = limit
|
2105
|
-
@Filters = filters
|
2106
2173
|
end
|
2107
2174
|
|
2108
2175
|
def deserialize(params)
|
2109
2176
|
@InstanceId = params['InstanceId']
|
2110
|
-
@Offset = params['Offset']
|
2111
|
-
@Limit = params['Limit']
|
2112
2177
|
unless params['Filters'].nil?
|
2113
2178
|
@Filters = []
|
2114
2179
|
params['Filters'].each do |i|
|
@@ -2117,6 +2182,8 @@ module TencentCloud
|
|
2117
2182
|
@Filters << filter_tmp
|
2118
2183
|
end
|
2119
2184
|
end
|
2185
|
+
@Offset = params['Offset']
|
2186
|
+
@Limit = params['Limit']
|
2120
2187
|
end
|
2121
2188
|
end
|
2122
2189
|
|
@@ -2158,28 +2225,26 @@ module TencentCloud
|
|
2158
2225
|
# @type InstanceId: String
|
2159
2226
|
# @param Topic: 主题
|
2160
2227
|
# @type Topic: String
|
2228
|
+
# @param Filters: 查询条件列表
|
2229
|
+
# @type Filters: Array
|
2161
2230
|
# @param Offset: 查询起始位置
|
2162
2231
|
# @type Offset: Integer
|
2163
2232
|
# @param Limit: 查询结果限制数量
|
2164
2233
|
# @type Limit: Integer
|
2165
|
-
# @param Filters: 查询条件列表
|
2166
|
-
# @type Filters: Array
|
2167
2234
|
|
2168
|
-
attr_accessor :InstanceId, :Topic, :
|
2235
|
+
attr_accessor :InstanceId, :Topic, :Filters, :Offset, :Limit
|
2169
2236
|
|
2170
|
-
def initialize(instanceid=nil, topic=nil,
|
2237
|
+
def initialize(instanceid=nil, topic=nil, filters=nil, offset=nil, limit=nil)
|
2171
2238
|
@InstanceId = instanceid
|
2172
2239
|
@Topic = topic
|
2240
|
+
@Filters = filters
|
2173
2241
|
@Offset = offset
|
2174
2242
|
@Limit = limit
|
2175
|
-
@Filters = filters
|
2176
2243
|
end
|
2177
2244
|
|
2178
2245
|
def deserialize(params)
|
2179
2246
|
@InstanceId = params['InstanceId']
|
2180
2247
|
@Topic = params['Topic']
|
2181
|
-
@Offset = params['Offset']
|
2182
|
-
@Limit = params['Limit']
|
2183
2248
|
unless params['Filters'].nil?
|
2184
2249
|
@Filters = []
|
2185
2250
|
params['Filters'].each do |i|
|
@@ -2188,6 +2253,8 @@ module TencentCloud
|
|
2188
2253
|
@Filters << filter_tmp
|
2189
2254
|
end
|
2190
2255
|
end
|
2256
|
+
@Offset = params['Offset']
|
2257
|
+
@Limit = params['Limit']
|
2191
2258
|
end
|
2192
2259
|
end
|
2193
2260
|
|
@@ -2214,12 +2281,14 @@ module TencentCloud
|
|
2214
2281
|
# @type SubscriptionCount: Integer
|
2215
2282
|
# @param SubscriptionData: 订阅关系列表
|
2216
2283
|
# @type SubscriptionData: Array
|
2284
|
+
# @param MsgTTL: 消息保留时长
|
2285
|
+
# @type MsgTTL: Integer
|
2217
2286
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2218
2287
|
# @type RequestId: String
|
2219
2288
|
|
2220
|
-
attr_accessor :InstanceId, :Topic, :TopicType, :Remark, :CreatedTime, :LastUpdateTime, :SubscriptionCount, :SubscriptionData, :RequestId
|
2289
|
+
attr_accessor :InstanceId, :Topic, :TopicType, :Remark, :CreatedTime, :LastUpdateTime, :SubscriptionCount, :SubscriptionData, :MsgTTL, :RequestId
|
2221
2290
|
|
2222
|
-
def initialize(instanceid=nil, topic=nil, topictype=nil, remark=nil, createdtime=nil, lastupdatetime=nil, subscriptioncount=nil, subscriptiondata=nil, requestid=nil)
|
2291
|
+
def initialize(instanceid=nil, topic=nil, topictype=nil, remark=nil, createdtime=nil, lastupdatetime=nil, subscriptioncount=nil, subscriptiondata=nil, msgttl=nil, requestid=nil)
|
2223
2292
|
@InstanceId = instanceid
|
2224
2293
|
@Topic = topic
|
2225
2294
|
@TopicType = topictype
|
@@ -2228,6 +2297,7 @@ module TencentCloud
|
|
2228
2297
|
@LastUpdateTime = lastupdatetime
|
2229
2298
|
@SubscriptionCount = subscriptioncount
|
2230
2299
|
@SubscriptionData = subscriptiondata
|
2300
|
+
@MsgTTL = msgttl
|
2231
2301
|
@RequestId = requestid
|
2232
2302
|
end
|
2233
2303
|
|
@@ -2247,6 +2317,7 @@ module TencentCloud
|
|
2247
2317
|
@SubscriptionData << subscriptiondata_tmp
|
2248
2318
|
end
|
2249
2319
|
end
|
2320
|
+
@MsgTTL = params['MsgTTL']
|
2250
2321
|
@RequestId = params['RequestId']
|
2251
2322
|
end
|
2252
2323
|
end
|
@@ -2285,9 +2356,10 @@ module TencentCloud
|
|
2285
2356
|
|
2286
2357
|
# 接入点信息
|
2287
2358
|
class Endpoint < TencentCloud::Common::AbstractModel
|
2288
|
-
# @param Type:
|
2289
|
-
# VPC
|
2290
|
-
# PUBLIC
|
2359
|
+
# @param Type: 接入点类型,枚举值如下
|
2360
|
+
# VPC: VPC;
|
2361
|
+
# PUBLIC: 公网;
|
2362
|
+
# INTERNAL: 支撑网;
|
2291
2363
|
# @type Type: String
|
2292
2364
|
# @param Status: 状态,
|
2293
2365
|
# OPEN 开启,
|
@@ -2990,10 +3062,12 @@ module TencentCloud
|
|
2990
3062
|
# @type MessageRetention: Integer
|
2991
3063
|
# @param ScaledTpsEnabled: 是否开启弹性TPS
|
2992
3064
|
# @type ScaledTpsEnabled: Boolean
|
3065
|
+
# @param MaxTopicNum: 最大可创建主题数
|
3066
|
+
# @type MaxTopicNum: Integer
|
2993
3067
|
|
2994
|
-
attr_accessor :InstanceId, :Name, :Remark, :SendReceiveRatio, :SkuCode, :MessageRetention, :ScaledTpsEnabled
|
3068
|
+
attr_accessor :InstanceId, :Name, :Remark, :SendReceiveRatio, :SkuCode, :MessageRetention, :ScaledTpsEnabled, :MaxTopicNum
|
2995
3069
|
|
2996
|
-
def initialize(instanceid=nil, name=nil, remark=nil, sendreceiveratio=nil, skucode=nil, messageretention=nil, scaledtpsenabled=nil)
|
3070
|
+
def initialize(instanceid=nil, name=nil, remark=nil, sendreceiveratio=nil, skucode=nil, messageretention=nil, scaledtpsenabled=nil, maxtopicnum=nil)
|
2997
3071
|
@InstanceId = instanceid
|
2998
3072
|
@Name = name
|
2999
3073
|
@Remark = remark
|
@@ -3001,6 +3075,7 @@ module TencentCloud
|
|
3001
3075
|
@SkuCode = skucode
|
3002
3076
|
@MessageRetention = messageretention
|
3003
3077
|
@ScaledTpsEnabled = scaledtpsenabled
|
3078
|
+
@MaxTopicNum = maxtopicnum
|
3004
3079
|
end
|
3005
3080
|
|
3006
3081
|
def deserialize(params)
|
@@ -3011,6 +3086,7 @@ module TencentCloud
|
|
3011
3086
|
@SkuCode = params['SkuCode']
|
3012
3087
|
@MessageRetention = params['MessageRetention']
|
3013
3088
|
@ScaledTpsEnabled = params['ScaledTpsEnabled']
|
3089
|
+
@MaxTopicNum = params['MaxTopicNum']
|
3014
3090
|
end
|
3015
3091
|
end
|
3016
3092
|
|
@@ -3557,10 +3633,15 @@ module TencentCloud
|
|
3557
3633
|
# @param ConsumeMessageOrderly: 是否顺序消费
|
3558
3634
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3559
3635
|
# @type ConsumeMessageOrderly: Boolean
|
3636
|
+
# @param MessageModel: 消费模式:
|
3637
|
+
# BROADCASTING 广播模式;
|
3638
|
+
# CLUSTERING 集群模式;
|
3639
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3640
|
+
# @type MessageModel: String
|
3560
3641
|
|
3561
|
-
attr_accessor :InstanceId, :Topic, :TopicType, :TopicQueueNum, :ConsumerGroup, :IsOnline, :ConsumeType, :SubString, :ExpressionType, :Consistency, :ConsumerLag, :LastUpdateTime, :MaxRetryTimes, :ConsumeMessageOrderly
|
3642
|
+
attr_accessor :InstanceId, :Topic, :TopicType, :TopicQueueNum, :ConsumerGroup, :IsOnline, :ConsumeType, :SubString, :ExpressionType, :Consistency, :ConsumerLag, :LastUpdateTime, :MaxRetryTimes, :ConsumeMessageOrderly, :MessageModel
|
3562
3643
|
|
3563
|
-
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)
|
3644
|
+
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)
|
3564
3645
|
@InstanceId = instanceid
|
3565
3646
|
@Topic = topic
|
3566
3647
|
@TopicType = topictype
|
@@ -3575,6 +3656,7 @@ module TencentCloud
|
|
3575
3656
|
@LastUpdateTime = lastupdatetime
|
3576
3657
|
@MaxRetryTimes = maxretrytimes
|
3577
3658
|
@ConsumeMessageOrderly = consumemessageorderly
|
3659
|
+
@MessageModel = messagemodel
|
3578
3660
|
end
|
3579
3661
|
|
3580
3662
|
def deserialize(params)
|
@@ -3592,6 +3674,7 @@ module TencentCloud
|
|
3592
3674
|
@LastUpdateTime = params['LastUpdateTime']
|
3593
3675
|
@MaxRetryTimes = params['MaxRetryTimes']
|
3594
3676
|
@ConsumeMessageOrderly = params['ConsumeMessageOrderly']
|
3677
|
+
@MessageModel = params['MessageModel']
|
3595
3678
|
end
|
3596
3679
|
end
|
3597
3680
|
|
@@ -3650,15 +3733,35 @@ module TencentCloud
|
|
3650
3733
|
# @param Remark: 描述
|
3651
3734
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3652
3735
|
# @type Remark: String
|
3736
|
+
# @param ClusterIdV4: 4.x的集群id
|
3737
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3738
|
+
# @type ClusterIdV4: String
|
3739
|
+
# @param NamespaceV4: 4.x的命名空间
|
3740
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3741
|
+
# @type NamespaceV4: String
|
3742
|
+
# @param TopicV4: 4.x的主题名称
|
3743
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3744
|
+
# @type TopicV4: String
|
3745
|
+
# @param FullNamespaceV4: 4.x的完整命名空间
|
3746
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3747
|
+
# @type FullNamespaceV4: String
|
3748
|
+
# @param MsgTTL: 消息保留时长
|
3749
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3750
|
+
# @type MsgTTL: Integer
|
3653
3751
|
|
3654
|
-
attr_accessor :InstanceId, :Topic, :TopicType, :QueueNum, :Remark
|
3752
|
+
attr_accessor :InstanceId, :Topic, :TopicType, :QueueNum, :Remark, :ClusterIdV4, :NamespaceV4, :TopicV4, :FullNamespaceV4, :MsgTTL
|
3655
3753
|
|
3656
|
-
def initialize(instanceid=nil, topic=nil, topictype=nil, queuenum=nil, remark=nil)
|
3754
|
+
def initialize(instanceid=nil, topic=nil, topictype=nil, queuenum=nil, remark=nil, clusteridv4=nil, namespacev4=nil, topicv4=nil, fullnamespacev4=nil, msgttl=nil)
|
3657
3755
|
@InstanceId = instanceid
|
3658
3756
|
@Topic = topic
|
3659
3757
|
@TopicType = topictype
|
3660
3758
|
@QueueNum = queuenum
|
3661
3759
|
@Remark = remark
|
3760
|
+
@ClusterIdV4 = clusteridv4
|
3761
|
+
@NamespaceV4 = namespacev4
|
3762
|
+
@TopicV4 = topicv4
|
3763
|
+
@FullNamespaceV4 = fullnamespacev4
|
3764
|
+
@MsgTTL = msgttl
|
3662
3765
|
end
|
3663
3766
|
|
3664
3767
|
def deserialize(params)
|
@@ -3667,6 +3770,11 @@ module TencentCloud
|
|
3667
3770
|
@TopicType = params['TopicType']
|
3668
3771
|
@QueueNum = params['QueueNum']
|
3669
3772
|
@Remark = params['Remark']
|
3773
|
+
@ClusterIdV4 = params['ClusterIdV4']
|
3774
|
+
@NamespaceV4 = params['NamespaceV4']
|
3775
|
+
@TopicV4 = params['TopicV4']
|
3776
|
+
@FullNamespaceV4 = params['FullNamespaceV4']
|
3777
|
+
@MsgTTL = params['MsgTTL']
|
3670
3778
|
end
|
3671
3779
|
end
|
3672
3780
|
|
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.776
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-03-
|
11
|
+
date: 2024-03-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|