tencentcloud-sdk-ckafka 3.0.1165 → 3.0.1170

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: 4cd69ef2eaee40e154dcddbdc0614ec51744f081
4
- data.tar.gz: 031bc7782252cc0c2c3e5b80f94051783dc3f484
3
+ metadata.gz: 7867a399eff91295a804f29f25a6459579b2797c
4
+ data.tar.gz: 0f3d4b730cb97718475990d728e32da5dea22afc
5
5
  SHA512:
6
- metadata.gz: 843bedbfa2efd46477f7a20a9bc798522a987bd651a2ab295907a8c7fbb973decc29141e1f29d5a71ee567d12a67dee819eb82d6156c9383312d6bd2cc8c3fe1
7
- data.tar.gz: 2e5565116832f633b63b10b1c0739aa4b7e35ffebcf7a2adfbabb6b081af7c60e2fa9821c57fe8771ce57e862be4266bf6e0847d2045069566008b1b2f0814cb
6
+ metadata.gz: f60c602a66d96d645b0173a990be264857af3fcdccb040c7160443063e703f81cc8cd5afe9870f767c3a4ed8d631b28bbd6f3111f6930104f4e6c7971b9aad03
7
+ data.tar.gz: 98aeba0637b1c17181d1eb0e606d30788ea5500e9dccc7e71e373e32f1872ab2d34a5608902a2604e2aeb2364a2b37e0a5ead357d334cb4ba6d6c54d51df0dfa
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1165
1
+ 3.0.1170
@@ -917,30 +917,6 @@ module TencentCloud
917
917
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
918
918
  end
919
919
 
920
- # 查询用户列表
921
-
922
- # @param request: Request instance for DescribeAppInfo.
923
- # @type request: :class:`Tencentcloud::ckafka::V20190819::DescribeAppInfoRequest`
924
- # @rtype: :class:`Tencentcloud::ckafka::V20190819::DescribeAppInfoResponse`
925
- def DescribeAppInfo(request)
926
- body = send_request('DescribeAppInfo', request.serialize)
927
- response = JSON.parse(body)
928
- if response['Response'].key?('Error') == false
929
- model = DescribeAppInfoResponse.new
930
- model.deserialize(response['Response'])
931
- model
932
- else
933
- code = response['Response']['Error']['Code']
934
- message = response['Response']['Error']['Message']
935
- reqid = response['Response']['RequestId']
936
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
937
- end
938
- rescue TencentCloud::Common::TencentCloudSDKException => e
939
- raise e
940
- rescue StandardError => e
941
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
942
- end
943
-
944
920
  # 用于查看ckafka的可用区列表
945
921
 
946
922
  # @param request: Request instance for DescribeCkafkaZone.
@@ -227,26 +227,6 @@ module TencentCloud
227
227
  end
228
228
  end
229
229
 
230
- # AppId的查询结果
231
- class AppIdResponse < TencentCloud::Common::AbstractModel
232
- # @param TotalCount: 符合要求的所有AppId数量
233
- # @type TotalCount: Integer
234
- # @param AppIdList: 符合要求的App Id列表
235
- # @type AppIdList: Array
236
-
237
- attr_accessor :TotalCount, :AppIdList
238
-
239
- def initialize(totalcount=nil, appidlist=nil)
240
- @TotalCount = totalcount
241
- @AppIdList = appidlist
242
- end
243
-
244
- def deserialize(params)
245
- @TotalCount = params['TotalCount']
246
- @AppIdList = params['AppIdList']
247
- end
248
- end
249
-
250
230
  # 存储着分配给该消费者的 partition 信息
251
231
  class Assignment < TencentCloud::Common::AbstractModel
252
232
  # @param Version: assingment版本信息
@@ -3914,49 +3894,6 @@ module TencentCloud
3914
3894
  end
3915
3895
  end
3916
3896
 
3917
- # DescribeAppInfo请求参数结构体
3918
- class DescribeAppInfoRequest < TencentCloud::Common::AbstractModel
3919
- # @param Offset: 偏移位置
3920
- # @type Offset: Integer
3921
- # @param Limit: 本次查询用户数目最大数量限制,最大值为50,默认50
3922
- # @type Limit: Integer
3923
-
3924
- attr_accessor :Offset, :Limit
3925
-
3926
- def initialize(offset=nil, limit=nil)
3927
- @Offset = offset
3928
- @Limit = limit
3929
- end
3930
-
3931
- def deserialize(params)
3932
- @Offset = params['Offset']
3933
- @Limit = params['Limit']
3934
- end
3935
- end
3936
-
3937
- # DescribeAppInfo返回参数结构体
3938
- class DescribeAppInfoResponse < TencentCloud::Common::AbstractModel
3939
- # @param Result: 返回的符合要求的App Id列表
3940
- # @type Result: :class:`Tencentcloud::Ckafka.v20190819.models.AppIdResponse`
3941
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3942
- # @type RequestId: String
3943
-
3944
- attr_accessor :Result, :RequestId
3945
-
3946
- def initialize(result=nil, requestid=nil)
3947
- @Result = result
3948
- @RequestId = requestid
3949
- end
3950
-
3951
- def deserialize(params)
3952
- unless params['Result'].nil?
3953
- @Result = AppIdResponse.new
3954
- @Result.deserialize(params['Result'])
3955
- end
3956
- @RequestId = params['RequestId']
3957
- end
3958
- end
3959
-
3960
3897
  # DescribeCkafkaZone请求参数结构体
3961
3898
  class DescribeCkafkaZoneRequest < TencentCloud::Common::AbstractModel
3962
3899
  # @param CdcId: cdc集群Id
@@ -12390,37 +12327,37 @@ module TencentCloud
12390
12327
 
12391
12328
  # 查询kafka的zone信息返回的实体
12392
12329
  class ZoneResponse < TencentCloud::Common::AbstractModel
12393
- # @param ZoneList: zone列表
12330
+ # @param ZoneList: <p>zone列表</p>
12394
12331
  # @type ZoneList: Array
12395
- # @param MaxBuyInstanceNum: 最大购买实例个数
12332
+ # @param MaxBuyInstanceNum: <p>最大购买实例个数</p>
12396
12333
  # @type MaxBuyInstanceNum: Integer
12397
- # @param MaxBandwidth: 最大购买带宽 单位Mb/s
12334
+ # @param MaxBandwidth: <p>最大购买带宽 单位Mb/s</p>
12398
12335
  # @type MaxBandwidth: Integer
12399
- # @param UnitPrice: 后付费单位价格
12336
+ # @param UnitPrice: <p>后付费单位价格</p>
12400
12337
  # @type UnitPrice: :class:`Tencentcloud::Ckafka.v20190819.models.Price`
12401
- # @param MessagePrice: 后付费消息单价
12338
+ # @param MessagePrice: <p>后付费消息单价</p>
12402
12339
  # @type MessagePrice: :class:`Tencentcloud::Ckafka.v20190819.models.Price`
12403
- # @param ClusterInfo: 用户独占集群信息
12340
+ # @param ClusterInfo: <p>用户独占集群信息</p>
12404
12341
  # @type ClusterInfo: Array
12405
- # @param Standard: 购买标准版配置
12342
+ # @param Standard: <p>购买标准版配置</p>
12406
12343
  # @type Standard: String
12407
- # @param StandardS2: 购买标准版S2配置
12344
+ # @param StandardS2: <p>购买标准版S2配置</p>
12408
12345
  # @type StandardS2: String
12409
- # @param Profession: 购买专业版配置
12346
+ # @param Profession: <p>购买专业版配置</p>
12410
12347
  # @type Profession: String
12411
- # @param Physical: 购买物理独占版配置
12348
+ # @param Physical: <p>购买物理独占版配置</p>
12412
12349
  # @type Physical: String
12413
- # @param PublicNetwork: 公网带宽 最小3Mbps 最大999Mbps 仅专业版支持填写 已废弃,无实际意义
12350
+ # @param PublicNetwork: <p>公网带宽 最小3Mbps 最大999Mbps 仅专业版支持填写 已废弃,无实际意义</p>
12414
12351
  # @type PublicNetwork: String
12415
- # @param PublicNetworkLimit: 公网带宽配置
12352
+ # @param PublicNetworkLimit: <p>公网带宽配置</p>
12416
12353
  # @type PublicNetworkLimit: String
12417
- # @param RequestId: 请求Id
12354
+ # @param RequestId: <p>请求Id</p>
12418
12355
  # @type RequestId: String
12419
- # @param Offset: 分页offset
12356
+ # @param Offset: <p>分页offset</p>
12420
12357
  # @type Offset: Integer
12421
- # @param Limit: 分页limit
12358
+ # @param Limit: <p>分页limit</p>
12422
12359
  # @type Limit: Integer
12423
- # @param ForceCheckTag: 是否必须录入tag
12360
+ # @param ForceCheckTag: <p>是否必须录入tag</p>
12424
12361
  # @type ForceCheckTag: Boolean
12425
12362
 
12426
12363
  attr_accessor :ZoneList, :MaxBuyInstanceNum, :MaxBandwidth, :UnitPrice, :MessagePrice, :ClusterInfo, :Standard, :StandardS2, :Profession, :Physical, :PublicNetwork, :PublicNetworkLimit, :RequestId, :Offset, :Limit, :ForceCheckTag
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.1165
4
+ version: 3.0.1170
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-11-10 00:00:00.000000000 Z
11
+ date: 2025-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common