tencentcloud-sdk-ckafka 3.0.1074 → 3.0.1078
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 +18 -14
- 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: 17128155ac018757df76da43e8506ac4de70f11d
|
4
|
+
data.tar.gz: c2d16416d468c1662ed91ed3330930adf5c402c7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fdb2ff5c7f04c19da3d81160f5119a590029b12f4107498e70a56b8feb58c80410a837d4ff4ba761982dc6da90c5ee01b2f04714e69925344f78363cec8fe18d
|
7
|
+
data.tar.gz: 0cd3be68cfe6ea5dbf26e35d05ce53191a49fd165f39c6503c7b2835d4624f40be3e58121488e5761916f401c86c79cb8814e8db135c8b69a4aeda773252e775
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1078
|
data/lib/v20190819/models.rb
CHANGED
@@ -1781,8 +1781,8 @@ module TencentCloud
|
|
1781
1781
|
|
1782
1782
|
attr_accessor :TaskName, :TaskType, :SourceResource, :TargetResource, :TransformParam, :PrivateLinkParam, :SchemaId, :TransformsParam, :TaskId, :Tags, :Description
|
1783
1783
|
extend Gem::Deprecate
|
1784
|
-
deprecate :PrivateLinkParam, :none, 2025,
|
1785
|
-
deprecate :PrivateLinkParam=, :none, 2025,
|
1784
|
+
deprecate :PrivateLinkParam, :none, 2025, 6
|
1785
|
+
deprecate :PrivateLinkParam=, :none, 2025, 6
|
1786
1786
|
|
1787
1787
|
def initialize(taskname=nil, tasktype=nil, sourceresource=nil, targetresource=nil, transformparam=nil, privatelinkparam=nil, schemaid=nil, transformsparam=nil, taskid=nil, tags=nil, description=nil)
|
1788
1788
|
@TaskName = taskname
|
@@ -2280,8 +2280,8 @@ module TencentCloud
|
|
2280
2280
|
|
2281
2281
|
attr_accessor :ReturnCode, :ReturnMessage, :Data, :DeleteRouteTimestamp
|
2282
2282
|
extend Gem::Deprecate
|
2283
|
-
deprecate :DeleteRouteTimestamp, :none, 2025,
|
2284
|
-
deprecate :DeleteRouteTimestamp=, :none, 2025,
|
2283
|
+
deprecate :DeleteRouteTimestamp, :none, 2025, 6
|
2284
|
+
deprecate :DeleteRouteTimestamp=, :none, 2025, 6
|
2285
2285
|
|
2286
2286
|
def initialize(returncode=nil, returnmessage=nil, data=nil, deleteroutetimestamp=nil)
|
2287
2287
|
@ReturnCode = returncode
|
@@ -5329,8 +5329,8 @@ module TencentCloud
|
|
5329
5329
|
|
5330
5330
|
attr_accessor :InstanceId, :SearchWord, :Status, :Offset, :Limit, :TagKey, :Filters, :InstanceIds, :InstanceIdList, :TagList
|
5331
5331
|
extend Gem::Deprecate
|
5332
|
-
deprecate :InstanceIds, :none, 2025,
|
5333
|
-
deprecate :InstanceIds=, :none, 2025,
|
5332
|
+
deprecate :InstanceIds, :none, 2025, 6
|
5333
|
+
deprecate :InstanceIds=, :none, 2025, 6
|
5334
5334
|
|
5335
5335
|
def initialize(instanceid=nil, searchword=nil, status=nil, offset=nil, limit=nil, tagkey=nil, filters=nil, instanceids=nil, instanceidlist=nil, taglist=nil)
|
5336
5336
|
@InstanceId = instanceid
|
@@ -5415,8 +5415,8 @@ module TencentCloud
|
|
5415
5415
|
|
5416
5416
|
attr_accessor :InstanceId, :SearchWord, :Status, :Offset, :Limit, :TagKey, :VpcId
|
5417
5417
|
extend Gem::Deprecate
|
5418
|
-
deprecate :TagKey, :none, 2025,
|
5419
|
-
deprecate :TagKey=, :none, 2025,
|
5418
|
+
deprecate :TagKey, :none, 2025, 6
|
5419
|
+
deprecate :TagKey=, :none, 2025, 6
|
5420
5420
|
|
5421
5421
|
def initialize(instanceid=nil, searchword=nil, status=nil, offset=nil, limit=nil, tagkey=nil, vpcid=nil)
|
5422
5422
|
@InstanceId = instanceid
|
@@ -8956,17 +8956,21 @@ module TencentCloud
|
|
8956
8956
|
# @type TaskId: String
|
8957
8957
|
# @param TaskName: 任务名称
|
8958
8958
|
# @type TaskName: String
|
8959
|
+
# @param Description: 任务描述信息
|
8960
|
+
# @type Description: String
|
8959
8961
|
|
8960
|
-
attr_accessor :TaskId, :TaskName
|
8962
|
+
attr_accessor :TaskId, :TaskName, :Description
|
8961
8963
|
|
8962
|
-
def initialize(taskid=nil, taskname=nil)
|
8964
|
+
def initialize(taskid=nil, taskname=nil, description=nil)
|
8963
8965
|
@TaskId = taskid
|
8964
8966
|
@TaskName = taskname
|
8967
|
+
@Description = description
|
8965
8968
|
end
|
8966
8969
|
|
8967
8970
|
def deserialize(params)
|
8968
8971
|
@TaskId = params['TaskId']
|
8969
8972
|
@TaskName = params['TaskName']
|
8973
|
+
@Description = params['Description']
|
8970
8974
|
end
|
8971
8975
|
end
|
8972
8976
|
|
@@ -9167,8 +9171,8 @@ module TencentCloud
|
|
9167
9171
|
|
9168
9172
|
attr_accessor :InstanceId, :MsgRetentionTime, :InstanceName, :Config, :DynamicRetentionConfig, :RebalanceTime, :PublicNetwork, :DynamicDiskConfig, :MaxMessageByte, :UncleanLeaderElectionEnable
|
9169
9173
|
extend Gem::Deprecate
|
9170
|
-
deprecate :DynamicDiskConfig, :none, 2025,
|
9171
|
-
deprecate :DynamicDiskConfig=, :none, 2025,
|
9174
|
+
deprecate :DynamicDiskConfig, :none, 2025, 6
|
9175
|
+
deprecate :DynamicDiskConfig=, :none, 2025, 6
|
9172
9176
|
|
9173
9177
|
def initialize(instanceid=nil, msgretentiontime=nil, instancename=nil, config=nil, dynamicretentionconfig=nil, rebalancetime=nil, publicnetwork=nil, dynamicdiskconfig=nil, maxmessagebyte=nil, uncleanleaderelectionenable=nil)
|
9174
9178
|
@InstanceId = instanceid
|
@@ -12202,8 +12206,8 @@ module TencentCloud
|
|
12202
12206
|
|
12203
12207
|
attr_accessor :ZoneId, :IsInternalApp, :AppId, :Flag, :ZoneName, :ZoneStatus, :Exflag, :SoldOut, :SalesInfo, :ExtraFlag
|
12204
12208
|
extend Gem::Deprecate
|
12205
|
-
deprecate :Exflag, :none, 2025,
|
12206
|
-
deprecate :Exflag=, :none, 2025,
|
12209
|
+
deprecate :Exflag, :none, 2025, 6
|
12210
|
+
deprecate :Exflag=, :none, 2025, 6
|
12207
12211
|
|
12208
12212
|
def initialize(zoneid=nil, isinternalapp=nil, appid=nil, flag=nil, zonename=nil, zonestatus=nil, exflag=nil, soldout=nil, salesinfo=nil, extraflag=nil)
|
12209
12213
|
@ZoneId = zoneid
|
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.1078
|
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-06-
|
11
|
+
date: 2025-06-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|