tencentcloud-sdk-ckafka 3.0.632 → 3.0.634
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/v20190819/models.rb +39 -7
- 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: 43b7291388450cf82386d300d375dce8a2c157b7
|
4
|
+
data.tar.gz: 5668fcd4e4e08ebb8730e6df89b6beb533260577
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e018d6636147aed4afc71d53c80827096bbc717fbf562345e78aa867f48578d7870ba6c6096ae828f34339e80d62102fe091f0d925c7d0966ef4e2bac3ef944e
|
7
|
+
data.tar.gz: ea6d7a1f538fa229d513038899bdf52965b0bd676edd3f2f3a0a06a8cf98962742b7d78a1075f407f1233367dbd9800fa7b4af4df67decbb608009ea7fa3be77
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.634
|
data/lib/v20190819/models.rb
CHANGED
@@ -2270,8 +2270,8 @@ module TencentCloud
|
|
2270
2270
|
|
2271
2271
|
attr_accessor :ReturnCode, :ReturnMessage, :Data, :DeleteRouteTimestamp
|
2272
2272
|
extend Gem::Deprecate
|
2273
|
-
deprecate :DeleteRouteTimestamp, :none, 2023,
|
2274
|
-
deprecate :DeleteRouteTimestamp=, :none, 2023,
|
2273
|
+
deprecate :DeleteRouteTimestamp, :none, 2023, 8
|
2274
|
+
deprecate :DeleteRouteTimestamp=, :none, 2023, 8
|
2275
2275
|
|
2276
2276
|
def initialize(returncode=nil, returnmessage=nil, data=nil, deleteroutetimestamp=nil)
|
2277
2277
|
@ReturnCode = returncode
|
@@ -6337,10 +6337,12 @@ module TencentCloud
|
|
6337
6337
|
# @type RecordMappingList: Array
|
6338
6338
|
# @param DateField: 消息要映射为 es 索引中 @timestamp 的字段,如果当前配置为空,则使用消息的时间戳进行映射
|
6339
6339
|
# @type DateField: String
|
6340
|
+
# @param RecordMappingMode: 用来区分当前索引映射,属于新建索引还是存量索引。"EXIST_MAPPING":从存量索引中选择;"NEW_MAPPING":新建索引
|
6341
|
+
# @type RecordMappingMode: String
|
6340
6342
|
|
6341
|
-
attr_accessor :Resource, :Port, :UserName, :Password, :SelfBuilt, :ServiceVip, :UniqVpcId, :DropInvalidMessage, :Index, :DateFormat, :ContentKey, :DropInvalidJsonMessage, :DocumentIdField, :IndexType, :DropCls, :DatabasePrimaryKey, :DropDlq, :RecordMappingList, :DateField
|
6343
|
+
attr_accessor :Resource, :Port, :UserName, :Password, :SelfBuilt, :ServiceVip, :UniqVpcId, :DropInvalidMessage, :Index, :DateFormat, :ContentKey, :DropInvalidJsonMessage, :DocumentIdField, :IndexType, :DropCls, :DatabasePrimaryKey, :DropDlq, :RecordMappingList, :DateField, :RecordMappingMode
|
6342
6344
|
|
6343
|
-
def initialize(resource=nil, port=nil, username=nil, password=nil, selfbuilt=nil, servicevip=nil, uniqvpcid=nil, dropinvalidmessage=nil, index=nil, dateformat=nil, contentkey=nil, dropinvalidjsonmessage=nil, documentidfield=nil, indextype=nil, dropcls=nil, databaseprimarykey=nil, dropdlq=nil, recordmappinglist=nil, datefield=nil)
|
6345
|
+
def initialize(resource=nil, port=nil, username=nil, password=nil, selfbuilt=nil, servicevip=nil, uniqvpcid=nil, dropinvalidmessage=nil, index=nil, dateformat=nil, contentkey=nil, dropinvalidjsonmessage=nil, documentidfield=nil, indextype=nil, dropcls=nil, databaseprimarykey=nil, dropdlq=nil, recordmappinglist=nil, datefield=nil, recordmappingmode=nil)
|
6344
6346
|
@Resource = resource
|
6345
6347
|
@Port = port
|
6346
6348
|
@UserName = username
|
@@ -6360,6 +6362,7 @@ module TencentCloud
|
|
6360
6362
|
@DropDlq = dropdlq
|
6361
6363
|
@RecordMappingList = recordmappinglist
|
6362
6364
|
@DateField = datefield
|
6365
|
+
@RecordMappingMode = recordmappingmode
|
6363
6366
|
end
|
6364
6367
|
|
6365
6368
|
def deserialize(params)
|
@@ -6395,6 +6398,7 @@ module TencentCloud
|
|
6395
6398
|
end
|
6396
6399
|
end
|
6397
6400
|
@DateField = params['DateField']
|
6401
|
+
@RecordMappingMode = params['RecordMappingMode']
|
6398
6402
|
end
|
6399
6403
|
end
|
6400
6404
|
|
@@ -7557,10 +7561,13 @@ module TencentCloud
|
|
7557
7561
|
# @param DynamicDiskConfig: 动态硬盘扩容策略
|
7558
7562
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
7559
7563
|
# @type DynamicDiskConfig: :class:`Tencentcloud::Ckafka.v20190819.models.DynamicDiskConfig`
|
7564
|
+
# @param InstanceChargeType: 实例计费类型
|
7565
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7566
|
+
# @type InstanceChargeType: String
|
7560
7567
|
|
7561
|
-
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
|
7568
|
+
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
|
7562
7569
|
|
7563
|
-
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)
|
7570
|
+
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)
|
7564
7571
|
@InstanceId = instanceid
|
7565
7572
|
@InstanceName = instancename
|
7566
7573
|
@VipList = viplist
|
@@ -7596,6 +7603,7 @@ module TencentCloud
|
|
7596
7603
|
@RemainingPartitions = remainingpartitions
|
7597
7604
|
@RemainingTopics = remainingtopics
|
7598
7605
|
@DynamicDiskConfig = dynamicdiskconfig
|
7606
|
+
@InstanceChargeType = instancechargetype
|
7599
7607
|
end
|
7600
7608
|
|
7601
7609
|
def deserialize(params)
|
@@ -7657,6 +7665,7 @@ module TencentCloud
|
|
7657
7665
|
@DynamicDiskConfig = DynamicDiskConfig.new
|
7658
7666
|
@DynamicDiskConfig.deserialize(params['DynamicDiskConfig'])
|
7659
7667
|
end
|
7668
|
+
@InstanceChargeType = params['InstanceChargeType']
|
7660
7669
|
end
|
7661
7670
|
end
|
7662
7671
|
|
@@ -9910,7 +9919,7 @@ module TencentCloud
|
|
9910
9919
|
end
|
9911
9920
|
|
9912
9921
|
# RenewCkafkaInstance接口出参bigDealIds
|
9913
|
-
class
|
9922
|
+
class RenewCkafkaInstanceResp < TencentCloud::Common::AbstractModel
|
9914
9923
|
# @param BigDealId: 订单号
|
9915
9924
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
9916
9925
|
# @type BigDealId: String
|
@@ -9931,6 +9940,29 @@ module TencentCloud
|
|
9931
9940
|
end
|
9932
9941
|
end
|
9933
9942
|
|
9943
|
+
# RenewCkafkaInstance返回参数结构体
|
9944
|
+
class RenewCkafkaInstanceResponse < TencentCloud::Common::AbstractModel
|
9945
|
+
# @param Result: 返回值
|
9946
|
+
# @type Result: :class:`Tencentcloud::Ckafka.v20190819.models.RenewCkafkaInstanceResp`
|
9947
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
9948
|
+
# @type RequestId: String
|
9949
|
+
|
9950
|
+
attr_accessor :Result, :RequestId
|
9951
|
+
|
9952
|
+
def initialize(result=nil, requestid=nil)
|
9953
|
+
@Result = result
|
9954
|
+
@RequestId = requestid
|
9955
|
+
end
|
9956
|
+
|
9957
|
+
def deserialize(params)
|
9958
|
+
unless params['Result'].nil?
|
9959
|
+
@Result = RenewCkafkaInstanceResp.new
|
9960
|
+
@Result.deserialize(params['Result'])
|
9961
|
+
end
|
9962
|
+
@RequestId = params['RequestId']
|
9963
|
+
end
|
9964
|
+
end
|
9965
|
+
|
9934
9966
|
# 数据处理——Value处理参数——替换参数
|
9935
9967
|
class ReplaceParam < TencentCloud::Common::AbstractModel
|
9936
9968
|
# @param OldValue: 被替换值
|
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.
|
4
|
+
version: 3.0.634
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-08-
|
11
|
+
date: 2023-08-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|