tencentcloud-sdk-cls 3.0.1166 → 3.0.1169
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20201016/models.rb +107 -19
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e6c292b1f25ff448dfc6f1740b301c219ec04905
|
|
4
|
+
data.tar.gz: 07745b2bee91e809768c4306cb5560ad81a51186
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 27ecac663d10d3904900a6bedd17e0d92243342468149e5851659197d11a8a42ffdcb347a5cf0241e70e65a110f2ae7c71024434ee33f6a5ca1b00fdfe4caf03
|
|
7
|
+
data.tar.gz: dfde3e63496ceb3a716c6ed97d20e5d308b49b44dc997ab6476b209c7e0aff333cd84d9cead1cc10751700f4ca903ec747d5b3df623d4539e84f1a4b73eda0d2
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1169
|
data/lib/v20201016/models.rb
CHANGED
|
@@ -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,15 @@ module TencentCloud
|
|
|
1397
1404
|
|
|
1398
1405
|
# 控制台默认占位值:`{\"ClsAgentDefault\":0}`
|
|
1399
1406
|
# @type AdvancedConfig: String
|
|
1407
|
+
# @param InputType: 日志输入类型(<span style="color:red; font-weight:bold">注:windows场景必填且仅支持file和windows_event类型</span>)
|
|
1408
|
+
# - file: 文件类型采集
|
|
1409
|
+
# - windows_event:windows事件采集
|
|
1410
|
+
# - syslog:系统日志采集
|
|
1411
|
+
# @type InputType: String
|
|
1400
1412
|
|
|
1401
|
-
attr_accessor :ConfigId, :Name, :LogFormat, :Path, :LogType, :ExtractRule, :ExcludePaths, :Output, :UpdateTime, :CreateTime, :UserDefineRule, :AdvancedConfig
|
|
1413
|
+
attr_accessor :ConfigId, :Name, :LogFormat, :Path, :LogType, :ExtractRule, :ExcludePaths, :Output, :UpdateTime, :CreateTime, :UserDefineRule, :AdvancedConfig, :InputType
|
|
1402
1414
|
|
|
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)
|
|
1415
|
+
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
1416
|
@ConfigId = configid
|
|
1405
1417
|
@Name = name
|
|
1406
1418
|
@LogFormat = logformat
|
|
@@ -1413,6 +1425,7 @@ module TencentCloud
|
|
|
1413
1425
|
@CreateTime = createtime
|
|
1414
1426
|
@UserDefineRule = userdefinerule
|
|
1415
1427
|
@AdvancedConfig = advancedconfig
|
|
1428
|
+
@InputType = inputtype
|
|
1416
1429
|
end
|
|
1417
1430
|
|
|
1418
1431
|
def deserialize(params)
|
|
@@ -1438,6 +1451,7 @@ module TencentCloud
|
|
|
1438
1451
|
@CreateTime = params['CreateTime']
|
|
1439
1452
|
@UserDefineRule = params['UserDefineRule']
|
|
1440
1453
|
@AdvancedConfig = params['AdvancedConfig']
|
|
1454
|
+
@InputType = params['InputType']
|
|
1441
1455
|
end
|
|
1442
1456
|
end
|
|
1443
1457
|
|
|
@@ -2613,10 +2627,15 @@ module TencentCloud
|
|
|
2613
2627
|
|
|
2614
2628
|
# 控制台默认占位值:`{\"ClsAgentDefault\":0}`
|
|
2615
2629
|
# @type AdvancedConfig: String
|
|
2630
|
+
# @param InputType: 日志输入类型(<span style="color:red; font-weight:bold">注:windows场景必填且仅支持file和windows_event类型</span>)
|
|
2631
|
+
# - file: 文件类型采集
|
|
2632
|
+
# - windows_event:windows事件采集
|
|
2633
|
+
# - syslog:系统日志采集
|
|
2634
|
+
# @type InputType: String
|
|
2616
2635
|
|
|
2617
|
-
attr_accessor :Name, :Output, :Path, :LogType, :ExtractRule, :ExcludePaths, :UserDefineRule, :AdvancedConfig
|
|
2636
|
+
attr_accessor :Name, :Output, :Path, :LogType, :ExtractRule, :ExcludePaths, :UserDefineRule, :AdvancedConfig, :InputType
|
|
2618
2637
|
|
|
2619
|
-
def initialize(name=nil, output=nil, path=nil, logtype=nil, extractrule=nil, excludepaths=nil, userdefinerule=nil, advancedconfig=nil)
|
|
2638
|
+
def initialize(name=nil, output=nil, path=nil, logtype=nil, extractrule=nil, excludepaths=nil, userdefinerule=nil, advancedconfig=nil, inputtype=nil)
|
|
2620
2639
|
@Name = name
|
|
2621
2640
|
@Output = output
|
|
2622
2641
|
@Path = path
|
|
@@ -2625,6 +2644,7 @@ module TencentCloud
|
|
|
2625
2644
|
@ExcludePaths = excludepaths
|
|
2626
2645
|
@UserDefineRule = userdefinerule
|
|
2627
2646
|
@AdvancedConfig = advancedconfig
|
|
2647
|
+
@InputType = inputtype
|
|
2628
2648
|
end
|
|
2629
2649
|
|
|
2630
2650
|
def deserialize(params)
|
|
@@ -2646,6 +2666,7 @@ module TencentCloud
|
|
|
2646
2666
|
end
|
|
2647
2667
|
@UserDefineRule = params['UserDefineRule']
|
|
2648
2668
|
@AdvancedConfig = params['AdvancedConfig']
|
|
2669
|
+
@InputType = params['InputType']
|
|
2649
2670
|
end
|
|
2650
2671
|
end
|
|
2651
2672
|
|
|
@@ -3281,10 +3302,12 @@ module TencentCloud
|
|
|
3281
3302
|
# @param ConsumerGroupName: 用户Kafka消费组名称。
|
|
3282
3303
|
# - 消费组是 Kafka 提供的可扩展且具有容错性的消费者机制,一个消费组中存在多个消费者,组内的所有消费者共同消费订阅 Topic 中的消息。一个消费者可同时消费多个 Partition,但一个 Partition 只能被消费组内的一个消费者消费。
|
|
3283
3304
|
# @type ConsumerGroupName: String
|
|
3305
|
+
# @param UserKafkaMeta: 用户kafka拓展信息
|
|
3306
|
+
# @type UserKafkaMeta: :class:`Tencentcloud::Cls.v20201016.models.UserKafkaMeta`
|
|
3284
3307
|
|
|
3285
|
-
attr_accessor :TopicId, :Name, :KafkaType, :UserKafkaTopics, :Offset, :LogRechargeRule, :KafkaInstance, :ServerAddr, :IsEncryptionAddr, :Protocol, :ConsumerGroupName
|
|
3308
|
+
attr_accessor :TopicId, :Name, :KafkaType, :UserKafkaTopics, :Offset, :LogRechargeRule, :KafkaInstance, :ServerAddr, :IsEncryptionAddr, :Protocol, :ConsumerGroupName, :UserKafkaMeta
|
|
3286
3309
|
|
|
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)
|
|
3310
|
+
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
3311
|
@TopicId = topicid
|
|
3289
3312
|
@Name = name
|
|
3290
3313
|
@KafkaType = kafkatype
|
|
@@ -3296,6 +3319,7 @@ module TencentCloud
|
|
|
3296
3319
|
@IsEncryptionAddr = isencryptionaddr
|
|
3297
3320
|
@Protocol = protocol
|
|
3298
3321
|
@ConsumerGroupName = consumergroupname
|
|
3322
|
+
@UserKafkaMeta = userkafkameta
|
|
3299
3323
|
end
|
|
3300
3324
|
|
|
3301
3325
|
def deserialize(params)
|
|
@@ -3316,6 +3340,10 @@ module TencentCloud
|
|
|
3316
3340
|
@Protocol.deserialize(params['Protocol'])
|
|
3317
3341
|
end
|
|
3318
3342
|
@ConsumerGroupName = params['ConsumerGroupName']
|
|
3343
|
+
unless params['UserKafkaMeta'].nil?
|
|
3344
|
+
@UserKafkaMeta = UserKafkaMeta.new
|
|
3345
|
+
@UserKafkaMeta.deserialize(params['UserKafkaMeta'])
|
|
3346
|
+
end
|
|
3319
3347
|
end
|
|
3320
3348
|
end
|
|
3321
3349
|
|
|
@@ -8610,10 +8638,12 @@ module TencentCloud
|
|
|
8610
8638
|
# @type UpdateTime: String
|
|
8611
8639
|
# @param LogRechargeRule: 日志导入规则
|
|
8612
8640
|
# @type LogRechargeRule: :class:`Tencentcloud::Cls.v20201016.models.LogRechargeRuleInfo`
|
|
8641
|
+
# @param UserKafkaMeta: 用户kafka拓展信息
|
|
8642
|
+
# @type UserKafkaMeta: :class:`Tencentcloud::Cls.v20201016.models.UserKafkaMeta`
|
|
8613
8643
|
|
|
8614
|
-
attr_accessor :Id, :TopicId, :Name, :KafkaType, :KafkaInstance, :ServerAddr, :IsEncryptionAddr, :Protocol, :UserKafkaTopics, :ConsumerGroupName, :Status, :Offset, :CreateTime, :UpdateTime, :LogRechargeRule
|
|
8644
|
+
attr_accessor :Id, :TopicId, :Name, :KafkaType, :KafkaInstance, :ServerAddr, :IsEncryptionAddr, :Protocol, :UserKafkaTopics, :ConsumerGroupName, :Status, :Offset, :CreateTime, :UpdateTime, :LogRechargeRule, :UserKafkaMeta
|
|
8615
8645
|
|
|
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)
|
|
8646
|
+
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
8647
|
@Id = id
|
|
8618
8648
|
@TopicId = topicid
|
|
8619
8649
|
@Name = name
|
|
@@ -8629,6 +8659,7 @@ module TencentCloud
|
|
|
8629
8659
|
@CreateTime = createtime
|
|
8630
8660
|
@UpdateTime = updatetime
|
|
8631
8661
|
@LogRechargeRule = logrechargerule
|
|
8662
|
+
@UserKafkaMeta = userkafkameta
|
|
8632
8663
|
end
|
|
8633
8664
|
|
|
8634
8665
|
def deserialize(params)
|
|
@@ -8653,6 +8684,10 @@ module TencentCloud
|
|
|
8653
8684
|
@LogRechargeRule = LogRechargeRuleInfo.new
|
|
8654
8685
|
@LogRechargeRule.deserialize(params['LogRechargeRule'])
|
|
8655
8686
|
end
|
|
8687
|
+
unless params['UserKafkaMeta'].nil?
|
|
8688
|
+
@UserKafkaMeta = UserKafkaMeta.new
|
|
8689
|
+
@UserKafkaMeta.deserialize(params['UserKafkaMeta'])
|
|
8690
|
+
end
|
|
8656
8691
|
end
|
|
8657
8692
|
end
|
|
8658
8693
|
|
|
@@ -8989,14 +9024,17 @@ module TencentCloud
|
|
|
8989
9024
|
# @type TimeZone: String
|
|
8990
9025
|
# @param Metadata: 元数据信息,Kafka导入支持kafka_topic,kafka_partition,kafka_offset,kafka_timestamp
|
|
8991
9026
|
# @type Metadata: Array
|
|
8992
|
-
# @param Keys: 日志Key列表,RechargeType为full_regex_log时必填
|
|
9027
|
+
# @param Keys: 日志Key列表,RechargeType为full_regex_log、delimiter_log时必填
|
|
8993
9028
|
# @type Keys: Array
|
|
8994
9029
|
# @param ParseArray: json解析模式,开启首层数据解析
|
|
8995
9030
|
# @type ParseArray: Boolean
|
|
9031
|
+
# @param Delimiter: 分隔符解析模式-分隔符
|
|
9032
|
+
# 当解析格式为分隔符提取时,该字段必填
|
|
9033
|
+
# @type Delimiter: String
|
|
8996
9034
|
|
|
8997
|
-
attr_accessor :RechargeType, :EncodingFormat, :DefaultTimeSwitch, :LogRegex, :UnMatchLogSwitch, :UnMatchLogKey, :UnMatchLogTimeSrc, :DefaultTimeSrc, :TimeKey, :TimeRegex, :TimeFormat, :TimeZone, :Metadata, :Keys, :ParseArray
|
|
9035
|
+
attr_accessor :RechargeType, :EncodingFormat, :DefaultTimeSwitch, :LogRegex, :UnMatchLogSwitch, :UnMatchLogKey, :UnMatchLogTimeSrc, :DefaultTimeSrc, :TimeKey, :TimeRegex, :TimeFormat, :TimeZone, :Metadata, :Keys, :ParseArray, :Delimiter
|
|
8998
9036
|
|
|
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)
|
|
9037
|
+
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
9038
|
@RechargeType = rechargetype
|
|
9001
9039
|
@EncodingFormat = encodingformat
|
|
9002
9040
|
@DefaultTimeSwitch = defaulttimeswitch
|
|
@@ -9012,6 +9050,7 @@ module TencentCloud
|
|
|
9012
9050
|
@Metadata = metadata
|
|
9013
9051
|
@Keys = keys
|
|
9014
9052
|
@ParseArray = parsearray
|
|
9053
|
+
@Delimiter = delimiter
|
|
9015
9054
|
end
|
|
9016
9055
|
|
|
9017
9056
|
def deserialize(params)
|
|
@@ -9030,6 +9069,7 @@ module TencentCloud
|
|
|
9030
9069
|
@Metadata = params['Metadata']
|
|
9031
9070
|
@Keys = params['Keys']
|
|
9032
9071
|
@ParseArray = params['ParseArray']
|
|
9072
|
+
@Delimiter = params['Delimiter']
|
|
9033
9073
|
end
|
|
9034
9074
|
end
|
|
9035
9075
|
|
|
@@ -9922,10 +9962,15 @@ module TencentCloud
|
|
|
9922
9962
|
# 样例:
|
|
9923
9963
|
# `{\"ClsAgentFileTimeout\":0,\"ClsAgentMaxDepth\":10,\"ClsAgentParseFailMerge\":true}`
|
|
9924
9964
|
# @type AdvancedConfig: String
|
|
9965
|
+
# @param InputType: 日志输入类型(<span style="color:red; font-weight:bold">注:windows场景必填且仅支持file和windows_event类型</span>)
|
|
9966
|
+
# - file: 文件类型采集
|
|
9967
|
+
# - windows_event:windows事件采集
|
|
9968
|
+
# - syslog:系统日志采集
|
|
9969
|
+
# @type InputType: String
|
|
9925
9970
|
|
|
9926
|
-
attr_accessor :ConfigId, :Name, :Path, :LogType, :ExtractRule, :ExcludePaths, :Output, :UserDefineRule, :AdvancedConfig
|
|
9971
|
+
attr_accessor :ConfigId, :Name, :Path, :LogType, :ExtractRule, :ExcludePaths, :Output, :UserDefineRule, :AdvancedConfig, :InputType
|
|
9927
9972
|
|
|
9928
|
-
def initialize(configid=nil, name=nil, path=nil, logtype=nil, extractrule=nil, excludepaths=nil, output=nil, userdefinerule=nil, advancedconfig=nil)
|
|
9973
|
+
def initialize(configid=nil, name=nil, path=nil, logtype=nil, extractrule=nil, excludepaths=nil, output=nil, userdefinerule=nil, advancedconfig=nil, inputtype=nil)
|
|
9929
9974
|
@ConfigId = configid
|
|
9930
9975
|
@Name = name
|
|
9931
9976
|
@Path = path
|
|
@@ -9935,6 +9980,7 @@ module TencentCloud
|
|
|
9935
9980
|
@Output = output
|
|
9936
9981
|
@UserDefineRule = userdefinerule
|
|
9937
9982
|
@AdvancedConfig = advancedconfig
|
|
9983
|
+
@InputType = inputtype
|
|
9938
9984
|
end
|
|
9939
9985
|
|
|
9940
9986
|
def deserialize(params)
|
|
@@ -9957,6 +10003,7 @@ module TencentCloud
|
|
|
9957
10003
|
@Output = params['Output']
|
|
9958
10004
|
@UserDefineRule = params['UserDefineRule']
|
|
9959
10005
|
@AdvancedConfig = params['AdvancedConfig']
|
|
10006
|
+
@InputType = params['InputType']
|
|
9960
10007
|
end
|
|
9961
10008
|
end
|
|
9962
10009
|
|
|
@@ -10484,10 +10531,12 @@ module TencentCloud
|
|
|
10484
10531
|
# @type LogRechargeRule: :class:`Tencentcloud::Cls.v20201016.models.LogRechargeRuleInfo`
|
|
10485
10532
|
# @param StatusControl: 导入控制,1:暂停;2:启动。
|
|
10486
10533
|
# @type StatusControl: Integer
|
|
10534
|
+
# @param UserKafkaMeta: 用户kafka拓展信息
|
|
10535
|
+
# @type UserKafkaMeta: :class:`Tencentcloud::Cls.v20201016.models.UserKafkaMeta`
|
|
10487
10536
|
|
|
10488
|
-
attr_accessor :Id, :TopicId, :Name, :KafkaType, :KafkaInstance, :ServerAddr, :IsEncryptionAddr, :Protocol, :UserKafkaTopics, :ConsumerGroupName, :LogRechargeRule, :StatusControl
|
|
10537
|
+
attr_accessor :Id, :TopicId, :Name, :KafkaType, :KafkaInstance, :ServerAddr, :IsEncryptionAddr, :Protocol, :UserKafkaTopics, :ConsumerGroupName, :LogRechargeRule, :StatusControl, :UserKafkaMeta
|
|
10489
10538
|
|
|
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)
|
|
10539
|
+
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
10540
|
@Id = id
|
|
10492
10541
|
@TopicId = topicid
|
|
10493
10542
|
@Name = name
|
|
@@ -10500,6 +10549,7 @@ module TencentCloud
|
|
|
10500
10549
|
@ConsumerGroupName = consumergroupname
|
|
10501
10550
|
@LogRechargeRule = logrechargerule
|
|
10502
10551
|
@StatusControl = statuscontrol
|
|
10552
|
+
@UserKafkaMeta = userkafkameta
|
|
10503
10553
|
end
|
|
10504
10554
|
|
|
10505
10555
|
def deserialize(params)
|
|
@@ -10521,6 +10571,10 @@ module TencentCloud
|
|
|
10521
10571
|
@LogRechargeRule.deserialize(params['LogRechargeRule'])
|
|
10522
10572
|
end
|
|
10523
10573
|
@StatusControl = params['StatusControl']
|
|
10574
|
+
unless params['UserKafkaMeta'].nil?
|
|
10575
|
+
@UserKafkaMeta = UserKafkaMeta.new
|
|
10576
|
+
@UserKafkaMeta.deserialize(params['UserKafkaMeta'])
|
|
10577
|
+
end
|
|
10524
10578
|
end
|
|
10525
10579
|
end
|
|
10526
10580
|
|
|
@@ -11652,10 +11706,12 @@ module TencentCloud
|
|
|
11652
11706
|
# @type ConsumerGroupName: String
|
|
11653
11707
|
# @param LogRechargeRule: 日志导入规则
|
|
11654
11708
|
# @type LogRechargeRule: :class:`Tencentcloud::Cls.v20201016.models.LogRechargeRuleInfo`
|
|
11709
|
+
# @param UserKafkaMeta: 用户kafka拓展信息
|
|
11710
|
+
# @type UserKafkaMeta: :class:`Tencentcloud::Cls.v20201016.models.UserKafkaMeta`
|
|
11655
11711
|
|
|
11656
|
-
attr_accessor :PreviewType, :KafkaType, :UserKafkaTopics, :Offset, :KafkaInstance, :ServerAddr, :IsEncryptionAddr, :Protocol, :ConsumerGroupName, :LogRechargeRule
|
|
11712
|
+
attr_accessor :PreviewType, :KafkaType, :UserKafkaTopics, :Offset, :KafkaInstance, :ServerAddr, :IsEncryptionAddr, :Protocol, :ConsumerGroupName, :LogRechargeRule, :UserKafkaMeta
|
|
11657
11713
|
|
|
11658
|
-
def initialize(previewtype=nil, kafkatype=nil, userkafkatopics=nil, offset=nil, kafkainstance=nil, serveraddr=nil, isencryptionaddr=nil, protocol=nil, consumergroupname=nil, logrechargerule=nil)
|
|
11714
|
+
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
11715
|
@PreviewType = previewtype
|
|
11660
11716
|
@KafkaType = kafkatype
|
|
11661
11717
|
@UserKafkaTopics = userkafkatopics
|
|
@@ -11666,6 +11722,7 @@ module TencentCloud
|
|
|
11666
11722
|
@Protocol = protocol
|
|
11667
11723
|
@ConsumerGroupName = consumergroupname
|
|
11668
11724
|
@LogRechargeRule = logrechargerule
|
|
11725
|
+
@UserKafkaMeta = userkafkameta
|
|
11669
11726
|
end
|
|
11670
11727
|
|
|
11671
11728
|
def deserialize(params)
|
|
@@ -11685,6 +11742,10 @@ module TencentCloud
|
|
|
11685
11742
|
@LogRechargeRule = LogRechargeRuleInfo.new
|
|
11686
11743
|
@LogRechargeRule.deserialize(params['LogRechargeRule'])
|
|
11687
11744
|
end
|
|
11745
|
+
unless params['UserKafkaMeta'].nil?
|
|
11746
|
+
@UserKafkaMeta = UserKafkaMeta.new
|
|
11747
|
+
@UserKafkaMeta.deserialize(params['UserKafkaMeta'])
|
|
11748
|
+
end
|
|
11688
11749
|
end
|
|
11689
11750
|
end
|
|
11690
11751
|
|
|
@@ -13061,6 +13122,33 @@ module TencentCloud
|
|
|
13061
13122
|
end
|
|
13062
13123
|
end
|
|
13063
13124
|
|
|
13125
|
+
# 用户kafka扩展信息
|
|
13126
|
+
class UserKafkaMeta < TencentCloud::Common::AbstractModel
|
|
13127
|
+
# @param KafkaVersion: 用户kafka version
|
|
13128
|
+
# 支持如下版本:
|
|
13129
|
+
# - 0.10.2.0
|
|
13130
|
+
# - 1.0.0
|
|
13131
|
+
# - 2.0.0
|
|
13132
|
+
# - 2.2.0
|
|
13133
|
+
# - 2.4.0
|
|
13134
|
+
# - 2.6.0
|
|
13135
|
+
# - 2.7.0
|
|
13136
|
+
# - 2.8.0
|
|
13137
|
+
# - 3.0.0
|
|
13138
|
+
# - 3.2.0
|
|
13139
|
+
# @type KafkaVersion: String
|
|
13140
|
+
|
|
13141
|
+
attr_accessor :KafkaVersion
|
|
13142
|
+
|
|
13143
|
+
def initialize(kafkaversion=nil)
|
|
13144
|
+
@KafkaVersion = kafkaversion
|
|
13145
|
+
end
|
|
13146
|
+
|
|
13147
|
+
def deserialize(params)
|
|
13148
|
+
@KafkaVersion = params['KafkaVersion']
|
|
13149
|
+
end
|
|
13150
|
+
end
|
|
13151
|
+
|
|
13064
13152
|
# 需要开启键值索引的字段的索引描述信息
|
|
13065
13153
|
class ValueInfo < TencentCloud::Common::AbstractModel
|
|
13066
13154
|
# @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.
|
|
4
|
+
version: 3.0.1169
|
|
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
|
+
date: 2025-11-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|