tencentcloud-sdk-tdmq 3.0.1128 → 3.0.1174
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/v20200217/client.rb +21 -75
- data/lib/v20200217/models.rb +201 -378
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0a226ce719c3e7ee1e7272b28aeea9182858ab46
|
|
4
|
+
data.tar.gz: 042bdc0dc3ef7d56a2009aed5898d491f558c7e3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3e5fbdede5af7e935955746cc4fcb9e5762dfa127d6b6ea56de075da5873d8b66e82b8fc30462f3c5f2345ee0112ee8da444804b370b8fd8477ba158c342d354
|
|
7
|
+
data.tar.gz: 6a3ba03d5a24511738fd8403a2c38dabdbbb8eb1de44c48cb47af44bb79d5d67dad79747d80f54300b26d50dfebdc11a1369ad2cddd0de6565282096fbc7fd31
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1174
|
data/lib/v20200217/client.rb
CHANGED
|
@@ -2311,70 +2311,16 @@ module TencentCloud
|
|
|
2311
2311
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
2312
2312
|
end
|
|
2313
2313
|
|
|
2314
|
-
#
|
|
2315
|
-
|
|
2316
|
-
# 用于查询RocketMQ平滑迁移任务列表
|
|
2317
|
-
|
|
2318
|
-
# @param request: Request instance for DescribeRocketMQSmoothMigrationTaskList.
|
|
2319
|
-
# @type request: :class:`Tencentcloud::tdmq::V20200217::DescribeRocketMQSmoothMigrationTaskListRequest`
|
|
2320
|
-
# @rtype: :class:`Tencentcloud::tdmq::V20200217::DescribeRocketMQSmoothMigrationTaskListResponse`
|
|
2321
|
-
def DescribeRocketMQSmoothMigrationTaskList(request)
|
|
2322
|
-
body = send_request('DescribeRocketMQSmoothMigrationTaskList', request.serialize)
|
|
2323
|
-
response = JSON.parse(body)
|
|
2324
|
-
if response['Response'].key?('Error') == false
|
|
2325
|
-
model = DescribeRocketMQSmoothMigrationTaskListResponse.new
|
|
2326
|
-
model.deserialize(response['Response'])
|
|
2327
|
-
model
|
|
2328
|
-
else
|
|
2329
|
-
code = response['Response']['Error']['Code']
|
|
2330
|
-
message = response['Response']['Error']['Message']
|
|
2331
|
-
reqid = response['Response']['RequestId']
|
|
2332
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
2333
|
-
end
|
|
2334
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
2335
|
-
raise e
|
|
2336
|
-
rescue StandardError => e
|
|
2337
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
2338
|
-
end
|
|
2339
|
-
|
|
2340
|
-
# 平滑迁移相关接口已迁移至trocket产品下,该接口已废弃
|
|
2341
|
-
|
|
2342
|
-
# 平滑迁移过程获取源集群group列表接口
|
|
2343
|
-
|
|
2344
|
-
# @param request: Request instance for DescribeRocketMQSourceClusterGroupList.
|
|
2345
|
-
# @type request: :class:`Tencentcloud::tdmq::V20200217::DescribeRocketMQSourceClusterGroupListRequest`
|
|
2346
|
-
# @rtype: :class:`Tencentcloud::tdmq::V20200217::DescribeRocketMQSourceClusterGroupListResponse`
|
|
2347
|
-
def DescribeRocketMQSourceClusterGroupList(request)
|
|
2348
|
-
body = send_request('DescribeRocketMQSourceClusterGroupList', request.serialize)
|
|
2349
|
-
response = JSON.parse(body)
|
|
2350
|
-
if response['Response'].key?('Error') == false
|
|
2351
|
-
model = DescribeRocketMQSourceClusterGroupListResponse.new
|
|
2352
|
-
model.deserialize(response['Response'])
|
|
2353
|
-
model
|
|
2354
|
-
else
|
|
2355
|
-
code = response['Response']['Error']['Code']
|
|
2356
|
-
message = response['Response']['Error']['Message']
|
|
2357
|
-
reqid = response['Response']['RequestId']
|
|
2358
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
2359
|
-
end
|
|
2360
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
2361
|
-
raise e
|
|
2362
|
-
rescue StandardError => e
|
|
2363
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
2364
|
-
end
|
|
2365
|
-
|
|
2366
|
-
# 平滑迁移相关接口已迁移至trocket产品下,该接口已废弃
|
|
2367
|
-
|
|
2368
|
-
# 平滑迁移过程获取源集群topic列表接口
|
|
2314
|
+
# 用于获取RocketMQ消费组订阅关系数据
|
|
2369
2315
|
|
|
2370
|
-
# @param request: Request instance for
|
|
2371
|
-
# @type request: :class:`Tencentcloud::tdmq::V20200217::
|
|
2372
|
-
# @rtype: :class:`Tencentcloud::tdmq::V20200217::
|
|
2373
|
-
def
|
|
2374
|
-
body = send_request('
|
|
2316
|
+
# @param request: Request instance for DescribeRocketMQSubscriptions.
|
|
2317
|
+
# @type request: :class:`Tencentcloud::tdmq::V20200217::DescribeRocketMQSubscriptionsRequest`
|
|
2318
|
+
# @rtype: :class:`Tencentcloud::tdmq::V20200217::DescribeRocketMQSubscriptionsResponse`
|
|
2319
|
+
def DescribeRocketMQSubscriptions(request)
|
|
2320
|
+
body = send_request('DescribeRocketMQSubscriptions', request.serialize)
|
|
2375
2321
|
response = JSON.parse(body)
|
|
2376
2322
|
if response['Response'].key?('Error') == false
|
|
2377
|
-
model =
|
|
2323
|
+
model = DescribeRocketMQSubscriptionsResponse.new
|
|
2378
2324
|
model.deserialize(response['Response'])
|
|
2379
2325
|
model
|
|
2380
2326
|
else
|
|
@@ -2389,16 +2335,16 @@ module TencentCloud
|
|
|
2389
2335
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
2390
2336
|
end
|
|
2391
2337
|
|
|
2392
|
-
# 用于获取RocketMQ
|
|
2338
|
+
# 用于获取RocketMQ指标排序列表,比如集群实例下占用存储空间最多的主题排序。
|
|
2393
2339
|
|
|
2394
|
-
# @param request: Request instance for
|
|
2395
|
-
# @type request: :class:`Tencentcloud::tdmq::V20200217::
|
|
2396
|
-
# @rtype: :class:`Tencentcloud::tdmq::V20200217::
|
|
2397
|
-
def
|
|
2398
|
-
body = send_request('
|
|
2340
|
+
# @param request: Request instance for DescribeRocketMQTopUsages.
|
|
2341
|
+
# @type request: :class:`Tencentcloud::tdmq::V20200217::DescribeRocketMQTopUsagesRequest`
|
|
2342
|
+
# @rtype: :class:`Tencentcloud::tdmq::V20200217::DescribeRocketMQTopUsagesResponse`
|
|
2343
|
+
def DescribeRocketMQTopUsages(request)
|
|
2344
|
+
body = send_request('DescribeRocketMQTopUsages', request.serialize)
|
|
2399
2345
|
response = JSON.parse(body)
|
|
2400
2346
|
if response['Response'].key?('Error') == false
|
|
2401
|
-
model =
|
|
2347
|
+
model = DescribeRocketMQTopUsagesResponse.new
|
|
2402
2348
|
model.deserialize(response['Response'])
|
|
2403
2349
|
model
|
|
2404
2350
|
else
|
|
@@ -2413,16 +2359,16 @@ module TencentCloud
|
|
|
2413
2359
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
2414
2360
|
end
|
|
2415
2361
|
|
|
2416
|
-
#
|
|
2362
|
+
# 获取RocketMQ主题详情
|
|
2417
2363
|
|
|
2418
|
-
# @param request: Request instance for
|
|
2419
|
-
# @type request: :class:`Tencentcloud::tdmq::V20200217::
|
|
2420
|
-
# @rtype: :class:`Tencentcloud::tdmq::V20200217::
|
|
2421
|
-
def
|
|
2422
|
-
body = send_request('
|
|
2364
|
+
# @param request: Request instance for DescribeRocketMQTopic.
|
|
2365
|
+
# @type request: :class:`Tencentcloud::tdmq::V20200217::DescribeRocketMQTopicRequest`
|
|
2366
|
+
# @rtype: :class:`Tencentcloud::tdmq::V20200217::DescribeRocketMQTopicResponse`
|
|
2367
|
+
def DescribeRocketMQTopic(request)
|
|
2368
|
+
body = send_request('DescribeRocketMQTopic', request.serialize)
|
|
2423
2369
|
response = JSON.parse(body)
|
|
2424
2370
|
if response['Response'].key?('Error') == false
|
|
2425
|
-
model =
|
|
2371
|
+
model = DescribeRocketMQTopicResponse.new
|
|
2426
2372
|
model.deserialize(response['Response'])
|
|
2427
2373
|
model
|
|
2428
2374
|
else
|
data/lib/v20200217/models.rb
CHANGED
|
@@ -1751,11 +1751,11 @@ module TencentCloud
|
|
|
1751
1751
|
# @param ClusterName: 集群名称
|
|
1752
1752
|
# @type ClusterName: String
|
|
1753
1753
|
# @param NodeSpec: 集群的节点规格,需要输入对应的规格标识:
|
|
1754
|
-
# 2C8G:rabbit-vip-
|
|
1755
|
-
# 4C16G:rabbit-vip-
|
|
1756
|
-
# 8C32G:rabbit-vip-
|
|
1754
|
+
# 2C8G:rabbit-vip-profession-2c8g
|
|
1755
|
+
# 4C16G:rabbit-vip-profession-4c16g
|
|
1756
|
+
# 8C32G:rabbit-vip-profession-8c32g
|
|
1757
1757
|
# 16C32G:rabbit-vip-basic-4
|
|
1758
|
-
# 16C64G:rabbit-vip-
|
|
1758
|
+
# 16C64G:rabbit-vip-profession-16c64g
|
|
1759
1759
|
# 2C4G:rabbit-vip-basic-5
|
|
1760
1760
|
# 4C8G:rabbit-vip-basic-1
|
|
1761
1761
|
# 8C16G(已售罄):rabbit-vip-basic-2
|
|
@@ -1773,7 +1773,7 @@ module TencentCloud
|
|
|
1773
1773
|
# @type TimeSpan: Integer
|
|
1774
1774
|
# @param PayMode: 付费方式,0 为后付费,即按量计费;1 为预付费,即包年包月。默认包年包月
|
|
1775
1775
|
# @type PayMode: Integer
|
|
1776
|
-
# @param ClusterVersion: 集群版本,不传默认为 3.8.30,可选值为 3.8.30
|
|
1776
|
+
# @param ClusterVersion: 集群版本,不传默认为 3.8.30,可选值为 3.8.30、3.11.8和3.13.7
|
|
1777
1777
|
# @type ClusterVersion: String
|
|
1778
1778
|
# @param IsIntl: 是否国际站请求,默认 false
|
|
1779
1779
|
# @type IsIntl: Boolean
|
|
@@ -4443,18 +4443,26 @@ module TencentCloud
|
|
|
4443
4443
|
# @type MsgId: String
|
|
4444
4444
|
# @param ProducerName: 生产者名称。
|
|
4445
4445
|
# @type ProducerName: String
|
|
4446
|
+
# @param Key: 消息 key
|
|
4447
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
4448
|
+
# @type Key: String
|
|
4449
|
+
# @param Metadata: 消息的元数据信息
|
|
4450
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
4451
|
+
# @type Metadata: String
|
|
4446
4452
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4447
4453
|
# @type RequestId: String
|
|
4448
4454
|
|
|
4449
|
-
attr_accessor :Properties, :Body, :BatchId, :ProduceTime, :MsgId, :ProducerName, :RequestId
|
|
4455
|
+
attr_accessor :Properties, :Body, :BatchId, :ProduceTime, :MsgId, :ProducerName, :Key, :Metadata, :RequestId
|
|
4450
4456
|
|
|
4451
|
-
def initialize(properties=nil, body=nil, batchid=nil, producetime=nil, msgid=nil, producername=nil, requestid=nil)
|
|
4457
|
+
def initialize(properties=nil, body=nil, batchid=nil, producetime=nil, msgid=nil, producername=nil, key=nil, metadata=nil, requestid=nil)
|
|
4452
4458
|
@Properties = properties
|
|
4453
4459
|
@Body = body
|
|
4454
4460
|
@BatchId = batchid
|
|
4455
4461
|
@ProduceTime = producetime
|
|
4456
4462
|
@MsgId = msgid
|
|
4457
4463
|
@ProducerName = producername
|
|
4464
|
+
@Key = key
|
|
4465
|
+
@Metadata = metadata
|
|
4458
4466
|
@RequestId = requestid
|
|
4459
4467
|
end
|
|
4460
4468
|
|
|
@@ -4465,6 +4473,8 @@ module TencentCloud
|
|
|
4465
4473
|
@ProduceTime = params['ProduceTime']
|
|
4466
4474
|
@MsgId = params['MsgId']
|
|
4467
4475
|
@ProducerName = params['ProducerName']
|
|
4476
|
+
@Key = params['Key']
|
|
4477
|
+
@Metadata = params['Metadata']
|
|
4468
4478
|
@RequestId = params['RequestId']
|
|
4469
4479
|
end
|
|
4470
4480
|
end
|
|
@@ -6228,10 +6238,12 @@ module TencentCloud
|
|
|
6228
6238
|
# @type FilterOneGroup: String
|
|
6229
6239
|
# @param Types: group类型
|
|
6230
6240
|
# @type Types: Array
|
|
6241
|
+
# @param TagFilters: 标签过滤器
|
|
6242
|
+
# @type TagFilters: Array
|
|
6231
6243
|
|
|
6232
|
-
attr_accessor :ClusterId, :NamespaceId, :Offset, :Limit, :FilterTopic, :FilterGroup, :SortedBy, :SortOrder, :FilterOneGroup, :Types
|
|
6244
|
+
attr_accessor :ClusterId, :NamespaceId, :Offset, :Limit, :FilterTopic, :FilterGroup, :SortedBy, :SortOrder, :FilterOneGroup, :Types, :TagFilters
|
|
6233
6245
|
|
|
6234
|
-
def initialize(clusterid=nil, namespaceid=nil, offset=nil, limit=nil, filtertopic=nil, filtergroup=nil, sortedby=nil, sortorder=nil, filteronegroup=nil, types=nil)
|
|
6246
|
+
def initialize(clusterid=nil, namespaceid=nil, offset=nil, limit=nil, filtertopic=nil, filtergroup=nil, sortedby=nil, sortorder=nil, filteronegroup=nil, types=nil, tagfilters=nil)
|
|
6235
6247
|
@ClusterId = clusterid
|
|
6236
6248
|
@NamespaceId = namespaceid
|
|
6237
6249
|
@Offset = offset
|
|
@@ -6242,6 +6254,7 @@ module TencentCloud
|
|
|
6242
6254
|
@SortOrder = sortorder
|
|
6243
6255
|
@FilterOneGroup = filteronegroup
|
|
6244
6256
|
@Types = types
|
|
6257
|
+
@TagFilters = tagfilters
|
|
6245
6258
|
end
|
|
6246
6259
|
|
|
6247
6260
|
def deserialize(params)
|
|
@@ -6255,6 +6268,14 @@ module TencentCloud
|
|
|
6255
6268
|
@SortOrder = params['SortOrder']
|
|
6256
6269
|
@FilterOneGroup = params['FilterOneGroup']
|
|
6257
6270
|
@Types = params['Types']
|
|
6271
|
+
unless params['TagFilters'].nil?
|
|
6272
|
+
@TagFilters = []
|
|
6273
|
+
params['TagFilters'].each do |i|
|
|
6274
|
+
tagfilter_tmp = TagFilter.new
|
|
6275
|
+
tagfilter_tmp.deserialize(i)
|
|
6276
|
+
@TagFilters << tagfilter_tmp
|
|
6277
|
+
end
|
|
6278
|
+
end
|
|
6258
6279
|
end
|
|
6259
6280
|
end
|
|
6260
6281
|
|
|
@@ -6380,8 +6401,8 @@ module TencentCloud
|
|
|
6380
6401
|
|
|
6381
6402
|
attr_accessor :ClusterId, :EnvironmentId, :TopicName, :MsgId, :PulsarMsgId, :QueryDlqMsg, :QueryDeadLetterMessage, :Offset, :Limit, :FilterTrackGroup
|
|
6382
6403
|
extend Gem::Deprecate
|
|
6383
|
-
deprecate :QueryDlqMsg, :none, 2025,
|
|
6384
|
-
deprecate :QueryDlqMsg=, :none, 2025,
|
|
6404
|
+
deprecate :QueryDlqMsg, :none, 2025, 11
|
|
6405
|
+
deprecate :QueryDlqMsg=, :none, 2025, 11
|
|
6385
6406
|
|
|
6386
6407
|
def initialize(clusterid=nil, environmentid=nil, topicname=nil, msgid=nil, pulsarmsgid=nil, querydlqmsg=nil, querydeadlettermessage=nil, offset=nil, limit=nil, filtertrackgroup=nil)
|
|
6387
6408
|
@ClusterId = clusterid
|
|
@@ -6486,8 +6507,8 @@ module TencentCloud
|
|
|
6486
6507
|
|
|
6487
6508
|
attr_accessor :ClusterId, :EnvironmentId, :TopicName, :MsgId, :GroupName, :QueryDLQMsg, :QueryDeadLetterMessage
|
|
6488
6509
|
extend Gem::Deprecate
|
|
6489
|
-
deprecate :QueryDLQMsg, :none, 2025,
|
|
6490
|
-
deprecate :QueryDLQMsg=, :none, 2025,
|
|
6510
|
+
deprecate :QueryDLQMsg, :none, 2025, 11
|
|
6511
|
+
deprecate :QueryDLQMsg=, :none, 2025, 11
|
|
6491
6512
|
|
|
6492
6513
|
def initialize(clusterid=nil, environmentid=nil, topicname=nil, msgid=nil, groupname=nil, querydlqmsg=nil, querydeadlettermessage=nil)
|
|
6493
6514
|
@ClusterId = clusterid
|
|
@@ -6912,73 +6933,6 @@ module TencentCloud
|
|
|
6912
6933
|
end
|
|
6913
6934
|
end
|
|
6914
6935
|
|
|
6915
|
-
# DescribeRocketMQSmoothMigrationTaskList请求参数结构体
|
|
6916
|
-
class DescribeRocketMQSmoothMigrationTaskListRequest < TencentCloud::Common::AbstractModel
|
|
6917
|
-
# @param Offset: 查询起始偏移量
|
|
6918
|
-
# @type Offset: Integer
|
|
6919
|
-
# @param Limit: 查询最大数量
|
|
6920
|
-
# @type Limit: Integer
|
|
6921
|
-
# @param Filters: 查询过滤器,
|
|
6922
|
-
# 支持的字段如下
|
|
6923
|
-
# TaskStatus, 支持多选
|
|
6924
|
-
# ConnectionType,支持多选
|
|
6925
|
-
# ClusterId,精确搜索
|
|
6926
|
-
# TaskName,支持模糊搜索
|
|
6927
|
-
# @type Filters: Array
|
|
6928
|
-
|
|
6929
|
-
attr_accessor :Offset, :Limit, :Filters
|
|
6930
|
-
|
|
6931
|
-
def initialize(offset=nil, limit=nil, filters=nil)
|
|
6932
|
-
@Offset = offset
|
|
6933
|
-
@Limit = limit
|
|
6934
|
-
@Filters = filters
|
|
6935
|
-
end
|
|
6936
|
-
|
|
6937
|
-
def deserialize(params)
|
|
6938
|
-
@Offset = params['Offset']
|
|
6939
|
-
@Limit = params['Limit']
|
|
6940
|
-
unless params['Filters'].nil?
|
|
6941
|
-
@Filters = []
|
|
6942
|
-
params['Filters'].each do |i|
|
|
6943
|
-
filter_tmp = Filter.new
|
|
6944
|
-
filter_tmp.deserialize(i)
|
|
6945
|
-
@Filters << filter_tmp
|
|
6946
|
-
end
|
|
6947
|
-
end
|
|
6948
|
-
end
|
|
6949
|
-
end
|
|
6950
|
-
|
|
6951
|
-
# DescribeRocketMQSmoothMigrationTaskList返回参数结构体
|
|
6952
|
-
class DescribeRocketMQSmoothMigrationTaskListResponse < TencentCloud::Common::AbstractModel
|
|
6953
|
-
# @param TotalCount: 任务总数
|
|
6954
|
-
# @type TotalCount: Integer
|
|
6955
|
-
# @param Data: 任务列表
|
|
6956
|
-
# @type Data: Array
|
|
6957
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6958
|
-
# @type RequestId: String
|
|
6959
|
-
|
|
6960
|
-
attr_accessor :TotalCount, :Data, :RequestId
|
|
6961
|
-
|
|
6962
|
-
def initialize(totalcount=nil, data=nil, requestid=nil)
|
|
6963
|
-
@TotalCount = totalcount
|
|
6964
|
-
@Data = data
|
|
6965
|
-
@RequestId = requestid
|
|
6966
|
-
end
|
|
6967
|
-
|
|
6968
|
-
def deserialize(params)
|
|
6969
|
-
@TotalCount = params['TotalCount']
|
|
6970
|
-
unless params['Data'].nil?
|
|
6971
|
-
@Data = []
|
|
6972
|
-
params['Data'].each do |i|
|
|
6973
|
-
rocketmqsmoothmigrationtaskitem_tmp = RocketMQSmoothMigrationTaskItem.new
|
|
6974
|
-
rocketmqsmoothmigrationtaskitem_tmp.deserialize(i)
|
|
6975
|
-
@Data << rocketmqsmoothmigrationtaskitem_tmp
|
|
6976
|
-
end
|
|
6977
|
-
end
|
|
6978
|
-
@RequestId = params['RequestId']
|
|
6979
|
-
end
|
|
6980
|
-
end
|
|
6981
|
-
|
|
6982
6936
|
# DescribeRocketMQSmoothMigrationTask请求参数结构体
|
|
6983
6937
|
class DescribeRocketMQSmoothMigrationTaskRequest < TencentCloud::Common::AbstractModel
|
|
6984
6938
|
# @param TaskId: 任务ID
|
|
@@ -7111,140 +7065,6 @@ module TencentCloud
|
|
|
7111
7065
|
end
|
|
7112
7066
|
end
|
|
7113
7067
|
|
|
7114
|
-
# DescribeRocketMQSourceClusterGroupList请求参数结构体
|
|
7115
|
-
class DescribeRocketMQSourceClusterGroupListRequest < TencentCloud::Common::AbstractModel
|
|
7116
|
-
# @param Limit: 页大小
|
|
7117
|
-
# @type Limit: Integer
|
|
7118
|
-
# @param Offset: 偏移量
|
|
7119
|
-
# @type Offset: Integer
|
|
7120
|
-
# @param TaskId: 迁移任务名称
|
|
7121
|
-
# @type TaskId: String
|
|
7122
|
-
# @param Filters: 查询过滤器,支持字段groupName,imported
|
|
7123
|
-
# @type Filters: Array
|
|
7124
|
-
|
|
7125
|
-
attr_accessor :Limit, :Offset, :TaskId, :Filters
|
|
7126
|
-
|
|
7127
|
-
def initialize(limit=nil, offset=nil, taskid=nil, filters=nil)
|
|
7128
|
-
@Limit = limit
|
|
7129
|
-
@Offset = offset
|
|
7130
|
-
@TaskId = taskid
|
|
7131
|
-
@Filters = filters
|
|
7132
|
-
end
|
|
7133
|
-
|
|
7134
|
-
def deserialize(params)
|
|
7135
|
-
@Limit = params['Limit']
|
|
7136
|
-
@Offset = params['Offset']
|
|
7137
|
-
@TaskId = params['TaskId']
|
|
7138
|
-
unless params['Filters'].nil?
|
|
7139
|
-
@Filters = []
|
|
7140
|
-
params['Filters'].each do |i|
|
|
7141
|
-
filter_tmp = Filter.new
|
|
7142
|
-
filter_tmp.deserialize(i)
|
|
7143
|
-
@Filters << filter_tmp
|
|
7144
|
-
end
|
|
7145
|
-
end
|
|
7146
|
-
end
|
|
7147
|
-
end
|
|
7148
|
-
|
|
7149
|
-
# DescribeRocketMQSourceClusterGroupList返回参数结构体
|
|
7150
|
-
class DescribeRocketMQSourceClusterGroupListResponse < TencentCloud::Common::AbstractModel
|
|
7151
|
-
# @param Groups: group列表
|
|
7152
|
-
# @type Groups: Array
|
|
7153
|
-
# @param TotalCount: 总条数
|
|
7154
|
-
# @type TotalCount: Integer
|
|
7155
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
7156
|
-
# @type RequestId: String
|
|
7157
|
-
|
|
7158
|
-
attr_accessor :Groups, :TotalCount, :RequestId
|
|
7159
|
-
|
|
7160
|
-
def initialize(groups=nil, totalcount=nil, requestid=nil)
|
|
7161
|
-
@Groups = groups
|
|
7162
|
-
@TotalCount = totalcount
|
|
7163
|
-
@RequestId = requestid
|
|
7164
|
-
end
|
|
7165
|
-
|
|
7166
|
-
def deserialize(params)
|
|
7167
|
-
unless params['Groups'].nil?
|
|
7168
|
-
@Groups = []
|
|
7169
|
-
params['Groups'].each do |i|
|
|
7170
|
-
rocketmqgroupconfigoutput_tmp = RocketMQGroupConfigOutput.new
|
|
7171
|
-
rocketmqgroupconfigoutput_tmp.deserialize(i)
|
|
7172
|
-
@Groups << rocketmqgroupconfigoutput_tmp
|
|
7173
|
-
end
|
|
7174
|
-
end
|
|
7175
|
-
@TotalCount = params['TotalCount']
|
|
7176
|
-
@RequestId = params['RequestId']
|
|
7177
|
-
end
|
|
7178
|
-
end
|
|
7179
|
-
|
|
7180
|
-
# DescribeRocketMQSourceClusterTopicList请求参数结构体
|
|
7181
|
-
class DescribeRocketMQSourceClusterTopicListRequest < TencentCloud::Common::AbstractModel
|
|
7182
|
-
# @param Limit: 分页大小
|
|
7183
|
-
# @type Limit: Integer
|
|
7184
|
-
# @param Offset: 偏移量
|
|
7185
|
-
# @type Offset: Integer
|
|
7186
|
-
# @param TaskId: 迁移任务名
|
|
7187
|
-
# @type TaskId: String
|
|
7188
|
-
# @param Filters: 查询过滤器,支持字段如下
|
|
7189
|
-
# TopicName,
|
|
7190
|
-
# Type,Imported
|
|
7191
|
-
# @type Filters: Array
|
|
7192
|
-
|
|
7193
|
-
attr_accessor :Limit, :Offset, :TaskId, :Filters
|
|
7194
|
-
|
|
7195
|
-
def initialize(limit=nil, offset=nil, taskid=nil, filters=nil)
|
|
7196
|
-
@Limit = limit
|
|
7197
|
-
@Offset = offset
|
|
7198
|
-
@TaskId = taskid
|
|
7199
|
-
@Filters = filters
|
|
7200
|
-
end
|
|
7201
|
-
|
|
7202
|
-
def deserialize(params)
|
|
7203
|
-
@Limit = params['Limit']
|
|
7204
|
-
@Offset = params['Offset']
|
|
7205
|
-
@TaskId = params['TaskId']
|
|
7206
|
-
unless params['Filters'].nil?
|
|
7207
|
-
@Filters = []
|
|
7208
|
-
params['Filters'].each do |i|
|
|
7209
|
-
filter_tmp = Filter.new
|
|
7210
|
-
filter_tmp.deserialize(i)
|
|
7211
|
-
@Filters << filter_tmp
|
|
7212
|
-
end
|
|
7213
|
-
end
|
|
7214
|
-
end
|
|
7215
|
-
end
|
|
7216
|
-
|
|
7217
|
-
# DescribeRocketMQSourceClusterTopicList返回参数结构体
|
|
7218
|
-
class DescribeRocketMQSourceClusterTopicListResponse < TencentCloud::Common::AbstractModel
|
|
7219
|
-
# @param Topics: topic层列表
|
|
7220
|
-
# @type Topics: Array
|
|
7221
|
-
# @param TotalCount: 总条数
|
|
7222
|
-
# @type TotalCount: Integer
|
|
7223
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
7224
|
-
# @type RequestId: String
|
|
7225
|
-
|
|
7226
|
-
attr_accessor :Topics, :TotalCount, :RequestId
|
|
7227
|
-
|
|
7228
|
-
def initialize(topics=nil, totalcount=nil, requestid=nil)
|
|
7229
|
-
@Topics = topics
|
|
7230
|
-
@TotalCount = totalcount
|
|
7231
|
-
@RequestId = requestid
|
|
7232
|
-
end
|
|
7233
|
-
|
|
7234
|
-
def deserialize(params)
|
|
7235
|
-
unless params['Topics'].nil?
|
|
7236
|
-
@Topics = []
|
|
7237
|
-
params['Topics'].each do |i|
|
|
7238
|
-
rocketmqtopicconfigoutput_tmp = RocketMQTopicConfigOutput.new
|
|
7239
|
-
rocketmqtopicconfigoutput_tmp.deserialize(i)
|
|
7240
|
-
@Topics << rocketmqtopicconfigoutput_tmp
|
|
7241
|
-
end
|
|
7242
|
-
end
|
|
7243
|
-
@TotalCount = params['TotalCount']
|
|
7244
|
-
@RequestId = params['RequestId']
|
|
7245
|
-
end
|
|
7246
|
-
end
|
|
7247
|
-
|
|
7248
7068
|
# DescribeRocketMQSubscriptions请求参数结构体
|
|
7249
7069
|
class DescribeRocketMQSubscriptionsRequest < TencentCloud::Common::AbstractModel
|
|
7250
7070
|
# @param ClusterId: 集群ID
|
|
@@ -7404,8 +7224,8 @@ module TencentCloud
|
|
|
7404
7224
|
|
|
7405
7225
|
attr_accessor :ClusterId, :EnvironmentId, :TopicName, :StartTime, :EndTime, :MsgId, :MsgKey, :Offset, :Limit, :TaskRequestId, :QueryDlqMsg, :NumOfLatestMsg, :Tag, :QueryDeadLetterMessage
|
|
7406
7226
|
extend Gem::Deprecate
|
|
7407
|
-
deprecate :QueryDlqMsg, :none, 2025,
|
|
7408
|
-
deprecate :QueryDlqMsg=, :none, 2025,
|
|
7227
|
+
deprecate :QueryDlqMsg, :none, 2025, 11
|
|
7228
|
+
deprecate :QueryDlqMsg=, :none, 2025, 11
|
|
7409
7229
|
|
|
7410
7230
|
def initialize(clusterid=nil, environmentid=nil, topicname=nil, starttime=nil, endtime=nil, msgid=nil, msgkey=nil, offset=nil, limit=nil, taskrequestid=nil, querydlqmsg=nil, numoflatestmsg=nil, tag=nil, querydeadlettermessage=nil)
|
|
7411
7231
|
@ClusterId = clusterid
|
|
@@ -7478,6 +7298,65 @@ module TencentCloud
|
|
|
7478
7298
|
end
|
|
7479
7299
|
end
|
|
7480
7300
|
|
|
7301
|
+
# DescribeRocketMQTopic请求参数结构体
|
|
7302
|
+
class DescribeRocketMQTopicRequest < TencentCloud::Common::AbstractModel
|
|
7303
|
+
# @param ClusterId: 集群ID
|
|
7304
|
+
# @type ClusterId: String
|
|
7305
|
+
# @param NamespaceId: 命名空间
|
|
7306
|
+
# @type NamespaceId: String
|
|
7307
|
+
# @param TopicName: 主题名称
|
|
7308
|
+
# @type TopicName: String
|
|
7309
|
+
# @param ConsumerGroup: 消费组名称
|
|
7310
|
+
# @type ConsumerGroup: String
|
|
7311
|
+
# @param Offset: 订阅列表分页参数Offset
|
|
7312
|
+
# @type Offset: Integer
|
|
7313
|
+
# @param Limit: 订阅列表分页参数Limit
|
|
7314
|
+
# @type Limit: Integer
|
|
7315
|
+
|
|
7316
|
+
attr_accessor :ClusterId, :NamespaceId, :TopicName, :ConsumerGroup, :Offset, :Limit
|
|
7317
|
+
|
|
7318
|
+
def initialize(clusterid=nil, namespaceid=nil, topicname=nil, consumergroup=nil, offset=nil, limit=nil)
|
|
7319
|
+
@ClusterId = clusterid
|
|
7320
|
+
@NamespaceId = namespaceid
|
|
7321
|
+
@TopicName = topicname
|
|
7322
|
+
@ConsumerGroup = consumergroup
|
|
7323
|
+
@Offset = offset
|
|
7324
|
+
@Limit = limit
|
|
7325
|
+
end
|
|
7326
|
+
|
|
7327
|
+
def deserialize(params)
|
|
7328
|
+
@ClusterId = params['ClusterId']
|
|
7329
|
+
@NamespaceId = params['NamespaceId']
|
|
7330
|
+
@TopicName = params['TopicName']
|
|
7331
|
+
@ConsumerGroup = params['ConsumerGroup']
|
|
7332
|
+
@Offset = params['Offset']
|
|
7333
|
+
@Limit = params['Limit']
|
|
7334
|
+
end
|
|
7335
|
+
end
|
|
7336
|
+
|
|
7337
|
+
# DescribeRocketMQTopic返回参数结构体
|
|
7338
|
+
class DescribeRocketMQTopicResponse < TencentCloud::Common::AbstractModel
|
|
7339
|
+
# @param Topic: Topic详情
|
|
7340
|
+
# @type Topic: :class:`Tencentcloud::Tdmq.v20200217.models.RocketMQTopic`
|
|
7341
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
7342
|
+
# @type RequestId: String
|
|
7343
|
+
|
|
7344
|
+
attr_accessor :Topic, :RequestId
|
|
7345
|
+
|
|
7346
|
+
def initialize(topic=nil, requestid=nil)
|
|
7347
|
+
@Topic = topic
|
|
7348
|
+
@RequestId = requestid
|
|
7349
|
+
end
|
|
7350
|
+
|
|
7351
|
+
def deserialize(params)
|
|
7352
|
+
unless params['Topic'].nil?
|
|
7353
|
+
@Topic = RocketMQTopic.new
|
|
7354
|
+
@Topic.deserialize(params['Topic'])
|
|
7355
|
+
end
|
|
7356
|
+
@RequestId = params['RequestId']
|
|
7357
|
+
end
|
|
7358
|
+
end
|
|
7359
|
+
|
|
7481
7360
|
# DescribeRocketMQTopicStats请求参数结构体
|
|
7482
7361
|
class DescribeRocketMQTopicStatsRequest < TencentCloud::Common::AbstractModel
|
|
7483
7362
|
# @param ClusterId: 实例ID
|
|
@@ -7601,10 +7480,12 @@ module TencentCloud
|
|
|
7601
7480
|
# @type FilterName: String
|
|
7602
7481
|
# @param FilterGroup: 按订阅消费组名称过滤
|
|
7603
7482
|
# @type FilterGroup: String
|
|
7483
|
+
# @param TagFilters: 标签过滤器
|
|
7484
|
+
# @type TagFilters: Array
|
|
7604
7485
|
|
|
7605
|
-
attr_accessor :Offset, :Limit, :ClusterId, :NamespaceId, :FilterType, :FilterName, :FilterGroup
|
|
7486
|
+
attr_accessor :Offset, :Limit, :ClusterId, :NamespaceId, :FilterType, :FilterName, :FilterGroup, :TagFilters
|
|
7606
7487
|
|
|
7607
|
-
def initialize(offset=nil, limit=nil, clusterid=nil, namespaceid=nil, filtertype=nil, filtername=nil, filtergroup=nil)
|
|
7488
|
+
def initialize(offset=nil, limit=nil, clusterid=nil, namespaceid=nil, filtertype=nil, filtername=nil, filtergroup=nil, tagfilters=nil)
|
|
7608
7489
|
@Offset = offset
|
|
7609
7490
|
@Limit = limit
|
|
7610
7491
|
@ClusterId = clusterid
|
|
@@ -7612,6 +7493,7 @@ module TencentCloud
|
|
|
7612
7493
|
@FilterType = filtertype
|
|
7613
7494
|
@FilterName = filtername
|
|
7614
7495
|
@FilterGroup = filtergroup
|
|
7496
|
+
@TagFilters = tagfilters
|
|
7615
7497
|
end
|
|
7616
7498
|
|
|
7617
7499
|
def deserialize(params)
|
|
@@ -7622,6 +7504,14 @@ module TencentCloud
|
|
|
7622
7504
|
@FilterType = params['FilterType']
|
|
7623
7505
|
@FilterName = params['FilterName']
|
|
7624
7506
|
@FilterGroup = params['FilterGroup']
|
|
7507
|
+
unless params['TagFilters'].nil?
|
|
7508
|
+
@TagFilters = []
|
|
7509
|
+
params['TagFilters'].each do |i|
|
|
7510
|
+
tagfilter_tmp = TagFilter.new
|
|
7511
|
+
tagfilter_tmp.deserialize(i)
|
|
7512
|
+
@TagFilters << tagfilter_tmp
|
|
7513
|
+
end
|
|
7514
|
+
end
|
|
7625
7515
|
end
|
|
7626
7516
|
end
|
|
7627
7517
|
|
|
@@ -9342,14 +9232,20 @@ module TencentCloud
|
|
|
9342
9232
|
# @type Remark: String
|
|
9343
9233
|
# @param EnableDeletionProtection: 是否开启删除保护,不填则不修改
|
|
9344
9234
|
# @type EnableDeletionProtection: Boolean
|
|
9235
|
+
# @param RemoveAllTags: 是否删除所有标签,默认为false
|
|
9236
|
+
# @type RemoveAllTags: Boolean
|
|
9237
|
+
# @param Tags: 修改实例的标签信息,全量标签信息,非增量
|
|
9238
|
+
# @type Tags: Array
|
|
9345
9239
|
|
|
9346
|
-
attr_accessor :InstanceId, :ClusterName, :Remark, :EnableDeletionProtection
|
|
9240
|
+
attr_accessor :InstanceId, :ClusterName, :Remark, :EnableDeletionProtection, :RemoveAllTags, :Tags
|
|
9347
9241
|
|
|
9348
|
-
def initialize(instanceid=nil, clustername=nil, remark=nil, enabledeletionprotection=nil)
|
|
9242
|
+
def initialize(instanceid=nil, clustername=nil, remark=nil, enabledeletionprotection=nil, removealltags=nil, tags=nil)
|
|
9349
9243
|
@InstanceId = instanceid
|
|
9350
9244
|
@ClusterName = clustername
|
|
9351
9245
|
@Remark = remark
|
|
9352
9246
|
@EnableDeletionProtection = enabledeletionprotection
|
|
9247
|
+
@RemoveAllTags = removealltags
|
|
9248
|
+
@Tags = tags
|
|
9353
9249
|
end
|
|
9354
9250
|
|
|
9355
9251
|
def deserialize(params)
|
|
@@ -9357,6 +9253,15 @@ module TencentCloud
|
|
|
9357
9253
|
@ClusterName = params['ClusterName']
|
|
9358
9254
|
@Remark = params['Remark']
|
|
9359
9255
|
@EnableDeletionProtection = params['EnableDeletionProtection']
|
|
9256
|
+
@RemoveAllTags = params['RemoveAllTags']
|
|
9257
|
+
unless params['Tags'].nil?
|
|
9258
|
+
@Tags = []
|
|
9259
|
+
params['Tags'].each do |i|
|
|
9260
|
+
tag_tmp = Tag.new
|
|
9261
|
+
tag_tmp.deserialize(i)
|
|
9262
|
+
@Tags << tag_tmp
|
|
9263
|
+
end
|
|
9264
|
+
end
|
|
9360
9265
|
end
|
|
9361
9266
|
end
|
|
9362
9267
|
|
|
@@ -9591,15 +9496,18 @@ module TencentCloud
|
|
|
9591
9496
|
# @type MessageRetention: Integer
|
|
9592
9497
|
# @param EnableDeletionProtection: 是否开启删除保护
|
|
9593
9498
|
# @type EnableDeletionProtection: Boolean
|
|
9499
|
+
# @param SendReceiveRatio: 控制生产和消费消息的 TPS 占比,取值范围0~1,默认值为0.5
|
|
9500
|
+
# @type SendReceiveRatio: Float
|
|
9594
9501
|
|
|
9595
|
-
attr_accessor :InstanceId, :Name, :Remark, :MessageRetention, :EnableDeletionProtection
|
|
9502
|
+
attr_accessor :InstanceId, :Name, :Remark, :MessageRetention, :EnableDeletionProtection, :SendReceiveRatio
|
|
9596
9503
|
|
|
9597
|
-
def initialize(instanceid=nil, name=nil, remark=nil, messageretention=nil, enabledeletionprotection=nil)
|
|
9504
|
+
def initialize(instanceid=nil, name=nil, remark=nil, messageretention=nil, enabledeletionprotection=nil, sendreceiveratio=nil)
|
|
9598
9505
|
@InstanceId = instanceid
|
|
9599
9506
|
@Name = name
|
|
9600
9507
|
@Remark = remark
|
|
9601
9508
|
@MessageRetention = messageretention
|
|
9602
9509
|
@EnableDeletionProtection = enabledeletionprotection
|
|
9510
|
+
@SendReceiveRatio = sendreceiveratio
|
|
9603
9511
|
end
|
|
9604
9512
|
|
|
9605
9513
|
def deserialize(params)
|
|
@@ -9608,6 +9516,7 @@ module TencentCloud
|
|
|
9608
9516
|
@Remark = params['Remark']
|
|
9609
9517
|
@MessageRetention = params['MessageRetention']
|
|
9610
9518
|
@EnableDeletionProtection = params['EnableDeletionProtection']
|
|
9519
|
+
@SendReceiveRatio = params['SendReceiveRatio']
|
|
9611
9520
|
end
|
|
9612
9521
|
end
|
|
9613
9522
|
|
|
@@ -10767,10 +10676,12 @@ module TencentCloud
|
|
|
10767
10676
|
# @type ControlPlaneEndpointInfo: :class:`Tencentcloud::Tdmq.v20200217.models.VpcEndpointInfo`
|
|
10768
10677
|
# @param PublicTlsAccessEndpoint: TLS加密的数据流公网接入点
|
|
10769
10678
|
# @type PublicTlsAccessEndpoint: String
|
|
10679
|
+
# @param PublicIpReused: 公网IP是否复用
|
|
10680
|
+
# @type PublicIpReused: Boolean
|
|
10770
10681
|
|
|
10771
|
-
attr_accessor :PublicAccessEndpoint, :WebConsoleEndpoint, :WebConsoleUsername, :WebConsolePassword, :PublicAccessEndpointStatus, :PublicControlConsoleSwitchStatus, :VpcControlConsoleSwitchStatus, :VpcWebConsoleEndpoint, :PublicWebConsoleSwitchStatus, :VpcWebConsoleSwitchStatus, :PublicDataStreamStatus, :PrometheusEndpointInfo, :WebConsoleDomainEndpoint, :ControlPlaneEndpointInfo, :PublicTlsAccessEndpoint
|
|
10682
|
+
attr_accessor :PublicAccessEndpoint, :WebConsoleEndpoint, :WebConsoleUsername, :WebConsolePassword, :PublicAccessEndpointStatus, :PublicControlConsoleSwitchStatus, :VpcControlConsoleSwitchStatus, :VpcWebConsoleEndpoint, :PublicWebConsoleSwitchStatus, :VpcWebConsoleSwitchStatus, :PublicDataStreamStatus, :PrometheusEndpointInfo, :WebConsoleDomainEndpoint, :ControlPlaneEndpointInfo, :PublicTlsAccessEndpoint, :PublicIpReused
|
|
10772
10683
|
|
|
10773
|
-
def initialize(publicaccessendpoint=nil, webconsoleendpoint=nil, webconsoleusername=nil, webconsolepassword=nil, publicaccessendpointstatus=nil, publiccontrolconsoleswitchstatus=nil, vpccontrolconsoleswitchstatus=nil, vpcwebconsoleendpoint=nil, publicwebconsoleswitchstatus=nil, vpcwebconsoleswitchstatus=nil, publicdatastreamstatus=nil, prometheusendpointinfo=nil, webconsoledomainendpoint=nil, controlplaneendpointinfo=nil, publictlsaccessendpoint=nil)
|
|
10684
|
+
def initialize(publicaccessendpoint=nil, webconsoleendpoint=nil, webconsoleusername=nil, webconsolepassword=nil, publicaccessendpointstatus=nil, publiccontrolconsoleswitchstatus=nil, vpccontrolconsoleswitchstatus=nil, vpcwebconsoleendpoint=nil, publicwebconsoleswitchstatus=nil, vpcwebconsoleswitchstatus=nil, publicdatastreamstatus=nil, prometheusendpointinfo=nil, webconsoledomainendpoint=nil, controlplaneendpointinfo=nil, publictlsaccessendpoint=nil, publicipreused=nil)
|
|
10774
10685
|
@PublicAccessEndpoint = publicaccessendpoint
|
|
10775
10686
|
@WebConsoleEndpoint = webconsoleendpoint
|
|
10776
10687
|
@WebConsoleUsername = webconsoleusername
|
|
@@ -10786,6 +10697,7 @@ module TencentCloud
|
|
|
10786
10697
|
@WebConsoleDomainEndpoint = webconsoledomainendpoint
|
|
10787
10698
|
@ControlPlaneEndpointInfo = controlplaneendpointinfo
|
|
10788
10699
|
@PublicTlsAccessEndpoint = publictlsaccessendpoint
|
|
10700
|
+
@PublicIpReused = publicipreused
|
|
10789
10701
|
end
|
|
10790
10702
|
|
|
10791
10703
|
def deserialize(params)
|
|
@@ -10810,6 +10722,7 @@ module TencentCloud
|
|
|
10810
10722
|
@ControlPlaneEndpointInfo.deserialize(params['ControlPlaneEndpointInfo'])
|
|
10811
10723
|
end
|
|
10812
10724
|
@PublicTlsAccessEndpoint = params['PublicTlsAccessEndpoint']
|
|
10725
|
+
@PublicIpReused = params['PublicIpReused']
|
|
10813
10726
|
end
|
|
10814
10727
|
end
|
|
10815
10728
|
|
|
@@ -11428,16 +11341,16 @@ module TencentCloud
|
|
|
11428
11341
|
# @type PayMode: Integer
|
|
11429
11342
|
# @param Remark: 备注信息
|
|
11430
11343
|
# @type Remark: String
|
|
11431
|
-
# @param SpecName:
|
|
11432
|
-
# 2C8G:rabbit-vip-
|
|
11433
|
-
# 4C16G:rabbit-vip-
|
|
11434
|
-
# 8C32G:rabbit-vip-
|
|
11344
|
+
# @param SpecName: 集群的节点规格,对应的规格标识:
|
|
11345
|
+
# 2C8G:rabbit-vip-profession-2c8g
|
|
11346
|
+
# 4C16G:rabbit-vip-profession-4c16g
|
|
11347
|
+
# 8C32G:rabbit-vip-profession-8c32g
|
|
11435
11348
|
# 16C32G:rabbit-vip-basic-4
|
|
11436
|
-
# 16C64G:rabbit-vip-
|
|
11349
|
+
# 16C64G:rabbit-vip-profession-16c64g
|
|
11437
11350
|
# 2C4G:rabbit-vip-basic-5
|
|
11438
11351
|
# 4C8G:rabbit-vip-basic-1
|
|
11439
11352
|
# 8C16G(已售罄):rabbit-vip-basic-2
|
|
11440
|
-
# 不传默认为4C8G:rabbit-vip-basic-1
|
|
11353
|
+
# 不传默认为 4C8G:rabbit-vip-basic-1
|
|
11441
11354
|
# @type SpecName: String
|
|
11442
11355
|
# @param ExceptionInformation: 集群异常信息
|
|
11443
11356
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -11963,8 +11876,8 @@ module TencentCloud
|
|
|
11963
11876
|
|
|
11964
11877
|
attr_accessor :MaxTpsPerNamespace, :MaxNamespaceNum, :UsedNamespaceNum, :MaxTopicNum, :UsedTopicNum, :MaxGroupNum, :UsedGroupNum, :MaxRetentionTime, :MaxLatencyTime, :MaxQueuesPerTopic, :TopicDistribution, :MaxRoleNum, :MaxTpsLimit
|
|
11965
11878
|
extend Gem::Deprecate
|
|
11966
|
-
deprecate :MaxTpsPerNamespace, :none, 2025,
|
|
11967
|
-
deprecate :MaxTpsPerNamespace=, :none, 2025,
|
|
11879
|
+
deprecate :MaxTpsPerNamespace, :none, 2025, 11
|
|
11880
|
+
deprecate :MaxTpsPerNamespace=, :none, 2025, 11
|
|
11968
11881
|
|
|
11969
11882
|
def initialize(maxtpspernamespace=nil, maxnamespacenum=nil, usednamespacenum=nil, maxtopicnum=nil, usedtopicnum=nil, maxgroupnum=nil, usedgroupnum=nil, maxretentiontime=nil, maxlatencytime=nil, maxqueuespertopic=nil, topicdistribution=nil, maxrolenum=nil, maxtpslimit=nil)
|
|
11970
11883
|
@MaxTpsPerNamespace = maxtpspernamespace
|
|
@@ -12365,15 +12278,17 @@ module TencentCloud
|
|
|
12365
12278
|
# @type Namespace: String
|
|
12366
12279
|
# @param SubscribeTopicNum: 订阅的主题个数
|
|
12367
12280
|
# @type SubscribeTopicNum: Integer
|
|
12281
|
+
# @param TagList: 绑定的标签列表
|
|
12282
|
+
# @type TagList: Array
|
|
12368
12283
|
|
|
12369
|
-
attr_accessor :Name, :ConsumerNum, :TPS, :TotalAccumulative, :ConsumptionMode, :ReadEnabled, :RetryPartitionNum, :CreateTime, :UpdateTime, :ClientProtocol, :Remark, :ConsumerType, :BroadcastEnabled, :GroupType, :RetryMaxTimes, :InstanceId, :Namespace, :SubscribeTopicNum
|
|
12284
|
+
attr_accessor :Name, :ConsumerNum, :TPS, :TotalAccumulative, :ConsumptionMode, :ReadEnabled, :RetryPartitionNum, :CreateTime, :UpdateTime, :ClientProtocol, :Remark, :ConsumerType, :BroadcastEnabled, :GroupType, :RetryMaxTimes, :InstanceId, :Namespace, :SubscribeTopicNum, :TagList
|
|
12370
12285
|
extend Gem::Deprecate
|
|
12371
|
-
deprecate :TPS, :none, 2025,
|
|
12372
|
-
deprecate :TPS=, :none, 2025,
|
|
12373
|
-
deprecate :TotalAccumulative, :none, 2025,
|
|
12374
|
-
deprecate :TotalAccumulative=, :none, 2025,
|
|
12286
|
+
deprecate :TPS, :none, 2025, 11
|
|
12287
|
+
deprecate :TPS=, :none, 2025, 11
|
|
12288
|
+
deprecate :TotalAccumulative, :none, 2025, 11
|
|
12289
|
+
deprecate :TotalAccumulative=, :none, 2025, 11
|
|
12375
12290
|
|
|
12376
|
-
def initialize(name=nil, consumernum=nil, tps=nil, totalaccumulative=nil, consumptionmode=nil, readenabled=nil, retrypartitionnum=nil, createtime=nil, updatetime=nil, clientprotocol=nil, remark=nil, consumertype=nil, broadcastenabled=nil, grouptype=nil, retrymaxtimes=nil, instanceid=nil, namespace=nil, subscribetopicnum=nil)
|
|
12291
|
+
def initialize(name=nil, consumernum=nil, tps=nil, totalaccumulative=nil, consumptionmode=nil, readenabled=nil, retrypartitionnum=nil, createtime=nil, updatetime=nil, clientprotocol=nil, remark=nil, consumertype=nil, broadcastenabled=nil, grouptype=nil, retrymaxtimes=nil, instanceid=nil, namespace=nil, subscribetopicnum=nil, taglist=nil)
|
|
12377
12292
|
@Name = name
|
|
12378
12293
|
@ConsumerNum = consumernum
|
|
12379
12294
|
@TPS = tps
|
|
@@ -12392,6 +12307,7 @@ module TencentCloud
|
|
|
12392
12307
|
@InstanceId = instanceid
|
|
12393
12308
|
@Namespace = namespace
|
|
12394
12309
|
@SubscribeTopicNum = subscribetopicnum
|
|
12310
|
+
@TagList = taglist
|
|
12395
12311
|
end
|
|
12396
12312
|
|
|
12397
12313
|
def deserialize(params)
|
|
@@ -12413,6 +12329,14 @@ module TencentCloud
|
|
|
12413
12329
|
@InstanceId = params['InstanceId']
|
|
12414
12330
|
@Namespace = params['Namespace']
|
|
12415
12331
|
@SubscribeTopicNum = params['SubscribeTopicNum']
|
|
12332
|
+
unless params['TagList'].nil?
|
|
12333
|
+
@TagList = []
|
|
12334
|
+
params['TagList'].each do |i|
|
|
12335
|
+
tag_tmp = Tag.new
|
|
12336
|
+
tag_tmp.deserialize(i)
|
|
12337
|
+
@TagList << tag_tmp
|
|
12338
|
+
end
|
|
12339
|
+
end
|
|
12416
12340
|
end
|
|
12417
12341
|
end
|
|
12418
12342
|
|
|
@@ -12454,38 +12378,6 @@ module TencentCloud
|
|
|
12454
12378
|
end
|
|
12455
12379
|
end
|
|
12456
12380
|
|
|
12457
|
-
# RocketMQ消费组配置信息
|
|
12458
|
-
class RocketMQGroupConfigOutput < TencentCloud::Common::AbstractModel
|
|
12459
|
-
# @param Namespace: 命名空间
|
|
12460
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
12461
|
-
# @type Namespace: String
|
|
12462
|
-
# @param GroupName: 消费组名称
|
|
12463
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
12464
|
-
# @type GroupName: String
|
|
12465
|
-
# @param Imported: 是否已导入
|
|
12466
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
12467
|
-
# @type Imported: Boolean
|
|
12468
|
-
# @param Remark: remark
|
|
12469
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
12470
|
-
# @type Remark: String
|
|
12471
|
-
|
|
12472
|
-
attr_accessor :Namespace, :GroupName, :Imported, :Remark
|
|
12473
|
-
|
|
12474
|
-
def initialize(namespace=nil, groupname=nil, imported=nil, remark=nil)
|
|
12475
|
-
@Namespace = namespace
|
|
12476
|
-
@GroupName = groupname
|
|
12477
|
-
@Imported = imported
|
|
12478
|
-
@Remark = remark
|
|
12479
|
-
end
|
|
12480
|
-
|
|
12481
|
-
def deserialize(params)
|
|
12482
|
-
@Namespace = params['Namespace']
|
|
12483
|
-
@GroupName = params['GroupName']
|
|
12484
|
-
@Imported = params['Imported']
|
|
12485
|
-
@Remark = params['Remark']
|
|
12486
|
-
end
|
|
12487
|
-
end
|
|
12488
|
-
|
|
12489
12381
|
# RocketMQ专享集群实例配置
|
|
12490
12382
|
class RocketMQInstanceConfig < TencentCloud::Common::AbstractModel
|
|
12491
12383
|
# @param MaxTpsPerNamespace: 单命名空间TPS上线
|
|
@@ -12528,10 +12420,12 @@ module TencentCloud
|
|
|
12528
12420
|
# @param TopicNumUpperLimit: Topic个数最大配额,默认为集群规格单节点最大配额*节点个数
|
|
12529
12421
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
12530
12422
|
# @type TopicNumUpperLimit: Integer
|
|
12423
|
+
# @param SendReceiveRatio: 控制生产和消费消息的 TPS 占比,取值范围0~1,默认值为0.5
|
|
12424
|
+
# @type SendReceiveRatio: Float
|
|
12531
12425
|
|
|
12532
|
-
attr_accessor :MaxTpsPerNamespace, :MaxNamespaceNum, :UsedNamespaceNum, :MaxTopicNum, :UsedTopicNum, :MaxGroupNum, :UsedGroupNum, :ConfigDisplay, :NodeCount, :NodeDistribution, :TopicDistribution, :MaxQueuesPerTopic, :MaxRetention, :MinRetention, :Retention, :TopicNumLowerLimit, :TopicNumUpperLimit
|
|
12426
|
+
attr_accessor :MaxTpsPerNamespace, :MaxNamespaceNum, :UsedNamespaceNum, :MaxTopicNum, :UsedTopicNum, :MaxGroupNum, :UsedGroupNum, :ConfigDisplay, :NodeCount, :NodeDistribution, :TopicDistribution, :MaxQueuesPerTopic, :MaxRetention, :MinRetention, :Retention, :TopicNumLowerLimit, :TopicNumUpperLimit, :SendReceiveRatio
|
|
12533
12427
|
|
|
12534
|
-
def initialize(maxtpspernamespace=nil, maxnamespacenum=nil, usednamespacenum=nil, maxtopicnum=nil, usedtopicnum=nil, maxgroupnum=nil, usedgroupnum=nil, configdisplay=nil, nodecount=nil, nodedistribution=nil, topicdistribution=nil, maxqueuespertopic=nil, maxretention=nil, minretention=nil, retention=nil, topicnumlowerlimit=nil, topicnumupperlimit=nil)
|
|
12428
|
+
def initialize(maxtpspernamespace=nil, maxnamespacenum=nil, usednamespacenum=nil, maxtopicnum=nil, usedtopicnum=nil, maxgroupnum=nil, usedgroupnum=nil, configdisplay=nil, nodecount=nil, nodedistribution=nil, topicdistribution=nil, maxqueuespertopic=nil, maxretention=nil, minretention=nil, retention=nil, topicnumlowerlimit=nil, topicnumupperlimit=nil, sendreceiveratio=nil)
|
|
12535
12429
|
@MaxTpsPerNamespace = maxtpspernamespace
|
|
12536
12430
|
@MaxNamespaceNum = maxnamespacenum
|
|
12537
12431
|
@UsedNamespaceNum = usednamespacenum
|
|
@@ -12549,6 +12443,7 @@ module TencentCloud
|
|
|
12549
12443
|
@Retention = retention
|
|
12550
12444
|
@TopicNumLowerLimit = topicnumlowerlimit
|
|
12551
12445
|
@TopicNumUpperLimit = topicnumupperlimit
|
|
12446
|
+
@SendReceiveRatio = sendreceiveratio
|
|
12552
12447
|
end
|
|
12553
12448
|
|
|
12554
12449
|
def deserialize(params)
|
|
@@ -12583,6 +12478,7 @@ module TencentCloud
|
|
|
12583
12478
|
@Retention = params['Retention']
|
|
12584
12479
|
@TopicNumLowerLimit = params['TopicNumLowerLimit']
|
|
12585
12480
|
@TopicNumUpperLimit = params['TopicNumUpperLimit']
|
|
12481
|
+
@SendReceiveRatio = params['SendReceiveRatio']
|
|
12586
12482
|
end
|
|
12587
12483
|
end
|
|
12588
12484
|
|
|
@@ -12735,63 +12631,6 @@ module TencentCloud
|
|
|
12735
12631
|
end
|
|
12736
12632
|
end
|
|
12737
12633
|
|
|
12738
|
-
# RocketMQ平滑迁移任务
|
|
12739
|
-
class RocketMQSmoothMigrationTaskItem < TencentCloud::Common::AbstractModel
|
|
12740
|
-
# @param TaskId: 任务ID
|
|
12741
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
12742
|
-
# @type TaskId: String
|
|
12743
|
-
# @param TaskName: 任务名称
|
|
12744
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
12745
|
-
# @type TaskName: String
|
|
12746
|
-
# @param SourceClusterName: 源集群名称
|
|
12747
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
12748
|
-
# @type SourceClusterName: String
|
|
12749
|
-
# @param ClusterId: 目标集群ID
|
|
12750
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
12751
|
-
# @type ClusterId: String
|
|
12752
|
-
# @param ConnectionType: 网络连接类型,
|
|
12753
|
-
# PUBLIC 公网
|
|
12754
|
-
# VPC 私有网络
|
|
12755
|
-
# OTHER 其他
|
|
12756
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
12757
|
-
# @type ConnectionType: String
|
|
12758
|
-
# @param SourceNameServer: 源集群NameServer地址
|
|
12759
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
12760
|
-
# @type SourceNameServer: String
|
|
12761
|
-
# @param TaskStatus: 任务状态
|
|
12762
|
-
# Configuration 迁移配置
|
|
12763
|
-
# SourceConnecting 连接源集群中
|
|
12764
|
-
# MetaDataImport 元数据导入
|
|
12765
|
-
# EndpointSetup 切换接入点
|
|
12766
|
-
# ServiceMigration 切流中
|
|
12767
|
-
# Completed 已完成
|
|
12768
|
-
# Cancelled 已取消
|
|
12769
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
12770
|
-
# @type TaskStatus: String
|
|
12771
|
-
|
|
12772
|
-
attr_accessor :TaskId, :TaskName, :SourceClusterName, :ClusterId, :ConnectionType, :SourceNameServer, :TaskStatus
|
|
12773
|
-
|
|
12774
|
-
def initialize(taskid=nil, taskname=nil, sourceclustername=nil, clusterid=nil, connectiontype=nil, sourcenameserver=nil, taskstatus=nil)
|
|
12775
|
-
@TaskId = taskid
|
|
12776
|
-
@TaskName = taskname
|
|
12777
|
-
@SourceClusterName = sourceclustername
|
|
12778
|
-
@ClusterId = clusterid
|
|
12779
|
-
@ConnectionType = connectiontype
|
|
12780
|
-
@SourceNameServer = sourcenameserver
|
|
12781
|
-
@TaskStatus = taskstatus
|
|
12782
|
-
end
|
|
12783
|
-
|
|
12784
|
-
def deserialize(params)
|
|
12785
|
-
@TaskId = params['TaskId']
|
|
12786
|
-
@TaskName = params['TaskName']
|
|
12787
|
-
@SourceClusterName = params['SourceClusterName']
|
|
12788
|
-
@ClusterId = params['ClusterId']
|
|
12789
|
-
@ConnectionType = params['ConnectionType']
|
|
12790
|
-
@SourceNameServer = params['SourceNameServer']
|
|
12791
|
-
@TaskStatus = params['TaskStatus']
|
|
12792
|
-
end
|
|
12793
|
-
end
|
|
12794
|
-
|
|
12795
12634
|
# RocketMQ消费组订阅信息
|
|
12796
12635
|
class RocketMQSubscription < TencentCloud::Common::AbstractModel
|
|
12797
12636
|
# @param Topic: 主题名称
|
|
@@ -12934,10 +12773,12 @@ module TencentCloud
|
|
|
12934
12773
|
# @param SubscriptionData: 订阅关系列表
|
|
12935
12774
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
12936
12775
|
# @type SubscriptionData: Array
|
|
12776
|
+
# @param TagList: 绑定的标签列表
|
|
12777
|
+
# @type TagList: Array
|
|
12937
12778
|
|
|
12938
|
-
attr_accessor :Name, :Type, :GroupNum, :Remark, :PartitionNum, :CreateTime, :UpdateTime, :InstanceId, :Namespace, :LastUpdateTime, :SubscriptionCount, :SubscriptionData
|
|
12779
|
+
attr_accessor :Name, :Type, :GroupNum, :Remark, :PartitionNum, :CreateTime, :UpdateTime, :InstanceId, :Namespace, :LastUpdateTime, :SubscriptionCount, :SubscriptionData, :TagList
|
|
12939
12780
|
|
|
12940
|
-
def initialize(name=nil, type=nil, groupnum=nil, remark=nil, partitionnum=nil, createtime=nil, updatetime=nil, instanceid=nil, namespace=nil, lastupdatetime=nil, subscriptioncount=nil, subscriptiondata=nil)
|
|
12781
|
+
def initialize(name=nil, type=nil, groupnum=nil, remark=nil, partitionnum=nil, createtime=nil, updatetime=nil, instanceid=nil, namespace=nil, lastupdatetime=nil, subscriptioncount=nil, subscriptiondata=nil, taglist=nil)
|
|
12941
12782
|
@Name = name
|
|
12942
12783
|
@Type = type
|
|
12943
12784
|
@GroupNum = groupnum
|
|
@@ -12950,6 +12791,7 @@ module TencentCloud
|
|
|
12950
12791
|
@LastUpdateTime = lastupdatetime
|
|
12951
12792
|
@SubscriptionCount = subscriptioncount
|
|
12952
12793
|
@SubscriptionData = subscriptiondata
|
|
12794
|
+
@TagList = taglist
|
|
12953
12795
|
end
|
|
12954
12796
|
|
|
12955
12797
|
def deserialize(params)
|
|
@@ -12972,6 +12814,14 @@ module TencentCloud
|
|
|
12972
12814
|
@SubscriptionData << rocketmqsubscription_tmp
|
|
12973
12815
|
end
|
|
12974
12816
|
end
|
|
12817
|
+
unless params['TagList'].nil?
|
|
12818
|
+
@TagList = []
|
|
12819
|
+
params['TagList'].each do |i|
|
|
12820
|
+
tag_tmp = Tag.new
|
|
12821
|
+
tag_tmp.deserialize(i)
|
|
12822
|
+
@TagList << tag_tmp
|
|
12823
|
+
end
|
|
12824
|
+
end
|
|
12975
12825
|
end
|
|
12976
12826
|
end
|
|
12977
12827
|
|
|
@@ -13011,53 +12861,6 @@ module TencentCloud
|
|
|
13011
12861
|
end
|
|
13012
12862
|
end
|
|
13013
12863
|
|
|
13014
|
-
# RocketMQ主题配置信息
|
|
13015
|
-
class RocketMQTopicConfigOutput < TencentCloud::Common::AbstractModel
|
|
13016
|
-
# @param Namespace: 命名空间
|
|
13017
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
13018
|
-
# @type Namespace: String
|
|
13019
|
-
# @param TopicName: 主题名称
|
|
13020
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
13021
|
-
# @type TopicName: String
|
|
13022
|
-
# @param Type: 主题类型:
|
|
13023
|
-
# Normal,普通
|
|
13024
|
-
# GlobalOrder, 全局顺序
|
|
13025
|
-
# PartitionedOrder, 分区顺序
|
|
13026
|
-
# Transaction,事务消息
|
|
13027
|
-
# DelayScheduled,延迟/定时消息
|
|
13028
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
13029
|
-
# @type Type: String
|
|
13030
|
-
# @param Partitions: 分区个数
|
|
13031
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
13032
|
-
# @type Partitions: Integer
|
|
13033
|
-
# @param Remark: 备注信息
|
|
13034
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
13035
|
-
# @type Remark: String
|
|
13036
|
-
# @param Imported: 是否导入
|
|
13037
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
13038
|
-
# @type Imported: Boolean
|
|
13039
|
-
|
|
13040
|
-
attr_accessor :Namespace, :TopicName, :Type, :Partitions, :Remark, :Imported
|
|
13041
|
-
|
|
13042
|
-
def initialize(namespace=nil, topicname=nil, type=nil, partitions=nil, remark=nil, imported=nil)
|
|
13043
|
-
@Namespace = namespace
|
|
13044
|
-
@TopicName = topicname
|
|
13045
|
-
@Type = type
|
|
13046
|
-
@Partitions = partitions
|
|
13047
|
-
@Remark = remark
|
|
13048
|
-
@Imported = imported
|
|
13049
|
-
end
|
|
13050
|
-
|
|
13051
|
-
def deserialize(params)
|
|
13052
|
-
@Namespace = params['Namespace']
|
|
13053
|
-
@TopicName = params['TopicName']
|
|
13054
|
-
@Type = params['Type']
|
|
13055
|
-
@Partitions = params['Partitions']
|
|
13056
|
-
@Remark = params['Remark']
|
|
13057
|
-
@Imported = params['Imported']
|
|
13058
|
-
end
|
|
13059
|
-
end
|
|
13060
|
-
|
|
13061
12864
|
# RocketMQtopic分布情况
|
|
13062
12865
|
class RocketMQTopicDistribution < TencentCloud::Common::AbstractModel
|
|
13063
12866
|
# @param TopicType: topic类型
|
|
@@ -13787,6 +13590,26 @@ module TencentCloud
|
|
|
13787
13590
|
end
|
|
13788
13591
|
end
|
|
13789
13592
|
|
|
13593
|
+
# 标签过滤器
|
|
13594
|
+
class TagFilter < TencentCloud::Common::AbstractModel
|
|
13595
|
+
# @param TagKey: 标签键名称
|
|
13596
|
+
# @type TagKey: String
|
|
13597
|
+
# @param TagValues: 标签值列表
|
|
13598
|
+
# @type TagValues: Array
|
|
13599
|
+
|
|
13600
|
+
attr_accessor :TagKey, :TagValues
|
|
13601
|
+
|
|
13602
|
+
def initialize(tagkey=nil, tagvalues=nil)
|
|
13603
|
+
@TagKey = tagkey
|
|
13604
|
+
@TagValues = tagvalues
|
|
13605
|
+
end
|
|
13606
|
+
|
|
13607
|
+
def deserialize(params)
|
|
13608
|
+
@TagKey = params['TagKey']
|
|
13609
|
+
@TagValues = params['TagValues']
|
|
13610
|
+
end
|
|
13611
|
+
end
|
|
13612
|
+
|
|
13790
13613
|
# 主题实例
|
|
13791
13614
|
class Topic < TencentCloud::Common::AbstractModel
|
|
13792
13615
|
# @param AverageMsgSize: 最后一次间隔内发布消息的平均byte大小。
|
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.1174
|
|
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-11-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|
|
@@ -34,8 +34,8 @@ extensions: []
|
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
36
|
- lib/tencentcloud-sdk-tdmq.rb
|
|
37
|
-
- lib/v20200217/client.rb
|
|
38
37
|
- lib/v20200217/models.rb
|
|
38
|
+
- lib/v20200217/client.rb
|
|
39
39
|
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
|
41
41
|
licenses:
|