tencentcloud-sdk-ckafka 1.0.200
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 +7 -0
- data/lib/VERSION +1 -0
- data/lib/tencentcloud-sdk-ckafka.rb +11 -0
- data/lib/v20190819/client.rb +901 -0
- data/lib/v20190819/models.rb +4236 -0
- metadata +66 -0
@@ -0,0 +1,901 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
require 'json'
|
18
|
+
|
19
|
+
module TencentCloud
|
20
|
+
module Ckafka
|
21
|
+
module V20190819
|
22
|
+
class Client < TencentCloud::Common::AbstractClient
|
23
|
+
|
24
|
+
def initialize(credential, region, profile = nil)
|
25
|
+
api_version = '2019-08-19'
|
26
|
+
api_endpoint = 'ckafka.tencentcloudapi.com'
|
27
|
+
sdk_version = 'CKAFKA_' + File.read(File.expand_path('../VERSION', __dir__)).strip
|
28
|
+
super(credential, region, api_version, api_endpoint, sdk_version, profile)
|
29
|
+
end
|
30
|
+
|
31
|
+
|
32
|
+
# 批量添加ACL策略
|
33
|
+
|
34
|
+
# @param request: Request instance for BatchCreateAcl.
|
35
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::BatchCreateAclRequest`
|
36
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::BatchCreateAclResponse`
|
37
|
+
def BatchCreateAcl(request)
|
38
|
+
body = send_request('BatchCreateAcl', request.serialize)
|
39
|
+
response = JSON.parse(body)
|
40
|
+
if response['Response'].key?('Error') == false
|
41
|
+
model = BatchCreateAclResponse.new
|
42
|
+
model.deserialize(response['Response'])
|
43
|
+
model
|
44
|
+
else
|
45
|
+
code = response['Response']['Error']['Code']
|
46
|
+
message = response['Response']['Error']['Message']
|
47
|
+
reqid = response['Response']['RequestId']
|
48
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
49
|
+
end
|
50
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
51
|
+
raise e
|
52
|
+
rescue StandardError => e
|
53
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
54
|
+
end
|
55
|
+
|
56
|
+
# 添加 ACL 策略
|
57
|
+
|
58
|
+
# @param request: Request instance for CreateAcl.
|
59
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::CreateAclRequest`
|
60
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::CreateAclResponse`
|
61
|
+
def CreateAcl(request)
|
62
|
+
body = send_request('CreateAcl', request.serialize)
|
63
|
+
response = JSON.parse(body)
|
64
|
+
if response['Response'].key?('Error') == false
|
65
|
+
model = CreateAclResponse.new
|
66
|
+
model.deserialize(response['Response'])
|
67
|
+
model
|
68
|
+
else
|
69
|
+
code = response['Response']['Error']['Code']
|
70
|
+
message = response['Response']['Error']['Message']
|
71
|
+
reqid = response['Response']['RequestId']
|
72
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
73
|
+
end
|
74
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
75
|
+
raise e
|
76
|
+
rescue StandardError => e
|
77
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
78
|
+
end
|
79
|
+
|
80
|
+
# 创建实例(预付费包年包月)
|
81
|
+
|
82
|
+
# @param request: Request instance for CreateInstancePre.
|
83
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::CreateInstancePreRequest`
|
84
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::CreateInstancePreResponse`
|
85
|
+
def CreateInstancePre(request)
|
86
|
+
body = send_request('CreateInstancePre', request.serialize)
|
87
|
+
response = JSON.parse(body)
|
88
|
+
if response['Response'].key?('Error') == false
|
89
|
+
model = CreateInstancePreResponse.new
|
90
|
+
model.deserialize(response['Response'])
|
91
|
+
model
|
92
|
+
else
|
93
|
+
code = response['Response']['Error']['Code']
|
94
|
+
message = response['Response']['Error']['Message']
|
95
|
+
reqid = response['Response']['RequestId']
|
96
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
97
|
+
end
|
98
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
99
|
+
raise e
|
100
|
+
rescue StandardError => e
|
101
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
102
|
+
end
|
103
|
+
|
104
|
+
# 本接口用于增加主题中的分区
|
105
|
+
|
106
|
+
# @param request: Request instance for CreatePartition.
|
107
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::CreatePartitionRequest`
|
108
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::CreatePartitionResponse`
|
109
|
+
def CreatePartition(request)
|
110
|
+
body = send_request('CreatePartition', request.serialize)
|
111
|
+
response = JSON.parse(body)
|
112
|
+
if response['Response'].key?('Error') == false
|
113
|
+
model = CreatePartitionResponse.new
|
114
|
+
model.deserialize(response['Response'])
|
115
|
+
model
|
116
|
+
else
|
117
|
+
code = response['Response']['Error']['Code']
|
118
|
+
message = response['Response']['Error']['Message']
|
119
|
+
reqid = response['Response']['RequestId']
|
120
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
121
|
+
end
|
122
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
123
|
+
raise e
|
124
|
+
rescue StandardError => e
|
125
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
126
|
+
end
|
127
|
+
|
128
|
+
# 创建ckafka主题
|
129
|
+
|
130
|
+
# @param request: Request instance for CreateTopic.
|
131
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::CreateTopicRequest`
|
132
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::CreateTopicResponse`
|
133
|
+
def CreateTopic(request)
|
134
|
+
body = send_request('CreateTopic', request.serialize)
|
135
|
+
response = JSON.parse(body)
|
136
|
+
if response['Response'].key?('Error') == false
|
137
|
+
model = CreateTopicResponse.new
|
138
|
+
model.deserialize(response['Response'])
|
139
|
+
model
|
140
|
+
else
|
141
|
+
code = response['Response']['Error']['Code']
|
142
|
+
message = response['Response']['Error']['Message']
|
143
|
+
reqid = response['Response']['RequestId']
|
144
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
145
|
+
end
|
146
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
147
|
+
raise e
|
148
|
+
rescue StandardError => e
|
149
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
150
|
+
end
|
151
|
+
|
152
|
+
# 创建主题ip白名单
|
153
|
+
|
154
|
+
# @param request: Request instance for CreateTopicIpWhiteList.
|
155
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::CreateTopicIpWhiteListRequest`
|
156
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::CreateTopicIpWhiteListResponse`
|
157
|
+
def CreateTopicIpWhiteList(request)
|
158
|
+
body = send_request('CreateTopicIpWhiteList', request.serialize)
|
159
|
+
response = JSON.parse(body)
|
160
|
+
if response['Response'].key?('Error') == false
|
161
|
+
model = CreateTopicIpWhiteListResponse.new
|
162
|
+
model.deserialize(response['Response'])
|
163
|
+
model
|
164
|
+
else
|
165
|
+
code = response['Response']['Error']['Code']
|
166
|
+
message = response['Response']['Error']['Message']
|
167
|
+
reqid = response['Response']['RequestId']
|
168
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
169
|
+
end
|
170
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
171
|
+
raise e
|
172
|
+
rescue StandardError => e
|
173
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
174
|
+
end
|
175
|
+
|
176
|
+
# 添加用户
|
177
|
+
|
178
|
+
# @param request: Request instance for CreateUser.
|
179
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::CreateUserRequest`
|
180
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::CreateUserResponse`
|
181
|
+
def CreateUser(request)
|
182
|
+
body = send_request('CreateUser', request.serialize)
|
183
|
+
response = JSON.parse(body)
|
184
|
+
if response['Response'].key?('Error') == false
|
185
|
+
model = CreateUserResponse.new
|
186
|
+
model.deserialize(response['Response'])
|
187
|
+
model
|
188
|
+
else
|
189
|
+
code = response['Response']['Error']['Code']
|
190
|
+
message = response['Response']['Error']['Message']
|
191
|
+
reqid = response['Response']['RequestId']
|
192
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
193
|
+
end
|
194
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
195
|
+
raise e
|
196
|
+
rescue StandardError => e
|
197
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
198
|
+
end
|
199
|
+
|
200
|
+
# 删除ACL
|
201
|
+
|
202
|
+
# @param request: Request instance for DeleteAcl.
|
203
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::DeleteAclRequest`
|
204
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::DeleteAclResponse`
|
205
|
+
def DeleteAcl(request)
|
206
|
+
body = send_request('DeleteAcl', request.serialize)
|
207
|
+
response = JSON.parse(body)
|
208
|
+
if response['Response'].key?('Error') == false
|
209
|
+
model = DeleteAclResponse.new
|
210
|
+
model.deserialize(response['Response'])
|
211
|
+
model
|
212
|
+
else
|
213
|
+
code = response['Response']['Error']['Code']
|
214
|
+
message = response['Response']['Error']['Message']
|
215
|
+
reqid = response['Response']['RequestId']
|
216
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
217
|
+
end
|
218
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
219
|
+
raise e
|
220
|
+
rescue StandardError => e
|
221
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
222
|
+
end
|
223
|
+
|
224
|
+
# 删除ACL规则
|
225
|
+
|
226
|
+
# @param request: Request instance for DeleteAclRule.
|
227
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::DeleteAclRuleRequest`
|
228
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::DeleteAclRuleResponse`
|
229
|
+
def DeleteAclRule(request)
|
230
|
+
body = send_request('DeleteAclRule', request.serialize)
|
231
|
+
response = JSON.parse(body)
|
232
|
+
if response['Response'].key?('Error') == false
|
233
|
+
model = DeleteAclRuleResponse.new
|
234
|
+
model.deserialize(response['Response'])
|
235
|
+
model
|
236
|
+
else
|
237
|
+
code = response['Response']['Error']['Code']
|
238
|
+
message = response['Response']['Error']['Message']
|
239
|
+
reqid = response['Response']['RequestId']
|
240
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
241
|
+
end
|
242
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
243
|
+
raise e
|
244
|
+
rescue StandardError => e
|
245
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
246
|
+
end
|
247
|
+
|
248
|
+
# 修改删除路由延迟触发时间
|
249
|
+
|
250
|
+
# @param request: Request instance for DeleteRouteTriggerTime.
|
251
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::DeleteRouteTriggerTimeRequest`
|
252
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::DeleteRouteTriggerTimeResponse`
|
253
|
+
def DeleteRouteTriggerTime(request)
|
254
|
+
body = send_request('DeleteRouteTriggerTime', request.serialize)
|
255
|
+
response = JSON.parse(body)
|
256
|
+
if response['Response'].key?('Error') == false
|
257
|
+
model = DeleteRouteTriggerTimeResponse.new
|
258
|
+
model.deserialize(response['Response'])
|
259
|
+
model
|
260
|
+
else
|
261
|
+
code = response['Response']['Error']['Code']
|
262
|
+
message = response['Response']['Error']['Message']
|
263
|
+
reqid = response['Response']['RequestId']
|
264
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
265
|
+
end
|
266
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
267
|
+
raise e
|
268
|
+
rescue StandardError => e
|
269
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
270
|
+
end
|
271
|
+
|
272
|
+
# 删除ckafka主题
|
273
|
+
|
274
|
+
# @param request: Request instance for DeleteTopic.
|
275
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::DeleteTopicRequest`
|
276
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::DeleteTopicResponse`
|
277
|
+
def DeleteTopic(request)
|
278
|
+
body = send_request('DeleteTopic', request.serialize)
|
279
|
+
response = JSON.parse(body)
|
280
|
+
if response['Response'].key?('Error') == false
|
281
|
+
model = DeleteTopicResponse.new
|
282
|
+
model.deserialize(response['Response'])
|
283
|
+
model
|
284
|
+
else
|
285
|
+
code = response['Response']['Error']['Code']
|
286
|
+
message = response['Response']['Error']['Message']
|
287
|
+
reqid = response['Response']['RequestId']
|
288
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
289
|
+
end
|
290
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
291
|
+
raise e
|
292
|
+
rescue StandardError => e
|
293
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
294
|
+
end
|
295
|
+
|
296
|
+
# 删除主题IP白名单
|
297
|
+
|
298
|
+
# @param request: Request instance for DeleteTopicIpWhiteList.
|
299
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::DeleteTopicIpWhiteListRequest`
|
300
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::DeleteTopicIpWhiteListResponse`
|
301
|
+
def DeleteTopicIpWhiteList(request)
|
302
|
+
body = send_request('DeleteTopicIpWhiteList', request.serialize)
|
303
|
+
response = JSON.parse(body)
|
304
|
+
if response['Response'].key?('Error') == false
|
305
|
+
model = DeleteTopicIpWhiteListResponse.new
|
306
|
+
model.deserialize(response['Response'])
|
307
|
+
model
|
308
|
+
else
|
309
|
+
code = response['Response']['Error']['Code']
|
310
|
+
message = response['Response']['Error']['Message']
|
311
|
+
reqid = response['Response']['RequestId']
|
312
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
313
|
+
end
|
314
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
315
|
+
raise e
|
316
|
+
rescue StandardError => e
|
317
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
318
|
+
end
|
319
|
+
|
320
|
+
# 删除用户
|
321
|
+
|
322
|
+
# @param request: Request instance for DeleteUser.
|
323
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::DeleteUserRequest`
|
324
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::DeleteUserResponse`
|
325
|
+
def DeleteUser(request)
|
326
|
+
body = send_request('DeleteUser', request.serialize)
|
327
|
+
response = JSON.parse(body)
|
328
|
+
if response['Response'].key?('Error') == false
|
329
|
+
model = DeleteUserResponse.new
|
330
|
+
model.deserialize(response['Response'])
|
331
|
+
model
|
332
|
+
else
|
333
|
+
code = response['Response']['Error']['Code']
|
334
|
+
message = response['Response']['Error']['Message']
|
335
|
+
reqid = response['Response']['RequestId']
|
336
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
337
|
+
end
|
338
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
339
|
+
raise e
|
340
|
+
rescue StandardError => e
|
341
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
342
|
+
end
|
343
|
+
|
344
|
+
# 枚举ACL
|
345
|
+
|
346
|
+
# @param request: Request instance for DescribeACL.
|
347
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::DescribeACLRequest`
|
348
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::DescribeACLResponse`
|
349
|
+
def DescribeACL(request)
|
350
|
+
body = send_request('DescribeACL', request.serialize)
|
351
|
+
response = JSON.parse(body)
|
352
|
+
if response['Response'].key?('Error') == false
|
353
|
+
model = DescribeACLResponse.new
|
354
|
+
model.deserialize(response['Response'])
|
355
|
+
model
|
356
|
+
else
|
357
|
+
code = response['Response']['Error']['Code']
|
358
|
+
message = response['Response']['Error']['Message']
|
359
|
+
reqid = response['Response']['RequestId']
|
360
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
361
|
+
end
|
362
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
363
|
+
raise e
|
364
|
+
rescue StandardError => e
|
365
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
366
|
+
end
|
367
|
+
|
368
|
+
# 查询用户列表
|
369
|
+
|
370
|
+
# @param request: Request instance for DescribeAppInfo.
|
371
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::DescribeAppInfoRequest`
|
372
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::DescribeAppInfoResponse`
|
373
|
+
def DescribeAppInfo(request)
|
374
|
+
body = send_request('DescribeAppInfo', request.serialize)
|
375
|
+
response = JSON.parse(body)
|
376
|
+
if response['Response'].key?('Error') == false
|
377
|
+
model = DescribeAppInfoResponse.new
|
378
|
+
model.deserialize(response['Response'])
|
379
|
+
model
|
380
|
+
else
|
381
|
+
code = response['Response']['Error']['Code']
|
382
|
+
message = response['Response']['Error']['Message']
|
383
|
+
reqid = response['Response']['RequestId']
|
384
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
385
|
+
end
|
386
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
387
|
+
raise e
|
388
|
+
rescue StandardError => e
|
389
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
390
|
+
end
|
391
|
+
|
392
|
+
# 用于查看ckafka的可用区列表
|
393
|
+
|
394
|
+
# @param request: Request instance for DescribeCkafkaZone.
|
395
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::DescribeCkafkaZoneRequest`
|
396
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::DescribeCkafkaZoneResponse`
|
397
|
+
def DescribeCkafkaZone(request)
|
398
|
+
body = send_request('DescribeCkafkaZone', request.serialize)
|
399
|
+
response = JSON.parse(body)
|
400
|
+
if response['Response'].key?('Error') == false
|
401
|
+
model = DescribeCkafkaZoneResponse.new
|
402
|
+
model.deserialize(response['Response'])
|
403
|
+
model
|
404
|
+
else
|
405
|
+
code = response['Response']['Error']['Code']
|
406
|
+
message = response['Response']['Error']['Message']
|
407
|
+
reqid = response['Response']['RequestId']
|
408
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
409
|
+
end
|
410
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
411
|
+
raise e
|
412
|
+
rescue StandardError => e
|
413
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
414
|
+
end
|
415
|
+
|
416
|
+
# 查询消费分组信息
|
417
|
+
|
418
|
+
# @param request: Request instance for DescribeConsumerGroup.
|
419
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::DescribeConsumerGroupRequest`
|
420
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::DescribeConsumerGroupResponse`
|
421
|
+
def DescribeConsumerGroup(request)
|
422
|
+
body = send_request('DescribeConsumerGroup', request.serialize)
|
423
|
+
response = JSON.parse(body)
|
424
|
+
if response['Response'].key?('Error') == false
|
425
|
+
model = DescribeConsumerGroupResponse.new
|
426
|
+
model.deserialize(response['Response'])
|
427
|
+
model
|
428
|
+
else
|
429
|
+
code = response['Response']['Error']['Code']
|
430
|
+
message = response['Response']['Error']['Message']
|
431
|
+
reqid = response['Response']['RequestId']
|
432
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
433
|
+
end
|
434
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
435
|
+
raise e
|
436
|
+
rescue StandardError => e
|
437
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
438
|
+
end
|
439
|
+
|
440
|
+
# 枚举消费分组(精简版)
|
441
|
+
|
442
|
+
# @param request: Request instance for DescribeGroup.
|
443
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::DescribeGroupRequest`
|
444
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::DescribeGroupResponse`
|
445
|
+
def DescribeGroup(request)
|
446
|
+
body = send_request('DescribeGroup', request.serialize)
|
447
|
+
response = JSON.parse(body)
|
448
|
+
if response['Response'].key?('Error') == false
|
449
|
+
model = DescribeGroupResponse.new
|
450
|
+
model.deserialize(response['Response'])
|
451
|
+
model
|
452
|
+
else
|
453
|
+
code = response['Response']['Error']['Code']
|
454
|
+
message = response['Response']['Error']['Message']
|
455
|
+
reqid = response['Response']['RequestId']
|
456
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
457
|
+
end
|
458
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
459
|
+
raise e
|
460
|
+
rescue StandardError => e
|
461
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
462
|
+
end
|
463
|
+
|
464
|
+
# 获取消费分组信息
|
465
|
+
|
466
|
+
# @param request: Request instance for DescribeGroupInfo.
|
467
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::DescribeGroupInfoRequest`
|
468
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::DescribeGroupInfoResponse`
|
469
|
+
def DescribeGroupInfo(request)
|
470
|
+
body = send_request('DescribeGroupInfo', request.serialize)
|
471
|
+
response = JSON.parse(body)
|
472
|
+
if response['Response'].key?('Error') == false
|
473
|
+
model = DescribeGroupInfoResponse.new
|
474
|
+
model.deserialize(response['Response'])
|
475
|
+
model
|
476
|
+
else
|
477
|
+
code = response['Response']['Error']['Code']
|
478
|
+
message = response['Response']['Error']['Message']
|
479
|
+
reqid = response['Response']['RequestId']
|
480
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
481
|
+
end
|
482
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
483
|
+
raise e
|
484
|
+
rescue StandardError => e
|
485
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
486
|
+
end
|
487
|
+
|
488
|
+
# 获取消费分组offset
|
489
|
+
|
490
|
+
# @param request: Request instance for DescribeGroupOffsets.
|
491
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::DescribeGroupOffsetsRequest`
|
492
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::DescribeGroupOffsetsResponse`
|
493
|
+
def DescribeGroupOffsets(request)
|
494
|
+
body = send_request('DescribeGroupOffsets', request.serialize)
|
495
|
+
response = JSON.parse(body)
|
496
|
+
if response['Response'].key?('Error') == false
|
497
|
+
model = DescribeGroupOffsetsResponse.new
|
498
|
+
model.deserialize(response['Response'])
|
499
|
+
model
|
500
|
+
else
|
501
|
+
code = response['Response']['Error']['Code']
|
502
|
+
message = response['Response']['Error']['Message']
|
503
|
+
reqid = response['Response']['RequestId']
|
504
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
505
|
+
end
|
506
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
507
|
+
raise e
|
508
|
+
rescue StandardError => e
|
509
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
510
|
+
end
|
511
|
+
|
512
|
+
# 获取实例属性
|
513
|
+
|
514
|
+
# @param request: Request instance for DescribeInstanceAttributes.
|
515
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::DescribeInstanceAttributesRequest`
|
516
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::DescribeInstanceAttributesResponse`
|
517
|
+
def DescribeInstanceAttributes(request)
|
518
|
+
body = send_request('DescribeInstanceAttributes', request.serialize)
|
519
|
+
response = JSON.parse(body)
|
520
|
+
if response['Response'].key?('Error') == false
|
521
|
+
model = DescribeInstanceAttributesResponse.new
|
522
|
+
model.deserialize(response['Response'])
|
523
|
+
model
|
524
|
+
else
|
525
|
+
code = response['Response']['Error']['Code']
|
526
|
+
message = response['Response']['Error']['Message']
|
527
|
+
reqid = response['Response']['RequestId']
|
528
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
529
|
+
end
|
530
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
531
|
+
raise e
|
532
|
+
rescue StandardError => e
|
533
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
534
|
+
end
|
535
|
+
|
536
|
+
# 本接口(DescribeInstance)用于在用户账户下获取消息队列 CKafka 实例列表
|
537
|
+
|
538
|
+
# @param request: Request instance for DescribeInstances.
|
539
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::DescribeInstancesRequest`
|
540
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::DescribeInstancesResponse`
|
541
|
+
def DescribeInstances(request)
|
542
|
+
body = send_request('DescribeInstances', request.serialize)
|
543
|
+
response = JSON.parse(body)
|
544
|
+
if response['Response'].key?('Error') == false
|
545
|
+
model = DescribeInstancesResponse.new
|
546
|
+
model.deserialize(response['Response'])
|
547
|
+
model
|
548
|
+
else
|
549
|
+
code = response['Response']['Error']['Code']
|
550
|
+
message = response['Response']['Error']['Message']
|
551
|
+
reqid = response['Response']['RequestId']
|
552
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
553
|
+
end
|
554
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
555
|
+
raise e
|
556
|
+
rescue StandardError => e
|
557
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
558
|
+
end
|
559
|
+
|
560
|
+
# 用户账户下获取实例列表详情
|
561
|
+
|
562
|
+
# @param request: Request instance for DescribeInstancesDetail.
|
563
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::DescribeInstancesDetailRequest`
|
564
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::DescribeInstancesDetailResponse`
|
565
|
+
def DescribeInstancesDetail(request)
|
566
|
+
body = send_request('DescribeInstancesDetail', request.serialize)
|
567
|
+
response = JSON.parse(body)
|
568
|
+
if response['Response'].key?('Error') == false
|
569
|
+
model = DescribeInstancesDetailResponse.new
|
570
|
+
model.deserialize(response['Response'])
|
571
|
+
model
|
572
|
+
else
|
573
|
+
code = response['Response']['Error']['Code']
|
574
|
+
message = response['Response']['Error']['Message']
|
575
|
+
reqid = response['Response']['RequestId']
|
576
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
577
|
+
end
|
578
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
579
|
+
raise e
|
580
|
+
rescue StandardError => e
|
581
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
582
|
+
end
|
583
|
+
|
584
|
+
# 枚举地域,只支持广州地域
|
585
|
+
|
586
|
+
# @param request: Request instance for DescribeRegion.
|
587
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::DescribeRegionRequest`
|
588
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::DescribeRegionResponse`
|
589
|
+
def DescribeRegion(request)
|
590
|
+
body = send_request('DescribeRegion', request.serialize)
|
591
|
+
response = JSON.parse(body)
|
592
|
+
if response['Response'].key?('Error') == false
|
593
|
+
model = DescribeRegionResponse.new
|
594
|
+
model.deserialize(response['Response'])
|
595
|
+
model
|
596
|
+
else
|
597
|
+
code = response['Response']['Error']['Code']
|
598
|
+
message = response['Response']['Error']['Message']
|
599
|
+
reqid = response['Response']['RequestId']
|
600
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
601
|
+
end
|
602
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
603
|
+
raise e
|
604
|
+
rescue StandardError => e
|
605
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
606
|
+
end
|
607
|
+
|
608
|
+
# 查看路由信息
|
609
|
+
|
610
|
+
# @param request: Request instance for DescribeRoute.
|
611
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::DescribeRouteRequest`
|
612
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::DescribeRouteResponse`
|
613
|
+
def DescribeRoute(request)
|
614
|
+
body = send_request('DescribeRoute', request.serialize)
|
615
|
+
response = JSON.parse(body)
|
616
|
+
if response['Response'].key?('Error') == false
|
617
|
+
model = DescribeRouteResponse.new
|
618
|
+
model.deserialize(response['Response'])
|
619
|
+
model
|
620
|
+
else
|
621
|
+
code = response['Response']['Error']['Code']
|
622
|
+
message = response['Response']['Error']['Message']
|
623
|
+
reqid = response['Response']['RequestId']
|
624
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
625
|
+
end
|
626
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
627
|
+
raise e
|
628
|
+
rescue StandardError => e
|
629
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
630
|
+
end
|
631
|
+
|
632
|
+
# 接口请求域名:https://ckafka.tencentcloudapi.com
|
633
|
+
# 本接口(DescribeTopic)用于在用户获取消息队列 CKafka 实例的主题列表
|
634
|
+
|
635
|
+
# @param request: Request instance for DescribeTopic.
|
636
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::DescribeTopicRequest`
|
637
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::DescribeTopicResponse`
|
638
|
+
def DescribeTopic(request)
|
639
|
+
body = send_request('DescribeTopic', request.serialize)
|
640
|
+
response = JSON.parse(body)
|
641
|
+
if response['Response'].key?('Error') == false
|
642
|
+
model = DescribeTopicResponse.new
|
643
|
+
model.deserialize(response['Response'])
|
644
|
+
model
|
645
|
+
else
|
646
|
+
code = response['Response']['Error']['Code']
|
647
|
+
message = response['Response']['Error']['Message']
|
648
|
+
reqid = response['Response']['RequestId']
|
649
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
650
|
+
end
|
651
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
652
|
+
raise e
|
653
|
+
rescue StandardError => e
|
654
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
655
|
+
end
|
656
|
+
|
657
|
+
# 获取主题属性
|
658
|
+
|
659
|
+
# @param request: Request instance for DescribeTopicAttributes.
|
660
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::DescribeTopicAttributesRequest`
|
661
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::DescribeTopicAttributesResponse`
|
662
|
+
def DescribeTopicAttributes(request)
|
663
|
+
body = send_request('DescribeTopicAttributes', request.serialize)
|
664
|
+
response = JSON.parse(body)
|
665
|
+
if response['Response'].key?('Error') == false
|
666
|
+
model = DescribeTopicAttributesResponse.new
|
667
|
+
model.deserialize(response['Response'])
|
668
|
+
model
|
669
|
+
else
|
670
|
+
code = response['Response']['Error']['Code']
|
671
|
+
message = response['Response']['Error']['Message']
|
672
|
+
reqid = response['Response']['RequestId']
|
673
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
674
|
+
end
|
675
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
676
|
+
raise e
|
677
|
+
rescue StandardError => e
|
678
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
679
|
+
end
|
680
|
+
|
681
|
+
# 获取主题列表详情(仅控制台调用)
|
682
|
+
|
683
|
+
# @param request: Request instance for DescribeTopicDetail.
|
684
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::DescribeTopicDetailRequest`
|
685
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::DescribeTopicDetailResponse`
|
686
|
+
def DescribeTopicDetail(request)
|
687
|
+
body = send_request('DescribeTopicDetail', request.serialize)
|
688
|
+
response = JSON.parse(body)
|
689
|
+
if response['Response'].key?('Error') == false
|
690
|
+
model = DescribeTopicDetailResponse.new
|
691
|
+
model.deserialize(response['Response'])
|
692
|
+
model
|
693
|
+
else
|
694
|
+
code = response['Response']['Error']['Code']
|
695
|
+
message = response['Response']['Error']['Message']
|
696
|
+
reqid = response['Response']['RequestId']
|
697
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
698
|
+
end
|
699
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
700
|
+
raise e
|
701
|
+
rescue StandardError => e
|
702
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
703
|
+
end
|
704
|
+
|
705
|
+
# 查询订阅某主题消息分组信息
|
706
|
+
|
707
|
+
# @param request: Request instance for DescribeTopicSubscribeGroup.
|
708
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::DescribeTopicSubscribeGroupRequest`
|
709
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::DescribeTopicSubscribeGroupResponse`
|
710
|
+
def DescribeTopicSubscribeGroup(request)
|
711
|
+
body = send_request('DescribeTopicSubscribeGroup', request.serialize)
|
712
|
+
response = JSON.parse(body)
|
713
|
+
if response['Response'].key?('Error') == false
|
714
|
+
model = DescribeTopicSubscribeGroupResponse.new
|
715
|
+
model.deserialize(response['Response'])
|
716
|
+
model
|
717
|
+
else
|
718
|
+
code = response['Response']['Error']['Code']
|
719
|
+
message = response['Response']['Error']['Message']
|
720
|
+
reqid = response['Response']['RequestId']
|
721
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
722
|
+
end
|
723
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
724
|
+
raise e
|
725
|
+
rescue StandardError => e
|
726
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
727
|
+
end
|
728
|
+
|
729
|
+
# 获取Topic 副本详情信息
|
730
|
+
|
731
|
+
# @param request: Request instance for DescribeTopicSyncReplica.
|
732
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::DescribeTopicSyncReplicaRequest`
|
733
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::DescribeTopicSyncReplicaResponse`
|
734
|
+
def DescribeTopicSyncReplica(request)
|
735
|
+
body = send_request('DescribeTopicSyncReplica', request.serialize)
|
736
|
+
response = JSON.parse(body)
|
737
|
+
if response['Response'].key?('Error') == false
|
738
|
+
model = DescribeTopicSyncReplicaResponse.new
|
739
|
+
model.deserialize(response['Response'])
|
740
|
+
model
|
741
|
+
else
|
742
|
+
code = response['Response']['Error']['Code']
|
743
|
+
message = response['Response']['Error']['Message']
|
744
|
+
reqid = response['Response']['RequestId']
|
745
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
746
|
+
end
|
747
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
748
|
+
raise e
|
749
|
+
rescue StandardError => e
|
750
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
751
|
+
end
|
752
|
+
|
753
|
+
# 查询用户信息
|
754
|
+
|
755
|
+
# @param request: Request instance for DescribeUser.
|
756
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::DescribeUserRequest`
|
757
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::DescribeUserResponse`
|
758
|
+
def DescribeUser(request)
|
759
|
+
body = send_request('DescribeUser', request.serialize)
|
760
|
+
response = JSON.parse(body)
|
761
|
+
if response['Response'].key?('Error') == false
|
762
|
+
model = DescribeUserResponse.new
|
763
|
+
model.deserialize(response['Response'])
|
764
|
+
model
|
765
|
+
else
|
766
|
+
code = response['Response']['Error']['Code']
|
767
|
+
message = response['Response']['Error']['Message']
|
768
|
+
reqid = response['Response']['RequestId']
|
769
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
770
|
+
end
|
771
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
772
|
+
raise e
|
773
|
+
rescue StandardError => e
|
774
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
775
|
+
end
|
776
|
+
|
777
|
+
# 根据指定offset位置的消息
|
778
|
+
|
779
|
+
# @param request: Request instance for FetchMessageByOffset.
|
780
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::FetchMessageByOffsetRequest`
|
781
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::FetchMessageByOffsetResponse`
|
782
|
+
def FetchMessageByOffset(request)
|
783
|
+
body = send_request('FetchMessageByOffset', request.serialize)
|
784
|
+
response = JSON.parse(body)
|
785
|
+
if response['Response'].key?('Error') == false
|
786
|
+
model = FetchMessageByOffsetResponse.new
|
787
|
+
model.deserialize(response['Response'])
|
788
|
+
model
|
789
|
+
else
|
790
|
+
code = response['Response']['Error']['Code']
|
791
|
+
message = response['Response']['Error']['Message']
|
792
|
+
reqid = response['Response']['RequestId']
|
793
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
794
|
+
end
|
795
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
796
|
+
raise e
|
797
|
+
rescue StandardError => e
|
798
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
799
|
+
end
|
800
|
+
|
801
|
+
# 设置Groups 消费分组offset
|
802
|
+
|
803
|
+
# @param request: Request instance for ModifyGroupOffsets.
|
804
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::ModifyGroupOffsetsRequest`
|
805
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::ModifyGroupOffsetsResponse`
|
806
|
+
def ModifyGroupOffsets(request)
|
807
|
+
body = send_request('ModifyGroupOffsets', request.serialize)
|
808
|
+
response = JSON.parse(body)
|
809
|
+
if response['Response'].key?('Error') == false
|
810
|
+
model = ModifyGroupOffsetsResponse.new
|
811
|
+
model.deserialize(response['Response'])
|
812
|
+
model
|
813
|
+
else
|
814
|
+
code = response['Response']['Error']['Code']
|
815
|
+
message = response['Response']['Error']['Message']
|
816
|
+
reqid = response['Response']['RequestId']
|
817
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
818
|
+
end
|
819
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
820
|
+
raise e
|
821
|
+
rescue StandardError => e
|
822
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
823
|
+
end
|
824
|
+
|
825
|
+
# 设置实例属性
|
826
|
+
|
827
|
+
# @param request: Request instance for ModifyInstanceAttributes.
|
828
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::ModifyInstanceAttributesRequest`
|
829
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::ModifyInstanceAttributesResponse`
|
830
|
+
def ModifyInstanceAttributes(request)
|
831
|
+
body = send_request('ModifyInstanceAttributes', request.serialize)
|
832
|
+
response = JSON.parse(body)
|
833
|
+
if response['Response'].key?('Error') == false
|
834
|
+
model = ModifyInstanceAttributesResponse.new
|
835
|
+
model.deserialize(response['Response'])
|
836
|
+
model
|
837
|
+
else
|
838
|
+
code = response['Response']['Error']['Code']
|
839
|
+
message = response['Response']['Error']['Message']
|
840
|
+
reqid = response['Response']['RequestId']
|
841
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
842
|
+
end
|
843
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
844
|
+
raise e
|
845
|
+
rescue StandardError => e
|
846
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
847
|
+
end
|
848
|
+
|
849
|
+
# 修改密码
|
850
|
+
|
851
|
+
# @param request: Request instance for ModifyPassword.
|
852
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::ModifyPasswordRequest`
|
853
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::ModifyPasswordResponse`
|
854
|
+
def ModifyPassword(request)
|
855
|
+
body = send_request('ModifyPassword', request.serialize)
|
856
|
+
response = JSON.parse(body)
|
857
|
+
if response['Response'].key?('Error') == false
|
858
|
+
model = ModifyPasswordResponse.new
|
859
|
+
model.deserialize(response['Response'])
|
860
|
+
model
|
861
|
+
else
|
862
|
+
code = response['Response']['Error']['Code']
|
863
|
+
message = response['Response']['Error']['Message']
|
864
|
+
reqid = response['Response']['RequestId']
|
865
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
866
|
+
end
|
867
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
868
|
+
raise e
|
869
|
+
rescue StandardError => e
|
870
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
871
|
+
end
|
872
|
+
|
873
|
+
# 本接口用于修改主题属性。
|
874
|
+
|
875
|
+
# @param request: Request instance for ModifyTopicAttributes.
|
876
|
+
# @type request: :class:`Tencentcloud::ckafka::V20190819::ModifyTopicAttributesRequest`
|
877
|
+
# @rtype: :class:`Tencentcloud::ckafka::V20190819::ModifyTopicAttributesResponse`
|
878
|
+
def ModifyTopicAttributes(request)
|
879
|
+
body = send_request('ModifyTopicAttributes', request.serialize)
|
880
|
+
response = JSON.parse(body)
|
881
|
+
if response['Response'].key?('Error') == false
|
882
|
+
model = ModifyTopicAttributesResponse.new
|
883
|
+
model.deserialize(response['Response'])
|
884
|
+
model
|
885
|
+
else
|
886
|
+
code = response['Response']['Error']['Code']
|
887
|
+
message = response['Response']['Error']['Message']
|
888
|
+
reqid = response['Response']['RequestId']
|
889
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
890
|
+
end
|
891
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
892
|
+
raise e
|
893
|
+
rescue StandardError => e
|
894
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
895
|
+
end
|
896
|
+
|
897
|
+
|
898
|
+
end
|
899
|
+
end
|
900
|
+
end
|
901
|
+
end
|