tencentcloud-sdk-tcaplusdb 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-tcaplusdb.rb +11 -0
- data/lib/v20190823/client.rb +1236 -0
- data/lib/v20190823/models.rb +4680 -0
- metadata +66 -0
@@ -0,0 +1,1236 @@
|
|
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 Tcaplusdb
|
21
|
+
module V20190823
|
22
|
+
class Client < TencentCloud::Common::AbstractClient
|
23
|
+
|
24
|
+
def initialize(credential, region, profile = nil)
|
25
|
+
api_version = '2019-08-23'
|
26
|
+
api_endpoint = 'tcaplusdb.tencentcloudapi.com'
|
27
|
+
sdk_version = 'TCAPLUSDB_' + File.read(File.expand_path('../VERSION', __dir__)).strip
|
28
|
+
super(credential, region, api_version, api_endpoint, sdk_version, profile)
|
29
|
+
end
|
30
|
+
|
31
|
+
|
32
|
+
# 根据给定的表信息,清除表数据。
|
33
|
+
|
34
|
+
# @param request: Request instance for ClearTables.
|
35
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::ClearTablesRequest`
|
36
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::ClearTablesResponse`
|
37
|
+
def ClearTables(request)
|
38
|
+
body = send_request('ClearTables', request.serialize)
|
39
|
+
response = JSON.parse(body)
|
40
|
+
if response['Response'].key?('Error') == false
|
41
|
+
model = ClearTablesResponse.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
|
+
# 选中目标表格,上传并校验改表文件,返回是否允许修改表格结构的结果。
|
57
|
+
|
58
|
+
# @param request: Request instance for CompareIdlFiles.
|
59
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::CompareIdlFilesRequest`
|
60
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::CompareIdlFilesResponse`
|
61
|
+
def CompareIdlFiles(request)
|
62
|
+
body = send_request('CompareIdlFiles', request.serialize)
|
63
|
+
response = JSON.parse(body)
|
64
|
+
if response['Response'].key?('Error') == false
|
65
|
+
model = CompareIdlFilesResponse.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 CreateBackup.
|
83
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::CreateBackupRequest`
|
84
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::CreateBackupResponse`
|
85
|
+
def CreateBackup(request)
|
86
|
+
body = send_request('CreateBackup', request.serialize)
|
87
|
+
response = JSON.parse(body)
|
88
|
+
if response['Response'].key?('Error') == false
|
89
|
+
model = CreateBackupResponse.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
|
+
# 本接口用于创建TcaplusDB集群
|
105
|
+
|
106
|
+
# @param request: Request instance for CreateCluster.
|
107
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::CreateClusterRequest`
|
108
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::CreateClusterResponse`
|
109
|
+
def CreateCluster(request)
|
110
|
+
body = send_request('CreateCluster', request.serialize)
|
111
|
+
response = JSON.parse(body)
|
112
|
+
if response['Response'].key?('Error') == false
|
113
|
+
model = CreateClusterResponse.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
|
+
# 构造表格过去时间点的快照
|
129
|
+
|
130
|
+
# @param request: Request instance for CreateSnapshots.
|
131
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::CreateSnapshotsRequest`
|
132
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::CreateSnapshotsResponse`
|
133
|
+
def CreateSnapshots(request)
|
134
|
+
body = send_request('CreateSnapshots', request.serialize)
|
135
|
+
response = JSON.parse(body)
|
136
|
+
if response['Response'].key?('Error') == false
|
137
|
+
model = CreateSnapshotsResponse.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
|
+
# 在TcaplusDB集群下创建表格组
|
153
|
+
|
154
|
+
# @param request: Request instance for CreateTableGroup.
|
155
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::CreateTableGroupRequest`
|
156
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::CreateTableGroupResponse`
|
157
|
+
def CreateTableGroup(request)
|
158
|
+
body = send_request('CreateTableGroup', request.serialize)
|
159
|
+
response = JSON.parse(body)
|
160
|
+
if response['Response'].key?('Error') == false
|
161
|
+
model = CreateTableGroupResponse.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
|
+
# 根据选择的IDL文件列表,批量创建表格
|
177
|
+
|
178
|
+
# @param request: Request instance for CreateTables.
|
179
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::CreateTablesRequest`
|
180
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::CreateTablesResponse`
|
181
|
+
def CreateTables(request)
|
182
|
+
body = send_request('CreateTables', request.serialize)
|
183
|
+
response = JSON.parse(body)
|
184
|
+
if response['Response'].key?('Error') == false
|
185
|
+
model = CreateTablesResponse.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
|
+
# 删除TcaplusDB集群,必须在集群所属所有资源(包括表格组,表)都已经释放的情况下才会成功。
|
201
|
+
|
202
|
+
# @param request: Request instance for DeleteCluster.
|
203
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::DeleteClusterRequest`
|
204
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::DeleteClusterResponse`
|
205
|
+
def DeleteCluster(request)
|
206
|
+
body = send_request('DeleteCluster', request.serialize)
|
207
|
+
response = JSON.parse(body)
|
208
|
+
if response['Response'].key?('Error') == false
|
209
|
+
model = DeleteClusterResponse.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
|
+
# 指定集群ID和待删除IDL文件的信息,删除目标文件,如果文件正在被表关联则删除失败。
|
225
|
+
|
226
|
+
# @param request: Request instance for DeleteIdlFiles.
|
227
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::DeleteIdlFilesRequest`
|
228
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::DeleteIdlFilesResponse`
|
229
|
+
def DeleteIdlFiles(request)
|
230
|
+
body = send_request('DeleteIdlFiles', request.serialize)
|
231
|
+
response = JSON.parse(body)
|
232
|
+
if response['Response'].key?('Error') == false
|
233
|
+
model = DeleteIdlFilesResponse.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 DeleteSnapshots.
|
251
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::DeleteSnapshotsRequest`
|
252
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::DeleteSnapshotsResponse`
|
253
|
+
def DeleteSnapshots(request)
|
254
|
+
body = send_request('DeleteSnapshots', request.serialize)
|
255
|
+
response = JSON.parse(body)
|
256
|
+
if response['Response'].key?('Error') == false
|
257
|
+
model = DeleteSnapshotsResponse.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
|
+
# 删除表格的数据订阅
|
273
|
+
|
274
|
+
# @param request: Request instance for DeleteTableDataFlow.
|
275
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::DeleteTableDataFlowRequest`
|
276
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::DeleteTableDataFlowResponse`
|
277
|
+
def DeleteTableDataFlow(request)
|
278
|
+
body = send_request('DeleteTableDataFlow', request.serialize)
|
279
|
+
response = JSON.parse(body)
|
280
|
+
if response['Response'].key?('Error') == false
|
281
|
+
model = DeleteTableDataFlowResponse.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
|
+
# 删除表格组
|
297
|
+
|
298
|
+
# @param request: Request instance for DeleteTableGroup.
|
299
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::DeleteTableGroupRequest`
|
300
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::DeleteTableGroupResponse`
|
301
|
+
def DeleteTableGroup(request)
|
302
|
+
body = send_request('DeleteTableGroup', request.serialize)
|
303
|
+
response = JSON.parse(body)
|
304
|
+
if response['Response'].key?('Error') == false
|
305
|
+
model = DeleteTableGroupResponse.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 DeleteTableIndex.
|
323
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::DeleteTableIndexRequest`
|
324
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::DeleteTableIndexResponse`
|
325
|
+
def DeleteTableIndex(request)
|
326
|
+
body = send_request('DeleteTableIndex', request.serialize)
|
327
|
+
response = JSON.parse(body)
|
328
|
+
if response['Response'].key?('Error') == false
|
329
|
+
model = DeleteTableIndexResponse.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
|
+
# 删除指定的表,第一次调用此接口代表将表移动至回收站,再次调用代表将此表格从回收站中彻底删除。
|
345
|
+
|
346
|
+
# @param request: Request instance for DeleteTables.
|
347
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::DeleteTablesRequest`
|
348
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::DeleteTablesResponse`
|
349
|
+
def DeleteTables(request)
|
350
|
+
body = send_request('DeleteTables', request.serialize)
|
351
|
+
response = JSON.parse(body)
|
352
|
+
if response['Response'].key?('Error') == false
|
353
|
+
model = DeleteTablesResponse.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 DescribeApplications.
|
371
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeApplicationsRequest`
|
372
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeApplicationsResponse`
|
373
|
+
def DescribeApplications(request)
|
374
|
+
body = send_request('DescribeApplications', request.serialize)
|
375
|
+
response = JSON.parse(body)
|
376
|
+
if response['Response'].key?('Error') == false
|
377
|
+
model = DescribeApplicationsResponse.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
|
+
# 获取集群关联的标签列表
|
393
|
+
|
394
|
+
# @param request: Request instance for DescribeClusterTags.
|
395
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeClusterTagsRequest`
|
396
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeClusterTagsResponse`
|
397
|
+
def DescribeClusterTags(request)
|
398
|
+
body = send_request('DescribeClusterTags', request.serialize)
|
399
|
+
response = JSON.parse(body)
|
400
|
+
if response['Response'].key?('Error') == false
|
401
|
+
model = DescribeClusterTagsResponse.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
|
+
# 查询TcaplusDB集群列表,包含集群详细信息。
|
417
|
+
|
418
|
+
# @param request: Request instance for DescribeClusters.
|
419
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeClustersRequest`
|
420
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeClustersResponse`
|
421
|
+
def DescribeClusters(request)
|
422
|
+
body = send_request('DescribeClusters', request.serialize)
|
423
|
+
response = JSON.parse(body)
|
424
|
+
if response['Response'].key?('Error') == false
|
425
|
+
model = DescribeClustersResponse.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 DescribeIdlFileInfos.
|
443
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeIdlFileInfosRequest`
|
444
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeIdlFileInfosResponse`
|
445
|
+
def DescribeIdlFileInfos(request)
|
446
|
+
body = send_request('DescribeIdlFileInfos', request.serialize)
|
447
|
+
response = JSON.parse(body)
|
448
|
+
if response['Response'].key?('Error') == false
|
449
|
+
model = DescribeIdlFileInfosResponse.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 DescribeMachine.
|
467
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeMachineRequest`
|
468
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeMachineResponse`
|
469
|
+
def DescribeMachine(request)
|
470
|
+
body = send_request('DescribeMachine', request.serialize)
|
471
|
+
response = JSON.parse(body)
|
472
|
+
if response['Response'].key?('Error') == false
|
473
|
+
model = DescribeMachineResponse.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
|
+
# 查询TcaplusDB服务支持的地域列表
|
489
|
+
|
490
|
+
# @param request: Request instance for DescribeRegions.
|
491
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeRegionsRequest`
|
492
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeRegionsResponse`
|
493
|
+
def DescribeRegions(request)
|
494
|
+
body = send_request('DescribeRegions', request.serialize)
|
495
|
+
response = JSON.parse(body)
|
496
|
+
if response['Response'].key?('Error') == false
|
497
|
+
model = DescribeRegionsResponse.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 DescribeSnapshots.
|
515
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeSnapshotsRequest`
|
516
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeSnapshotsResponse`
|
517
|
+
def DescribeSnapshots(request)
|
518
|
+
body = send_request('DescribeSnapshots', request.serialize)
|
519
|
+
response = JSON.parse(body)
|
520
|
+
if response['Response'].key?('Error') == false
|
521
|
+
model = DescribeSnapshotsResponse.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
|
+
# 获取表格组关联的标签列表
|
537
|
+
|
538
|
+
# @param request: Request instance for DescribeTableGroupTags.
|
539
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeTableGroupTagsRequest`
|
540
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeTableGroupTagsResponse`
|
541
|
+
def DescribeTableGroupTags(request)
|
542
|
+
body = send_request('DescribeTableGroupTags', request.serialize)
|
543
|
+
response = JSON.parse(body)
|
544
|
+
if response['Response'].key?('Error') == false
|
545
|
+
model = DescribeTableGroupTagsResponse.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 DescribeTableGroups.
|
563
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeTableGroupsRequest`
|
564
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeTableGroupsResponse`
|
565
|
+
def DescribeTableGroups(request)
|
566
|
+
body = send_request('DescribeTableGroups', request.serialize)
|
567
|
+
response = JSON.parse(body)
|
568
|
+
if response['Response'].key?('Error') == false
|
569
|
+
model = DescribeTableGroupsResponse.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 DescribeTableTags.
|
587
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeTableTagsRequest`
|
588
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeTableTagsResponse`
|
589
|
+
def DescribeTableTags(request)
|
590
|
+
body = send_request('DescribeTableTags', request.serialize)
|
591
|
+
response = JSON.parse(body)
|
592
|
+
if response['Response'].key?('Error') == false
|
593
|
+
model = DescribeTableTagsResponse.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 DescribeTables.
|
611
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeTablesRequest`
|
612
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeTablesResponse`
|
613
|
+
def DescribeTables(request)
|
614
|
+
body = send_request('DescribeTables', request.serialize)
|
615
|
+
response = JSON.parse(body)
|
616
|
+
if response['Response'].key?('Error') == false
|
617
|
+
model = DescribeTablesResponse.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
|
+
# 查询回收站中的表详情
|
633
|
+
|
634
|
+
# @param request: Request instance for DescribeTablesInRecycle.
|
635
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeTablesInRecycleRequest`
|
636
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeTablesInRecycleResponse`
|
637
|
+
def DescribeTablesInRecycle(request)
|
638
|
+
body = send_request('DescribeTablesInRecycle', request.serialize)
|
639
|
+
response = JSON.parse(body)
|
640
|
+
if response['Response'].key?('Error') == false
|
641
|
+
model = DescribeTablesInRecycleResponse.new
|
642
|
+
model.deserialize(response['Response'])
|
643
|
+
model
|
644
|
+
else
|
645
|
+
code = response['Response']['Error']['Code']
|
646
|
+
message = response['Response']['Error']['Message']
|
647
|
+
reqid = response['Response']['RequestId']
|
648
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
649
|
+
end
|
650
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
651
|
+
raise e
|
652
|
+
rescue StandardError => e
|
653
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
654
|
+
end
|
655
|
+
|
656
|
+
# 查询任务列表
|
657
|
+
|
658
|
+
# @param request: Request instance for DescribeTasks.
|
659
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeTasksRequest`
|
660
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeTasksResponse`
|
661
|
+
def DescribeTasks(request)
|
662
|
+
body = send_request('DescribeTasks', request.serialize)
|
663
|
+
response = JSON.parse(body)
|
664
|
+
if response['Response'].key?('Error') == false
|
665
|
+
model = DescribeTasksResponse.new
|
666
|
+
model.deserialize(response['Response'])
|
667
|
+
model
|
668
|
+
else
|
669
|
+
code = response['Response']['Error']['Code']
|
670
|
+
message = response['Response']['Error']['Message']
|
671
|
+
reqid = response['Response']['RequestId']
|
672
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
673
|
+
end
|
674
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
675
|
+
raise e
|
676
|
+
rescue StandardError => e
|
677
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
678
|
+
end
|
679
|
+
|
680
|
+
# 查询本用户是否在白名单中,控制是否能创建TDR类型的APP或表
|
681
|
+
|
682
|
+
# @param request: Request instance for DescribeUinInWhitelist.
|
683
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeUinInWhitelistRequest`
|
684
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::DescribeUinInWhitelistResponse`
|
685
|
+
def DescribeUinInWhitelist(request)
|
686
|
+
body = send_request('DescribeUinInWhitelist', request.serialize)
|
687
|
+
response = JSON.parse(body)
|
688
|
+
if response['Response'].key?('Error') == false
|
689
|
+
model = DescribeUinInWhitelistResponse.new
|
690
|
+
model.deserialize(response['Response'])
|
691
|
+
model
|
692
|
+
else
|
693
|
+
code = response['Response']['Error']['Code']
|
694
|
+
message = response['Response']['Error']['Message']
|
695
|
+
reqid = response['Response']['RequestId']
|
696
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
697
|
+
end
|
698
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
699
|
+
raise e
|
700
|
+
rescue StandardError => e
|
701
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
702
|
+
end
|
703
|
+
|
704
|
+
# 当restful api为关闭状态时,可以通过此接口关闭restful api
|
705
|
+
|
706
|
+
# @param request: Request instance for DisableRestProxy.
|
707
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::DisableRestProxyRequest`
|
708
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::DisableRestProxyResponse`
|
709
|
+
def DisableRestProxy(request)
|
710
|
+
body = send_request('DisableRestProxy', request.serialize)
|
711
|
+
response = JSON.parse(body)
|
712
|
+
if response['Response'].key?('Error') == false
|
713
|
+
model = DisableRestProxyResponse.new
|
714
|
+
model.deserialize(response['Response'])
|
715
|
+
model
|
716
|
+
else
|
717
|
+
code = response['Response']['Error']['Code']
|
718
|
+
message = response['Response']['Error']['Message']
|
719
|
+
reqid = response['Response']['RequestId']
|
720
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
721
|
+
end
|
722
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
723
|
+
raise e
|
724
|
+
rescue StandardError => e
|
725
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
726
|
+
end
|
727
|
+
|
728
|
+
# 当restful api为关闭状态时,可以通过此接口开启restful apu
|
729
|
+
|
730
|
+
# @param request: Request instance for EnableRestProxy.
|
731
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::EnableRestProxyRequest`
|
732
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::EnableRestProxyResponse`
|
733
|
+
def EnableRestProxy(request)
|
734
|
+
body = send_request('EnableRestProxy', request.serialize)
|
735
|
+
response = JSON.parse(body)
|
736
|
+
if response['Response'].key?('Error') == false
|
737
|
+
model = EnableRestProxyResponse.new
|
738
|
+
model.deserialize(response['Response'])
|
739
|
+
model
|
740
|
+
else
|
741
|
+
code = response['Response']['Error']['Code']
|
742
|
+
message = response['Response']['Error']['Message']
|
743
|
+
reqid = response['Response']['RequestId']
|
744
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
745
|
+
end
|
746
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
747
|
+
raise e
|
748
|
+
rescue StandardError => e
|
749
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
750
|
+
end
|
751
|
+
|
752
|
+
# 将快照数据导入到新表或当前表
|
753
|
+
|
754
|
+
# @param request: Request instance for ImportSnapshots.
|
755
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::ImportSnapshotsRequest`
|
756
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::ImportSnapshotsResponse`
|
757
|
+
def ImportSnapshots(request)
|
758
|
+
body = send_request('ImportSnapshots', request.serialize)
|
759
|
+
response = JSON.parse(body)
|
760
|
+
if response['Response'].key?('Error') == false
|
761
|
+
model = ImportSnapshotsResponse.new
|
762
|
+
model.deserialize(response['Response'])
|
763
|
+
model
|
764
|
+
else
|
765
|
+
code = response['Response']['Error']['Code']
|
766
|
+
message = response['Response']['Error']['Message']
|
767
|
+
reqid = response['Response']['RequestId']
|
768
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
769
|
+
end
|
770
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
771
|
+
raise e
|
772
|
+
rescue StandardError => e
|
773
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
774
|
+
end
|
775
|
+
|
776
|
+
# 合并指定表格
|
777
|
+
|
778
|
+
# @param request: Request instance for MergeTablesData.
|
779
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::MergeTablesDataRequest`
|
780
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::MergeTablesDataResponse`
|
781
|
+
def MergeTablesData(request)
|
782
|
+
body = send_request('MergeTablesData', request.serialize)
|
783
|
+
response = JSON.parse(body)
|
784
|
+
if response['Response'].key?('Error') == false
|
785
|
+
model = MergeTablesDataResponse.new
|
786
|
+
model.deserialize(response['Response'])
|
787
|
+
model
|
788
|
+
else
|
789
|
+
code = response['Response']['Error']['Code']
|
790
|
+
message = response['Response']['Error']['Message']
|
791
|
+
reqid = response['Response']['RequestId']
|
792
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
793
|
+
end
|
794
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
795
|
+
raise e
|
796
|
+
rescue StandardError => e
|
797
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
798
|
+
end
|
799
|
+
|
800
|
+
# 修改集群审批状态
|
801
|
+
|
802
|
+
# @param request: Request instance for ModifyCensorship.
|
803
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::ModifyCensorshipRequest`
|
804
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::ModifyCensorshipResponse`
|
805
|
+
def ModifyCensorship(request)
|
806
|
+
body = send_request('ModifyCensorship', request.serialize)
|
807
|
+
response = JSON.parse(body)
|
808
|
+
if response['Response'].key?('Error') == false
|
809
|
+
model = ModifyCensorshipResponse.new
|
810
|
+
model.deserialize(response['Response'])
|
811
|
+
model
|
812
|
+
else
|
813
|
+
code = response['Response']['Error']['Code']
|
814
|
+
message = response['Response']['Error']['Message']
|
815
|
+
reqid = response['Response']['RequestId']
|
816
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
817
|
+
end
|
818
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
819
|
+
raise e
|
820
|
+
rescue StandardError => e
|
821
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
822
|
+
end
|
823
|
+
|
824
|
+
# 修改独占集群机器
|
825
|
+
|
826
|
+
# @param request: Request instance for ModifyClusterMachine.
|
827
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::ModifyClusterMachineRequest`
|
828
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::ModifyClusterMachineResponse`
|
829
|
+
def ModifyClusterMachine(request)
|
830
|
+
body = send_request('ModifyClusterMachine', request.serialize)
|
831
|
+
response = JSON.parse(body)
|
832
|
+
if response['Response'].key?('Error') == false
|
833
|
+
model = ModifyClusterMachineResponse.new
|
834
|
+
model.deserialize(response['Response'])
|
835
|
+
model
|
836
|
+
else
|
837
|
+
code = response['Response']['Error']['Code']
|
838
|
+
message = response['Response']['Error']['Message']
|
839
|
+
reqid = response['Response']['RequestId']
|
840
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
841
|
+
end
|
842
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
843
|
+
raise e
|
844
|
+
rescue StandardError => e
|
845
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
846
|
+
end
|
847
|
+
|
848
|
+
# 修改指定的集群名称
|
849
|
+
|
850
|
+
# @param request: Request instance for ModifyClusterName.
|
851
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::ModifyClusterNameRequest`
|
852
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::ModifyClusterNameResponse`
|
853
|
+
def ModifyClusterName(request)
|
854
|
+
body = send_request('ModifyClusterName', request.serialize)
|
855
|
+
response = JSON.parse(body)
|
856
|
+
if response['Response'].key?('Error') == false
|
857
|
+
model = ModifyClusterNameResponse.new
|
858
|
+
model.deserialize(response['Response'])
|
859
|
+
model
|
860
|
+
else
|
861
|
+
code = response['Response']['Error']['Code']
|
862
|
+
message = response['Response']['Error']['Message']
|
863
|
+
reqid = response['Response']['RequestId']
|
864
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
865
|
+
end
|
866
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
867
|
+
raise e
|
868
|
+
rescue StandardError => e
|
869
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
870
|
+
end
|
871
|
+
|
872
|
+
# 修改指定集群的密码,后台将在旧密码失效之前同时支持TcaplusDB SDK使用旧密码和新密码访问数据库。在旧密码失效之前不能提交新的密码修改请求,在旧密码失效之后不能提交修改旧密码过期时间的请求。
|
873
|
+
|
874
|
+
# @param request: Request instance for ModifyClusterPassword.
|
875
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::ModifyClusterPasswordRequest`
|
876
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::ModifyClusterPasswordResponse`
|
877
|
+
def ModifyClusterPassword(request)
|
878
|
+
body = send_request('ModifyClusterPassword', request.serialize)
|
879
|
+
response = JSON.parse(body)
|
880
|
+
if response['Response'].key?('Error') == false
|
881
|
+
model = ModifyClusterPasswordResponse.new
|
882
|
+
model.deserialize(response['Response'])
|
883
|
+
model
|
884
|
+
else
|
885
|
+
code = response['Response']['Error']['Code']
|
886
|
+
message = response['Response']['Error']['Message']
|
887
|
+
reqid = response['Response']['RequestId']
|
888
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
889
|
+
end
|
890
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
891
|
+
raise e
|
892
|
+
rescue StandardError => e
|
893
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
894
|
+
end
|
895
|
+
|
896
|
+
# 修改集群标签
|
897
|
+
|
898
|
+
# @param request: Request instance for ModifyClusterTags.
|
899
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::ModifyClusterTagsRequest`
|
900
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::ModifyClusterTagsResponse`
|
901
|
+
def ModifyClusterTags(request)
|
902
|
+
body = send_request('ModifyClusterTags', request.serialize)
|
903
|
+
response = JSON.parse(body)
|
904
|
+
if response['Response'].key?('Error') == false
|
905
|
+
model = ModifyClusterTagsResponse.new
|
906
|
+
model.deserialize(response['Response'])
|
907
|
+
model
|
908
|
+
else
|
909
|
+
code = response['Response']['Error']['Code']
|
910
|
+
message = response['Response']['Error']['Message']
|
911
|
+
reqid = response['Response']['RequestId']
|
912
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
913
|
+
end
|
914
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
915
|
+
raise e
|
916
|
+
rescue StandardError => e
|
917
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
918
|
+
end
|
919
|
+
|
920
|
+
# 修改表格快照的过期时间
|
921
|
+
|
922
|
+
# @param request: Request instance for ModifySnapshots.
|
923
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::ModifySnapshotsRequest`
|
924
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::ModifySnapshotsResponse`
|
925
|
+
def ModifySnapshots(request)
|
926
|
+
body = send_request('ModifySnapshots', request.serialize)
|
927
|
+
response = JSON.parse(body)
|
928
|
+
if response['Response'].key?('Error') == false
|
929
|
+
model = ModifySnapshotsResponse.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
|
+
# 修改TcaplusDB表格组名称
|
945
|
+
|
946
|
+
# @param request: Request instance for ModifyTableGroupName.
|
947
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::ModifyTableGroupNameRequest`
|
948
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::ModifyTableGroupNameResponse`
|
949
|
+
def ModifyTableGroupName(request)
|
950
|
+
body = send_request('ModifyTableGroupName', request.serialize)
|
951
|
+
response = JSON.parse(body)
|
952
|
+
if response['Response'].key?('Error') == false
|
953
|
+
model = ModifyTableGroupNameResponse.new
|
954
|
+
model.deserialize(response['Response'])
|
955
|
+
model
|
956
|
+
else
|
957
|
+
code = response['Response']['Error']['Code']
|
958
|
+
message = response['Response']['Error']['Message']
|
959
|
+
reqid = response['Response']['RequestId']
|
960
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
961
|
+
end
|
962
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
963
|
+
raise e
|
964
|
+
rescue StandardError => e
|
965
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
966
|
+
end
|
967
|
+
|
968
|
+
# 修改表格组标签
|
969
|
+
|
970
|
+
# @param request: Request instance for ModifyTableGroupTags.
|
971
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::ModifyTableGroupTagsRequest`
|
972
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::ModifyTableGroupTagsResponse`
|
973
|
+
def ModifyTableGroupTags(request)
|
974
|
+
body = send_request('ModifyTableGroupTags', request.serialize)
|
975
|
+
response = JSON.parse(body)
|
976
|
+
if response['Response'].key?('Error') == false
|
977
|
+
model = ModifyTableGroupTagsResponse.new
|
978
|
+
model.deserialize(response['Response'])
|
979
|
+
model
|
980
|
+
else
|
981
|
+
code = response['Response']['Error']['Code']
|
982
|
+
message = response['Response']['Error']['Message']
|
983
|
+
reqid = response['Response']['RequestId']
|
984
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
985
|
+
end
|
986
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
987
|
+
raise e
|
988
|
+
rescue StandardError => e
|
989
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
990
|
+
end
|
991
|
+
|
992
|
+
# 修改表备注信息
|
993
|
+
|
994
|
+
# @param request: Request instance for ModifyTableMemos.
|
995
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::ModifyTableMemosRequest`
|
996
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::ModifyTableMemosResponse`
|
997
|
+
def ModifyTableMemos(request)
|
998
|
+
body = send_request('ModifyTableMemos', request.serialize)
|
999
|
+
response = JSON.parse(body)
|
1000
|
+
if response['Response'].key?('Error') == false
|
1001
|
+
model = ModifyTableMemosResponse.new
|
1002
|
+
model.deserialize(response['Response'])
|
1003
|
+
model
|
1004
|
+
else
|
1005
|
+
code = response['Response']['Error']['Code']
|
1006
|
+
message = response['Response']['Error']['Message']
|
1007
|
+
reqid = response['Response']['RequestId']
|
1008
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1009
|
+
end
|
1010
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1011
|
+
raise e
|
1012
|
+
rescue StandardError => e
|
1013
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1014
|
+
end
|
1015
|
+
|
1016
|
+
# 表格扩缩容
|
1017
|
+
|
1018
|
+
# @param request: Request instance for ModifyTableQuotas.
|
1019
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::ModifyTableQuotasRequest`
|
1020
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::ModifyTableQuotasResponse`
|
1021
|
+
def ModifyTableQuotas(request)
|
1022
|
+
body = send_request('ModifyTableQuotas', request.serialize)
|
1023
|
+
response = JSON.parse(body)
|
1024
|
+
if response['Response'].key?('Error') == false
|
1025
|
+
model = ModifyTableQuotasResponse.new
|
1026
|
+
model.deserialize(response['Response'])
|
1027
|
+
model
|
1028
|
+
else
|
1029
|
+
code = response['Response']['Error']['Code']
|
1030
|
+
message = response['Response']['Error']['Message']
|
1031
|
+
reqid = response['Response']['RequestId']
|
1032
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1033
|
+
end
|
1034
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1035
|
+
raise e
|
1036
|
+
rescue StandardError => e
|
1037
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1038
|
+
end
|
1039
|
+
|
1040
|
+
# 修改表格标签
|
1041
|
+
|
1042
|
+
# @param request: Request instance for ModifyTableTags.
|
1043
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::ModifyTableTagsRequest`
|
1044
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::ModifyTableTagsResponse`
|
1045
|
+
def ModifyTableTags(request)
|
1046
|
+
body = send_request('ModifyTableTags', request.serialize)
|
1047
|
+
response = JSON.parse(body)
|
1048
|
+
if response['Response'].key?('Error') == false
|
1049
|
+
model = ModifyTableTagsResponse.new
|
1050
|
+
model.deserialize(response['Response'])
|
1051
|
+
model
|
1052
|
+
else
|
1053
|
+
code = response['Response']['Error']['Code']
|
1054
|
+
message = response['Response']['Error']['Message']
|
1055
|
+
reqid = response['Response']['RequestId']
|
1056
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1057
|
+
end
|
1058
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1059
|
+
raise e
|
1060
|
+
rescue StandardError => e
|
1061
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1062
|
+
end
|
1063
|
+
|
1064
|
+
# 根据用户选定的表定义IDL文件,批量修改指定的表
|
1065
|
+
|
1066
|
+
# @param request: Request instance for ModifyTables.
|
1067
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::ModifyTablesRequest`
|
1068
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::ModifyTablesResponse`
|
1069
|
+
def ModifyTables(request)
|
1070
|
+
body = send_request('ModifyTables', request.serialize)
|
1071
|
+
response = JSON.parse(body)
|
1072
|
+
if response['Response'].key?('Error') == false
|
1073
|
+
model = ModifyTablesResponse.new
|
1074
|
+
model.deserialize(response['Response'])
|
1075
|
+
model
|
1076
|
+
else
|
1077
|
+
code = response['Response']['Error']['Code']
|
1078
|
+
message = response['Response']['Error']['Message']
|
1079
|
+
reqid = response['Response']['RequestId']
|
1080
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1081
|
+
end
|
1082
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1083
|
+
raise e
|
1084
|
+
rescue StandardError => e
|
1085
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1086
|
+
end
|
1087
|
+
|
1088
|
+
# 恢复回收站中,用户自行删除的表。对欠费待释放的表无效。
|
1089
|
+
|
1090
|
+
# @param request: Request instance for RecoverRecycleTables.
|
1091
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::RecoverRecycleTablesRequest`
|
1092
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::RecoverRecycleTablesResponse`
|
1093
|
+
def RecoverRecycleTables(request)
|
1094
|
+
body = send_request('RecoverRecycleTables', request.serialize)
|
1095
|
+
response = JSON.parse(body)
|
1096
|
+
if response['Response'].key?('Error') == false
|
1097
|
+
model = RecoverRecycleTablesResponse.new
|
1098
|
+
model.deserialize(response['Response'])
|
1099
|
+
model
|
1100
|
+
else
|
1101
|
+
code = response['Response']['Error']['Code']
|
1102
|
+
message = response['Response']['Error']['Message']
|
1103
|
+
reqid = response['Response']['RequestId']
|
1104
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1105
|
+
end
|
1106
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1107
|
+
raise e
|
1108
|
+
rescue StandardError => e
|
1109
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1110
|
+
end
|
1111
|
+
|
1112
|
+
# 表格数据回档
|
1113
|
+
|
1114
|
+
# @param request: Request instance for RollbackTables.
|
1115
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::RollbackTablesRequest`
|
1116
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::RollbackTablesResponse`
|
1117
|
+
def RollbackTables(request)
|
1118
|
+
body = send_request('RollbackTables', request.serialize)
|
1119
|
+
response = JSON.parse(body)
|
1120
|
+
if response['Response'].key?('Error') == false
|
1121
|
+
model = RollbackTablesResponse.new
|
1122
|
+
model.deserialize(response['Response'])
|
1123
|
+
model
|
1124
|
+
else
|
1125
|
+
code = response['Response']['Error']['Code']
|
1126
|
+
message = response['Response']['Error']['Message']
|
1127
|
+
reqid = response['Response']['RequestId']
|
1128
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1129
|
+
end
|
1130
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1131
|
+
raise e
|
1132
|
+
rescue StandardError => e
|
1133
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1134
|
+
end
|
1135
|
+
|
1136
|
+
# 新增、修改表格数据订阅
|
1137
|
+
|
1138
|
+
# @param request: Request instance for SetTableDataFlow.
|
1139
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::SetTableDataFlowRequest`
|
1140
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::SetTableDataFlowResponse`
|
1141
|
+
def SetTableDataFlow(request)
|
1142
|
+
body = send_request('SetTableDataFlow', request.serialize)
|
1143
|
+
response = JSON.parse(body)
|
1144
|
+
if response['Response'].key?('Error') == false
|
1145
|
+
model = SetTableDataFlowResponse.new
|
1146
|
+
model.deserialize(response['Response'])
|
1147
|
+
model
|
1148
|
+
else
|
1149
|
+
code = response['Response']['Error']['Code']
|
1150
|
+
message = response['Response']['Error']['Message']
|
1151
|
+
reqid = response['Response']['RequestId']
|
1152
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1153
|
+
end
|
1154
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1155
|
+
raise e
|
1156
|
+
rescue StandardError => e
|
1157
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1158
|
+
end
|
1159
|
+
|
1160
|
+
# 设置表格分布式索引
|
1161
|
+
|
1162
|
+
# @param request: Request instance for SetTableIndex.
|
1163
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::SetTableIndexRequest`
|
1164
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::SetTableIndexResponse`
|
1165
|
+
def SetTableIndex(request)
|
1166
|
+
body = send_request('SetTableIndex', request.serialize)
|
1167
|
+
response = JSON.parse(body)
|
1168
|
+
if response['Response'].key?('Error') == false
|
1169
|
+
model = SetTableIndexResponse.new
|
1170
|
+
model.deserialize(response['Response'])
|
1171
|
+
model
|
1172
|
+
else
|
1173
|
+
code = response['Response']['Error']['Code']
|
1174
|
+
message = response['Response']['Error']['Message']
|
1175
|
+
reqid = response['Response']['RequestId']
|
1176
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1177
|
+
end
|
1178
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1179
|
+
raise e
|
1180
|
+
rescue StandardError => e
|
1181
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1182
|
+
end
|
1183
|
+
|
1184
|
+
# 更新申请单状态
|
1185
|
+
|
1186
|
+
# @param request: Request instance for UpdateApply.
|
1187
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::UpdateApplyRequest`
|
1188
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::UpdateApplyResponse`
|
1189
|
+
def UpdateApply(request)
|
1190
|
+
body = send_request('UpdateApply', request.serialize)
|
1191
|
+
response = JSON.parse(body)
|
1192
|
+
if response['Response'].key?('Error') == false
|
1193
|
+
model = UpdateApplyResponse.new
|
1194
|
+
model.deserialize(response['Response'])
|
1195
|
+
model
|
1196
|
+
else
|
1197
|
+
code = response['Response']['Error']['Code']
|
1198
|
+
message = response['Response']['Error']['Message']
|
1199
|
+
reqid = response['Response']['RequestId']
|
1200
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1201
|
+
end
|
1202
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1203
|
+
raise e
|
1204
|
+
rescue StandardError => e
|
1205
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1206
|
+
end
|
1207
|
+
|
1208
|
+
# 上传并校验创建表格文件,返回校验合法的表格定义
|
1209
|
+
|
1210
|
+
# @param request: Request instance for VerifyIdlFiles.
|
1211
|
+
# @type request: :class:`Tencentcloud::tcaplusdb::V20190823::VerifyIdlFilesRequest`
|
1212
|
+
# @rtype: :class:`Tencentcloud::tcaplusdb::V20190823::VerifyIdlFilesResponse`
|
1213
|
+
def VerifyIdlFiles(request)
|
1214
|
+
body = send_request('VerifyIdlFiles', request.serialize)
|
1215
|
+
response = JSON.parse(body)
|
1216
|
+
if response['Response'].key?('Error') == false
|
1217
|
+
model = VerifyIdlFilesResponse.new
|
1218
|
+
model.deserialize(response['Response'])
|
1219
|
+
model
|
1220
|
+
else
|
1221
|
+
code = response['Response']['Error']['Code']
|
1222
|
+
message = response['Response']['Error']['Message']
|
1223
|
+
reqid = response['Response']['RequestId']
|
1224
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1225
|
+
end
|
1226
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1227
|
+
raise e
|
1228
|
+
rescue StandardError => e
|
1229
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1230
|
+
end
|
1231
|
+
|
1232
|
+
|
1233
|
+
end
|
1234
|
+
end
|
1235
|
+
end
|
1236
|
+
end
|