tencentcloud-sdk-ckafka 3.0.1066 → 3.0.1068
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/client.rb +1 -1
- data/lib/v20190819/models.rb +16 -3
- 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: 6a2468859e0e00c791fb3fcc511560de39afff43
|
4
|
+
data.tar.gz: 14c99768de3da84515bbbaec8881fce9cabac584
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dda9066fee0ccd0a7ef2e7c7b899280685f3617b330fb9deae2e740c1a7f1b38bf5223d747470fd2601c69838b3c9f089b0c5a56f4ce6d071c20bc2dd576886b
|
7
|
+
data.tar.gz: 13281409b4e28d4d9835fd7446d2601dd1c230548186a2bc8c829c6711e445ebf075ea21fa9a456d9acaa00cd9a2b54ff74bc6d1eb6c34ecdda50fa90ddaad9b
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1068
|
data/lib/v20190819/client.rb
CHANGED
@@ -341,7 +341,7 @@ module TencentCloud
|
|
341
341
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
342
342
|
end
|
343
343
|
|
344
|
-
#
|
344
|
+
# 由于出参需要更新,建议用户迁移使用 CreatePostPaidInstance 接口。创建按量计费实例。通常用于 SDK 或云 API 控制台调用接口,创建后付费 CKafka 实例。调用接口与在 CKafka 控制台购买按量付费实例效果相同。
|
345
345
|
|
346
346
|
# @param request: Request instance for CreateInstancePost.
|
347
347
|
# @type request: :class:`Tencentcloud::ckafka::V20190819::CreateInstancePostRequest`
|
data/lib/v20190819/models.rb
CHANGED
@@ -1776,10 +1776,15 @@ module TencentCloud
|
|
1776
1776
|
# @type TaskId: String
|
1777
1777
|
# @param Tags: 标签列表
|
1778
1778
|
# @type Tags: Array
|
1779
|
+
# @param Description: 任务描述信息
|
1780
|
+
# @type Description: String
|
1779
1781
|
|
1780
|
-
attr_accessor :TaskName, :TaskType, :SourceResource, :TargetResource, :TransformParam, :PrivateLinkParam, :SchemaId, :TransformsParam, :TaskId, :Tags
|
1782
|
+
attr_accessor :TaskName, :TaskType, :SourceResource, :TargetResource, :TransformParam, :PrivateLinkParam, :SchemaId, :TransformsParam, :TaskId, :Tags, :Description
|
1783
|
+
extend Gem::Deprecate
|
1784
|
+
deprecate :PrivateLinkParam, :none, 2025, 5
|
1785
|
+
deprecate :PrivateLinkParam=, :none, 2025, 5
|
1781
1786
|
|
1782
|
-
def initialize(taskname=nil, tasktype=nil, sourceresource=nil, targetresource=nil, transformparam=nil, privatelinkparam=nil, schemaid=nil, transformsparam=nil, taskid=nil, tags=nil)
|
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)
|
1783
1788
|
@TaskName = taskname
|
1784
1789
|
@TaskType = tasktype
|
1785
1790
|
@SourceResource = sourceresource
|
@@ -1790,6 +1795,7 @@ module TencentCloud
|
|
1790
1795
|
@TransformsParam = transformsparam
|
1791
1796
|
@TaskId = taskid
|
1792
1797
|
@Tags = tags
|
1798
|
+
@Description = description
|
1793
1799
|
end
|
1794
1800
|
|
1795
1801
|
def deserialize(params)
|
@@ -1825,6 +1831,7 @@ module TencentCloud
|
|
1825
1831
|
@Tags << tag_tmp
|
1826
1832
|
end
|
1827
1833
|
end
|
1834
|
+
@Description = params['Description']
|
1828
1835
|
end
|
1829
1836
|
end
|
1830
1837
|
|
@@ -5321,6 +5328,9 @@ module TencentCloud
|
|
5321
5328
|
# @type TagList: Array
|
5322
5329
|
|
5323
5330
|
attr_accessor :InstanceId, :SearchWord, :Status, :Offset, :Limit, :TagKey, :Filters, :InstanceIds, :InstanceIdList, :TagList
|
5331
|
+
extend Gem::Deprecate
|
5332
|
+
deprecate :InstanceIds, :none, 2025, 5
|
5333
|
+
deprecate :InstanceIds=, :none, 2025, 5
|
5324
5334
|
|
5325
5335
|
def initialize(instanceid=nil, searchword=nil, status=nil, offset=nil, limit=nil, tagkey=nil, filters=nil, instanceids=nil, instanceidlist=nil, taglist=nil)
|
5326
5336
|
@InstanceId = instanceid
|
@@ -5404,6 +5414,9 @@ module TencentCloud
|
|
5404
5414
|
# @type VpcId: String
|
5405
5415
|
|
5406
5416
|
attr_accessor :InstanceId, :SearchWord, :Status, :Offset, :Limit, :TagKey, :VpcId
|
5417
|
+
extend Gem::Deprecate
|
5418
|
+
deprecate :TagKey, :none, 2025, 5
|
5419
|
+
deprecate :TagKey=, :none, 2025, 5
|
5407
5420
|
|
5408
5421
|
def initialize(instanceid=nil, searchword=nil, status=nil, offset=nil, limit=nil, tagkey=nil, vpcid=nil)
|
5409
5422
|
@InstanceId = instanceid
|
@@ -6752,7 +6765,7 @@ module TencentCloud
|
|
6752
6765
|
|
6753
6766
|
# 数据处理规则失败处理
|
6754
6767
|
class FailureParam < TencentCloud::Common::AbstractModel
|
6755
|
-
# @param Type: 类型,DLQ死信队列,IGNORE_ERROR保留,DROP
|
6768
|
+
# @param Type: 类型,DLQ死信队列,IGNORE_ERROR保留,DROP丢弃
|
6756
6769
|
# @type Type: String
|
6757
6770
|
# @param KafkaParam: Ckafka类型死信队列
|
6758
6771
|
# @type KafkaParam: :class:`Tencentcloud::Ckafka.v20190819.models.KafkaParam`
|
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.1068
|
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-05-
|
11
|
+
date: 2025-05-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|