tencentcloud-sdk-ckafka 3.0.390 → 3.0.391
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 +57 -9
- 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: a1d276f232ef2bc7c23d8c1b2b05eb741e8051dd
|
4
|
+
data.tar.gz: d2cb1574e7f8bf8ab4398a8aef20cf9b727dea36
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e88c28f91d231c19595fe941d1cea39db5d64de32f19f8c5d5357fd2748d8d0ade4dab94a2acf7810f0cb3ccbee0fe601b306098cd2c793cd15e9ab23230573
|
7
|
+
data.tar.gz: c2361654f50306a82cff3fc4f30921a7f0e86369565292e79431aa1a8b5fa1054d1c1af3736a027c1b1f38bdac9778b262fa3841c1992a7b2e719409313bb885
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.391
|
data/lib/v20190819/models.rb
CHANGED
@@ -6660,10 +6660,12 @@ module TencentCloud
|
|
6660
6660
|
# @type PublicNetwork: Integer
|
6661
6661
|
# @param DynamicDiskConfig: 动态硬盘扩容策略配置
|
6662
6662
|
# @type DynamicDiskConfig: :class:`Tencentcloud::Ckafka.v20190819.models.DynamicDiskConfig`
|
6663
|
+
# @param MaxMessageByte: 实例级别单条消息大小(单位byte)
|
6664
|
+
# @type MaxMessageByte: Integer
|
6663
6665
|
|
6664
|
-
attr_accessor :InstanceId, :MsgRetentionTime, :InstanceName, :Config, :DynamicRetentionConfig, :RebalanceTime, :PublicNetwork, :DynamicDiskConfig
|
6666
|
+
attr_accessor :InstanceId, :MsgRetentionTime, :InstanceName, :Config, :DynamicRetentionConfig, :RebalanceTime, :PublicNetwork, :DynamicDiskConfig, :MaxMessageByte
|
6665
6667
|
|
6666
|
-
def initialize(instanceid=nil, msgretentiontime=nil, instancename=nil, config=nil, dynamicretentionconfig=nil, rebalancetime=nil, publicnetwork=nil, dynamicdiskconfig=nil)
|
6668
|
+
def initialize(instanceid=nil, msgretentiontime=nil, instancename=nil, config=nil, dynamicretentionconfig=nil, rebalancetime=nil, publicnetwork=nil, dynamicdiskconfig=nil, maxmessagebyte=nil)
|
6667
6669
|
@InstanceId = instanceid
|
6668
6670
|
@MsgRetentionTime = msgretentiontime
|
6669
6671
|
@InstanceName = instancename
|
@@ -6672,6 +6674,7 @@ module TencentCloud
|
|
6672
6674
|
@RebalanceTime = rebalancetime
|
6673
6675
|
@PublicNetwork = publicnetwork
|
6674
6676
|
@DynamicDiskConfig = dynamicdiskconfig
|
6677
|
+
@MaxMessageByte = maxmessagebyte
|
6675
6678
|
end
|
6676
6679
|
|
6677
6680
|
def deserialize(params)
|
@@ -6692,6 +6695,7 @@ module TencentCloud
|
|
6692
6695
|
@DynamicDiskConfig = DynamicDiskConfig.new
|
6693
6696
|
@DynamicDiskConfig.deserialize(params['DynamicDiskConfig'])
|
6694
6697
|
end
|
6698
|
+
@MaxMessageByte = params['MaxMessageByte']
|
6695
6699
|
end
|
6696
6700
|
end
|
6697
6701
|
|
@@ -7181,10 +7185,13 @@ module TencentCloud
|
|
7181
7185
|
# @param ClusterId: 当type为TDSQL_C_MYSQL时
|
7182
7186
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
7183
7187
|
# @type ClusterId: String
|
7188
|
+
# @param SelfBuilt: 是否是自建的集群
|
7189
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7190
|
+
# @type SelfBuilt: Boolean
|
7184
7191
|
|
7185
|
-
attr_accessor :Resource, :Port, :ServiceVip, :UniqVpcId, :UserName, :Password, :IsUpdate, :ClusterId
|
7192
|
+
attr_accessor :Resource, :Port, :ServiceVip, :UniqVpcId, :UserName, :Password, :IsUpdate, :ClusterId, :SelfBuilt
|
7186
7193
|
|
7187
|
-
def initialize(resource=nil, port=nil, servicevip=nil, uniqvpcid=nil, username=nil, password=nil, isupdate=nil, clusterid=nil)
|
7194
|
+
def initialize(resource=nil, port=nil, servicevip=nil, uniqvpcid=nil, username=nil, password=nil, isupdate=nil, clusterid=nil, selfbuilt=nil)
|
7188
7195
|
@Resource = resource
|
7189
7196
|
@Port = port
|
7190
7197
|
@ServiceVip = servicevip
|
@@ -7193,6 +7200,7 @@ module TencentCloud
|
|
7193
7200
|
@Password = password
|
7194
7201
|
@IsUpdate = isupdate
|
7195
7202
|
@ClusterId = clusterid
|
7203
|
+
@SelfBuilt = selfbuilt
|
7196
7204
|
end
|
7197
7205
|
|
7198
7206
|
def deserialize(params)
|
@@ -7204,6 +7212,7 @@ module TencentCloud
|
|
7204
7212
|
@Password = params['Password']
|
7205
7213
|
@IsUpdate = params['IsUpdate']
|
7206
7214
|
@ClusterId = params['ClusterId']
|
7215
|
+
@SelfBuilt = params['SelfBuilt']
|
7207
7216
|
end
|
7208
7217
|
end
|
7209
7218
|
|
@@ -7475,10 +7484,13 @@ module TencentCloud
|
|
7475
7484
|
# @param IsUpdate: 是否更新到关联的Datahub任务
|
7476
7485
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
7477
7486
|
# @type IsUpdate: Boolean
|
7487
|
+
# @param SelfBuilt: 是否为自建集群
|
7488
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7489
|
+
# @type SelfBuilt: Boolean
|
7478
7490
|
|
7479
|
-
attr_accessor :Resource, :Port, :ServiceVip, :UniqVpcId, :UserName, :Password, :ClusterId, :IsUpdate
|
7491
|
+
attr_accessor :Resource, :Port, :ServiceVip, :UniqVpcId, :UserName, :Password, :ClusterId, :IsUpdate, :SelfBuilt
|
7480
7492
|
|
7481
|
-
def initialize(resource=nil, port=nil, servicevip=nil, uniqvpcid=nil, username=nil, password=nil, clusterid=nil, isupdate=nil)
|
7493
|
+
def initialize(resource=nil, port=nil, servicevip=nil, uniqvpcid=nil, username=nil, password=nil, clusterid=nil, isupdate=nil, selfbuilt=nil)
|
7482
7494
|
@Resource = resource
|
7483
7495
|
@Port = port
|
7484
7496
|
@ServiceVip = servicevip
|
@@ -7487,6 +7499,7 @@ module TencentCloud
|
|
7487
7499
|
@Password = password
|
7488
7500
|
@ClusterId = clusterid
|
7489
7501
|
@IsUpdate = isupdate
|
7502
|
+
@SelfBuilt = selfbuilt
|
7490
7503
|
end
|
7491
7504
|
|
7492
7505
|
def deserialize(params)
|
@@ -7498,6 +7511,7 @@ module TencentCloud
|
|
7498
7511
|
@Password = params['Password']
|
7499
7512
|
@ClusterId = params['ClusterId']
|
7500
7513
|
@IsUpdate = params['IsUpdate']
|
7514
|
+
@SelfBuilt = params['SelfBuilt']
|
7501
7515
|
end
|
7502
7516
|
end
|
7503
7517
|
|
@@ -7788,6 +7802,32 @@ module TencentCloud
|
|
7788
7802
|
end
|
7789
7803
|
end
|
7790
7804
|
|
7805
|
+
# 数据处理ROW输出格式配置
|
7806
|
+
class RowParam < TencentCloud::Common::AbstractModel
|
7807
|
+
# @param RowContent: 行内容,KEY_VALUE,VALUE
|
7808
|
+
# @type RowContent: String
|
7809
|
+
# @param KeyValueDelimiter: key和value间的分隔符
|
7810
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7811
|
+
# @type KeyValueDelimiter: String
|
7812
|
+
# @param EntryDelimiter: 元素建的分隔符
|
7813
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7814
|
+
# @type EntryDelimiter: String
|
7815
|
+
|
7816
|
+
attr_accessor :RowContent, :KeyValueDelimiter, :EntryDelimiter
|
7817
|
+
|
7818
|
+
def initialize(rowcontent=nil, keyvaluedelimiter=nil, entrydelimiter=nil)
|
7819
|
+
@RowContent = rowcontent
|
7820
|
+
@KeyValueDelimiter = keyvaluedelimiter
|
7821
|
+
@EntryDelimiter = entrydelimiter
|
7822
|
+
end
|
7823
|
+
|
7824
|
+
def deserialize(params)
|
7825
|
+
@RowContent = params['RowContent']
|
7826
|
+
@KeyValueDelimiter = params['KeyValueDelimiter']
|
7827
|
+
@EntryDelimiter = params['EntryDelimiter']
|
7828
|
+
end
|
7829
|
+
end
|
7830
|
+
|
7791
7831
|
# 数据处理——数据处理参数
|
7792
7832
|
class SMTParam < TencentCloud::Common::AbstractModel
|
7793
7833
|
# @param Key: 数据处理KEY
|
@@ -8737,13 +8777,16 @@ module TencentCloud
|
|
8737
8777
|
# @param SourceType: 数据来源
|
8738
8778
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
8739
8779
|
# @type SourceType: String
|
8740
|
-
# @param OutputFormat:
|
8780
|
+
# @param OutputFormat: 输出格式,JSON,ROW,默认为JSON
|
8741
8781
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
8742
8782
|
# @type OutputFormat: String
|
8783
|
+
# @param RowParam: 输出格式为ROW必填
|
8784
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
8785
|
+
# @type RowParam: :class:`Tencentcloud::Ckafka.v20190819.models.RowParam`
|
8743
8786
|
|
8744
|
-
attr_accessor :Content, :FieldChain, :FilterParam, :FailureParam, :Result, :SourceType, :OutputFormat
|
8787
|
+
attr_accessor :Content, :FieldChain, :FilterParam, :FailureParam, :Result, :SourceType, :OutputFormat, :RowParam
|
8745
8788
|
|
8746
|
-
def initialize(content=nil, fieldchain=nil, filterparam=nil, failureparam=nil, result=nil, sourcetype=nil, outputformat=nil)
|
8789
|
+
def initialize(content=nil, fieldchain=nil, filterparam=nil, failureparam=nil, result=nil, sourcetype=nil, outputformat=nil, rowparam=nil)
|
8747
8790
|
@Content = content
|
8748
8791
|
@FieldChain = fieldchain
|
8749
8792
|
@FilterParam = filterparam
|
@@ -8751,6 +8794,7 @@ module TencentCloud
|
|
8751
8794
|
@Result = result
|
8752
8795
|
@SourceType = sourcetype
|
8753
8796
|
@OutputFormat = outputformat
|
8797
|
+
@RowParam = rowparam
|
8754
8798
|
end
|
8755
8799
|
|
8756
8800
|
def deserialize(params)
|
@@ -8778,6 +8822,10 @@ module TencentCloud
|
|
8778
8822
|
@Result = params['Result']
|
8779
8823
|
@SourceType = params['SourceType']
|
8780
8824
|
@OutputFormat = params['OutputFormat']
|
8825
|
+
unless params['RowParam'].nil?
|
8826
|
+
@RowParam = RowParam.new
|
8827
|
+
@RowParam.deserialize(params['RowParam'])
|
8828
|
+
end
|
8781
8829
|
end
|
8782
8830
|
end
|
8783
8831
|
|
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.391
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-08-
|
11
|
+
date: 2022-08-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|