tencentcloud-sdk-trocket 3.0.928 → 3.0.929

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1e8ed2f8d0bd590fb47f32c7d3513ba1bb0baab9
4
- data.tar.gz: 4f62b3bf905d0590400c8888ba8634af749f98b1
3
+ metadata.gz: a5bf36bb1de94de03bd33c23f6e6c2d54175b20e
4
+ data.tar.gz: 1a479a9045ead42ff57ca83296812dade50732fc
5
5
  SHA512:
6
- metadata.gz: 5333488c1976f0dd5bf4ec22454a1384633f0f2b197a7724ee355adb005285b0a5e9aa7d214e76f68d91c7d9ce9529ab6f141011f29c6dc3d33d2dad31722e68
7
- data.tar.gz: 8d1cf25afba1a3e25521382360b71363a506a97125e72356de5c32f0ff3f4b9b64cbe0431a767abd701ba6107b522ff0d83051944111f8dfb790f312437a5c1e
6
+ metadata.gz: 331888d50b4c8f41d5c54bae3dfdb09642457744fb6cd093e2dd30b1eb1ad96bde84ce18a74b63a7f65378f7b6f8fae79e2120a4037460f202301874afac4449
7
+ data.tar.gz: 57cb1b63e4768ee7284ff4f94e87c82fb324c972edc019f8276748fe8a9debed55c99ac0946d6e63d9f71ce52e7ff689fb7eb2fc716eea30c8fa4bf0533a64af
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.928
1
+ 3.0.929
@@ -245,7 +245,7 @@ module TencentCloud
245
245
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
246
246
  end
247
247
 
248
- # 删除实例
248
+ # 删除 RocketMQ 5.x 集群。
249
249
 
250
250
  # @param request: Request instance for DeleteInstance.
251
251
  # @type request: :class:`Tencentcloud::trocket::V20230308::DeleteInstanceRequest`
@@ -488,11 +488,11 @@ module TencentCloud
488
488
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
489
489
  end
490
490
 
491
- # 获取实例列表,Filters参数使用说明如下:
491
+ # 查询集群列表,支持 4.x 和 5.x 集群,其中 Filters 参数使用说明如下:
492
492
  # 1. InstanceName, 名称模糊查询
493
- # 2. InstanceId,实例ID查询
494
- # 3. InstanceType, 实例类型查询,支持多选
495
- # 4. Version,实例版本查询
493
+ # 2. InstanceId,集群ID查询
494
+ # 3. InstanceType, 集群类型查询,支持多选
495
+ # 4. Version,集群版本查询
496
496
  # 当使用TagFilters查询时,Filters参数失效。
497
497
 
498
498
  # @param request: Request instance for DescribeFusionInstanceList.
@@ -517,7 +517,7 @@ module TencentCloud
517
517
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
518
518
  end
519
519
 
520
- # 查询实例信息
520
+ # 查询 RocketMQ 5.x 集群信息。
521
521
 
522
522
  # @param request: Request instance for DescribeInstance.
523
523
  # @type request: :class:`Tencentcloud::trocket::V20230308::DescribeInstanceRequest`
@@ -76,10 +76,8 @@ module TencentCloud
76
76
 
77
77
  # CreateConsumerGroup请求参数结构体
78
78
  class CreateConsumerGroupRequest < TencentCloud::Common::AbstractModel
79
- # @param InstanceId: 实例ID
79
+ # @param InstanceId: 集群ID
80
80
  # @type InstanceId: String
81
- # @param ConsumerGroup: 消费组名称
82
- # @type ConsumerGroup: String
83
81
  # @param MaxRetryTimes: 最大重试次数
84
82
  # @type MaxRetryTimes: Integer
85
83
  # @param ConsumeEnable: 是否开启消费
@@ -87,35 +85,37 @@ module TencentCloud
87
85
  # @param ConsumeMessageOrderly: 顺序投递:true
88
86
  # 并发投递:false
89
87
  # @type ConsumeMessageOrderly: Boolean
88
+ # @param ConsumerGroup: 消费组名称
89
+ # @type ConsumerGroup: String
90
90
  # @param Remark: 备注
91
91
  # @type Remark: String
92
92
 
93
- attr_accessor :InstanceId, :ConsumerGroup, :MaxRetryTimes, :ConsumeEnable, :ConsumeMessageOrderly, :Remark
93
+ attr_accessor :InstanceId, :MaxRetryTimes, :ConsumeEnable, :ConsumeMessageOrderly, :ConsumerGroup, :Remark
94
94
 
95
- def initialize(instanceid=nil, consumergroup=nil, maxretrytimes=nil, consumeenable=nil, consumemessageorderly=nil, remark=nil)
95
+ def initialize(instanceid=nil, maxretrytimes=nil, consumeenable=nil, consumemessageorderly=nil, consumergroup=nil, remark=nil)
96
96
  @InstanceId = instanceid
97
- @ConsumerGroup = consumergroup
98
97
  @MaxRetryTimes = maxretrytimes
99
98
  @ConsumeEnable = consumeenable
100
99
  @ConsumeMessageOrderly = consumemessageorderly
100
+ @ConsumerGroup = consumergroup
101
101
  @Remark = remark
102
102
  end
103
103
 
104
104
  def deserialize(params)
105
105
  @InstanceId = params['InstanceId']
106
- @ConsumerGroup = params['ConsumerGroup']
107
106
  @MaxRetryTimes = params['MaxRetryTimes']
108
107
  @ConsumeEnable = params['ConsumeEnable']
109
108
  @ConsumeMessageOrderly = params['ConsumeMessageOrderly']
109
+ @ConsumerGroup = params['ConsumerGroup']
110
110
  @Remark = params['Remark']
111
111
  end
112
112
  end
113
113
 
114
114
  # CreateConsumerGroup返回参数结构体
115
115
  class CreateConsumerGroupResponse < TencentCloud::Common::AbstractModel
116
- # @param InstanceId: 实例ID
116
+ # @param InstanceId: 集群ID
117
117
  # @type InstanceId: String
118
- # @param ConsumerGroup: 消费组
118
+ # @param ConsumerGroup: 消费组名称
119
119
  # @type ConsumerGroup: String
120
120
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
121
121
  # @type RequestId: String
@@ -234,7 +234,7 @@ module TencentCloud
234
234
 
235
235
  # CreateInstance返回参数结构体
236
236
  class CreateInstanceResponse < TencentCloud::Common::AbstractModel
237
- # @param InstanceId: 实例ID
237
+ # @param InstanceId: 集群ID
238
238
  # @type InstanceId: String
239
239
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
240
240
  # @type RequestId: String
@@ -310,28 +310,7 @@ module TencentCloud
310
310
  # @param Name: 实例名称
311
311
  # @type Name: String
312
312
  # @param SkuCode: 商品规格,可用规格如下:
313
- # experiment_500,
314
313
  # basic_1k,
315
- # basic_2k,
316
- # basic_4k,
317
- # basic_6k,
318
- # pro_4k,
319
- # pro_6k,
320
- # pro_1w,
321
- # pro_2w,
322
- # pro_3w,
323
- # pro_4w,
324
- # pro_5w,
325
- # platinum_6k,
326
- # platinum_1w,
327
- # platinum_2w,
328
- # platinum_4w,
329
- # platinum_10w,
330
- # platinum_15w,
331
- # platinum_20w,
332
- # platinum_40w,
333
- # platinum_60w,
334
- # platinum_100w
335
314
  # @type SkuCode: String
336
315
  # @param Remark: 备注信息
337
316
  # @type Remark: String
@@ -424,9 +403,9 @@ module TencentCloud
424
403
 
425
404
  # CreateMQTTTopic请求参数结构体
426
405
  class CreateMQTTTopicRequest < TencentCloud::Common::AbstractModel
427
- # @param InstanceId: 实例ID
406
+ # @param InstanceId: 集群ID
428
407
  # @type InstanceId: String
429
- # @param Topic: 主题
408
+ # @param Topic: 主题名称
430
409
  # @type Topic: String
431
410
  # @param Remark: 备注
432
411
  # @type Remark: String
@@ -472,7 +451,7 @@ module TencentCloud
472
451
 
473
452
  # CreateMQTTUser请求参数结构体
474
453
  class CreateMQTTUserRequest < TencentCloud::Common::AbstractModel
475
- # @param InstanceId: 实例ID
454
+ # @param InstanceId: 集群ID
476
455
  # @type InstanceId: String
477
456
  # @param Remark: 备注
478
457
  # @type Remark: String
@@ -524,7 +503,7 @@ module TencentCloud
524
503
 
525
504
  # CreateRole请求参数结构体
526
505
  class CreateRoleRequest < TencentCloud::Common::AbstractModel
527
- # @param InstanceId: 实例ID
506
+ # @param InstanceId: 集群ID
528
507
  # @type InstanceId: String
529
508
  # @param Role: 角色名称
530
509
  # @type Role: String
@@ -576,9 +555,9 @@ module TencentCloud
576
555
 
577
556
  # CreateTopic请求参数结构体
578
557
  class CreateTopicRequest < TencentCloud::Common::AbstractModel
579
- # @param InstanceId: 实例ID
558
+ # @param InstanceId: 集群ID
580
559
  # @type InstanceId: String
581
- # @param Topic: 主题
560
+ # @param Topic: 主题名称
582
561
  # @type Topic: String
583
562
  # @param TopicType: 主题类型
584
563
  # UNSPECIFIED:未指定,
@@ -617,9 +596,9 @@ module TencentCloud
617
596
 
618
597
  # CreateTopic返回参数结构体
619
598
  class CreateTopicResponse < TencentCloud::Common::AbstractModel
620
- # @param InstanceId: 实例ID
599
+ # @param InstanceId: 集群ID
621
600
  # @type InstanceId: String
622
- # @param Topic: 主题
601
+ # @param Topic: 主题名
623
602
  # @type Topic: String
624
603
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
625
604
  # @type RequestId: String
@@ -663,7 +642,7 @@ module TencentCloud
663
642
 
664
643
  # DeleteConsumerGroup请求参数结构体
665
644
  class DeleteConsumerGroupRequest < TencentCloud::Common::AbstractModel
666
- # @param InstanceId: 实例ID
645
+ # @param InstanceId: 集群ID
667
646
  # @type InstanceId: String
668
647
  # @param ConsumerGroup: 消费组名称
669
648
  # @type ConsumerGroup: String
@@ -699,7 +678,7 @@ module TencentCloud
699
678
 
700
679
  # DeleteInstance请求参数结构体
701
680
  class DeleteInstanceRequest < TencentCloud::Common::AbstractModel
702
- # @param InstanceId: 实例ID
681
+ # @param InstanceId: 集群ID
703
682
  # @type InstanceId: String
704
683
 
705
684
  attr_accessor :InstanceId
@@ -831,7 +810,7 @@ module TencentCloud
831
810
 
832
811
  # DeleteMQTTUser请求参数结构体
833
812
  class DeleteMQTTUserRequest < TencentCloud::Common::AbstractModel
834
- # @param InstanceId: 实例ID
813
+ # @param InstanceId: 集群ID
835
814
  # @type InstanceId: String
836
815
  # @param Username: 用户名
837
816
  # @type Username: String
@@ -867,7 +846,7 @@ module TencentCloud
867
846
 
868
847
  # DeleteRole请求参数结构体
869
848
  class DeleteRoleRequest < TencentCloud::Common::AbstractModel
870
- # @param InstanceId: 实例ID
849
+ # @param InstanceId: 集群ID
871
850
  # @type InstanceId: String
872
851
  # @param Role: 角色名称
873
852
  # @type Role: String
@@ -903,9 +882,9 @@ module TencentCloud
903
882
 
904
883
  # DeleteTopic请求参数结构体
905
884
  class DeleteTopicRequest < TencentCloud::Common::AbstractModel
906
- # @param InstanceId: 实例ID
885
+ # @param InstanceId: 集群ID
907
886
  # @type InstanceId: String
908
- # @param Topic: 主题
887
+ # @param Topic: 主题名称
909
888
  # @type Topic: String
910
889
 
911
890
  attr_accessor :InstanceId, :Topic
@@ -939,31 +918,29 @@ module TencentCloud
939
918
 
940
919
  # DescribeConsumerGroupList请求参数结构体
941
920
  class DescribeConsumerGroupListRequest < TencentCloud::Common::AbstractModel
942
- # @param InstanceId: 实例ID
921
+ # @param InstanceId: 集群ID
943
922
  # @type InstanceId: String
923
+ # @param Filters: 查询条件列表
924
+ # @type Filters: Array
944
925
  # @param Offset: 查询起始位置
945
926
  # @type Offset: Integer
946
927
  # @param Limit: 查询结果限制数量
947
928
  # @type Limit: Integer
948
- # @param Filters: 查询条件列表
949
- # @type Filters: Array
950
929
  # @param FromTopic: 查询指定主题下的消费组
951
930
  # @type FromTopic: String
952
931
 
953
- attr_accessor :InstanceId, :Offset, :Limit, :Filters, :FromTopic
932
+ attr_accessor :InstanceId, :Filters, :Offset, :Limit, :FromTopic
954
933
 
955
- def initialize(instanceid=nil, offset=nil, limit=nil, filters=nil, fromtopic=nil)
934
+ def initialize(instanceid=nil, filters=nil, offset=nil, limit=nil, fromtopic=nil)
956
935
  @InstanceId = instanceid
936
+ @Filters = filters
957
937
  @Offset = offset
958
938
  @Limit = limit
959
- @Filters = filters
960
939
  @FromTopic = fromtopic
961
940
  end
962
941
 
963
942
  def deserialize(params)
964
943
  @InstanceId = params['InstanceId']
965
- @Offset = params['Offset']
966
- @Limit = params['Limit']
967
944
  unless params['Filters'].nil?
968
945
  @Filters = []
969
946
  params['Filters'].each do |i|
@@ -972,6 +949,8 @@ module TencentCloud
972
949
  @Filters << filter_tmp
973
950
  end
974
951
  end
952
+ @Offset = params['Offset']
953
+ @Limit = params['Limit']
975
954
  @FromTopic = params['FromTopic']
976
955
  end
977
956
  end
@@ -1010,7 +989,7 @@ module TencentCloud
1010
989
 
1011
990
  # DescribeConsumerGroup请求参数结构体
1012
991
  class DescribeConsumerGroupRequest < TencentCloud::Common::AbstractModel
1013
- # @param InstanceId: 实例ID
992
+ # @param InstanceId: 集群ID
1014
993
  # @type InstanceId: String
1015
994
  # @param ConsumerGroup: 消费组名称
1016
995
  # @type ConsumerGroup: String
@@ -1049,12 +1028,16 @@ module TencentCloud
1049
1028
  # @type MaxRetryTimes: Integer
1050
1029
  # @param Remark: 备注
1051
1030
  # @type Remark: String
1031
+ # @param MessageModel: 消费模式:
1032
+ # BROADCASTING 广播模式
1033
+ # CLUSTERING 集群模式
1034
+ # @type MessageModel: String
1052
1035
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1053
1036
  # @type RequestId: String
1054
1037
 
1055
- attr_accessor :ConsumerNum, :Tps, :ConsumerLag, :ConsumeType, :CreatedTime, :ConsumeMessageOrderly, :ConsumeEnable, :MaxRetryTimes, :Remark, :RequestId
1038
+ attr_accessor :ConsumerNum, :Tps, :ConsumerLag, :ConsumeType, :CreatedTime, :ConsumeMessageOrderly, :ConsumeEnable, :MaxRetryTimes, :Remark, :MessageModel, :RequestId
1056
1039
 
1057
- def initialize(consumernum=nil, tps=nil, consumerlag=nil, consumetype=nil, createdtime=nil, consumemessageorderly=nil, consumeenable=nil, maxretrytimes=nil, remark=nil, requestid=nil)
1040
+ def initialize(consumernum=nil, tps=nil, consumerlag=nil, consumetype=nil, createdtime=nil, consumemessageorderly=nil, consumeenable=nil, maxretrytimes=nil, remark=nil, messagemodel=nil, requestid=nil)
1058
1041
  @ConsumerNum = consumernum
1059
1042
  @Tps = tps
1060
1043
  @ConsumerLag = consumerlag
@@ -1064,6 +1047,7 @@ module TencentCloud
1064
1047
  @ConsumeEnable = consumeenable
1065
1048
  @MaxRetryTimes = maxretrytimes
1066
1049
  @Remark = remark
1050
+ @MessageModel = messagemodel
1067
1051
  @RequestId = requestid
1068
1052
  end
1069
1053
 
@@ -1077,13 +1061,14 @@ module TencentCloud
1077
1061
  @ConsumeEnable = params['ConsumeEnable']
1078
1062
  @MaxRetryTimes = params['MaxRetryTimes']
1079
1063
  @Remark = params['Remark']
1064
+ @MessageModel = params['MessageModel']
1080
1065
  @RequestId = params['RequestId']
1081
1066
  end
1082
1067
  end
1083
1068
 
1084
1069
  # DescribeConsumerLag请求参数结构体
1085
1070
  class DescribeConsumerLagRequest < TencentCloud::Common::AbstractModel
1086
- # @param InstanceId: 实例ID
1071
+ # @param InstanceId: 集群ID
1087
1072
  # @type InstanceId: String
1088
1073
  # @param ConsumerGroup: 消费组名称
1089
1074
  # @type ConsumerGroup: String
@@ -1279,7 +1264,7 @@ module TencentCloud
1279
1264
 
1280
1265
  # DescribeInstance请求参数结构体
1281
1266
  class DescribeInstanceRequest < TencentCloud::Common::AbstractModel
1282
- # @param InstanceId: 实例ID
1267
+ # @param InstanceId: 集群ID
1283
1268
  # @type InstanceId: String
1284
1269
 
1285
1270
  attr_accessor :InstanceId
@@ -1551,7 +1536,7 @@ module TencentCloud
1551
1536
 
1552
1537
  # DescribeMQTTInsPublicEndpoints请求参数结构体
1553
1538
  class DescribeMQTTInsPublicEndpointsRequest < TencentCloud::Common::AbstractModel
1554
- # @param InstanceId: 实例ID
1539
+ # @param InstanceId: 集群ID
1555
1540
  # @type InstanceId: String
1556
1541
 
1557
1542
  attr_accessor :InstanceId
@@ -1665,7 +1650,7 @@ module TencentCloud
1665
1650
 
1666
1651
  # DescribeMQTTInstanceCert请求参数结构体
1667
1652
  class DescribeMQTTInstanceCertRequest < TencentCloud::Common::AbstractModel
1668
- # @param InstanceId: 实例ID
1653
+ # @param InstanceId: 集群ID
1669
1654
  # @type InstanceId: String
1670
1655
 
1671
1656
  attr_accessor :InstanceId
@@ -1718,7 +1703,7 @@ module TencentCloud
1718
1703
  # @type Offset: Integer
1719
1704
  # @param Limit: 查询结果限制数量
1720
1705
  # @type Limit: Integer
1721
- # @param IncludeNew: 是否包含新控制台集群
1706
+ # @param IncludeNew: 是否包含新控制台集群:默认为包含
1722
1707
  # @type IncludeNew: Boolean
1723
1708
 
1724
1709
  attr_accessor :Filters, :Offset, :Limit, :IncludeNew
@@ -1779,7 +1764,7 @@ module TencentCloud
1779
1764
 
1780
1765
  # DescribeMQTTInstance请求参数结构体
1781
1766
  class DescribeMQTTInstanceRequest < TencentCloud::Common::AbstractModel
1782
- # @param InstanceId: 实例ID
1767
+ # @param InstanceId: 集群ID
1783
1768
  # @type InstanceId: String
1784
1769
 
1785
1770
  attr_accessor :InstanceId
@@ -1940,9 +1925,9 @@ module TencentCloud
1940
1925
 
1941
1926
  # DescribeMQTTMessage请求参数结构体
1942
1927
  class DescribeMQTTMessageRequest < TencentCloud::Common::AbstractModel
1943
- # @param InstanceId: 实例ID
1928
+ # @param InstanceId: 集群ID
1944
1929
  # @type InstanceId: String
1945
- # @param Topic: 主题
1930
+ # @param Topic: 主题名称
1946
1931
  # @type Topic: String
1947
1932
  # @param MsgId: 消息ID
1948
1933
  # @type MsgId: String
@@ -2281,7 +2266,7 @@ module TencentCloud
2281
2266
 
2282
2267
  # DescribeRoleList请求参数结构体
2283
2268
  class DescribeRoleListRequest < TencentCloud::Common::AbstractModel
2284
- # @param InstanceId: 实例ID
2269
+ # @param InstanceId: 集群ID
2285
2270
  # @type InstanceId: String
2286
2271
  # @param Offset: 查询起始位置
2287
2272
  # @type Offset: Integer
@@ -2348,7 +2333,7 @@ module TencentCloud
2348
2333
 
2349
2334
  # DescribeTopicList请求参数结构体
2350
2335
  class DescribeTopicListRequest < TencentCloud::Common::AbstractModel
2351
- # @param InstanceId: 实例ID
2336
+ # @param InstanceId: 集群ID
2352
2337
  # @type InstanceId: String
2353
2338
  # @param Filters: 查询条件列表
2354
2339
  # @type Filters: Array
@@ -2415,9 +2400,9 @@ module TencentCloud
2415
2400
 
2416
2401
  # DescribeTopic请求参数结构体
2417
2402
  class DescribeTopicRequest < TencentCloud::Common::AbstractModel
2418
- # @param InstanceId: 实例ID
2403
+ # @param InstanceId: 集群ID
2419
2404
  # @type InstanceId: String
2420
- # @param Topic: 主题
2405
+ # @param Topic: 主题名称
2421
2406
  # @type Topic: String
2422
2407
  # @param Filters: 查询条件列表
2423
2408
  # @type Filters: Array
@@ -2548,10 +2533,13 @@ module TencentCloud
2548
2533
  # @param IpRules: 公网放通规则
2549
2534
  # 注意:此字段可能返回 null,表示取不到有效值。
2550
2535
  # @type IpRules: Array
2536
+ # @param BillingFlow: 公网是否按流量计费
2537
+ # 注意:此字段可能返回 null,表示取不到有效值。
2538
+ # @type BillingFlow: Boolean
2551
2539
 
2552
- attr_accessor :Type, :Status, :PayMode, :EndpointUrl, :VpcId, :SubnetId, :Bandwidth, :IpRules
2540
+ attr_accessor :Type, :Status, :PayMode, :EndpointUrl, :VpcId, :SubnetId, :Bandwidth, :IpRules, :BillingFlow
2553
2541
 
2554
- def initialize(type=nil, status=nil, paymode=nil, endpointurl=nil, vpcid=nil, subnetid=nil, bandwidth=nil, iprules=nil)
2542
+ def initialize(type=nil, status=nil, paymode=nil, endpointurl=nil, vpcid=nil, subnetid=nil, bandwidth=nil, iprules=nil, billingflow=nil)
2555
2543
  @Type = type
2556
2544
  @Status = status
2557
2545
  @PayMode = paymode
@@ -2560,6 +2548,7 @@ module TencentCloud
2560
2548
  @SubnetId = subnetid
2561
2549
  @Bandwidth = bandwidth
2562
2550
  @IpRules = iprules
2551
+ @BillingFlow = billingflow
2563
2552
  end
2564
2553
 
2565
2554
  def deserialize(params)
@@ -2578,6 +2567,7 @@ module TencentCloud
2578
2567
  @IpRules << iprule_tmp
2579
2568
  end
2580
2569
  end
2570
+ @BillingFlow = params['BillingFlow']
2581
2571
  end
2582
2572
  end
2583
2573
 
@@ -3096,10 +3086,8 @@ module TencentCloud
3096
3086
  # @param Version: 实例版本
3097
3087
  # @type Version: String
3098
3088
  # @param InstanceType: 实例类型,
3099
- # EXPERIMENT,体验版
3100
3089
  # BASIC,基础版
3101
3090
  # PRO,专业版
3102
- # PLATINUM,铂金版
3103
3091
  # @type InstanceType: String
3104
3092
  # @param InstanceStatus: 实例状态,
3105
3093
  # RUNNING, 运行中
@@ -3356,7 +3344,7 @@ module TencentCloud
3356
3344
 
3357
3345
  # ModifyConsumerGroup请求参数结构体
3358
3346
  class ModifyConsumerGroupRequest < TencentCloud::Common::AbstractModel
3359
- # @param InstanceId: 实例ID
3347
+ # @param InstanceId: 集群ID
3360
3348
  # @type InstanceId: String
3361
3349
  # @param ConsumerGroup: 消费组名称
3362
3350
  # @type ConsumerGroup: String
@@ -3469,7 +3457,7 @@ module TencentCloud
3469
3457
 
3470
3458
  # ModifyMQTTInsPublicEndpoint请求参数结构体
3471
3459
  class ModifyMQTTInsPublicEndpointRequest < TencentCloud::Common::AbstractModel
3472
- # @param InstanceId: 实例ID
3460
+ # @param InstanceId: 集群ID
3473
3461
  # @type InstanceId: String
3474
3462
  # @param Bandwidth: 带宽
3475
3463
  # @type Bandwidth: Integer
@@ -3556,7 +3544,7 @@ module TencentCloud
3556
3544
 
3557
3545
  # ModifyMQTTInstance请求参数结构体
3558
3546
  class ModifyMQTTInstanceRequest < TencentCloud::Common::AbstractModel
3559
- # @param InstanceId: 实例ID
3547
+ # @param InstanceId: 集群ID
3560
3548
  # @type InstanceId: String
3561
3549
  # @param Name: 实例名称
3562
3550
  # @type Name: String
@@ -3596,9 +3584,9 @@ module TencentCloud
3596
3584
 
3597
3585
  # ModifyMQTTTopic请求参数结构体
3598
3586
  class ModifyMQTTTopicRequest < TencentCloud::Common::AbstractModel
3599
- # @param InstanceId: 实例ID
3587
+ # @param InstanceId: 集群ID
3600
3588
  # @type InstanceId: String
3601
- # @param Topic: 主题
3589
+ # @param Topic: 主题名称
3602
3590
  # @type Topic: String
3603
3591
  # @param Remark: 备注信息
3604
3592
  # @type Remark: String
@@ -3636,7 +3624,7 @@ module TencentCloud
3636
3624
 
3637
3625
  # ModifyMQTTUser请求参数结构体
3638
3626
  class ModifyMQTTUserRequest < TencentCloud::Common::AbstractModel
3639
- # @param InstanceId: 实例ID
3627
+ # @param InstanceId: 集群ID
3640
3628
  # @type InstanceId: String
3641
3629
  # @param Username: 用户名
3642
3630
  # @type Username: String
@@ -3684,7 +3672,7 @@ module TencentCloud
3684
3672
 
3685
3673
  # ModifyRole请求参数结构体
3686
3674
  class ModifyRoleRequest < TencentCloud::Common::AbstractModel
3687
- # @param InstanceId: 实例ID
3675
+ # @param InstanceId: 集群ID
3688
3676
  # @type InstanceId: String
3689
3677
  # @param Role: 角色名称
3690
3678
  # @type Role: String
@@ -3732,9 +3720,9 @@ module TencentCloud
3732
3720
 
3733
3721
  # ModifyTopic请求参数结构体
3734
3722
  class ModifyTopicRequest < TencentCloud::Common::AbstractModel
3735
- # @param InstanceId: 实例ID
3723
+ # @param InstanceId: 集群ID
3736
3724
  # @type InstanceId: String
3737
- # @param Topic: 主题
3725
+ # @param Topic: 主题名称
3738
3726
  # @type Topic: String
3739
3727
  # @param QueueNum: 队列数量
3740
3728
  # @type QueueNum: Integer
@@ -3941,14 +3929,14 @@ module TencentCloud
3941
3929
  class RoleItem < TencentCloud::Common::AbstractModel
3942
3930
  # @param RoleName: 角色名称
3943
3931
  # @type RoleName: String
3944
- # @param AccessKey: Access Key
3945
- # @type AccessKey: String
3946
- # @param SecretKey: Secret Key
3947
- # @type SecretKey: String
3948
3932
  # @param PermRead: 是否开启消费
3949
3933
  # @type PermRead: Boolean
3950
3934
  # @param PermWrite: 是否开启生产
3951
3935
  # @type PermWrite: Boolean
3936
+ # @param AccessKey: Access Key
3937
+ # @type AccessKey: String
3938
+ # @param SecretKey: Secret Key
3939
+ # @type SecretKey: String
3952
3940
  # @param Remark: 备注信息
3953
3941
  # @type Remark: String
3954
3942
  # @param CreatedTime: 创建时间,秒为单位
@@ -3956,14 +3944,14 @@ module TencentCloud
3956
3944
  # @param ModifiedTime: 修改时间,秒为单位
3957
3945
  # @type ModifiedTime: Integer
3958
3946
 
3959
- attr_accessor :RoleName, :AccessKey, :SecretKey, :PermRead, :PermWrite, :Remark, :CreatedTime, :ModifiedTime
3947
+ attr_accessor :RoleName, :PermRead, :PermWrite, :AccessKey, :SecretKey, :Remark, :CreatedTime, :ModifiedTime
3960
3948
 
3961
- def initialize(rolename=nil, accesskey=nil, secretkey=nil, permread=nil, permwrite=nil, remark=nil, createdtime=nil, modifiedtime=nil)
3949
+ def initialize(rolename=nil, permread=nil, permwrite=nil, accesskey=nil, secretkey=nil, remark=nil, createdtime=nil, modifiedtime=nil)
3962
3950
  @RoleName = rolename
3963
- @AccessKey = accesskey
3964
- @SecretKey = secretkey
3965
3951
  @PermRead = permread
3966
3952
  @PermWrite = permwrite
3953
+ @AccessKey = accesskey
3954
+ @SecretKey = secretkey
3967
3955
  @Remark = remark
3968
3956
  @CreatedTime = createdtime
3969
3957
  @ModifiedTime = modifiedtime
@@ -3971,10 +3959,10 @@ module TencentCloud
3971
3959
 
3972
3960
  def deserialize(params)
3973
3961
  @RoleName = params['RoleName']
3974
- @AccessKey = params['AccessKey']
3975
- @SecretKey = params['SecretKey']
3976
3962
  @PermRead = params['PermRead']
3977
3963
  @PermWrite = params['PermWrite']
3964
+ @AccessKey = params['AccessKey']
3965
+ @SecretKey = params['SecretKey']
3978
3966
  @Remark = params['Remark']
3979
3967
  @CreatedTime = params['CreatedTime']
3980
3968
  @ModifiedTime = params['ModifiedTime']
@@ -4082,10 +4070,19 @@ module TencentCloud
4082
4070
  # Failure 失败
4083
4071
  # 注意:此字段可能返回 null,表示取不到有效值。
4084
4072
  # @type ImportStatus: String
4073
+ # @param NamespaceV4: 4.x的命名空间,出参使用
4074
+ # 注意:此字段可能返回 null,表示取不到有效值。
4075
+ # @type NamespaceV4: String
4076
+ # @param TopicNameV4: 4.x的主题名,出参使用
4077
+ # 注意:此字段可能返回 null,表示取不到有效值。
4078
+ # @type TopicNameV4: String
4079
+ # @param FullNamespaceV4: 4.x的完整命名空间,出参使用
4080
+ # 注意:此字段可能返回 null,表示取不到有效值。
4081
+ # @type FullNamespaceV4: String
4085
4082
 
4086
- attr_accessor :TopicName, :TopicType, :QueueNum, :Remark, :Imported, :Namespace, :ImportStatus
4083
+ attr_accessor :TopicName, :TopicType, :QueueNum, :Remark, :Imported, :Namespace, :ImportStatus, :NamespaceV4, :TopicNameV4, :FullNamespaceV4
4087
4084
 
4088
- def initialize(topicname=nil, topictype=nil, queuenum=nil, remark=nil, imported=nil, namespace=nil, importstatus=nil)
4085
+ def initialize(topicname=nil, topictype=nil, queuenum=nil, remark=nil, imported=nil, namespace=nil, importstatus=nil, namespacev4=nil, topicnamev4=nil, fullnamespacev4=nil)
4089
4086
  @TopicName = topicname
4090
4087
  @TopicType = topictype
4091
4088
  @QueueNum = queuenum
@@ -4093,6 +4090,9 @@ module TencentCloud
4093
4090
  @Imported = imported
4094
4091
  @Namespace = namespace
4095
4092
  @ImportStatus = importstatus
4093
+ @NamespaceV4 = namespacev4
4094
+ @TopicNameV4 = topicnamev4
4095
+ @FullNamespaceV4 = fullnamespacev4
4096
4096
  end
4097
4097
 
4098
4098
  def deserialize(params)
@@ -4103,6 +4103,9 @@ module TencentCloud
4103
4103
  @Imported = params['Imported']
4104
4104
  @Namespace = params['Namespace']
4105
4105
  @ImportStatus = params['ImportStatus']
4106
+ @NamespaceV4 = params['NamespaceV4']
4107
+ @TopicNameV4 = params['TopicNameV4']
4108
+ @FullNamespaceV4 = params['FullNamespaceV4']
4106
4109
  end
4107
4110
  end
4108
4111
 
@@ -4273,11 +4276,14 @@ module TencentCloud
4273
4276
  # @param Topic: 主题名称
4274
4277
  # @type Topic: String
4275
4278
  # @param TopicType: 主题类型
4279
+ # NORMAL:普通消息,
4280
+ # FIFO:顺序消息,
4281
+ # DELAY:延时消息,
4282
+ # TRANSACTION:事务消息
4276
4283
  # @type TopicType: String
4277
4284
  # @param QueueNum: 队列数量
4278
4285
  # @type QueueNum: Integer
4279
4286
  # @param Remark: 描述
4280
- # 注意:此字段可能返回 null,表示取不到有效值。
4281
4287
  # @type Remark: String
4282
4288
  # @param ClusterIdV4: 4.x的集群id
4283
4289
  # 注意:此字段可能返回 null,表示取不到有效值。
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.928
4
+ version: 3.0.929
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-10-20 00:00:00.000000000 Z
11
+ date: 2024-10-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common