tencentcloud-sdk-cynosdb 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-cynosdb.rb +11 -0
- data/lib/v20190107/client.rb +684 -0
- data/lib/v20190107/models.rb +2755 -0
- metadata +66 -0
@@ -0,0 +1,684 @@
|
|
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 Cynosdb
|
21
|
+
module V20190107
|
22
|
+
class Client < TencentCloud::Common::AbstractClient
|
23
|
+
|
24
|
+
def initialize(credential, region, profile = nil)
|
25
|
+
api_version = '2019-01-07'
|
26
|
+
api_endpoint = 'cynosdb.tencentcloudapi.com'
|
27
|
+
sdk_version = 'CYNOSDB_' + File.read(File.expand_path('../VERSION', __dir__)).strip
|
28
|
+
super(credential, region, api_version, api_endpoint, sdk_version, profile)
|
29
|
+
end
|
30
|
+
|
31
|
+
|
32
|
+
# 本接口(AddInstances)用于集群添加实例
|
33
|
+
|
34
|
+
# @param request: Request instance for AddInstances.
|
35
|
+
# @type request: :class:`Tencentcloud::cynosdb::V20190107::AddInstancesRequest`
|
36
|
+
# @rtype: :class:`Tencentcloud::cynosdb::V20190107::AddInstancesResponse`
|
37
|
+
def AddInstances(request)
|
38
|
+
body = send_request('AddInstances', request.serialize)
|
39
|
+
response = JSON.parse(body)
|
40
|
+
if response['Response'].key?('Error') == false
|
41
|
+
model = AddInstancesResponse.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 CreateClusters.
|
59
|
+
# @type request: :class:`Tencentcloud::cynosdb::V20190107::CreateClustersRequest`
|
60
|
+
# @rtype: :class:`Tencentcloud::cynosdb::V20190107::CreateClustersResponse`
|
61
|
+
def CreateClusters(request)
|
62
|
+
body = send_request('CreateClusters', request.serialize)
|
63
|
+
response = JSON.parse(body)
|
64
|
+
if response['Response'].key?('Error') == false
|
65
|
+
model = CreateClustersResponse.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
|
+
# 本接口(DescribeAccounts)用于查询数据库管理账号。
|
81
|
+
|
82
|
+
# @param request: Request instance for DescribeAccounts.
|
83
|
+
# @type request: :class:`Tencentcloud::cynosdb::V20190107::DescribeAccountsRequest`
|
84
|
+
# @rtype: :class:`Tencentcloud::cynosdb::V20190107::DescribeAccountsResponse`
|
85
|
+
def DescribeAccounts(request)
|
86
|
+
body = send_request('DescribeAccounts', request.serialize)
|
87
|
+
response = JSON.parse(body)
|
88
|
+
if response['Response'].key?('Error') == false
|
89
|
+
model = DescribeAccountsResponse.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 DescribeBackupConfig.
|
107
|
+
# @type request: :class:`Tencentcloud::cynosdb::V20190107::DescribeBackupConfigRequest`
|
108
|
+
# @rtype: :class:`Tencentcloud::cynosdb::V20190107::DescribeBackupConfigResponse`
|
109
|
+
def DescribeBackupConfig(request)
|
110
|
+
body = send_request('DescribeBackupConfig', request.serialize)
|
111
|
+
response = JSON.parse(body)
|
112
|
+
if response['Response'].key?('Error') == false
|
113
|
+
model = DescribeBackupConfigResponse.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 DescribeBackupList.
|
131
|
+
# @type request: :class:`Tencentcloud::cynosdb::V20190107::DescribeBackupListRequest`
|
132
|
+
# @rtype: :class:`Tencentcloud::cynosdb::V20190107::DescribeBackupListResponse`
|
133
|
+
def DescribeBackupList(request)
|
134
|
+
body = send_request('DescribeBackupList', request.serialize)
|
135
|
+
response = JSON.parse(body)
|
136
|
+
if response['Response'].key?('Error') == false
|
137
|
+
model = DescribeBackupListResponse.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
|
+
# 显示集群详情
|
153
|
+
|
154
|
+
# @param request: Request instance for DescribeClusterDetail.
|
155
|
+
# @type request: :class:`Tencentcloud::cynosdb::V20190107::DescribeClusterDetailRequest`
|
156
|
+
# @rtype: :class:`Tencentcloud::cynosdb::V20190107::DescribeClusterDetailResponse`
|
157
|
+
def DescribeClusterDetail(request)
|
158
|
+
body = send_request('DescribeClusterDetail', request.serialize)
|
159
|
+
response = JSON.parse(body)
|
160
|
+
if response['Response'].key?('Error') == false
|
161
|
+
model = DescribeClusterDetailResponse.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
|
+
# 本接口(DescribeClusterInstanceGrps)用于查询实例组
|
177
|
+
|
178
|
+
# @param request: Request instance for DescribeClusterInstanceGrps.
|
179
|
+
# @type request: :class:`Tencentcloud::cynosdb::V20190107::DescribeClusterInstanceGrpsRequest`
|
180
|
+
# @rtype: :class:`Tencentcloud::cynosdb::V20190107::DescribeClusterInstanceGrpsResponse`
|
181
|
+
def DescribeClusterInstanceGrps(request)
|
182
|
+
body = send_request('DescribeClusterInstanceGrps', request.serialize)
|
183
|
+
response = JSON.parse(body)
|
184
|
+
if response['Response'].key?('Error') == false
|
185
|
+
model = DescribeClusterInstanceGrpsResponse.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
|
+
# 查询集群列表
|
201
|
+
|
202
|
+
# @param request: Request instance for DescribeClusters.
|
203
|
+
# @type request: :class:`Tencentcloud::cynosdb::V20190107::DescribeClustersRequest`
|
204
|
+
# @rtype: :class:`Tencentcloud::cynosdb::V20190107::DescribeClustersResponse`
|
205
|
+
def DescribeClusters(request)
|
206
|
+
body = send_request('DescribeClusters', request.serialize)
|
207
|
+
response = JSON.parse(body)
|
208
|
+
if response['Response'].key?('Error') == false
|
209
|
+
model = DescribeClustersResponse.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
|
+
# 查询实例安全组信息
|
225
|
+
|
226
|
+
# @param request: Request instance for DescribeDBSecurityGroups.
|
227
|
+
# @type request: :class:`Tencentcloud::cynosdb::V20190107::DescribeDBSecurityGroupsRequest`
|
228
|
+
# @rtype: :class:`Tencentcloud::cynosdb::V20190107::DescribeDBSecurityGroupsResponse`
|
229
|
+
def DescribeDBSecurityGroups(request)
|
230
|
+
body = send_request('DescribeDBSecurityGroups', request.serialize)
|
231
|
+
response = JSON.parse(body)
|
232
|
+
if response['Response'].key?('Error') == false
|
233
|
+
model = DescribeDBSecurityGroupsResponse.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
|
+
# 本接口(DescribeInstanceDetail)用于查询实例详情。
|
249
|
+
|
250
|
+
# @param request: Request instance for DescribeInstanceDetail.
|
251
|
+
# @type request: :class:`Tencentcloud::cynosdb::V20190107::DescribeInstanceDetailRequest`
|
252
|
+
# @rtype: :class:`Tencentcloud::cynosdb::V20190107::DescribeInstanceDetailResponse`
|
253
|
+
def DescribeInstanceDetail(request)
|
254
|
+
body = send_request('DescribeInstanceDetail', request.serialize)
|
255
|
+
response = JSON.parse(body)
|
256
|
+
if response['Response'].key?('Error') == false
|
257
|
+
model = DescribeInstanceDetailResponse.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
|
+
# 本接口(DescribeInstanceSpecs)用于查询实例规格
|
273
|
+
|
274
|
+
# @param request: Request instance for DescribeInstanceSpecs.
|
275
|
+
# @type request: :class:`Tencentcloud::cynosdb::V20190107::DescribeInstanceSpecsRequest`
|
276
|
+
# @rtype: :class:`Tencentcloud::cynosdb::V20190107::DescribeInstanceSpecsResponse`
|
277
|
+
def DescribeInstanceSpecs(request)
|
278
|
+
body = send_request('DescribeInstanceSpecs', request.serialize)
|
279
|
+
response = JSON.parse(body)
|
280
|
+
if response['Response'].key?('Error') == false
|
281
|
+
model = DescribeInstanceSpecsResponse.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
|
+
# 本接口(DescribeInstances)用于查询实例列表。
|
297
|
+
|
298
|
+
# @param request: Request instance for DescribeInstances.
|
299
|
+
# @type request: :class:`Tencentcloud::cynosdb::V20190107::DescribeInstancesRequest`
|
300
|
+
# @rtype: :class:`Tencentcloud::cynosdb::V20190107::DescribeInstancesResponse`
|
301
|
+
def DescribeInstances(request)
|
302
|
+
body = send_request('DescribeInstances', request.serialize)
|
303
|
+
response = JSON.parse(body)
|
304
|
+
if response['Response'].key?('Error') == false
|
305
|
+
model = DescribeInstancesResponse.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 DescribeMaintainPeriod.
|
323
|
+
# @type request: :class:`Tencentcloud::cynosdb::V20190107::DescribeMaintainPeriodRequest`
|
324
|
+
# @rtype: :class:`Tencentcloud::cynosdb::V20190107::DescribeMaintainPeriodResponse`
|
325
|
+
def DescribeMaintainPeriod(request)
|
326
|
+
body = send_request('DescribeMaintainPeriod', request.serialize)
|
327
|
+
response = JSON.parse(body)
|
328
|
+
if response['Response'].key?('Error') == false
|
329
|
+
model = DescribeMaintainPeriodResponse.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 DescribeProjectSecurityGroups.
|
347
|
+
# @type request: :class:`Tencentcloud::cynosdb::V20190107::DescribeProjectSecurityGroupsRequest`
|
348
|
+
# @rtype: :class:`Tencentcloud::cynosdb::V20190107::DescribeProjectSecurityGroupsResponse`
|
349
|
+
def DescribeProjectSecurityGroups(request)
|
350
|
+
body = send_request('DescribeProjectSecurityGroups', request.serialize)
|
351
|
+
response = JSON.parse(body)
|
352
|
+
if response['Response'].key?('Error') == false
|
353
|
+
model = DescribeProjectSecurityGroupsResponse.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
|
+
# 根据计费订单id查询资源列表
|
369
|
+
|
370
|
+
# @param request: Request instance for DescribeResourcesByDealName.
|
371
|
+
# @type request: :class:`Tencentcloud::cynosdb::V20190107::DescribeResourcesByDealNameRequest`
|
372
|
+
# @rtype: :class:`Tencentcloud::cynosdb::V20190107::DescribeResourcesByDealNameResponse`
|
373
|
+
def DescribeResourcesByDealName(request)
|
374
|
+
body = send_request('DescribeResourcesByDealName', request.serialize)
|
375
|
+
response = JSON.parse(body)
|
376
|
+
if response['Response'].key?('Error') == false
|
377
|
+
model = DescribeResourcesByDealNameResponse.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 DescribeRollbackTimeRange.
|
395
|
+
# @type request: :class:`Tencentcloud::cynosdb::V20190107::DescribeRollbackTimeRangeRequest`
|
396
|
+
# @rtype: :class:`Tencentcloud::cynosdb::V20190107::DescribeRollbackTimeRangeResponse`
|
397
|
+
def DescribeRollbackTimeRange(request)
|
398
|
+
body = send_request('DescribeRollbackTimeRange', request.serialize)
|
399
|
+
response = JSON.parse(body)
|
400
|
+
if response['Response'].key?('Error') == false
|
401
|
+
model = DescribeRollbackTimeRangeResponse.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 DescribeRollbackTimeValidity.
|
419
|
+
# @type request: :class:`Tencentcloud::cynosdb::V20190107::DescribeRollbackTimeValidityRequest`
|
420
|
+
# @rtype: :class:`Tencentcloud::cynosdb::V20190107::DescribeRollbackTimeValidityResponse`
|
421
|
+
def DescribeRollbackTimeValidity(request)
|
422
|
+
body = send_request('DescribeRollbackTimeValidity', request.serialize)
|
423
|
+
response = JSON.parse(body)
|
424
|
+
if response['Response'].key?('Error') == false
|
425
|
+
model = DescribeRollbackTimeValidityResponse.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 IsolateCluster.
|
443
|
+
# @type request: :class:`Tencentcloud::cynosdb::V20190107::IsolateClusterRequest`
|
444
|
+
# @rtype: :class:`Tencentcloud::cynosdb::V20190107::IsolateClusterResponse`
|
445
|
+
def IsolateCluster(request)
|
446
|
+
body = send_request('IsolateCluster', request.serialize)
|
447
|
+
response = JSON.parse(body)
|
448
|
+
if response['Response'].key?('Error') == false
|
449
|
+
model = IsolateClusterResponse.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
|
+
# 本接口(IsolateInstance)用于隔离实例。
|
465
|
+
|
466
|
+
# @param request: Request instance for IsolateInstance.
|
467
|
+
# @type request: :class:`Tencentcloud::cynosdb::V20190107::IsolateInstanceRequest`
|
468
|
+
# @rtype: :class:`Tencentcloud::cynosdb::V20190107::IsolateInstanceResponse`
|
469
|
+
def IsolateInstance(request)
|
470
|
+
body = send_request('IsolateInstance', request.serialize)
|
471
|
+
response = JSON.parse(body)
|
472
|
+
if response['Response'].key?('Error') == false
|
473
|
+
model = IsolateInstanceResponse.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
|
+
# 修改指定集群的备份配置
|
489
|
+
|
490
|
+
# @param request: Request instance for ModifyBackupConfig.
|
491
|
+
# @type request: :class:`Tencentcloud::cynosdb::V20190107::ModifyBackupConfigRequest`
|
492
|
+
# @rtype: :class:`Tencentcloud::cynosdb::V20190107::ModifyBackupConfigResponse`
|
493
|
+
def ModifyBackupConfig(request)
|
494
|
+
body = send_request('ModifyBackupConfig', request.serialize)
|
495
|
+
response = JSON.parse(body)
|
496
|
+
if response['Response'].key?('Error') == false
|
497
|
+
model = ModifyBackupConfigResponse.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 ModifyClusterParam.
|
515
|
+
# @type request: :class:`Tencentcloud::cynosdb::V20190107::ModifyClusterParamRequest`
|
516
|
+
# @rtype: :class:`Tencentcloud::cynosdb::V20190107::ModifyClusterParamResponse`
|
517
|
+
def ModifyClusterParam(request)
|
518
|
+
body = send_request('ModifyClusterParam', request.serialize)
|
519
|
+
response = JSON.parse(body)
|
520
|
+
if response['Response'].key?('Error') == false
|
521
|
+
model = ModifyClusterParamResponse.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
|
+
# 本接口(ModifyDBInstanceSecurityGroups)用于修改实例绑定的安全组。
|
537
|
+
|
538
|
+
# @param request: Request instance for ModifyDBInstanceSecurityGroups.
|
539
|
+
# @type request: :class:`Tencentcloud::cynosdb::V20190107::ModifyDBInstanceSecurityGroupsRequest`
|
540
|
+
# @rtype: :class:`Tencentcloud::cynosdb::V20190107::ModifyDBInstanceSecurityGroupsResponse`
|
541
|
+
def ModifyDBInstanceSecurityGroups(request)
|
542
|
+
body = send_request('ModifyDBInstanceSecurityGroups', request.serialize)
|
543
|
+
response = JSON.parse(body)
|
544
|
+
if response['Response'].key?('Error') == false
|
545
|
+
model = ModifyDBInstanceSecurityGroupsResponse.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 ModifyMaintainPeriodConfig.
|
563
|
+
# @type request: :class:`Tencentcloud::cynosdb::V20190107::ModifyMaintainPeriodConfigRequest`
|
564
|
+
# @rtype: :class:`Tencentcloud::cynosdb::V20190107::ModifyMaintainPeriodConfigResponse`
|
565
|
+
def ModifyMaintainPeriodConfig(request)
|
566
|
+
body = send_request('ModifyMaintainPeriodConfig', request.serialize)
|
567
|
+
response = JSON.parse(body)
|
568
|
+
if response['Response'].key?('Error') == false
|
569
|
+
model = ModifyMaintainPeriodConfigResponse.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 OfflineCluster.
|
587
|
+
# @type request: :class:`Tencentcloud::cynosdb::V20190107::OfflineClusterRequest`
|
588
|
+
# @rtype: :class:`Tencentcloud::cynosdb::V20190107::OfflineClusterResponse`
|
589
|
+
def OfflineCluster(request)
|
590
|
+
body = send_request('OfflineCluster', request.serialize)
|
591
|
+
response = JSON.parse(body)
|
592
|
+
if response['Response'].key?('Error') == false
|
593
|
+
model = OfflineClusterResponse.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 OfflineInstance.
|
611
|
+
# @type request: :class:`Tencentcloud::cynosdb::V20190107::OfflineInstanceRequest`
|
612
|
+
# @rtype: :class:`Tencentcloud::cynosdb::V20190107::OfflineInstanceResponse`
|
613
|
+
def OfflineInstance(request)
|
614
|
+
body = send_request('OfflineInstance', request.serialize)
|
615
|
+
response = JSON.parse(body)
|
616
|
+
if response['Response'].key?('Error') == false
|
617
|
+
model = OfflineInstanceResponse.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
|
+
# SetRenewFlag设置实例的自动续费功能
|
633
|
+
|
634
|
+
# @param request: Request instance for SetRenewFlag.
|
635
|
+
# @type request: :class:`Tencentcloud::cynosdb::V20190107::SetRenewFlagRequest`
|
636
|
+
# @rtype: :class:`Tencentcloud::cynosdb::V20190107::SetRenewFlagResponse`
|
637
|
+
def SetRenewFlag(request)
|
638
|
+
body = send_request('SetRenewFlag', request.serialize)
|
639
|
+
response = JSON.parse(body)
|
640
|
+
if response['Response'].key?('Error') == false
|
641
|
+
model = SetRenewFlagResponse.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 UpgradeInstance.
|
659
|
+
# @type request: :class:`Tencentcloud::cynosdb::V20190107::UpgradeInstanceRequest`
|
660
|
+
# @rtype: :class:`Tencentcloud::cynosdb::V20190107::UpgradeInstanceResponse`
|
661
|
+
def UpgradeInstance(request)
|
662
|
+
body = send_request('UpgradeInstance', request.serialize)
|
663
|
+
response = JSON.parse(body)
|
664
|
+
if response['Response'].key?('Error') == false
|
665
|
+
model = UpgradeInstanceResponse.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
|
+
|
681
|
+
end
|
682
|
+
end
|
683
|
+
end
|
684
|
+
end
|