tencentcloud-sdk-ckafka 3.0.953 → 3.0.954

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: 163a32bb5f8773202573932bbe8fec88a0e41985
4
- data.tar.gz: b34e3fdded9774424197f55f95646d74a2140424
3
+ metadata.gz: 3e35600d3876d86e3277dab7dc09cceb54d68253
4
+ data.tar.gz: df144d770223d6e9ed45399207b0ae4035790d48
5
5
  SHA512:
6
- metadata.gz: 1dfdc827c786551c86228ba7edd84745bcbaed5661279e165ae6c55c4812b9349fb9e823fd45ec36abc89fee26aa3530960e9bee739e57424a7d820f72a76d4c
7
- data.tar.gz: 4dc885200d23b51c050da703dcb93ce5f7b951d61b428678d72e2559beff8cbd4d13d59e7d12f2b4fabb36d019a2b6c7da92eeaccbff7aba22127b389cf8fb45
6
+ metadata.gz: 502ffce35ace9612436dfa3ac4bd64131562ac769d48d58be60b66a7fc5b96b9ee1d738accf935731b99c8879e8346985995c8588fbc381118ca3b7b76d6122a
7
+ data.tar.gz: e9fa6217d63927d5034de3022e2517c5aa06a228a17fb26d3945211f565f93dabcc09ee90a2ec8416a76d15764ec998f7e8d7d518bea61388855bd2919ccef30
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.953
1
+ 3.0.954
@@ -677,7 +677,7 @@ module TencentCloud
677
677
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
678
678
  end
679
679
 
680
- # 删除Datahub主题
680
+ # 删除DIP主题
681
681
 
682
682
  # @param request: Request instance for DeleteDatahubTopic.
683
683
  # @type request: :class:`Tencentcloud::ckafka::V20190819::DeleteDatahubTopicRequest`
@@ -298,7 +298,7 @@ module TencentCloud
298
298
 
299
299
  # AuthorizeToken请求参数结构体
300
300
  class AuthorizeTokenRequest < TencentCloud::Common::AbstractModel
301
- # @param InstanceId: 实例ID
301
+ # @param InstanceId: ckafka集群实例Id
302
302
  # @type InstanceId: String
303
303
  # @param User: 用户
304
304
  # @type User: String
@@ -380,7 +380,7 @@ module TencentCloud
380
380
 
381
381
  # BatchCreateAcl请求参数结构体
382
382
  class BatchCreateAclRequest < TencentCloud::Common::AbstractModel
383
- # @param InstanceId: 实例ID
383
+ # @param InstanceId: ckafka集群实例Id
384
384
  # @type InstanceId: String
385
385
  # @param ResourceType: Acl资源类型,(2:TOPIC)
386
386
  # @type ResourceType: Integer
@@ -437,7 +437,7 @@ module TencentCloud
437
437
  class BatchModifyGroupOffsetsRequest < TencentCloud::Common::AbstractModel
438
438
  # @param GroupName: 消费分组名称
439
439
  # @type GroupName: String
440
- # @param InstanceId: 实例名称
440
+ # @param InstanceId: ckafka集群实例Id
441
441
  # @type InstanceId: String
442
442
  # @param Partitions: partition信息
443
443
  # @type Partitions: Array
@@ -493,7 +493,7 @@ module TencentCloud
493
493
 
494
494
  # BatchModifyTopicAttributes请求参数结构体
495
495
  class BatchModifyTopicAttributesRequest < TencentCloud::Common::AbstractModel
496
- # @param InstanceId: 实例id
496
+ # @param InstanceId: ckafka集群实例Id
497
497
  # @type InstanceId: String
498
498
  # @param Topic: 主题属性列表 (同一个批次最多支持10个)
499
499
  # @type Topic: Array
@@ -547,7 +547,7 @@ module TencentCloud
547
547
 
548
548
  # 批量修改topic参数
549
549
  class BatchModifyTopicInfo < TencentCloud::Common::AbstractModel
550
- # @param TopicName: topic名称
550
+ # @param TopicName: 主题名
551
551
  # @type TopicName: String
552
552
  # @param PartitionNum: 分区数
553
553
  # @type PartitionNum: Integer
@@ -569,10 +569,12 @@ module TencentCloud
569
569
  # @type SegmentMs: Integer
570
570
  # @param MaxMessageBytes: 批次的消息大小,范围1 KB到12 MB
571
571
  # @type MaxMessageBytes: Integer
572
+ # @param LogMsgTimestampType: 消息保存的时间类型:CreateTime/LogAppendTime
573
+ # @type LogMsgTimestampType: String
572
574
 
573
- attr_accessor :TopicName, :PartitionNum, :Note, :ReplicaNum, :CleanUpPolicy, :MinInsyncReplicas, :UncleanLeaderElectionEnable, :RetentionMs, :RetentionBytes, :SegmentMs, :MaxMessageBytes
575
+ attr_accessor :TopicName, :PartitionNum, :Note, :ReplicaNum, :CleanUpPolicy, :MinInsyncReplicas, :UncleanLeaderElectionEnable, :RetentionMs, :RetentionBytes, :SegmentMs, :MaxMessageBytes, :LogMsgTimestampType
574
576
 
575
- def initialize(topicname=nil, partitionnum=nil, note=nil, replicanum=nil, cleanuppolicy=nil, mininsyncreplicas=nil, uncleanleaderelectionenable=nil, retentionms=nil, retentionbytes=nil, segmentms=nil, maxmessagebytes=nil)
577
+ def initialize(topicname=nil, partitionnum=nil, note=nil, replicanum=nil, cleanuppolicy=nil, mininsyncreplicas=nil, uncleanleaderelectionenable=nil, retentionms=nil, retentionbytes=nil, segmentms=nil, maxmessagebytes=nil, logmsgtimestamptype=nil)
576
578
  @TopicName = topicname
577
579
  @PartitionNum = partitionnum
578
580
  @Note = note
@@ -584,6 +586,7 @@ module TencentCloud
584
586
  @RetentionBytes = retentionbytes
585
587
  @SegmentMs = segmentms
586
588
  @MaxMessageBytes = maxmessagebytes
589
+ @LogMsgTimestampType = logmsgtimestamptype
587
590
  end
588
591
 
589
592
  def deserialize(params)
@@ -598,21 +601,22 @@ module TencentCloud
598
601
  @RetentionBytes = params['RetentionBytes']
599
602
  @SegmentMs = params['SegmentMs']
600
603
  @MaxMessageBytes = params['MaxMessageBytes']
604
+ @LogMsgTimestampType = params['LogMsgTimestampType']
601
605
  end
602
606
  end
603
607
 
604
608
  # 批量修改topic属性结果
605
609
  class BatchModifyTopicResultDTO < TencentCloud::Common::AbstractModel
606
- # @param InstanceId: 实例id
610
+ # @param InstanceId: ckafka集群实例Id
607
611
  # 注意:此字段可能返回 null,表示取不到有效值。
608
612
  # @type InstanceId: String
609
- # @param TopicName: topic名称
613
+ # @param TopicName: 主题名
610
614
  # 注意:此字段可能返回 null,表示取不到有效值。
611
615
  # @type TopicName: String
612
- # @param ReturnCode: 状态码
616
+ # @param ReturnCode: 操作返回码
613
617
  # 注意:此字段可能返回 null,表示取不到有效值。
614
618
  # @type ReturnCode: String
615
- # @param Message: 状态消息
619
+ # @param Message: 操作返回信息
616
620
  # @type Message: String
617
621
 
618
622
  attr_accessor :InstanceId, :TopicName, :ReturnCode, :Message
@@ -688,7 +692,7 @@ module TencentCloud
688
692
 
689
693
  # CancelAuthorizationToken请求参数结构体
690
694
  class CancelAuthorizationTokenRequest < TencentCloud::Common::AbstractModel
691
- # @param InstanceId: 实例ID
695
+ # @param InstanceId: ckafka集群实例Id
692
696
  # @type InstanceId: String
693
697
  # @param User: 用户
694
698
  # @type User: String
@@ -712,7 +716,7 @@ module TencentCloud
712
716
 
713
717
  # CancelAuthorizationToken返回参数结构体
714
718
  class CancelAuthorizationTokenResponse < TencentCloud::Common::AbstractModel
715
- # @param Result: 0 成功
719
+ # @param Result: 0 成功 非0 失败
716
720
  # 注意:此字段可能返回 null,表示取不到有效值。
717
721
  # @type Result: Integer
718
722
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -1151,10 +1155,13 @@ module TencentCloud
1151
1155
  # @param RetentionBytes: 消息保留文件大小
1152
1156
  # 注意:此字段可能返回 null,表示取不到有效值。
1153
1157
  # @type RetentionBytes: Integer
1158
+ # @param LogMsgTimestampType: 消息保存的时间类型
1159
+ # 注意:此字段可能返回 null,表示取不到有效值。
1160
+ # @type LogMsgTimestampType: String
1154
1161
 
1155
- attr_accessor :Retention, :MinInsyncReplicas, :CleanUpPolicy, :SegmentMs, :UncleanLeaderElectionEnable, :SegmentBytes, :MaxMessageBytes, :RetentionBytes
1162
+ attr_accessor :Retention, :MinInsyncReplicas, :CleanUpPolicy, :SegmentMs, :UncleanLeaderElectionEnable, :SegmentBytes, :MaxMessageBytes, :RetentionBytes, :LogMsgTimestampType
1156
1163
 
1157
- def initialize(retention=nil, mininsyncreplicas=nil, cleanuppolicy=nil, segmentms=nil, uncleanleaderelectionenable=nil, segmentbytes=nil, maxmessagebytes=nil, retentionbytes=nil)
1164
+ def initialize(retention=nil, mininsyncreplicas=nil, cleanuppolicy=nil, segmentms=nil, uncleanleaderelectionenable=nil, segmentbytes=nil, maxmessagebytes=nil, retentionbytes=nil, logmsgtimestamptype=nil)
1158
1165
  @Retention = retention
1159
1166
  @MinInsyncReplicas = mininsyncreplicas
1160
1167
  @CleanUpPolicy = cleanuppolicy
@@ -1163,6 +1170,7 @@ module TencentCloud
1163
1170
  @SegmentBytes = segmentbytes
1164
1171
  @MaxMessageBytes = maxmessagebytes
1165
1172
  @RetentionBytes = retentionbytes
1173
+ @LogMsgTimestampType = logmsgtimestamptype
1166
1174
  end
1167
1175
 
1168
1176
  def deserialize(params)
@@ -1174,6 +1182,7 @@ module TencentCloud
1174
1182
  @SegmentBytes = params['SegmentBytes']
1175
1183
  @MaxMessageBytes = params['MaxMessageBytes']
1176
1184
  @RetentionBytes = params['RetentionBytes']
1185
+ @LogMsgTimestampType = params['LogMsgTimestampType']
1177
1186
  end
1178
1187
  end
1179
1188
 
@@ -1469,7 +1478,7 @@ module TencentCloud
1469
1478
 
1470
1479
  # CreateAcl请求参数结构体
1471
1480
  class CreateAclRequest < TencentCloud::Common::AbstractModel
1472
- # @param InstanceId: 实例id信息
1481
+ # @param InstanceId: ckafka集群实例Id
1473
1482
  # @type InstanceId: String
1474
1483
  # @param ResourceType: Acl资源类型,(2:TOPIC,3:GROUP,4:CLUSTER)
1475
1484
  # @type ResourceType: Integer
@@ -1536,11 +1545,11 @@ module TencentCloud
1536
1545
 
1537
1546
  # CreateAclRule请求参数结构体
1538
1547
  class CreateAclRuleRequest < TencentCloud::Common::AbstractModel
1539
- # @param InstanceId: 实例id信息
1548
+ # @param InstanceId: ckafka集群实例Id
1540
1549
  # @type InstanceId: String
1541
1550
  # @param ResourceType: Acl资源类型,目前只支持Topic,枚举值列表:Topic
1542
1551
  # @type ResourceType: String
1543
- # @param PatternType: 匹配类型,目前支持前缀匹配与预设策略,枚举值列表:PREFIXED/PRESET
1552
+ # @param PatternType: ACL规则匹配类型,目前支持前缀匹配与预设策略,枚举值列表:PREFIXED/PRESET
1544
1553
  # @type PatternType: String
1545
1554
  # @param RuleName: 规则名称
1546
1555
  # @type RuleName: String
@@ -1615,11 +1624,11 @@ module TencentCloud
1615
1624
  # @type CdcSubnetId: String
1616
1625
  # @param ZoneId: 所在可用区ID
1617
1626
  # @type ZoneId: Integer
1618
- # @param Bandwidth: cdc集群的总带宽
1627
+ # @param Bandwidth: 实例带宽,单位MB/s; 最小值:20MB/s, 高级版最大值:360MB/s,专业版最大值:100000MB/s 标准版固定带宽规格: 40MB/s, 100MB/s, 150MB/s
1619
1628
  # @type Bandwidth: Integer
1620
1629
  # @param DiskSize: cdc集群的总磁盘
1621
1630
  # @type DiskSize: Integer
1622
- # @param DiskType: 数据盘类型
1631
+ # @param DiskType: ckafka集群实例磁盘类型
1623
1632
  # @type DiskType: String
1624
1633
  # @param SystemDiskType: 系统盘类型
1625
1634
  # @type SystemDiskType: String
@@ -1798,13 +1807,13 @@ module TencentCloud
1798
1807
 
1799
1808
  # CreateConsumer请求参数结构体
1800
1809
  class CreateConsumerRequest < TencentCloud::Common::AbstractModel
1801
- # @param InstanceId: 实例id
1810
+ # @param InstanceId: ckafka集群实例Id
1802
1811
  # @type InstanceId: String
1803
- # @param GroupName: group名称
1812
+ # @param GroupName: 消费分组名称
1804
1813
  # @type GroupName: String
1805
- # @param TopicName: topic名称,TopicName、TopicNameList 需要显示指定一个存在的topic名称
1814
+ # @param TopicName: 主题名,TopicName、TopicNameList 需要显示指定一个存在的主题名
1806
1815
  # @type TopicName: String
1807
- # @param TopicNameList: topic名称数组
1816
+ # @param TopicNameList: 主题名列表
1808
1817
  # @type TopicNameList: Array
1809
1818
 
1810
1819
  attr_accessor :InstanceId, :GroupName, :TopicName, :TopicNameList
@@ -1826,7 +1835,7 @@ module TencentCloud
1826
1835
 
1827
1836
  # CreateConsumer返回参数结构体
1828
1837
  class CreateConsumerResponse < TencentCloud::Common::AbstractModel
1829
- # @param Result: 创建group描述
1838
+ # @param Result: 创建消费者组返回结果
1830
1839
  # @type Result: :class:`Tencentcloud::Ckafka.v20190819.models.JgwOperateResponse`
1831
1840
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1832
1841
  # @type RequestId: String
@@ -1865,7 +1874,7 @@ module TencentCloud
1865
1874
  # @type SchemaId: String
1866
1875
  # @param TransformsParam: 数据处理规则
1867
1876
  # @type TransformsParam: :class:`Tencentcloud::Ckafka.v20190819.models.TransformsParam`
1868
- # @param TaskId: 任务ID
1877
+ # @param TaskId: 任务Id
1869
1878
  # @type TaskId: String
1870
1879
  # @param Tags: 标签列表
1871
1880
  # @type Tags: Array
@@ -1944,7 +1953,7 @@ module TencentCloud
1944
1953
 
1945
1954
  # CreateDatahubTask返回参数结构体
1946
1955
  class CreateDatahubTaskResponse < TencentCloud::Common::AbstractModel
1947
- # @param Result: 任务id
1956
+ # @param Result: 返回结果
1948
1957
  # @type Result: :class:`Tencentcloud::Ckafka.v20190819.models.CreateDatahubTaskRes`
1949
1958
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1950
1959
  # @type RequestId: String
@@ -2423,7 +2432,7 @@ module TencentCloud
2423
2432
 
2424
2433
  # CreatePartition请求参数结构体
2425
2434
  class CreatePartitionRequest < TencentCloud::Common::AbstractModel
2426
- # @param InstanceId: 实例Id
2435
+ # @param InstanceId: ckafka集群实例Id
2427
2436
  # @type InstanceId: String
2428
2437
  # @param TopicName: 主题名称
2429
2438
  # @type TopicName: String
@@ -2508,7 +2517,7 @@ module TencentCloud
2508
2517
  # @type PublicNetworkMonthly: Integer
2509
2518
  # @param Tags: 标签
2510
2519
  # @type Tags: Array
2511
- # @param ElasticBandwidthSwitch: 弹性带宽开关 0不开启 1开启(0默认
2520
+ # @param ElasticBandwidthSwitch: 弹性带宽开关 0不开启 1开启(0默认)
2512
2521
  # @type ElasticBandwidthSwitch: Integer
2513
2522
 
2514
2523
  attr_accessor :InstanceName, :VpcId, :SubnetId, :InstanceType, :MsgRetentionTime, :ClusterId, :KafkaVersion, :SpecificationsType, :DiskType, :BandWidth, :DiskSize, :Partition, :TopicNum, :ZoneId, :MultiZoneFlag, :ZoneIds, :InstanceNum, :PublicNetworkMonthly, :Tags, :ElasticBandwidthSwitch
@@ -2592,11 +2601,11 @@ module TencentCloud
2592
2601
 
2593
2602
  # CreatePrometheus请求参数结构体
2594
2603
  class CreatePrometheusRequest < TencentCloud::Common::AbstractModel
2595
- # @param InstanceId: ckafka实例id
2604
+ # @param InstanceId: ckafka集群实例Id
2596
2605
  # @type InstanceId: String
2597
- # @param VpcId: vpc地址
2606
+ # @param VpcId: 私有网络Id
2598
2607
  # @type VpcId: String
2599
- # @param SubnetId: 子网地址
2608
+ # @param SubnetId: 子网Id
2600
2609
  # @type SubnetId: String
2601
2610
 
2602
2611
  attr_accessor :InstanceId, :VpcId, :SubnetId
@@ -2710,7 +2719,7 @@ module TencentCloud
2710
2719
 
2711
2720
  # CreateToken请求参数结构体
2712
2721
  class CreateTokenRequest < TencentCloud::Common::AbstractModel
2713
- # @param InstanceId: 实例ID
2722
+ # @param InstanceId: ckafka集群实例Id
2714
2723
  # @type InstanceId: String
2715
2724
  # @param User: 用户名
2716
2725
  # @type User: String
@@ -2751,7 +2760,7 @@ module TencentCloud
2751
2760
 
2752
2761
  # CreateTopicIpWhiteList请求参数结构体
2753
2762
  class CreateTopicIpWhiteListRequest < TencentCloud::Common::AbstractModel
2754
- # @param InstanceId: 实例Id
2763
+ # @param InstanceId: ckafka集群实例Id
2755
2764
  # @type InstanceId: String
2756
2765
  # @param TopicName: 主题名称
2757
2766
  # @type TopicName: String
@@ -2924,7 +2933,7 @@ module TencentCloud
2924
2933
 
2925
2934
  # CreateUser请求参数结构体
2926
2935
  class CreateUserRequest < TencentCloud::Common::AbstractModel
2927
- # @param InstanceId: 实例Id
2936
+ # @param InstanceId: ckafka集群实例Id
2928
2937
  # @type InstanceId: String
2929
2938
  # @param Name: 用户名称
2930
2939
  # @type Name: String
@@ -2948,7 +2957,7 @@ module TencentCloud
2948
2957
 
2949
2958
  # CreateUser返回参数结构体
2950
2959
  class CreateUserResponse < TencentCloud::Common::AbstractModel
2951
- # @param Result: 返回的结果
2960
+ # @param Result: 返回结果
2952
2961
  # @type Result: :class:`Tencentcloud::Ckafka.v20190819.models.JgwOperateResponse`
2953
2962
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2954
2963
  # @type RequestId: String
@@ -3360,9 +3369,9 @@ module TencentCloud
3360
3369
 
3361
3370
  # Datahub Topic 响应
3362
3371
  class DatahubTopicResp < TencentCloud::Common::AbstractModel
3363
- # @param TopicName: Topic名称
3372
+ # @param TopicName: 主题名称
3364
3373
  # @type TopicName: String
3365
- # @param TopicId: TopicId
3374
+ # @param TopicId: 主题Id
3366
3375
  # 注意:此字段可能返回 null,表示取不到有效值。
3367
3376
  # @type TopicId: String
3368
3377
 
@@ -3429,7 +3438,7 @@ module TencentCloud
3429
3438
 
3430
3439
  # DeleteAcl请求参数结构体
3431
3440
  class DeleteAclRequest < TencentCloud::Common::AbstractModel
3432
- # @param InstanceId: 实例id信息
3441
+ # @param InstanceId: ckafka集群实例Id
3433
3442
  # @type InstanceId: String
3434
3443
  # @param ResourceType: Acl资源类型,(2:TOPIC,3:GROUP,4:CLUSTER)
3435
3444
  # @type ResourceType: Integer
@@ -3587,7 +3596,7 @@ module TencentCloud
3587
3596
 
3588
3597
  # DeleteDatahubTask返回参数结构体
3589
3598
  class DeleteDatahubTaskResponse < TencentCloud::Common::AbstractModel
3590
- # @param Result: 任务id
3599
+ # @param Result: 操作结果
3591
3600
  # 注意:此字段可能返回 null,表示取不到有效值。
3592
3601
  # @type Result: :class:`Tencentcloud::Ckafka.v20190819.models.DatahubTaskIdRes`
3593
3602
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -3650,7 +3659,7 @@ module TencentCloud
3650
3659
 
3651
3660
  # DeleteGroup请求参数结构体
3652
3661
  class DeleteGroupRequest < TencentCloud::Common::AbstractModel
3653
- # @param InstanceId: 实例Id
3662
+ # @param InstanceId: ckafka集群实例Id
3654
3663
  # @type InstanceId: String
3655
3664
  # @param Group: 消费分组
3656
3665
  # @type Group: String
@@ -3693,7 +3702,7 @@ module TencentCloud
3693
3702
 
3694
3703
  # DeleteInstancePost请求参数结构体
3695
3704
  class DeleteInstancePostRequest < TencentCloud::Common::AbstractModel
3696
- # @param InstanceId: 实例ID
3705
+ # @param InstanceId: ckafka集群实例Id
3697
3706
  # @type InstanceId: String
3698
3707
 
3699
3708
  attr_accessor :InstanceId
@@ -3709,7 +3718,7 @@ module TencentCloud
3709
3718
 
3710
3719
  # DeleteInstancePost返回参数结构体
3711
3720
  class DeleteInstancePostResponse < TencentCloud::Common::AbstractModel
3712
- # @param Result: 返回的结果集
3721
+ # @param Result: 返回结果
3713
3722
  # @type Result: :class:`Tencentcloud::Ckafka.v20190819.models.InstanceDeleteResponse`
3714
3723
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3715
3724
  # @type RequestId: String
@@ -3732,7 +3741,7 @@ module TencentCloud
3732
3741
 
3733
3742
  # DeleteInstancePre请求参数结构体
3734
3743
  class DeleteInstancePreRequest < TencentCloud::Common::AbstractModel
3735
- # @param InstanceId: 实例id
3744
+ # @param InstanceId: ckafka集群实例Id
3736
3745
  # @type InstanceId: String
3737
3746
 
3738
3747
  attr_accessor :InstanceId
@@ -3771,13 +3780,13 @@ module TencentCloud
3771
3780
 
3772
3781
  # DeleteRoute请求参数结构体
3773
3782
  class DeleteRouteRequest < TencentCloud::Common::AbstractModel
3774
- # @param InstanceId: 实例唯一id
3783
+ # @param InstanceId: ckafka集群实例Id
3775
3784
  # @type InstanceId: String
3776
3785
  # @param RouteId: 路由id
3777
3786
  # @type RouteId: Integer
3778
3787
  # @param CallerAppid: 调用方appId
3779
3788
  # @type CallerAppid: Integer
3780
- # @param DeleteRouteTime: 删除路由时间
3789
+ # @param DeleteRouteTime: 设置定时删除路由时间,若DeleteRouteTime < now ,设置时间小于当前接口提交时间则立即执行;DeleteRouteTime > now,设置时间大于当前接口提交时间,则按照设置的时间,定时执行删除; 该参数设置提交后,无法撤销!!!
3781
3790
  # @type DeleteRouteTime: String
3782
3791
 
3783
3792
  attr_accessor :InstanceId, :RouteId, :CallerAppid, :DeleteRouteTime
@@ -3822,9 +3831,9 @@ module TencentCloud
3822
3831
 
3823
3832
  # DeleteRouteTriggerTime请求参数结构体
3824
3833
  class DeleteRouteTriggerTimeRequest < TencentCloud::Common::AbstractModel
3825
- # @param InstanceId: 实例id
3834
+ # @param InstanceId: ckafka集群实例Id
3826
3835
  # @type InstanceId: String
3827
- # @param DelayTime: 修改时间
3836
+ # @param DelayTime: 修改删除路由的定时时间
3828
3837
  # @type DelayTime: String
3829
3838
 
3830
3839
  attr_accessor :InstanceId, :DelayTime
@@ -3858,9 +3867,9 @@ module TencentCloud
3858
3867
 
3859
3868
  # DeleteTopicIpWhiteList请求参数结构体
3860
3869
  class DeleteTopicIpWhiteListRequest < TencentCloud::Common::AbstractModel
3861
- # @param InstanceId: 实例ID
3870
+ # @param InstanceId: ckafka集群实例Id
3862
3871
  # @type InstanceId: String
3863
- # @param TopicName: 主题名称
3872
+ # @param TopicName: 主题名
3864
3873
  # @type TopicName: String
3865
3874
  # @param IpWhiteList: ip白名单列表
3866
3875
  # @type IpWhiteList: Array
@@ -3948,7 +3957,7 @@ module TencentCloud
3948
3957
 
3949
3958
  # DeleteUser请求参数结构体
3950
3959
  class DeleteUserRequest < TencentCloud::Common::AbstractModel
3951
- # @param InstanceId: 实例Id
3960
+ # @param InstanceId: ckafka集群实例Id
3952
3961
  # @type InstanceId: String
3953
3962
  # @param Name: 用户名称
3954
3963
  # @type Name: String
@@ -3991,7 +4000,7 @@ module TencentCloud
3991
4000
 
3992
4001
  # DescribeACL请求参数结构体
3993
4002
  class DescribeACLRequest < TencentCloud::Common::AbstractModel
3994
- # @param InstanceId: 实例Id
4003
+ # @param InstanceId: ckafka集群实例Id
3995
4004
  # @type InstanceId: String
3996
4005
  # @param ResourceType: Acl资源类型,(2:TOPIC,3:GROUP,4:CLUSTER)
3997
4006
  # @type ResourceType: Integer
@@ -4050,7 +4059,7 @@ module TencentCloud
4050
4059
 
4051
4060
  # DescribeAclRule请求参数结构体
4052
4061
  class DescribeAclRuleRequest < TencentCloud::Common::AbstractModel
4053
- # @param InstanceId: 实例Id
4062
+ # @param InstanceId: ckafka集群实例Id
4054
4063
  # @type InstanceId: String
4055
4064
  # @param RuleName: ACL规则名
4056
4065
  # @type RuleName: String
@@ -4144,7 +4153,7 @@ module TencentCloud
4144
4153
 
4145
4154
  # DescribeCkafkaZone请求参数结构体
4146
4155
  class DescribeCkafkaZoneRequest < TencentCloud::Common::AbstractModel
4147
- # @param CdcId: cdc专业集群业务参数
4156
+ # @param CdcId: cdc集群Id
4148
4157
  # @type CdcId: String
4149
4158
 
4150
4159
  attr_accessor :CdcId
@@ -4649,7 +4658,7 @@ module TencentCloud
4649
4658
 
4650
4659
  # DescribeConsumerGroup请求参数结构体
4651
4660
  class DescribeConsumerGroupRequest < TencentCloud::Common::AbstractModel
4652
- # @param InstanceId: ckafka实例id。
4661
+ # @param InstanceId: ckafka集群实例Id
4653
4662
  # @type InstanceId: String
4654
4663
  # @param GroupName: 可选,用户需要查询的group名称。
4655
4664
  # @type GroupName: String
@@ -4998,7 +5007,7 @@ module TencentCloud
4998
5007
 
4999
5008
  # DescribeDatahubTopic请求参数结构体
5000
5009
  class DescribeDatahubTopicRequest < TencentCloud::Common::AbstractModel
5001
- # @param Name: 名称
5010
+ # @param Name: 弹性topic名称
5002
5011
  # @type Name: String
5003
5012
 
5004
5013
  attr_accessor :Name
@@ -5091,7 +5100,7 @@ module TencentCloud
5091
5100
 
5092
5101
  # DescribeDatahubTopics请求参数结构体
5093
5102
  class DescribeDatahubTopicsRequest < TencentCloud::Common::AbstractModel
5094
- # @param SearchWord: 查询值
5103
+ # @param SearchWord: 搜索词
5095
5104
  # @type SearchWord: String
5096
5105
  # @param Offset: 本次查询的偏移位置,默认为0
5097
5106
  # @type Offset: Integer
@@ -5187,9 +5196,9 @@ module TencentCloud
5187
5196
 
5188
5197
  # DescribeGroupInfo请求参数结构体
5189
5198
  class DescribeGroupInfoRequest < TencentCloud::Common::AbstractModel
5190
- # @param InstanceId: (过滤条件)按照实例 ID 过滤。
5199
+ # @param InstanceId: ckafka集群实例Id
5191
5200
  # @type InstanceId: String
5192
- # @param GroupList: Kafka 消费分组,Consumer-group,这里是数组形式,示例:["xxx","yyy"]
5201
+ # @param GroupList: Kafka 消费分组列表
5193
5202
  # @type GroupList: Array
5194
5203
 
5195
5204
  attr_accessor :InstanceId, :GroupList
@@ -5235,7 +5244,7 @@ module TencentCloud
5235
5244
 
5236
5245
  # DescribeGroupOffsets请求参数结构体
5237
5246
  class DescribeGroupOffsetsRequest < TencentCloud::Common::AbstractModel
5238
- # @param InstanceId: (过滤条件)按照实例 ID 过滤
5247
+ # @param InstanceId: ckafka集群实例Id
5239
5248
  # @type InstanceId: String
5240
5249
  # @param Group: Kafka 消费分组
5241
5250
  # @type Group: String
@@ -5271,7 +5280,7 @@ module TencentCloud
5271
5280
 
5272
5281
  # DescribeGroupOffsets返回参数结构体
5273
5282
  class DescribeGroupOffsetsResponse < TencentCloud::Common::AbstractModel
5274
- # @param Result: 返回的结果对象
5283
+ # @param Result: 返回结果
5275
5284
  # @type Result: :class:`Tencentcloud::Ckafka.v20190819.models.GroupOffsetResponse`
5276
5285
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5277
5286
  # @type RequestId: String
@@ -5294,7 +5303,7 @@ module TencentCloud
5294
5303
 
5295
5304
  # DescribeGroup请求参数结构体
5296
5305
  class DescribeGroupRequest < TencentCloud::Common::AbstractModel
5297
- # @param InstanceId: 实例ID
5306
+ # @param InstanceId: ckafka集群实例Id
5298
5307
  # @type InstanceId: String
5299
5308
  # @param SearchWord: 搜索关键字
5300
5309
  # @type SearchWord: String
@@ -5302,14 +5311,17 @@ module TencentCloud
5302
5311
  # @type Offset: Integer
5303
5312
  # @param Limit: 最大返回数量
5304
5313
  # @type Limit: Integer
5314
+ # @param Filters: 仅支持 GroupState 筛选, 支持的筛选状态有 Empty/Stable 注意:该参数只能在2.8/3.2 版本生效
5315
+ # @type Filters: Array
5305
5316
 
5306
- attr_accessor :InstanceId, :SearchWord, :Offset, :Limit
5317
+ attr_accessor :InstanceId, :SearchWord, :Offset, :Limit, :Filters
5307
5318
 
5308
- def initialize(instanceid=nil, searchword=nil, offset=nil, limit=nil)
5319
+ def initialize(instanceid=nil, searchword=nil, offset=nil, limit=nil, filters=nil)
5309
5320
  @InstanceId = instanceid
5310
5321
  @SearchWord = searchword
5311
5322
  @Offset = offset
5312
5323
  @Limit = limit
5324
+ @Filters = filters
5313
5325
  end
5314
5326
 
5315
5327
  def deserialize(params)
@@ -5317,12 +5329,20 @@ module TencentCloud
5317
5329
  @SearchWord = params['SearchWord']
5318
5330
  @Offset = params['Offset']
5319
5331
  @Limit = params['Limit']
5332
+ unless params['Filters'].nil?
5333
+ @Filters = []
5334
+ params['Filters'].each do |i|
5335
+ filter_tmp = Filter.new
5336
+ filter_tmp.deserialize(i)
5337
+ @Filters << filter_tmp
5338
+ end
5339
+ end
5320
5340
  end
5321
5341
  end
5322
5342
 
5323
5343
  # DescribeGroup返回参数结构体
5324
5344
  class DescribeGroupResponse < TencentCloud::Common::AbstractModel
5325
- # @param Result: 返回结果集列表
5345
+ # @param Result: 返回结果
5326
5346
  # @type Result: :class:`Tencentcloud::Ckafka.v20190819.models.GroupResponse`
5327
5347
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5328
5348
  # @type RequestId: String
@@ -5345,7 +5365,7 @@ module TencentCloud
5345
5365
 
5346
5366
  # DescribeInstanceAttributes请求参数结构体
5347
5367
  class DescribeInstanceAttributesRequest < TencentCloud::Common::AbstractModel
5348
- # @param InstanceId: 实例id
5368
+ # @param InstanceId: ckafka集群实例Id
5349
5369
  # @type InstanceId: String
5350
5370
 
5351
5371
  attr_accessor :InstanceId
@@ -5536,7 +5556,7 @@ module TencentCloud
5536
5556
 
5537
5557
  # DescribePrometheus请求参数结构体
5538
5558
  class DescribePrometheusRequest < TencentCloud::Common::AbstractModel
5539
- # @param InstanceId: ckafka实例Id
5559
+ # @param InstanceId: ckafka集群实例Id
5540
5560
  # @type InstanceId: String
5541
5561
 
5542
5562
  attr_accessor :InstanceId
@@ -5635,9 +5655,9 @@ module TencentCloud
5635
5655
 
5636
5656
  # DescribeRoute请求参数结构体
5637
5657
  class DescribeRouteRequest < TencentCloud::Common::AbstractModel
5638
- # @param InstanceId: 实例唯一id
5658
+ # @param InstanceId: ckafka集群实例Id
5639
5659
  # @type InstanceId: String
5640
- # @param RouteId: 路由id
5660
+ # @param RouteId: 路由Id
5641
5661
  # @type RouteId: Integer
5642
5662
 
5643
5663
  attr_accessor :InstanceId, :RouteId
@@ -5678,7 +5698,7 @@ module TencentCloud
5678
5698
 
5679
5699
  # DescribeTaskStatus请求参数结构体
5680
5700
  class DescribeTaskStatusRequest < TencentCloud::Common::AbstractModel
5681
- # @param FlowId: 任务唯一标记
5701
+ # @param FlowId: 流程Id
5682
5702
  # @type FlowId: Integer
5683
5703
 
5684
5704
  attr_accessor :FlowId
@@ -5717,7 +5737,7 @@ module TencentCloud
5717
5737
 
5718
5738
  # DescribeTopicAttributes请求参数结构体
5719
5739
  class DescribeTopicAttributesRequest < TencentCloud::Common::AbstractModel
5720
- # @param InstanceId: 实例 ID
5740
+ # @param InstanceId: ckafka集群实例Id
5721
5741
  # @type InstanceId: String
5722
5742
  # @param TopicName: 主题名称
5723
5743
  # @type TopicName: String
@@ -5760,7 +5780,7 @@ module TencentCloud
5760
5780
 
5761
5781
  # DescribeTopicDetail请求参数结构体
5762
5782
  class DescribeTopicDetailRequest < TencentCloud::Common::AbstractModel
5763
- # @param InstanceId: 实例id
5783
+ # @param InstanceId: ckafka集群实例Id
5764
5784
  # @type InstanceId: String
5765
5785
  # @param SearchWord: (过滤条件)按照topicName过滤,支持模糊查询
5766
5786
  # @type SearchWord: String
@@ -5770,15 +5790,24 @@ module TencentCloud
5770
5790
  # @type Limit: Integer
5771
5791
  # @param AclRuleName: Acl预设策略名称
5772
5792
  # @type AclRuleName: String
5793
+ # @param OrderBy: 根据特定的属性排序(目前支持PartitionNum/CreateTime)
5794
+ # @type OrderBy: String
5795
+ # @param OrderType: 0-顺序、1-倒序
5796
+ # @type OrderType: Integer
5797
+ # @param Filters: 目前支持 ReplicaNum (副本数)筛选
5798
+ # @type Filters: Array
5773
5799
 
5774
- attr_accessor :InstanceId, :SearchWord, :Offset, :Limit, :AclRuleName
5800
+ attr_accessor :InstanceId, :SearchWord, :Offset, :Limit, :AclRuleName, :OrderBy, :OrderType, :Filters
5775
5801
 
5776
- def initialize(instanceid=nil, searchword=nil, offset=nil, limit=nil, aclrulename=nil)
5802
+ def initialize(instanceid=nil, searchword=nil, offset=nil, limit=nil, aclrulename=nil, orderby=nil, ordertype=nil, filters=nil)
5777
5803
  @InstanceId = instanceid
5778
5804
  @SearchWord = searchword
5779
5805
  @Offset = offset
5780
5806
  @Limit = limit
5781
5807
  @AclRuleName = aclrulename
5808
+ @OrderBy = orderby
5809
+ @OrderType = ordertype
5810
+ @Filters = filters
5782
5811
  end
5783
5812
 
5784
5813
  def deserialize(params)
@@ -5787,6 +5816,16 @@ module TencentCloud
5787
5816
  @Offset = params['Offset']
5788
5817
  @Limit = params['Limit']
5789
5818
  @AclRuleName = params['AclRuleName']
5819
+ @OrderBy = params['OrderBy']
5820
+ @OrderType = params['OrderType']
5821
+ unless params['Filters'].nil?
5822
+ @Filters = []
5823
+ params['Filters'].each do |i|
5824
+ filter_tmp = Filter.new
5825
+ filter_tmp.deserialize(i)
5826
+ @Filters << filter_tmp
5827
+ end
5828
+ end
5790
5829
  end
5791
5830
  end
5792
5831
 
@@ -5870,9 +5909,9 @@ module TencentCloud
5870
5909
 
5871
5910
  # DescribeTopicProduceConnection请求参数结构体
5872
5911
  class DescribeTopicProduceConnectionRequest < TencentCloud::Common::AbstractModel
5873
- # @param InstanceId: 实例id
5912
+ # @param InstanceId: ckafka集群实例Id
5874
5913
  # @type InstanceId: String
5875
- # @param TopicName: topic名称
5914
+ # @param TopicName: 主题名
5876
5915
  # @type TopicName: String
5877
5916
 
5878
5917
  attr_accessor :InstanceId, :TopicName
@@ -5917,7 +5956,7 @@ module TencentCloud
5917
5956
 
5918
5957
  # DescribeTopic请求参数结构体
5919
5958
  class DescribeTopicRequest < TencentCloud::Common::AbstractModel
5920
- # @param InstanceId: 实例 ID
5959
+ # @param InstanceId: ckafka集群实例Id
5921
5960
  # @type InstanceId: String
5922
5961
  # @param SearchWord: 过滤条件,按照 topicName 过滤,支持模糊查询
5923
5962
  # @type SearchWord: String
@@ -5973,9 +6012,9 @@ module TencentCloud
5973
6012
 
5974
6013
  # DescribeTopicSubscribeGroup请求参数结构体
5975
6014
  class DescribeTopicSubscribeGroupRequest < TencentCloud::Common::AbstractModel
5976
- # @param InstanceId: 实例Id
6015
+ # @param InstanceId: ckafka集群实例Id
5977
6016
  # @type InstanceId: String
5978
- # @param TopicName: 主题名称
6017
+ # @param TopicName: 主题名
5979
6018
  # @type TopicName: String
5980
6019
  # @param Offset: 分页时的起始位置
5981
6020
  # @type Offset: Integer
@@ -6079,13 +6118,13 @@ module TencentCloud
6079
6118
 
6080
6119
  # DescribeUser请求参数结构体
6081
6120
  class DescribeUserRequest < TencentCloud::Common::AbstractModel
6082
- # @param InstanceId: 实例Id
6121
+ # @param InstanceId: ckafka集群实例Id
6083
6122
  # @type InstanceId: String
6084
6123
  # @param SearchWord: 按照名称过滤
6085
6124
  # @type SearchWord: String
6086
- # @param Offset: 偏移
6125
+ # @param Offset: 偏移量
6087
6126
  # @type Offset: Integer
6088
- # @param Limit: 本次返回个数
6127
+ # @param Limit: 返回数量
6089
6128
  # @type Limit: Integer
6090
6129
 
6091
6130
  attr_accessor :InstanceId, :SearchWord, :Offset, :Limit
@@ -6107,7 +6146,7 @@ module TencentCloud
6107
6146
 
6108
6147
  # DescribeUser返回参数结构体
6109
6148
  class DescribeUserResponse < TencentCloud::Common::AbstractModel
6110
- # @param Result: 返回结果列表
6149
+ # @param Result: 返回结果
6111
6150
  # @type Result: :class:`Tencentcloud::Ckafka.v20190819.models.UserResponse`
6112
6151
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6113
6152
  # @type RequestId: String
@@ -6815,7 +6854,7 @@ module TencentCloud
6815
6854
 
6816
6855
  # FetchDatahubMessageByOffset请求参数结构体
6817
6856
  class FetchDatahubMessageByOffsetRequest < TencentCloud::Common::AbstractModel
6818
- # @param Name: 主题名
6857
+ # @param Name: 弹性topic名称
6819
6858
  # @type Name: String
6820
6859
  # @param Partition: 分区id
6821
6860
  # @type Partition: Integer
@@ -6862,7 +6901,7 @@ module TencentCloud
6862
6901
 
6863
6902
  # FetchLatestDatahubMessageList请求参数结构体
6864
6903
  class FetchLatestDatahubMessageListRequest < TencentCloud::Common::AbstractModel
6865
- # @param Name: 主题名
6904
+ # @param Name: 弹性topic名称
6866
6905
  # @type Name: String
6867
6906
  # @param Partition: 分区id
6868
6907
  # @type Partition: Integer
@@ -6917,7 +6956,7 @@ module TencentCloud
6917
6956
 
6918
6957
  # FetchMessageByOffset请求参数结构体
6919
6958
  class FetchMessageByOffsetRequest < TencentCloud::Common::AbstractModel
6920
- # @param InstanceId: 实例Id
6959
+ # @param InstanceId: ckafka集群实例Id
6921
6960
  # @type InstanceId: String
6922
6961
  # @param Topic: 主题名
6923
6962
  # @type Topic: String
@@ -6968,7 +7007,7 @@ module TencentCloud
6968
7007
 
6969
7008
  # FetchMessageListByOffset请求参数结构体
6970
7009
  class FetchMessageListByOffsetRequest < TencentCloud::Common::AbstractModel
6971
- # @param InstanceId: 实例Id
7010
+ # @param InstanceId: ckafka集群实例Id
6972
7011
  # @type InstanceId: String
6973
7012
  # @param Topic: 主题名
6974
7013
  # @type Topic: String
@@ -7027,7 +7066,7 @@ module TencentCloud
7027
7066
 
7028
7067
  # FetchMessageListByTimestamp请求参数结构体
7029
7068
  class FetchMessageListByTimestampRequest < TencentCloud::Common::AbstractModel
7030
- # @param InstanceId: 实例Id
7069
+ # @param InstanceId: ckafka集群实例Id
7031
7070
  # @type InstanceId: String
7032
7071
  # @param Topic: 主题名
7033
7072
  # @type Topic: String
@@ -7035,7 +7074,7 @@ module TencentCloud
7035
7074
  # @type Partition: Integer
7036
7075
  # @param StartTime: 查询开始时间,13位时间戳
7037
7076
  # @type StartTime: Integer
7038
- # @param SinglePartitionRecordNumber: 最大查询条数,默认20,最大20
7077
+ # @param SinglePartitionRecordNumber: 最大查询条数,默认20,最大20, 最小1
7039
7078
  # @type SinglePartitionRecordNumber: Integer
7040
7079
 
7041
7080
  attr_accessor :InstanceId, :Topic, :Partition, :StartTime, :SinglePartitionRecordNumber
@@ -7278,7 +7317,7 @@ module TencentCloud
7278
7317
  # @type Protocol: String
7279
7318
  # @param Members: 仅当 state 为 Stable 且 protocol_type 为 consumer 时, 该数组才包含信息
7280
7319
  # @type Members: Array
7281
- # @param Group: Kafka 消费分组
7320
+ # @param Group: 消费分组名称
7282
7321
  # @type Group: String
7283
7322
 
7284
7323
  attr_accessor :ErrorCode, :State, :ProtocolType, :Protocol, :Members, :Group
@@ -7560,7 +7599,7 @@ module TencentCloud
7560
7599
 
7561
7600
  # InquireCkafkaPrice返回参数结构体
7562
7601
  class InquireCkafkaPriceResponse < TencentCloud::Common::AbstractModel
7563
- # @param Result: 出参
7602
+ # @param Result: 返回结果
7564
7603
  # @type Result: :class:`Tencentcloud::Ckafka.v20190819.models.InquireCkafkaPriceResp`
7565
7604
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7566
7605
  # @type RequestId: String
@@ -7942,10 +7981,12 @@ module TencentCloud
7942
7981
  # @param ElasticFloatBandwidth: 弹性带宽上浮值
7943
7982
  # 注意:此字段可能返回 null,表示取不到有效值。
7944
7983
  # @type ElasticFloatBandwidth: Integer
7984
+ # @param CustomCertId: ssl自定义证书id
7985
+ # @type CustomCertId: String
7945
7986
 
7946
- attr_accessor :InstanceId, :InstanceName, :VipList, :Vip, :Vport, :Status, :Bandwidth, :DiskSize, :ZoneId, :VpcId, :SubnetId, :Healthy, :HealthyMessage, :CreateTime, :MsgRetentionTime, :Config, :RemainderPartitions, :RemainderTopics, :CreatedPartitions, :CreatedTopics, :Tags, :ExpireTime, :ZoneIds, :Version, :MaxGroupNum, :Cvm, :InstanceType, :Features, :RetentionTimeConfig, :MaxConnection, :PublicNetwork, :DeleteRouteTimestamp, :RemainingPartitions, :RemainingTopics, :DynamicDiskConfig, :InstanceChargeType, :ClusterType, :FreePartitionNumber, :ElasticFloatBandwidth
7987
+ attr_accessor :InstanceId, :InstanceName, :VipList, :Vip, :Vport, :Status, :Bandwidth, :DiskSize, :ZoneId, :VpcId, :SubnetId, :Healthy, :HealthyMessage, :CreateTime, :MsgRetentionTime, :Config, :RemainderPartitions, :RemainderTopics, :CreatedPartitions, :CreatedTopics, :Tags, :ExpireTime, :ZoneIds, :Version, :MaxGroupNum, :Cvm, :InstanceType, :Features, :RetentionTimeConfig, :MaxConnection, :PublicNetwork, :DeleteRouteTimestamp, :RemainingPartitions, :RemainingTopics, :DynamicDiskConfig, :InstanceChargeType, :ClusterType, :FreePartitionNumber, :ElasticFloatBandwidth, :CustomCertId
7947
7988
 
7948
- def initialize(instanceid=nil, instancename=nil, viplist=nil, vip=nil, vport=nil, status=nil, bandwidth=nil, disksize=nil, zoneid=nil, vpcid=nil, subnetid=nil, healthy=nil, healthymessage=nil, createtime=nil, msgretentiontime=nil, config=nil, remainderpartitions=nil, remaindertopics=nil, createdpartitions=nil, createdtopics=nil, tags=nil, expiretime=nil, zoneids=nil, version=nil, maxgroupnum=nil, cvm=nil, instancetype=nil, features=nil, retentiontimeconfig=nil, maxconnection=nil, publicnetwork=nil, deleteroutetimestamp=nil, remainingpartitions=nil, remainingtopics=nil, dynamicdiskconfig=nil, instancechargetype=nil, clustertype=nil, freepartitionnumber=nil, elasticfloatbandwidth=nil)
7989
+ def initialize(instanceid=nil, instancename=nil, viplist=nil, vip=nil, vport=nil, status=nil, bandwidth=nil, disksize=nil, zoneid=nil, vpcid=nil, subnetid=nil, healthy=nil, healthymessage=nil, createtime=nil, msgretentiontime=nil, config=nil, remainderpartitions=nil, remaindertopics=nil, createdpartitions=nil, createdtopics=nil, tags=nil, expiretime=nil, zoneids=nil, version=nil, maxgroupnum=nil, cvm=nil, instancetype=nil, features=nil, retentiontimeconfig=nil, maxconnection=nil, publicnetwork=nil, deleteroutetimestamp=nil, remainingpartitions=nil, remainingtopics=nil, dynamicdiskconfig=nil, instancechargetype=nil, clustertype=nil, freepartitionnumber=nil, elasticfloatbandwidth=nil, customcertid=nil)
7949
7990
  @InstanceId = instanceid
7950
7991
  @InstanceName = instancename
7951
7992
  @VipList = viplist
@@ -7985,6 +8026,7 @@ module TencentCloud
7985
8026
  @ClusterType = clustertype
7986
8027
  @FreePartitionNumber = freepartitionnumber
7987
8028
  @ElasticFloatBandwidth = elasticfloatbandwidth
8029
+ @CustomCertId = customcertid
7988
8030
  end
7989
8031
 
7990
8032
  def deserialize(params)
@@ -8050,6 +8092,7 @@ module TencentCloud
8050
8092
  @ClusterType = params['ClusterType']
8051
8093
  @FreePartitionNumber = params['FreePartitionNumber']
8052
8094
  @ElasticFloatBandwidth = params['ElasticFloatBandwidth']
8095
+ @CustomCertId = params['CustomCertId']
8053
8096
  end
8054
8097
  end
8055
8098
 
@@ -8361,7 +8404,7 @@ module TencentCloud
8361
8404
 
8362
8405
  # InstanceScalingDown请求参数结构体
8363
8406
  class InstanceScalingDownRequest < TencentCloud::Common::AbstractModel
8364
- # @param InstanceId: 实例id
8407
+ # @param InstanceId: ckafka集群实例Id
8365
8408
  # @type InstanceId: String
8366
8409
  # @param UpgradeStrategy: 缩容模式 1:稳定变配
8367
8410
  # 2.高速变配
@@ -8394,7 +8437,7 @@ module TencentCloud
8394
8437
 
8395
8438
  # InstanceScalingDown返回参数结构体
8396
8439
  class InstanceScalingDownResponse < TencentCloud::Common::AbstractModel
8397
- # @param Result: 缩容应答
8440
+ # @param Result: 返回结果
8398
8441
  # 注意:此字段可能返回 null,表示取不到有效值。
8399
8442
  # @type Result: :class:`Tencentcloud::Ckafka.v20190819.models.ScalingDownResp`
8400
8443
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -8825,9 +8868,9 @@ module TencentCloud
8825
8868
 
8826
8869
  # ModifyAclRule请求参数结构体
8827
8870
  class ModifyAclRuleRequest < TencentCloud::Common::AbstractModel
8828
- # @param InstanceId: 实例Id
8871
+ # @param InstanceId: ckafka集群实例Id
8829
8872
  # @type InstanceId: String
8830
- # @param RuleName: ACL策略名
8873
+ # @param RuleName: ACL规则名
8831
8874
  # @type RuleName: String
8832
8875
  # @param IsApplied: 修改预设规则时传入,是否应用到新增的Topic
8833
8876
  # @type IsApplied: Integer
@@ -9048,7 +9091,7 @@ module TencentCloud
9048
9091
 
9049
9092
  # ModifyDatahubTopic请求参数结构体
9050
9093
  class ModifyDatahubTopicRequest < TencentCloud::Common::AbstractModel
9051
- # @param Name: 名称
9094
+ # @param Name: 弹性topic名称
9052
9095
  # @type Name: String
9053
9096
  # @param RetentionMs: 消息保留时间,单位:ms,当前最小值为60000ms。
9054
9097
  # @type RetentionMs: Integer
@@ -9106,13 +9149,13 @@ module TencentCloud
9106
9149
 
9107
9150
  # ModifyGroupOffsets请求参数结构体
9108
9151
  class ModifyGroupOffsetsRequest < TencentCloud::Common::AbstractModel
9109
- # @param InstanceId: kafka实例id
9152
+ # @param InstanceId: ckafka集群实例Id
9110
9153
  # @type InstanceId: String
9111
- # @param Group: kafka 消费分组
9154
+ # @param Group: 消费分组名称
9112
9155
  # @type Group: String
9113
9156
  # @param Strategy: 重置offset的策略,入参含义 0. 对齐shift-by参数,代表把offset向前或向后移动shift条 1. 对齐参考(by-duration,to-datetime,to-earliest,to-latest),代表把offset移动到指定timestamp的位置 2. 对齐参考(to-offset),代表把offset移动到指定的offset位置
9114
9157
  # @type Strategy: Integer
9115
- # @param Topics: 表示需要重置的topics, 不填表示全部
9158
+ # @param Topics: 需要重置的主题名列表, 不填表示全部
9116
9159
  # @type Topics: Array
9117
9160
  # @param Shift: 当strategy为0时,必须包含该字段,可以大于零代表会把offset向后移动shift条,小于零则将offset向前回溯shift条数。正确重置后新的offset应该是(old_offset + shift),需要注意的是如果新的offset小于partition的earliest则会设置为earliest,如果大于partition 的latest则会设置为latest
9118
9161
  # @type Shift: Integer
@@ -9197,23 +9240,23 @@ module TencentCloud
9197
9240
 
9198
9241
  # ModifyInstanceAttributes请求参数结构体
9199
9242
  class ModifyInstanceAttributesRequest < TencentCloud::Common::AbstractModel
9200
- # @param InstanceId: 实例id
9243
+ # @param InstanceId: ckafka集群实例Id
9201
9244
  # @type InstanceId: String
9202
- # @param MsgRetentionTime: 实例日志的最长保留时间,单位分钟,最大30天,0代表不开启日志保留时间回收策略
9245
+ # @param MsgRetentionTime: 实例日志的最长保留时间,单位分钟,最大90天,0代表不开启日志保留时间回收策略
9203
9246
  # @type MsgRetentionTime: Integer
9204
- # @param InstanceName: 实例名称,是一个不超过 64 个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)
9247
+ # @param InstanceName: ckafka集群实例Name
9205
9248
  # @type InstanceName: String
9206
9249
  # @param Config: 实例配置
9207
9250
  # @type Config: :class:`Tencentcloud::Ckafka.v20190819.models.ModifyInstanceAttributesConfig`
9208
9251
  # @param DynamicRetentionConfig: 动态消息保留策略配置
9209
9252
  # @type DynamicRetentionConfig: :class:`Tencentcloud::Ckafka.v20190819.models.DynamicRetentionTime`
9210
- # @param RebalanceTime: 升配Rebalance时间
9253
+ # @param RebalanceTime: 升配Rebalance时间 参数已废弃,忽略不填!!!
9211
9254
  # @type RebalanceTime: Integer
9212
- # @param PublicNetwork: 公网带宽
9255
+ # @param PublicNetwork: 公网带宽 最小3Mbps 最大999Mbps 仅专业版支持填写
9213
9256
  # @type PublicNetwork: Integer
9214
9257
  # @param DynamicDiskConfig: 动态硬盘扩容策略配置
9215
9258
  # @type DynamicDiskConfig: :class:`Tencentcloud::Ckafka.v20190819.models.DynamicDiskConfig`
9216
- # @param MaxMessageByte: 实例级别单条消息大小(单位byte)
9259
+ # @param MaxMessageByte: 实例级别单条消息大小(单位byte) 最大 12582912(不包含) 最小1024(不包含)
9217
9260
  # @type MaxMessageByte: Integer
9218
9261
 
9219
9262
  attr_accessor :InstanceId, :MsgRetentionTime, :InstanceName, :Config, :DynamicRetentionConfig, :RebalanceTime, :PublicNetwork, :DynamicDiskConfig, :MaxMessageByte
@@ -9388,7 +9431,7 @@ module TencentCloud
9388
9431
  # @type MaintenanceType: String
9389
9432
  # @param MaintenanceSubtype: INSTANCE_STORAGE_CAPACITY(磁盘自动扩容)/MESSAGE_RETENTION_PERIOD(磁盘动态消息保留策略)
9390
9433
  # @type MaintenanceSubtype: String
9391
- # @param TopicName: 主题名称
9434
+ # @param TopicName: 主题名
9392
9435
  # @type TopicName: String
9393
9436
  # @param ConfigureThreshold: 任务触发阈值
9394
9437
  # @type ConfigureThreshold: Integer
@@ -9461,9 +9504,9 @@ module TencentCloud
9461
9504
 
9462
9505
  # ModifyTopicAttributes请求参数结构体
9463
9506
  class ModifyTopicAttributesRequest < TencentCloud::Common::AbstractModel
9464
- # @param InstanceId: 实例 ID。
9507
+ # @param InstanceId: ckafka集群实例Id
9465
9508
  # @type InstanceId: String
9466
- # @param TopicName: 主题名称。
9509
+ # @param TopicName: 主题名
9467
9510
  # @type TopicName: String
9468
9511
  # @param Note: 主题备注,是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线-。
9469
9512
  # @type Note: String
@@ -9485,7 +9528,7 @@ module TencentCloud
9485
9528
  # @type IpWhiteList: Array
9486
9529
  # @param EnableAclRule: 预设ACL规则, 1:打开 0:关闭,默认不打开
9487
9530
  # @type EnableAclRule: Integer
9488
- # @param AclRuleName: 预设ACL规则的名称
9531
+ # @param AclRuleName: ACL规则名
9489
9532
  # @type AclRuleName: String
9490
9533
  # @param RetentionBytes: 可选, 保留文件大小. 默认为-1,单位bytes, 当前最小值为1048576B
9491
9534
  # @type RetentionBytes: Integer
@@ -9495,7 +9538,7 @@ module TencentCloud
9495
9538
  # @type QuotaProducerByteRate: Integer
9496
9539
  # @param QuotaConsumerByteRate: 消费限流,单位 MB/s
9497
9540
  # @type QuotaConsumerByteRate: Integer
9498
- # @param ReplicaNum: 调整topic副本数
9541
+ # @param ReplicaNum: topic副本数 最小值 1,最大值 3
9499
9542
  # @type ReplicaNum: Integer
9500
9543
 
9501
9544
  attr_accessor :InstanceId, :TopicName, :Note, :EnableWhiteList, :MinInsyncReplicas, :UncleanLeaderElectionEnable, :RetentionMs, :MaxMessageBytes, :SegmentMs, :CleanUpPolicy, :IpWhiteList, :EnableAclRule, :AclRuleName, :RetentionBytes, :Tags, :QuotaProducerByteRate, :QuotaConsumerByteRate, :ReplicaNum
@@ -9552,7 +9595,7 @@ module TencentCloud
9552
9595
 
9553
9596
  # ModifyTopicAttributes返回参数结构体
9554
9597
  class ModifyTopicAttributesResponse < TencentCloud::Common::AbstractModel
9555
- # @param Result: 返回结果集
9598
+ # @param Result: 返回结果
9556
9599
  # @type Result: :class:`Tencentcloud::Ckafka.v20190819.models.JgwOperateResponse`
9557
9600
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9558
9601
  # @type RequestId: String
@@ -10659,7 +10702,7 @@ module TencentCloud
10659
10702
 
10660
10703
  # RenewCkafkaInstance请求参数结构体
10661
10704
  class RenewCkafkaInstanceRequest < TencentCloud::Common::AbstractModel
10662
- # @param InstanceId: 实例id
10705
+ # @param InstanceId: ckafka集群实例Id
10663
10706
  # @type InstanceId: String
10664
10707
  # @param TimeSpan: 续费时长, 默认为1, 单位是月
10665
10708
  # @type TimeSpan: Integer
@@ -11099,7 +11142,7 @@ module TencentCloud
11099
11142
 
11100
11143
  # 实例缩容应答
11101
11144
  class ScalingDownResp < TencentCloud::Common::AbstractModel
11102
- # @param DealNames: 订单号
11145
+ # @param DealNames: 订单号列表
11103
11146
  # 注意:此字段可能返回 null,表示取不到有效值。
11104
11147
  # @type DealNames: Array
11105
11148
 
@@ -11509,13 +11552,13 @@ module TencentCloud
11509
11552
 
11510
11553
  # 主题详情
11511
11554
  class TopicDetail < TencentCloud::Common::AbstractModel
11512
- # @param TopicName: 主题名称
11555
+ # @param TopicName: 主题名
11513
11556
  # @type TopicName: String
11514
- # @param TopicId: 主题ID
11557
+ # @param TopicId: 主题Id
11515
11558
  # @type TopicId: String
11516
11559
  # @param PartitionNum: 分区数
11517
11560
  # @type PartitionNum: Integer
11518
- # @param ReplicaNum: 副本数
11561
+ # @param ReplicaNum: topic副本数 最小值 1,最大值 3
11519
11562
  # @type ReplicaNum: Integer
11520
11563
  # @param Note: 备注
11521
11564
  # 注意:此字段可能返回 null,表示取不到有效值。
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-ckafka
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.953
4
+ version: 3.0.954
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-12-03 00:00:00.000000000 Z
11
+ date: 2024-12-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common