tencentcloud-sdk-cls 3.0.1166 → 3.0.1168

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20201016/models.rb +98 -19
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5d4a4b85ae30a65206a23307491f082134c34487
4
- data.tar.gz: feac03d2c8c06cbeb4fd8c508acbdd1ba13f615e
3
+ metadata.gz: af2a3ebf4cc49262e0fa8e0773fc8dd3f1d61bba
4
+ data.tar.gz: 67c7aecc6df9d40a184a4e9d971d9fdfce9bdc94
5
5
  SHA512:
6
- metadata.gz: 396216a3c915aaae9ea6ae284a2481a8be42a84dd762acf8ddc2b6f51cf252a6d0860c2b0106cbed40661db9f5b662c949d758371cedb3353ced9c66a394ca81
7
- data.tar.gz: 6d126a177ce4d286c7be4f4cfdde553e6c5d6463ca92beb481050842e5b7bfc5fab65e21d6b6cdd9701877f71c9f10a6ecf9fc36cfff49faf772467bd71996ec
6
+ metadata.gz: d529247faa9091b19f443dd9d6b14cf0512d02111e304b93572055d934d9c5d8ca3583593b2d52eee901386eafc50411da4c769aa2ecfd02d178a49b6ab549cd
7
+ data.tar.gz: aec6be0d4a4dc67132bc4378d79bcc7dd04cc42a626e71fbcfc5677e1c0a62b194659ef0a7d0ed36571f0f96577b19ee7037e02c824d8d5677e497422a456685
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1166
1
+ 3.0.1168
@@ -927,15 +927,18 @@ module TencentCloud
927
927
  # @type IsEncryptionAddr: Boolean
928
928
  # @param Protocol: 加密访问协议。KafkaType参数为1并且IsEncryptionAddr参数为true时必填。
929
929
  # @type Protocol: :class:`Tencentcloud::Cls.v20201016.models.KafkaProtocolInfo`
930
+ # @param UserKafkaMeta: 用户kafka拓展信息
931
+ # @type UserKafkaMeta: :class:`Tencentcloud::Cls.v20201016.models.UserKafkaMeta`
930
932
 
931
- attr_accessor :KafkaType, :KafkaInstance, :ServerAddr, :IsEncryptionAddr, :Protocol
933
+ attr_accessor :KafkaType, :KafkaInstance, :ServerAddr, :IsEncryptionAddr, :Protocol, :UserKafkaMeta
932
934
 
933
- def initialize(kafkatype=nil, kafkainstance=nil, serveraddr=nil, isencryptionaddr=nil, protocol=nil)
935
+ def initialize(kafkatype=nil, kafkainstance=nil, serveraddr=nil, isencryptionaddr=nil, protocol=nil, userkafkameta=nil)
934
936
  @KafkaType = kafkatype
935
937
  @KafkaInstance = kafkainstance
936
938
  @ServerAddr = serveraddr
937
939
  @IsEncryptionAddr = isencryptionaddr
938
940
  @Protocol = protocol
941
+ @UserKafkaMeta = userkafkameta
939
942
  end
940
943
 
941
944
  def deserialize(params)
@@ -947,6 +950,10 @@ module TencentCloud
947
950
  @Protocol = KafkaProtocolInfo.new
948
951
  @Protocol.deserialize(params['Protocol'])
949
952
  end
953
+ unless params['UserKafkaMeta'].nil?
954
+ @UserKafkaMeta = UserKafkaMeta.new
955
+ @UserKafkaMeta.deserialize(params['UserKafkaMeta'])
956
+ end
950
957
  end
951
958
  end
952
959
 
@@ -1397,10 +1404,12 @@ module TencentCloud
1397
1404
 
1398
1405
  # 控制台默认占位值:`{\"ClsAgentDefault\":0}`
1399
1406
  # @type AdvancedConfig: String
1407
+ # @param InputType: 日志输入类型,支持file、window_event、syslog、k8s_stdout、k8s_file
1408
+ # @type InputType: String
1400
1409
 
1401
- attr_accessor :ConfigId, :Name, :LogFormat, :Path, :LogType, :ExtractRule, :ExcludePaths, :Output, :UpdateTime, :CreateTime, :UserDefineRule, :AdvancedConfig
1410
+ attr_accessor :ConfigId, :Name, :LogFormat, :Path, :LogType, :ExtractRule, :ExcludePaths, :Output, :UpdateTime, :CreateTime, :UserDefineRule, :AdvancedConfig, :InputType
1402
1411
 
1403
- def initialize(configid=nil, name=nil, logformat=nil, path=nil, logtype=nil, extractrule=nil, excludepaths=nil, output=nil, updatetime=nil, createtime=nil, userdefinerule=nil, advancedconfig=nil)
1412
+ def initialize(configid=nil, name=nil, logformat=nil, path=nil, logtype=nil, extractrule=nil, excludepaths=nil, output=nil, updatetime=nil, createtime=nil, userdefinerule=nil, advancedconfig=nil, inputtype=nil)
1404
1413
  @ConfigId = configid
1405
1414
  @Name = name
1406
1415
  @LogFormat = logformat
@@ -1413,6 +1422,7 @@ module TencentCloud
1413
1422
  @CreateTime = createtime
1414
1423
  @UserDefineRule = userdefinerule
1415
1424
  @AdvancedConfig = advancedconfig
1425
+ @InputType = inputtype
1416
1426
  end
1417
1427
 
1418
1428
  def deserialize(params)
@@ -1438,6 +1448,7 @@ module TencentCloud
1438
1448
  @CreateTime = params['CreateTime']
1439
1449
  @UserDefineRule = params['UserDefineRule']
1440
1450
  @AdvancedConfig = params['AdvancedConfig']
1451
+ @InputType = params['InputType']
1441
1452
  end
1442
1453
  end
1443
1454
 
@@ -2613,10 +2624,12 @@ module TencentCloud
2613
2624
 
2614
2625
  # 控制台默认占位值:`{\"ClsAgentDefault\":0}`
2615
2626
  # @type AdvancedConfig: String
2627
+ # @param InputType: 日志输入类型,支持file、window_event、syslog、k8s_stdout、k8s_file
2628
+ # @type InputType: String
2616
2629
 
2617
- attr_accessor :Name, :Output, :Path, :LogType, :ExtractRule, :ExcludePaths, :UserDefineRule, :AdvancedConfig
2630
+ attr_accessor :Name, :Output, :Path, :LogType, :ExtractRule, :ExcludePaths, :UserDefineRule, :AdvancedConfig, :InputType
2618
2631
 
2619
- def initialize(name=nil, output=nil, path=nil, logtype=nil, extractrule=nil, excludepaths=nil, userdefinerule=nil, advancedconfig=nil)
2632
+ def initialize(name=nil, output=nil, path=nil, logtype=nil, extractrule=nil, excludepaths=nil, userdefinerule=nil, advancedconfig=nil, inputtype=nil)
2620
2633
  @Name = name
2621
2634
  @Output = output
2622
2635
  @Path = path
@@ -2625,6 +2638,7 @@ module TencentCloud
2625
2638
  @ExcludePaths = excludepaths
2626
2639
  @UserDefineRule = userdefinerule
2627
2640
  @AdvancedConfig = advancedconfig
2641
+ @InputType = inputtype
2628
2642
  end
2629
2643
 
2630
2644
  def deserialize(params)
@@ -2646,6 +2660,7 @@ module TencentCloud
2646
2660
  end
2647
2661
  @UserDefineRule = params['UserDefineRule']
2648
2662
  @AdvancedConfig = params['AdvancedConfig']
2663
+ @InputType = params['InputType']
2649
2664
  end
2650
2665
  end
2651
2666
 
@@ -3281,10 +3296,12 @@ module TencentCloud
3281
3296
  # @param ConsumerGroupName: 用户Kafka消费组名称。
3282
3297
  # - 消费组是 Kafka 提供的可扩展且具有容错性的消费者机制,一个消费组中存在多个消费者,组内的所有消费者共同消费订阅 Topic 中的消息。一个消费者可同时消费多个 Partition,但一个 Partition 只能被消费组内的一个消费者消费。
3283
3298
  # @type ConsumerGroupName: String
3299
+ # @param UserKafkaMeta: 用户kafka拓展信息
3300
+ # @type UserKafkaMeta: :class:`Tencentcloud::Cls.v20201016.models.UserKafkaMeta`
3284
3301
 
3285
- attr_accessor :TopicId, :Name, :KafkaType, :UserKafkaTopics, :Offset, :LogRechargeRule, :KafkaInstance, :ServerAddr, :IsEncryptionAddr, :Protocol, :ConsumerGroupName
3302
+ attr_accessor :TopicId, :Name, :KafkaType, :UserKafkaTopics, :Offset, :LogRechargeRule, :KafkaInstance, :ServerAddr, :IsEncryptionAddr, :Protocol, :ConsumerGroupName, :UserKafkaMeta
3286
3303
 
3287
- def initialize(topicid=nil, name=nil, kafkatype=nil, userkafkatopics=nil, offset=nil, logrechargerule=nil, kafkainstance=nil, serveraddr=nil, isencryptionaddr=nil, protocol=nil, consumergroupname=nil)
3304
+ def initialize(topicid=nil, name=nil, kafkatype=nil, userkafkatopics=nil, offset=nil, logrechargerule=nil, kafkainstance=nil, serveraddr=nil, isencryptionaddr=nil, protocol=nil, consumergroupname=nil, userkafkameta=nil)
3288
3305
  @TopicId = topicid
3289
3306
  @Name = name
3290
3307
  @KafkaType = kafkatype
@@ -3296,6 +3313,7 @@ module TencentCloud
3296
3313
  @IsEncryptionAddr = isencryptionaddr
3297
3314
  @Protocol = protocol
3298
3315
  @ConsumerGroupName = consumergroupname
3316
+ @UserKafkaMeta = userkafkameta
3299
3317
  end
3300
3318
 
3301
3319
  def deserialize(params)
@@ -3316,6 +3334,10 @@ module TencentCloud
3316
3334
  @Protocol.deserialize(params['Protocol'])
3317
3335
  end
3318
3336
  @ConsumerGroupName = params['ConsumerGroupName']
3337
+ unless params['UserKafkaMeta'].nil?
3338
+ @UserKafkaMeta = UserKafkaMeta.new
3339
+ @UserKafkaMeta.deserialize(params['UserKafkaMeta'])
3340
+ end
3319
3341
  end
3320
3342
  end
3321
3343
 
@@ -8610,10 +8632,12 @@ module TencentCloud
8610
8632
  # @type UpdateTime: String
8611
8633
  # @param LogRechargeRule: 日志导入规则
8612
8634
  # @type LogRechargeRule: :class:`Tencentcloud::Cls.v20201016.models.LogRechargeRuleInfo`
8635
+ # @param UserKafkaMeta: 用户kafka拓展信息
8636
+ # @type UserKafkaMeta: :class:`Tencentcloud::Cls.v20201016.models.UserKafkaMeta`
8613
8637
 
8614
- attr_accessor :Id, :TopicId, :Name, :KafkaType, :KafkaInstance, :ServerAddr, :IsEncryptionAddr, :Protocol, :UserKafkaTopics, :ConsumerGroupName, :Status, :Offset, :CreateTime, :UpdateTime, :LogRechargeRule
8638
+ attr_accessor :Id, :TopicId, :Name, :KafkaType, :KafkaInstance, :ServerAddr, :IsEncryptionAddr, :Protocol, :UserKafkaTopics, :ConsumerGroupName, :Status, :Offset, :CreateTime, :UpdateTime, :LogRechargeRule, :UserKafkaMeta
8615
8639
 
8616
- def initialize(id=nil, topicid=nil, name=nil, kafkatype=nil, kafkainstance=nil, serveraddr=nil, isencryptionaddr=nil, protocol=nil, userkafkatopics=nil, consumergroupname=nil, status=nil, offset=nil, createtime=nil, updatetime=nil, logrechargerule=nil)
8640
+ def initialize(id=nil, topicid=nil, name=nil, kafkatype=nil, kafkainstance=nil, serveraddr=nil, isencryptionaddr=nil, protocol=nil, userkafkatopics=nil, consumergroupname=nil, status=nil, offset=nil, createtime=nil, updatetime=nil, logrechargerule=nil, userkafkameta=nil)
8617
8641
  @Id = id
8618
8642
  @TopicId = topicid
8619
8643
  @Name = name
@@ -8629,6 +8653,7 @@ module TencentCloud
8629
8653
  @CreateTime = createtime
8630
8654
  @UpdateTime = updatetime
8631
8655
  @LogRechargeRule = logrechargerule
8656
+ @UserKafkaMeta = userkafkameta
8632
8657
  end
8633
8658
 
8634
8659
  def deserialize(params)
@@ -8653,6 +8678,10 @@ module TencentCloud
8653
8678
  @LogRechargeRule = LogRechargeRuleInfo.new
8654
8679
  @LogRechargeRule.deserialize(params['LogRechargeRule'])
8655
8680
  end
8681
+ unless params['UserKafkaMeta'].nil?
8682
+ @UserKafkaMeta = UserKafkaMeta.new
8683
+ @UserKafkaMeta.deserialize(params['UserKafkaMeta'])
8684
+ end
8656
8685
  end
8657
8686
  end
8658
8687
 
@@ -8989,14 +9018,17 @@ module TencentCloud
8989
9018
  # @type TimeZone: String
8990
9019
  # @param Metadata: 元数据信息,Kafka导入支持kafka_topic,kafka_partition,kafka_offset,kafka_timestamp
8991
9020
  # @type Metadata: Array
8992
- # @param Keys: 日志Key列表,RechargeType为full_regex_log时必填
9021
+ # @param Keys: 日志Key列表,RechargeType为full_regex_log、delimiter_log时必填
8993
9022
  # @type Keys: Array
8994
9023
  # @param ParseArray: json解析模式,开启首层数据解析
8995
9024
  # @type ParseArray: Boolean
9025
+ # @param Delimiter: 分隔符解析模式-分隔符
9026
+ # 当解析格式为分隔符提取时,该字段必填
9027
+ # @type Delimiter: String
8996
9028
 
8997
- attr_accessor :RechargeType, :EncodingFormat, :DefaultTimeSwitch, :LogRegex, :UnMatchLogSwitch, :UnMatchLogKey, :UnMatchLogTimeSrc, :DefaultTimeSrc, :TimeKey, :TimeRegex, :TimeFormat, :TimeZone, :Metadata, :Keys, :ParseArray
9029
+ attr_accessor :RechargeType, :EncodingFormat, :DefaultTimeSwitch, :LogRegex, :UnMatchLogSwitch, :UnMatchLogKey, :UnMatchLogTimeSrc, :DefaultTimeSrc, :TimeKey, :TimeRegex, :TimeFormat, :TimeZone, :Metadata, :Keys, :ParseArray, :Delimiter
8998
9030
 
8999
- def initialize(rechargetype=nil, encodingformat=nil, defaulttimeswitch=nil, logregex=nil, unmatchlogswitch=nil, unmatchlogkey=nil, unmatchlogtimesrc=nil, defaulttimesrc=nil, timekey=nil, timeregex=nil, timeformat=nil, timezone=nil, metadata=nil, keys=nil, parsearray=nil)
9031
+ def initialize(rechargetype=nil, encodingformat=nil, defaulttimeswitch=nil, logregex=nil, unmatchlogswitch=nil, unmatchlogkey=nil, unmatchlogtimesrc=nil, defaulttimesrc=nil, timekey=nil, timeregex=nil, timeformat=nil, timezone=nil, metadata=nil, keys=nil, parsearray=nil, delimiter=nil)
9000
9032
  @RechargeType = rechargetype
9001
9033
  @EncodingFormat = encodingformat
9002
9034
  @DefaultTimeSwitch = defaulttimeswitch
@@ -9012,6 +9044,7 @@ module TencentCloud
9012
9044
  @Metadata = metadata
9013
9045
  @Keys = keys
9014
9046
  @ParseArray = parsearray
9047
+ @Delimiter = delimiter
9015
9048
  end
9016
9049
 
9017
9050
  def deserialize(params)
@@ -9030,6 +9063,7 @@ module TencentCloud
9030
9063
  @Metadata = params['Metadata']
9031
9064
  @Keys = params['Keys']
9032
9065
  @ParseArray = params['ParseArray']
9066
+ @Delimiter = params['Delimiter']
9033
9067
  end
9034
9068
  end
9035
9069
 
@@ -9922,10 +9956,12 @@ module TencentCloud
9922
9956
  # 样例:
9923
9957
  # `{\"ClsAgentFileTimeout\":0,\"ClsAgentMaxDepth\":10,\"ClsAgentParseFailMerge\":true}`
9924
9958
  # @type AdvancedConfig: String
9959
+ # @param InputType: 日志输入类型,支持file、window_event、syslog、k8s_stdout、k8s_file
9960
+ # @type InputType: String
9925
9961
 
9926
- attr_accessor :ConfigId, :Name, :Path, :LogType, :ExtractRule, :ExcludePaths, :Output, :UserDefineRule, :AdvancedConfig
9962
+ attr_accessor :ConfigId, :Name, :Path, :LogType, :ExtractRule, :ExcludePaths, :Output, :UserDefineRule, :AdvancedConfig, :InputType
9927
9963
 
9928
- def initialize(configid=nil, name=nil, path=nil, logtype=nil, extractrule=nil, excludepaths=nil, output=nil, userdefinerule=nil, advancedconfig=nil)
9964
+ def initialize(configid=nil, name=nil, path=nil, logtype=nil, extractrule=nil, excludepaths=nil, output=nil, userdefinerule=nil, advancedconfig=nil, inputtype=nil)
9929
9965
  @ConfigId = configid
9930
9966
  @Name = name
9931
9967
  @Path = path
@@ -9935,6 +9971,7 @@ module TencentCloud
9935
9971
  @Output = output
9936
9972
  @UserDefineRule = userdefinerule
9937
9973
  @AdvancedConfig = advancedconfig
9974
+ @InputType = inputtype
9938
9975
  end
9939
9976
 
9940
9977
  def deserialize(params)
@@ -9957,6 +9994,7 @@ module TencentCloud
9957
9994
  @Output = params['Output']
9958
9995
  @UserDefineRule = params['UserDefineRule']
9959
9996
  @AdvancedConfig = params['AdvancedConfig']
9997
+ @InputType = params['InputType']
9960
9998
  end
9961
9999
  end
9962
10000
 
@@ -10484,10 +10522,12 @@ module TencentCloud
10484
10522
  # @type LogRechargeRule: :class:`Tencentcloud::Cls.v20201016.models.LogRechargeRuleInfo`
10485
10523
  # @param StatusControl: 导入控制,1:暂停;2:启动。
10486
10524
  # @type StatusControl: Integer
10525
+ # @param UserKafkaMeta: 用户kafka拓展信息
10526
+ # @type UserKafkaMeta: :class:`Tencentcloud::Cls.v20201016.models.UserKafkaMeta`
10487
10527
 
10488
- attr_accessor :Id, :TopicId, :Name, :KafkaType, :KafkaInstance, :ServerAddr, :IsEncryptionAddr, :Protocol, :UserKafkaTopics, :ConsumerGroupName, :LogRechargeRule, :StatusControl
10528
+ attr_accessor :Id, :TopicId, :Name, :KafkaType, :KafkaInstance, :ServerAddr, :IsEncryptionAddr, :Protocol, :UserKafkaTopics, :ConsumerGroupName, :LogRechargeRule, :StatusControl, :UserKafkaMeta
10489
10529
 
10490
- def initialize(id=nil, topicid=nil, name=nil, kafkatype=nil, kafkainstance=nil, serveraddr=nil, isencryptionaddr=nil, protocol=nil, userkafkatopics=nil, consumergroupname=nil, logrechargerule=nil, statuscontrol=nil)
10530
+ def initialize(id=nil, topicid=nil, name=nil, kafkatype=nil, kafkainstance=nil, serveraddr=nil, isencryptionaddr=nil, protocol=nil, userkafkatopics=nil, consumergroupname=nil, logrechargerule=nil, statuscontrol=nil, userkafkameta=nil)
10491
10531
  @Id = id
10492
10532
  @TopicId = topicid
10493
10533
  @Name = name
@@ -10500,6 +10540,7 @@ module TencentCloud
10500
10540
  @ConsumerGroupName = consumergroupname
10501
10541
  @LogRechargeRule = logrechargerule
10502
10542
  @StatusControl = statuscontrol
10543
+ @UserKafkaMeta = userkafkameta
10503
10544
  end
10504
10545
 
10505
10546
  def deserialize(params)
@@ -10521,6 +10562,10 @@ module TencentCloud
10521
10562
  @LogRechargeRule.deserialize(params['LogRechargeRule'])
10522
10563
  end
10523
10564
  @StatusControl = params['StatusControl']
10565
+ unless params['UserKafkaMeta'].nil?
10566
+ @UserKafkaMeta = UserKafkaMeta.new
10567
+ @UserKafkaMeta.deserialize(params['UserKafkaMeta'])
10568
+ end
10524
10569
  end
10525
10570
  end
10526
10571
 
@@ -11652,10 +11697,12 @@ module TencentCloud
11652
11697
  # @type ConsumerGroupName: String
11653
11698
  # @param LogRechargeRule: 日志导入规则
11654
11699
  # @type LogRechargeRule: :class:`Tencentcloud::Cls.v20201016.models.LogRechargeRuleInfo`
11700
+ # @param UserKafkaMeta: 用户kafka拓展信息
11701
+ # @type UserKafkaMeta: :class:`Tencentcloud::Cls.v20201016.models.UserKafkaMeta`
11655
11702
 
11656
- attr_accessor :PreviewType, :KafkaType, :UserKafkaTopics, :Offset, :KafkaInstance, :ServerAddr, :IsEncryptionAddr, :Protocol, :ConsumerGroupName, :LogRechargeRule
11703
+ attr_accessor :PreviewType, :KafkaType, :UserKafkaTopics, :Offset, :KafkaInstance, :ServerAddr, :IsEncryptionAddr, :Protocol, :ConsumerGroupName, :LogRechargeRule, :UserKafkaMeta
11657
11704
 
11658
- def initialize(previewtype=nil, kafkatype=nil, userkafkatopics=nil, offset=nil, kafkainstance=nil, serveraddr=nil, isencryptionaddr=nil, protocol=nil, consumergroupname=nil, logrechargerule=nil)
11705
+ def initialize(previewtype=nil, kafkatype=nil, userkafkatopics=nil, offset=nil, kafkainstance=nil, serveraddr=nil, isencryptionaddr=nil, protocol=nil, consumergroupname=nil, logrechargerule=nil, userkafkameta=nil)
11659
11706
  @PreviewType = previewtype
11660
11707
  @KafkaType = kafkatype
11661
11708
  @UserKafkaTopics = userkafkatopics
@@ -11666,6 +11713,7 @@ module TencentCloud
11666
11713
  @Protocol = protocol
11667
11714
  @ConsumerGroupName = consumergroupname
11668
11715
  @LogRechargeRule = logrechargerule
11716
+ @UserKafkaMeta = userkafkameta
11669
11717
  end
11670
11718
 
11671
11719
  def deserialize(params)
@@ -11685,6 +11733,10 @@ module TencentCloud
11685
11733
  @LogRechargeRule = LogRechargeRuleInfo.new
11686
11734
  @LogRechargeRule.deserialize(params['LogRechargeRule'])
11687
11735
  end
11736
+ unless params['UserKafkaMeta'].nil?
11737
+ @UserKafkaMeta = UserKafkaMeta.new
11738
+ @UserKafkaMeta.deserialize(params['UserKafkaMeta'])
11739
+ end
11688
11740
  end
11689
11741
  end
11690
11742
 
@@ -13061,6 +13113,33 @@ module TencentCloud
13061
13113
  end
13062
13114
  end
13063
13115
 
13116
+ # 用户kafka扩展信息
13117
+ class UserKafkaMeta < TencentCloud::Common::AbstractModel
13118
+ # @param KafkaVersion: 用户kafka version
13119
+ # 支持如下版本:
13120
+ # - 0.10.2.0
13121
+ # - 1.0.0
13122
+ # - 2.0.0
13123
+ # - 2.2.0
13124
+ # - 2.4.0
13125
+ # - 2.6.0
13126
+ # - 2.7.0
13127
+ # - 2.8.0
13128
+ # - 3.0.0
13129
+ # - 3.2.0
13130
+ # @type KafkaVersion: String
13131
+
13132
+ attr_accessor :KafkaVersion
13133
+
13134
+ def initialize(kafkaversion=nil)
13135
+ @KafkaVersion = kafkaversion
13136
+ end
13137
+
13138
+ def deserialize(params)
13139
+ @KafkaVersion = params['KafkaVersion']
13140
+ end
13141
+ end
13142
+
13064
13143
  # 需要开启键值索引的字段的索引描述信息
13065
13144
  class ValueInfo < TencentCloud::Common::AbstractModel
13066
13145
  # @param Type: 字段类型,目前支持的类型有:long、text、double
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cls
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1166
4
+ version: 3.0.1168
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-11 00:00:00.000000000 Z
11
+ date: 2025-11-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common