tencentcloud-sdk-ckafka 3.0.1160 → 3.0.1165

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ce98130743226f596c7709a3bd197f723a91142c
4
- data.tar.gz: 47b50b5474a3ba3fa4edad38557678c267462d9b
3
+ metadata.gz: 4cd69ef2eaee40e154dcddbdc0614ec51744f081
4
+ data.tar.gz: 031bc7782252cc0c2c3e5b80f94051783dc3f484
5
5
  SHA512:
6
- metadata.gz: 24a50c605f2024ee8d55bc901f3f18b9983dce449a8e473bbc49d8db298af45a4db055669bb2b6d31987760e453a7815ca8bc12e3c761b8b81e9bff34ca14c37
7
- data.tar.gz: cf8a77c3b74f30adbac94cfd29d36e573f470af7c327bc075d3e036372c03566fe7f89898601a1e3e46f37cc6368d7c33133b5d5a835865bff7d7f4ac0d1b6ce
6
+ metadata.gz: 843bedbfa2efd46477f7a20a9bc798522a987bd651a2ab295907a8c7fbb973decc29141e1f29d5a71ee567d12a67dee819eb82d6156c9383312d6bd2cc8c3fe1
7
+ data.tar.gz: 2e5565116832f633b63b10b1c0739aa4b7e35ffebcf7a2adfbabb6b081af7c60e2fa9821c57fe8771ce57e862be4266bf6e0847d2045069566008b1b2f0814cb
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1160
1
+ 3.0.1165
@@ -2070,6 +2070,30 @@ module TencentCloud
2070
2070
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2071
2071
  end
2072
2072
 
2073
+ # 暂停Dip任务
2074
+
2075
+ # @param request: Request instance for PauseDatahubTask.
2076
+ # @type request: :class:`Tencentcloud::ckafka::V20190819::PauseDatahubTaskRequest`
2077
+ # @rtype: :class:`Tencentcloud::ckafka::V20190819::PauseDatahubTaskResponse`
2078
+ def PauseDatahubTask(request)
2079
+ body = send_request('PauseDatahubTask', request.serialize)
2080
+ response = JSON.parse(body)
2081
+ if response['Response'].key?('Error') == false
2082
+ model = PauseDatahubTaskResponse.new
2083
+ model.deserialize(response['Response'])
2084
+ model
2085
+ else
2086
+ code = response['Response']['Error']['Code']
2087
+ message = response['Response']['Error']['Message']
2088
+ reqid = response['Response']['RequestId']
2089
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2090
+ end
2091
+ rescue TencentCloud::Common::TencentCloudSDKException => e
2092
+ raise e
2093
+ rescue StandardError => e
2094
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2095
+ end
2096
+
2073
2097
  # 续费Ckafka实例, 目前只支持国内站包年包月实例续费
2074
2098
 
2075
2099
  # @param request: Request instance for RenewCkafkaInstance.
@@ -2094,6 +2118,54 @@ module TencentCloud
2094
2118
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2095
2119
  end
2096
2120
 
2121
+ # Datahub任务异常时,重启Datahub任务
2122
+
2123
+ # @param request: Request instance for RestartDatahubTask.
2124
+ # @type request: :class:`Tencentcloud::ckafka::V20190819::RestartDatahubTaskRequest`
2125
+ # @rtype: :class:`Tencentcloud::ckafka::V20190819::RestartDatahubTaskResponse`
2126
+ def RestartDatahubTask(request)
2127
+ body = send_request('RestartDatahubTask', request.serialize)
2128
+ response = JSON.parse(body)
2129
+ if response['Response'].key?('Error') == false
2130
+ model = RestartDatahubTaskResponse.new
2131
+ model.deserialize(response['Response'])
2132
+ model
2133
+ else
2134
+ code = response['Response']['Error']['Code']
2135
+ message = response['Response']['Error']['Message']
2136
+ reqid = response['Response']['RequestId']
2137
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2138
+ end
2139
+ rescue TencentCloud::Common::TencentCloudSDKException => e
2140
+ raise e
2141
+ rescue StandardError => e
2142
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2143
+ end
2144
+
2145
+ # 恢复Dip任务
2146
+
2147
+ # @param request: Request instance for ResumeDatahubTask.
2148
+ # @type request: :class:`Tencentcloud::ckafka::V20190819::ResumeDatahubTaskRequest`
2149
+ # @rtype: :class:`Tencentcloud::ckafka::V20190819::ResumeDatahubTaskResponse`
2150
+ def ResumeDatahubTask(request)
2151
+ body = send_request('ResumeDatahubTask', request.serialize)
2152
+ response = JSON.parse(body)
2153
+ if response['Response'].key?('Error') == false
2154
+ model = ResumeDatahubTaskResponse.new
2155
+ model.deserialize(response['Response'])
2156
+ model
2157
+ else
2158
+ code = response['Response']['Error']['Code']
2159
+ message = response['Response']['Error']['Message']
2160
+ reqid = response['Response']['RequestId']
2161
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2162
+ end
2163
+ rescue TencentCloud::Common::TencentCloudSDKException => e
2164
+ raise e
2165
+ rescue StandardError => e
2166
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2167
+ end
2168
+
2097
2169
  # 通过HTTP接入层发送消息
2098
2170
 
2099
2171
  # @param request: Request instance for SendMessage.
@@ -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, 10
1785
- deprecate :PrivateLinkParam=, :none, 2025, 10
1784
+ deprecate :PrivateLinkParam, :none, 2025, 11
1785
+ deprecate :PrivateLinkParam=, :none, 2025, 11
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
@@ -2158,8 +2158,8 @@ module TencentCloud
2158
2158
 
2159
2159
  attr_accessor :ReturnCode, :ReturnMessage, :Data, :DeleteRouteTimestamp
2160
2160
  extend Gem::Deprecate
2161
- deprecate :DeleteRouteTimestamp, :none, 2025, 10
2162
- deprecate :DeleteRouteTimestamp=, :none, 2025, 10
2161
+ deprecate :DeleteRouteTimestamp, :none, 2025, 11
2162
+ deprecate :DeleteRouteTimestamp=, :none, 2025, 11
2163
2163
 
2164
2164
  def initialize(returncode=nil, returnmessage=nil, data=nil, deleteroutetimestamp=nil)
2165
2165
  @ReturnCode = returncode
@@ -2420,33 +2420,32 @@ module TencentCloud
2420
2420
 
2421
2421
  # CreateRoute请求参数结构体
2422
2422
  class CreateRouteRequest < TencentCloud::Common::AbstractModel
2423
- # @param InstanceId: ckafka集群实例id,可通过[DescribeInstances](https://cloud.tencent.com/document/product/597/40835)接口获取
2423
+ # @param InstanceId: <p>ckafka集群实例id,可通过<a href="https://cloud.tencent.com/document/product/597/40835">DescribeInstances</a>接口获取</p>
2424
2424
  # @type InstanceId: String
2425
- # @param VipType: 路由网络类型(3:vpc路由;7:内部支撑路由;1:公网路由)
2425
+ # @param VipType: <p>路由网络类型(3:vpc路由;7:内部支撑路由;1:公网路由)</p>
2426
2426
  # @type VipType: Integer
2427
- # @param VpcId: vpc网络Id,当vipType为3时必填
2427
+ # @param VpcId: <p>vpc网络Id,当vipType为3时必填</p>
2428
2428
  # @type VpcId: String
2429
- # @param SubnetId: vpc子网id,当vipType为3时必填
2429
+ # @param SubnetId: <p>vpc子网id,当vipType为3时必填</p>
2430
2430
  # @type SubnetId: String
2431
- # @param AccessType: 访问类型:0-plaintext;1-sasl_plaintext;3-sasl_ssl; 4-sasl_scram_sha_256; 5-sasl_scram_sha_512 默认为0
2432
- # vipType=3,支持 0,1,3,4,5
2433
- # vipType=7,支持0,1,3
2434
- # vipType=1,支持1,3
2431
+ # @param AccessType: <p>访问类型:0-plaintext;1-sasl_plaintext;3-sasl_ssl; 4-sasl_scram_sha_256; 5-sasl_scram_sha_512 默认为0vipType=3,支持 0,1,3,4,5vipType=7,支持0,1,3vipType=1,支持1,3</p>
2435
2432
  # @type AccessType: Integer
2436
- # @param AuthFlag: 是否需要权限管理,该字段已废弃
2433
+ # @param AuthFlag: <p>是否需要权限管理,该字段已废弃</p>
2437
2434
  # @type AuthFlag: Integer
2438
- # @param CallerAppid: 调用方appId
2435
+ # @param CallerAppid: <p>调用方appId</p>
2439
2436
  # @type CallerAppid: Integer
2440
- # @param PublicNetwork: 公网带宽,公网路由必传,且是3的倍数,无默认值
2437
+ # @param PublicNetwork: <p>公网带宽,公网路由必传,且是3的倍数,无默认值</p>
2441
2438
  # @type PublicNetwork: Integer
2442
- # @param Ip: vip地址
2439
+ # @param Ip: <p>vip地址</p>
2443
2440
  # @type Ip: String
2444
- # @param Note: 备注信息
2441
+ # @param Note: <p>备注信息</p>
2445
2442
  # @type Note: String
2443
+ # @param SecurityGroupIds: <p>关联安全组有序列表</p>
2444
+ # @type SecurityGroupIds: Array
2446
2445
 
2447
- attr_accessor :InstanceId, :VipType, :VpcId, :SubnetId, :AccessType, :AuthFlag, :CallerAppid, :PublicNetwork, :Ip, :Note
2446
+ attr_accessor :InstanceId, :VipType, :VpcId, :SubnetId, :AccessType, :AuthFlag, :CallerAppid, :PublicNetwork, :Ip, :Note, :SecurityGroupIds
2448
2447
 
2449
- def initialize(instanceid=nil, viptype=nil, vpcid=nil, subnetid=nil, accesstype=nil, authflag=nil, callerappid=nil, publicnetwork=nil, ip=nil, note=nil)
2448
+ def initialize(instanceid=nil, viptype=nil, vpcid=nil, subnetid=nil, accesstype=nil, authflag=nil, callerappid=nil, publicnetwork=nil, ip=nil, note=nil, securitygroupids=nil)
2450
2449
  @InstanceId = instanceid
2451
2450
  @VipType = viptype
2452
2451
  @VpcId = vpcid
@@ -2457,6 +2456,7 @@ module TencentCloud
2457
2456
  @PublicNetwork = publicnetwork
2458
2457
  @Ip = ip
2459
2458
  @Note = note
2459
+ @SecurityGroupIds = securitygroupids
2460
2460
  end
2461
2461
 
2462
2462
  def deserialize(params)
@@ -2470,12 +2470,13 @@ module TencentCloud
2470
2470
  @PublicNetwork = params['PublicNetwork']
2471
2471
  @Ip = params['Ip']
2472
2472
  @Note = params['Note']
2473
+ @SecurityGroupIds = params['SecurityGroupIds']
2473
2474
  end
2474
2475
  end
2475
2476
 
2476
2477
  # CreateRoute返回参数结构体
2477
2478
  class CreateRouteResponse < TencentCloud::Common::AbstractModel
2478
- # @param Result: 返回结果
2479
+ # @param Result: <p>返回结果</p>
2479
2480
  # @type Result: :class:`Tencentcloud::Ckafka.v20190819.models.JgwOperateResponse`
2480
2481
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2481
2482
  # @type RequestId: String
@@ -5254,8 +5255,8 @@ module TencentCloud
5254
5255
 
5255
5256
  attr_accessor :InstanceId, :SearchWord, :Status, :Offset, :Limit, :TagKey, :Filters, :InstanceIds, :InstanceIdList, :TagList
5256
5257
  extend Gem::Deprecate
5257
- deprecate :InstanceIds, :none, 2025, 10
5258
- deprecate :InstanceIds=, :none, 2025, 10
5258
+ deprecate :InstanceIds, :none, 2025, 11
5259
+ deprecate :InstanceIds=, :none, 2025, 11
5259
5260
 
5260
5261
  def initialize(instanceid=nil, searchword=nil, status=nil, offset=nil, limit=nil, tagkey=nil, filters=nil, instanceids=nil, instanceidlist=nil, taglist=nil)
5261
5262
  @InstanceId = instanceid
@@ -5340,8 +5341,8 @@ module TencentCloud
5340
5341
 
5341
5342
  attr_accessor :InstanceId, :SearchWord, :Status, :Offset, :Limit, :TagKey, :VpcId
5342
5343
  extend Gem::Deprecate
5343
- deprecate :TagKey, :none, 2025, 10
5344
- deprecate :TagKey=, :none, 2025, 10
5344
+ deprecate :TagKey, :none, 2025, 11
5345
+ deprecate :TagKey=, :none, 2025, 11
5345
5346
 
5346
5347
  def initialize(instanceid=nil, searchword=nil, status=nil, offset=nil, limit=nil, tagkey=nil, vpcid=nil)
5347
5348
  @InstanceId = instanceid
@@ -8508,10 +8509,14 @@ module TencentCloud
8508
8509
  # @type KeepPartition: Boolean
8509
8510
  # @param TopicRegularExpression: 正则匹配Topic列表
8510
8511
  # @type TopicRegularExpression: String
8512
+ # @param Prefix: Topic 前缀
8513
+ # @type Prefix: String
8514
+ # @param Separator: Topic前缀分隔符
8515
+ # @type Separator: String
8511
8516
 
8512
- attr_accessor :SelfBuilt, :Resource, :Topic, :OffsetType, :StartTime, :ResourceName, :ZoneId, :TopicId, :PartitionNum, :EnableToleration, :QpsLimit, :TableMappings, :UseTableMapping, :UseAutoCreateTopic, :CompressionType, :MsgMultiple, :ConnectorSyncType, :KeepPartition, :TopicRegularExpression
8517
+ attr_accessor :SelfBuilt, :Resource, :Topic, :OffsetType, :StartTime, :ResourceName, :ZoneId, :TopicId, :PartitionNum, :EnableToleration, :QpsLimit, :TableMappings, :UseTableMapping, :UseAutoCreateTopic, :CompressionType, :MsgMultiple, :ConnectorSyncType, :KeepPartition, :TopicRegularExpression, :Prefix, :Separator
8513
8518
 
8514
- def initialize(selfbuilt=nil, resource=nil, topic=nil, offsettype=nil, starttime=nil, resourcename=nil, zoneid=nil, topicid=nil, partitionnum=nil, enabletoleration=nil, qpslimit=nil, tablemappings=nil, usetablemapping=nil, useautocreatetopic=nil, compressiontype=nil, msgmultiple=nil, connectorsynctype=nil, keeppartition=nil, topicregularexpression=nil)
8519
+ def initialize(selfbuilt=nil, resource=nil, topic=nil, offsettype=nil, starttime=nil, resourcename=nil, zoneid=nil, topicid=nil, partitionnum=nil, enabletoleration=nil, qpslimit=nil, tablemappings=nil, usetablemapping=nil, useautocreatetopic=nil, compressiontype=nil, msgmultiple=nil, connectorsynctype=nil, keeppartition=nil, topicregularexpression=nil, prefix=nil, separator=nil)
8515
8520
  @SelfBuilt = selfbuilt
8516
8521
  @Resource = resource
8517
8522
  @Topic = topic
@@ -8531,6 +8536,8 @@ module TencentCloud
8531
8536
  @ConnectorSyncType = connectorsynctype
8532
8537
  @KeepPartition = keeppartition
8533
8538
  @TopicRegularExpression = topicregularexpression
8539
+ @Prefix = prefix
8540
+ @Separator = separator
8534
8541
  end
8535
8542
 
8536
8543
  def deserialize(params)
@@ -8560,6 +8567,8 @@ module TencentCloud
8560
8567
  @ConnectorSyncType = params['ConnectorSyncType']
8561
8568
  @KeepPartition = params['KeepPartition']
8562
8569
  @TopicRegularExpression = params['TopicRegularExpression']
8570
+ @Prefix = params['Prefix']
8571
+ @Separator = params['Separator']
8563
8572
  end
8564
8573
  end
8565
8574
 
@@ -9159,8 +9168,8 @@ module TencentCloud
9159
9168
 
9160
9169
  attr_accessor :InstanceId, :MsgRetentionTime, :InstanceName, :Config, :DynamicRetentionConfig, :RebalanceTime, :PublicNetwork, :DynamicDiskConfig, :MaxMessageByte, :UncleanLeaderElectionEnable, :DeleteProtectionEnable
9161
9170
  extend Gem::Deprecate
9162
- deprecate :DynamicDiskConfig, :none, 2025, 10
9163
- deprecate :DynamicDiskConfig=, :none, 2025, 10
9171
+ deprecate :DynamicDiskConfig, :none, 2025, 11
9172
+ deprecate :DynamicDiskConfig=, :none, 2025, 11
9164
9173
 
9165
9174
  def initialize(instanceid=nil, msgretentiontime=nil, instancename=nil, config=nil, dynamicretentionconfig=nil, rebalancetime=nil, publicnetwork=nil, dynamicdiskconfig=nil, maxmessagebyte=nil, uncleanleaderelectionenable=nil, deleteprotectionenable=nil)
9166
9175
  @InstanceId = instanceid
@@ -10093,6 +10102,46 @@ module TencentCloud
10093
10102
  end
10094
10103
  end
10095
10104
 
10105
+ # PauseDatahubTask请求参数结构体
10106
+ class PauseDatahubTaskRequest < TencentCloud::Common::AbstractModel
10107
+ # @param TaskId: 任务id
10108
+ # @type TaskId: String
10109
+
10110
+ attr_accessor :TaskId
10111
+
10112
+ def initialize(taskid=nil)
10113
+ @TaskId = taskid
10114
+ end
10115
+
10116
+ def deserialize(params)
10117
+ @TaskId = params['TaskId']
10118
+ end
10119
+ end
10120
+
10121
+ # PauseDatahubTask返回参数结构体
10122
+ class PauseDatahubTaskResponse < TencentCloud::Common::AbstractModel
10123
+ # @param Result: 任务id
10124
+ # 注意:此字段可能返回 null,表示取不到有效值。
10125
+ # @type Result: :class:`Tencentcloud::Ckafka.v20190819.models.DatahubTaskIdRes`
10126
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10127
+ # @type RequestId: String
10128
+
10129
+ attr_accessor :Result, :RequestId
10130
+
10131
+ def initialize(result=nil, requestid=nil)
10132
+ @Result = result
10133
+ @RequestId = requestid
10134
+ end
10135
+
10136
+ def deserialize(params)
10137
+ unless params['Result'].nil?
10138
+ @Result = DatahubTaskIdRes.new
10139
+ @Result.deserialize(params['Result'])
10140
+ end
10141
+ @RequestId = params['RequestId']
10142
+ end
10143
+ end
10144
+
10096
10145
  # PostgreSQL连接源参数
10097
10146
  class PostgreSQLConnectParam < TencentCloud::Common::AbstractModel
10098
10147
  # @param Port: PostgreSQL的连接port
@@ -10566,6 +10615,86 @@ module TencentCloud
10566
10615
  end
10567
10616
  end
10568
10617
 
10618
+ # RestartDatahubTask请求参数结构体
10619
+ class RestartDatahubTaskRequest < TencentCloud::Common::AbstractModel
10620
+ # @param TaskId: 任务id
10621
+ # @type TaskId: String
10622
+
10623
+ attr_accessor :TaskId
10624
+
10625
+ def initialize(taskid=nil)
10626
+ @TaskId = taskid
10627
+ end
10628
+
10629
+ def deserialize(params)
10630
+ @TaskId = params['TaskId']
10631
+ end
10632
+ end
10633
+
10634
+ # RestartDatahubTask返回参数结构体
10635
+ class RestartDatahubTaskResponse < TencentCloud::Common::AbstractModel
10636
+ # @param Result: 任务id
10637
+ # 注意:此字段可能返回 null,表示取不到有效值。
10638
+ # @type Result: :class:`Tencentcloud::Ckafka.v20190819.models.DatahubTaskIdRes`
10639
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10640
+ # @type RequestId: String
10641
+
10642
+ attr_accessor :Result, :RequestId
10643
+
10644
+ def initialize(result=nil, requestid=nil)
10645
+ @Result = result
10646
+ @RequestId = requestid
10647
+ end
10648
+
10649
+ def deserialize(params)
10650
+ unless params['Result'].nil?
10651
+ @Result = DatahubTaskIdRes.new
10652
+ @Result.deserialize(params['Result'])
10653
+ end
10654
+ @RequestId = params['RequestId']
10655
+ end
10656
+ end
10657
+
10658
+ # ResumeDatahubTask请求参数结构体
10659
+ class ResumeDatahubTaskRequest < TencentCloud::Common::AbstractModel
10660
+ # @param TaskId: 任务id
10661
+ # @type TaskId: String
10662
+
10663
+ attr_accessor :TaskId
10664
+
10665
+ def initialize(taskid=nil)
10666
+ @TaskId = taskid
10667
+ end
10668
+
10669
+ def deserialize(params)
10670
+ @TaskId = params['TaskId']
10671
+ end
10672
+ end
10673
+
10674
+ # ResumeDatahubTask返回参数结构体
10675
+ class ResumeDatahubTaskResponse < TencentCloud::Common::AbstractModel
10676
+ # @param Result: 任务id
10677
+ # 注意:此字段可能返回 null,表示取不到有效值。
10678
+ # @type Result: :class:`Tencentcloud::Ckafka.v20190819.models.DatahubTaskIdRes`
10679
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10680
+ # @type RequestId: String
10681
+
10682
+ attr_accessor :Result, :RequestId
10683
+
10684
+ def initialize(result=nil, requestid=nil)
10685
+ @Result = result
10686
+ @RequestId = requestid
10687
+ end
10688
+
10689
+ def deserialize(params)
10690
+ unless params['Result'].nil?
10691
+ @Result = DatahubTaskIdRes.new
10692
+ @Result.deserialize(params['Result'])
10693
+ end
10694
+ @RequestId = params['RequestId']
10695
+ end
10696
+ end
10697
+
10569
10698
  # 路由实体对象
10570
10699
  class Route < TencentCloud::Common::AbstractModel
10571
10700
  # @param AccessType: 实例接入方式
@@ -12222,8 +12351,8 @@ module TencentCloud
12222
12351
 
12223
12352
  attr_accessor :ZoneId, :IsInternalApp, :AppId, :Flag, :ZoneName, :ZoneStatus, :Exflag, :SoldOut, :SalesInfo, :ExtraFlag
12224
12353
  extend Gem::Deprecate
12225
- deprecate :Exflag, :none, 2025, 10
12226
- deprecate :Exflag=, :none, 2025, 10
12354
+ deprecate :Exflag, :none, 2025, 11
12355
+ deprecate :Exflag=, :none, 2025, 11
12227
12356
 
12228
12357
  def initialize(zoneid=nil, isinternalapp=nil, appid=nil, flag=nil, zonename=nil, zonestatus=nil, exflag=nil, soldout=nil, salesinfo=nil, extraflag=nil)
12229
12358
  @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.1160
4
+ version: 3.0.1165
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-10-28 00:00:00.000000000 Z
11
+ date: 2025-11-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -34,8 +34,8 @@ extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
36
  - lib/tencentcloud-sdk-ckafka.rb
37
- - lib/v20190819/models.rb
38
37
  - lib/v20190819/client.rb
38
+ - lib/v20190819/models.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: