tencentcloud-sdk-dnspod 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-dnspod.rb +11 -0
- data/lib/v20210323/client.rb +804 -0
- data/lib/v20210323/models.rb +2744 -0
- metadata +66 -0
|
@@ -0,0 +1,804 @@
|
|
|
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 Dnspod
|
|
21
|
+
module V20210323
|
|
22
|
+
class Client < TencentCloud::Common::AbstractClient
|
|
23
|
+
|
|
24
|
+
def initialize(credential, region, profile = nil)
|
|
25
|
+
api_version = '2021-03-23'
|
|
26
|
+
api_endpoint = 'dnspod.tencentcloudapi.com'
|
|
27
|
+
sdk_version = 'DNSPOD_' + 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 CreateDomain.
|
|
35
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::CreateDomainRequest`
|
|
36
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::CreateDomainResponse`
|
|
37
|
+
def CreateDomain(request)
|
|
38
|
+
body = send_request('CreateDomain', request.serialize)
|
|
39
|
+
response = JSON.parse(body)
|
|
40
|
+
if response['Response'].key?('Error') == false
|
|
41
|
+
model = CreateDomainResponse.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 CreateDomainAlias.
|
|
59
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::CreateDomainAliasRequest`
|
|
60
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::CreateDomainAliasResponse`
|
|
61
|
+
def CreateDomainAlias(request)
|
|
62
|
+
body = send_request('CreateDomainAlias', request.serialize)
|
|
63
|
+
response = JSON.parse(body)
|
|
64
|
+
if response['Response'].key?('Error') == false
|
|
65
|
+
model = CreateDomainAliasResponse.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 CreateDomainBatch.
|
|
83
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::CreateDomainBatchRequest`
|
|
84
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::CreateDomainBatchResponse`
|
|
85
|
+
def CreateDomainBatch(request)
|
|
86
|
+
body = send_request('CreateDomainBatch', request.serialize)
|
|
87
|
+
response = JSON.parse(body)
|
|
88
|
+
if response['Response'].key?('Error') == false
|
|
89
|
+
model = CreateDomainBatchResponse.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 CreateDomainGroup.
|
|
107
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::CreateDomainGroupRequest`
|
|
108
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::CreateDomainGroupResponse`
|
|
109
|
+
def CreateDomainGroup(request)
|
|
110
|
+
body = send_request('CreateDomainGroup', request.serialize)
|
|
111
|
+
response = JSON.parse(body)
|
|
112
|
+
if response['Response'].key?('Error') == false
|
|
113
|
+
model = CreateDomainGroupResponse.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 CreateRecord.
|
|
131
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::CreateRecordRequest`
|
|
132
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::CreateRecordResponse`
|
|
133
|
+
def CreateRecord(request)
|
|
134
|
+
body = send_request('CreateRecord', request.serialize)
|
|
135
|
+
response = JSON.parse(body)
|
|
136
|
+
if response['Response'].key?('Error') == false
|
|
137
|
+
model = CreateRecordResponse.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 CreateRecordBatch.
|
|
155
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::CreateRecordBatchRequest`
|
|
156
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::CreateRecordBatchResponse`
|
|
157
|
+
def CreateRecordBatch(request)
|
|
158
|
+
body = send_request('CreateRecordBatch', request.serialize)
|
|
159
|
+
response = JSON.parse(body)
|
|
160
|
+
if response['Response'].key?('Error') == false
|
|
161
|
+
model = CreateRecordBatchResponse.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 DeleteDomain.
|
|
179
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::DeleteDomainRequest`
|
|
180
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::DeleteDomainResponse`
|
|
181
|
+
def DeleteDomain(request)
|
|
182
|
+
body = send_request('DeleteDomain', request.serialize)
|
|
183
|
+
response = JSON.parse(body)
|
|
184
|
+
if response['Response'].key?('Error') == false
|
|
185
|
+
model = DeleteDomainResponse.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 DeleteDomainAlias.
|
|
203
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::DeleteDomainAliasRequest`
|
|
204
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::DeleteDomainAliasResponse`
|
|
205
|
+
def DeleteDomainAlias(request)
|
|
206
|
+
body = send_request('DeleteDomainAlias', request.serialize)
|
|
207
|
+
response = JSON.parse(body)
|
|
208
|
+
if response['Response'].key?('Error') == false
|
|
209
|
+
model = DeleteDomainAliasResponse.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 DeleteRecord.
|
|
227
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::DeleteRecordRequest`
|
|
228
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::DeleteRecordResponse`
|
|
229
|
+
def DeleteRecord(request)
|
|
230
|
+
body = send_request('DeleteRecord', request.serialize)
|
|
231
|
+
response = JSON.parse(body)
|
|
232
|
+
if response['Response'].key?('Error') == false
|
|
233
|
+
model = DeleteRecordResponse.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 DeleteShareDomain.
|
|
251
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::DeleteShareDomainRequest`
|
|
252
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::DeleteShareDomainResponse`
|
|
253
|
+
def DeleteShareDomain(request)
|
|
254
|
+
body = send_request('DeleteShareDomain', request.serialize)
|
|
255
|
+
response = JSON.parse(body)
|
|
256
|
+
if response['Response'].key?('Error') == false
|
|
257
|
+
model = DeleteShareDomainResponse.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 DescribeBatchTask.
|
|
275
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::DescribeBatchTaskRequest`
|
|
276
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::DescribeBatchTaskResponse`
|
|
277
|
+
def DescribeBatchTask(request)
|
|
278
|
+
body = send_request('DescribeBatchTask', request.serialize)
|
|
279
|
+
response = JSON.parse(body)
|
|
280
|
+
if response['Response'].key?('Error') == false
|
|
281
|
+
model = DescribeBatchTaskResponse.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 DescribeDomain.
|
|
299
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::DescribeDomainRequest`
|
|
300
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::DescribeDomainResponse`
|
|
301
|
+
def DescribeDomain(request)
|
|
302
|
+
body = send_request('DescribeDomain', request.serialize)
|
|
303
|
+
response = JSON.parse(body)
|
|
304
|
+
if response['Response'].key?('Error') == false
|
|
305
|
+
model = DescribeDomainResponse.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 DescribeDomainList.
|
|
323
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::DescribeDomainListRequest`
|
|
324
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::DescribeDomainListResponse`
|
|
325
|
+
def DescribeDomainList(request)
|
|
326
|
+
body = send_request('DescribeDomainList', request.serialize)
|
|
327
|
+
response = JSON.parse(body)
|
|
328
|
+
if response['Response'].key?('Error') == false
|
|
329
|
+
model = DescribeDomainListResponse.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 DescribeDomainLogList.
|
|
347
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::DescribeDomainLogListRequest`
|
|
348
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::DescribeDomainLogListResponse`
|
|
349
|
+
def DescribeDomainLogList(request)
|
|
350
|
+
body = send_request('DescribeDomainLogList', request.serialize)
|
|
351
|
+
response = JSON.parse(body)
|
|
352
|
+
if response['Response'].key?('Error') == false
|
|
353
|
+
model = DescribeDomainLogListResponse.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 DescribeDomainPurview.
|
|
371
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::DescribeDomainPurviewRequest`
|
|
372
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::DescribeDomainPurviewResponse`
|
|
373
|
+
def DescribeDomainPurview(request)
|
|
374
|
+
body = send_request('DescribeDomainPurview', request.serialize)
|
|
375
|
+
response = JSON.parse(body)
|
|
376
|
+
if response['Response'].key?('Error') == false
|
|
377
|
+
model = DescribeDomainPurviewResponse.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 DescribeDomainShareInfo.
|
|
395
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::DescribeDomainShareInfoRequest`
|
|
396
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::DescribeDomainShareInfoResponse`
|
|
397
|
+
def DescribeDomainShareInfo(request)
|
|
398
|
+
body = send_request('DescribeDomainShareInfo', request.serialize)
|
|
399
|
+
response = JSON.parse(body)
|
|
400
|
+
if response['Response'].key?('Error') == false
|
|
401
|
+
model = DescribeDomainShareInfoResponse.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 DescribeRecord.
|
|
419
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::DescribeRecordRequest`
|
|
420
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::DescribeRecordResponse`
|
|
421
|
+
def DescribeRecord(request)
|
|
422
|
+
body = send_request('DescribeRecord', request.serialize)
|
|
423
|
+
response = JSON.parse(body)
|
|
424
|
+
if response['Response'].key?('Error') == false
|
|
425
|
+
model = DescribeRecordResponse.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 DescribeRecordLineList.
|
|
443
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::DescribeRecordLineListRequest`
|
|
444
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::DescribeRecordLineListResponse`
|
|
445
|
+
def DescribeRecordLineList(request)
|
|
446
|
+
body = send_request('DescribeRecordLineList', request.serialize)
|
|
447
|
+
response = JSON.parse(body)
|
|
448
|
+
if response['Response'].key?('Error') == false
|
|
449
|
+
model = DescribeRecordLineListResponse.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 DescribeRecordList.
|
|
467
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::DescribeRecordListRequest`
|
|
468
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::DescribeRecordListResponse`
|
|
469
|
+
def DescribeRecordList(request)
|
|
470
|
+
body = send_request('DescribeRecordList', request.serialize)
|
|
471
|
+
response = JSON.parse(body)
|
|
472
|
+
if response['Response'].key?('Error') == false
|
|
473
|
+
model = DescribeRecordListResponse.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 DescribeRecordType.
|
|
491
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::DescribeRecordTypeRequest`
|
|
492
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::DescribeRecordTypeResponse`
|
|
493
|
+
def DescribeRecordType(request)
|
|
494
|
+
body = send_request('DescribeRecordType', request.serialize)
|
|
495
|
+
response = JSON.parse(body)
|
|
496
|
+
if response['Response'].key?('Error') == false
|
|
497
|
+
model = DescribeRecordTypeResponse.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 DescribeUserDetail.
|
|
515
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::DescribeUserDetailRequest`
|
|
516
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::DescribeUserDetailResponse`
|
|
517
|
+
def DescribeUserDetail(request)
|
|
518
|
+
body = send_request('DescribeUserDetail', request.serialize)
|
|
519
|
+
response = JSON.parse(body)
|
|
520
|
+
if response['Response'].key?('Error') == false
|
|
521
|
+
model = DescribeUserDetailResponse.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 ModifyDomainLock.
|
|
539
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::ModifyDomainLockRequest`
|
|
540
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::ModifyDomainLockResponse`
|
|
541
|
+
def ModifyDomainLock(request)
|
|
542
|
+
body = send_request('ModifyDomainLock', request.serialize)
|
|
543
|
+
response = JSON.parse(body)
|
|
544
|
+
if response['Response'].key?('Error') == false
|
|
545
|
+
model = ModifyDomainLockResponse.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 ModifyDomainOwner.
|
|
563
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::ModifyDomainOwnerRequest`
|
|
564
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::ModifyDomainOwnerResponse`
|
|
565
|
+
def ModifyDomainOwner(request)
|
|
566
|
+
body = send_request('ModifyDomainOwner', request.serialize)
|
|
567
|
+
response = JSON.parse(body)
|
|
568
|
+
if response['Response'].key?('Error') == false
|
|
569
|
+
model = ModifyDomainOwnerResponse.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 ModifyDomainRemark.
|
|
587
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::ModifyDomainRemarkRequest`
|
|
588
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::ModifyDomainRemarkResponse`
|
|
589
|
+
def ModifyDomainRemark(request)
|
|
590
|
+
body = send_request('ModifyDomainRemark', request.serialize)
|
|
591
|
+
response = JSON.parse(body)
|
|
592
|
+
if response['Response'].key?('Error') == false
|
|
593
|
+
model = ModifyDomainRemarkResponse.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 ModifyDomainStatus.
|
|
611
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::ModifyDomainStatusRequest`
|
|
612
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::ModifyDomainStatusResponse`
|
|
613
|
+
def ModifyDomainStatus(request)
|
|
614
|
+
body = send_request('ModifyDomainStatus', request.serialize)
|
|
615
|
+
response = JSON.parse(body)
|
|
616
|
+
if response['Response'].key?('Error') == false
|
|
617
|
+
model = ModifyDomainStatusResponse.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 ModifyDomainUnlock.
|
|
635
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::ModifyDomainUnlockRequest`
|
|
636
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::ModifyDomainUnlockResponse`
|
|
637
|
+
def ModifyDomainUnlock(request)
|
|
638
|
+
body = send_request('ModifyDomainUnlock', request.serialize)
|
|
639
|
+
response = JSON.parse(body)
|
|
640
|
+
if response['Response'].key?('Error') == false
|
|
641
|
+
model = ModifyDomainUnlockResponse.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
|
+
# 更新动态 DNS 记录
|
|
657
|
+
|
|
658
|
+
# @param request: Request instance for ModifyDynamicDNS.
|
|
659
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::ModifyDynamicDNSRequest`
|
|
660
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::ModifyDynamicDNSResponse`
|
|
661
|
+
def ModifyDynamicDNS(request)
|
|
662
|
+
body = send_request('ModifyDynamicDNS', request.serialize)
|
|
663
|
+
response = JSON.parse(body)
|
|
664
|
+
if response['Response'].key?('Error') == false
|
|
665
|
+
model = ModifyDynamicDNSResponse.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
|
+
|
|
682
|
+
# @param request: Request instance for ModifyRecord.
|
|
683
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::ModifyRecordRequest`
|
|
684
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::ModifyRecordResponse`
|
|
685
|
+
def ModifyRecord(request)
|
|
686
|
+
body = send_request('ModifyRecord', request.serialize)
|
|
687
|
+
response = JSON.parse(body)
|
|
688
|
+
if response['Response'].key?('Error') == false
|
|
689
|
+
model = ModifyRecordResponse.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
|
+
# 批量修改记录
|
|
705
|
+
|
|
706
|
+
# @param request: Request instance for ModifyRecordBatch.
|
|
707
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::ModifyRecordBatchRequest`
|
|
708
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::ModifyRecordBatchResponse`
|
|
709
|
+
def ModifyRecordBatch(request)
|
|
710
|
+
body = send_request('ModifyRecordBatch', request.serialize)
|
|
711
|
+
response = JSON.parse(body)
|
|
712
|
+
if response['Response'].key?('Error') == false
|
|
713
|
+
model = ModifyRecordBatchResponse.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
|
+
# 设置记录备注
|
|
729
|
+
|
|
730
|
+
# @param request: Request instance for ModifyRecordRemark.
|
|
731
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::ModifyRecordRemarkRequest`
|
|
732
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::ModifyRecordRemarkResponse`
|
|
733
|
+
def ModifyRecordRemark(request)
|
|
734
|
+
body = send_request('ModifyRecordRemark', request.serialize)
|
|
735
|
+
response = JSON.parse(body)
|
|
736
|
+
if response['Response'].key?('Error') == false
|
|
737
|
+
model = ModifyRecordRemarkResponse.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 ModifyRecordStatus.
|
|
755
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::ModifyRecordStatusRequest`
|
|
756
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::ModifyRecordStatusResponse`
|
|
757
|
+
def ModifyRecordStatus(request)
|
|
758
|
+
body = send_request('ModifyRecordStatus', request.serialize)
|
|
759
|
+
response = JSON.parse(body)
|
|
760
|
+
if response['Response'].key?('Error') == false
|
|
761
|
+
model = ModifyRecordStatusResponse.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 ModifySubdomainStatus.
|
|
779
|
+
# @type request: :class:`Tencentcloud::dnspod::V20210323::ModifySubdomainStatusRequest`
|
|
780
|
+
# @rtype: :class:`Tencentcloud::dnspod::V20210323::ModifySubdomainStatusResponse`
|
|
781
|
+
def ModifySubdomainStatus(request)
|
|
782
|
+
body = send_request('ModifySubdomainStatus', request.serialize)
|
|
783
|
+
response = JSON.parse(body)
|
|
784
|
+
if response['Response'].key?('Error') == false
|
|
785
|
+
model = ModifySubdomainStatusResponse.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
|
+
end
|
|
802
|
+
end
|
|
803
|
+
end
|
|
804
|
+
end
|