tencentcloud-sdk-ckafka 3.0.1169 → 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: e4d09256dc133a42bab76491ad7cb6ad876e9f2a
4
- data.tar.gz: 1e58cb470d5d723a0ea4bbda6508f656b58e140a
3
+ metadata.gz: 7867a399eff91295a804f29f25a6459579b2797c
4
+ data.tar.gz: 0f3d4b730cb97718475990d728e32da5dea22afc
5
5
  SHA512:
6
- metadata.gz: 78302215ec5e5347d1dc559066f2bfe9ea7ba95233979545911192b30ae3d3b98c5c5409859eecc61d64c8519f70ef81195df125d6744cb0eb7f96acd316bfb5
7
- data.tar.gz: f53a02e8b3b270c70cff25823cd3542cd622f5e1b3b6bc7bc4efbfb48cab66382fe1769f02ce131aa8360adde2c1eb95a196ae6a8e7bb65f25fcb68a589ee04d
6
+ metadata.gz: f60c602a66d96d645b0173a990be264857af3fcdccb040c7160443063e703f81cc8cd5afe9870f767c3a4ed8d631b28bbd6f3111f6930104f4e6c7971b9aad03
7
+ data.tar.gz: 98aeba0637b1c17181d1eb0e606d30788ea5500e9dccc7e71e373e32f1872ab2d34a5608902a2604e2aeb2364a2b37e0a5ead357d334cb4ba6d6c54d51df0dfa
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1169
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-ckafka
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1169
4
+ version: 3.0.1170
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud