tencentcloud-sdk-privatedns 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-privatedns.rb +11 -0
- data/lib/v20201028/client.rb +420 -0
- data/lib/v20201028/models.rb +1319 -0
- metadata +66 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 890c7d543b45ac1b79e198e77af479bdca5da62d
|
4
|
+
data.tar.gz: d2810c005a0805d02f2cd6782d8673c12e41b37a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 8593e9dbc37a82305b3c13d36e81d12a0b295eaa7a9cca30f7faae249c227346c34ee51880cd065cc16e47aa17913e38a0482b2b5621c42ff04413065c74003e
|
7
|
+
data.tar.gz: fe6c8707ee62079855572f27e4e69371aea60b434b2e01c36bf7cc5ddf8d7caeb790bf3946994f1ffab2dff0c39efdff8aeea1aeeda3e0a01bc946ccf37256e1
|
data/lib/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.0.200
|
@@ -0,0 +1,420 @@
|
|
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 Privatedns
|
21
|
+
module V20201028
|
22
|
+
class Client < TencentCloud::Common::AbstractClient
|
23
|
+
|
24
|
+
def initialize(credential, region, profile = nil)
|
25
|
+
api_version = '2020-10-28'
|
26
|
+
api_endpoint = 'privatedns.tencentcloudapi.com'
|
27
|
+
sdk_version = 'PRIVATEDNS_' + 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 CreatePrivateZone.
|
35
|
+
# @type request: :class:`Tencentcloud::privatedns::V20201028::CreatePrivateZoneRequest`
|
36
|
+
# @rtype: :class:`Tencentcloud::privatedns::V20201028::CreatePrivateZoneResponse`
|
37
|
+
def CreatePrivateZone(request)
|
38
|
+
body = send_request('CreatePrivateZone', request.serialize)
|
39
|
+
response = JSON.parse(body)
|
40
|
+
if response['Response'].key?('Error') == false
|
41
|
+
model = CreatePrivateZoneResponse.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 CreatePrivateZoneRecord.
|
59
|
+
# @type request: :class:`Tencentcloud::privatedns::V20201028::CreatePrivateZoneRecordRequest`
|
60
|
+
# @rtype: :class:`Tencentcloud::privatedns::V20201028::CreatePrivateZoneRecordResponse`
|
61
|
+
def CreatePrivateZoneRecord(request)
|
62
|
+
body = send_request('CreatePrivateZoneRecord', request.serialize)
|
63
|
+
response = JSON.parse(body)
|
64
|
+
if response['Response'].key?('Error') == false
|
65
|
+
model = CreatePrivateZoneRecordResponse.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 DeletePrivateZone.
|
83
|
+
# @type request: :class:`Tencentcloud::privatedns::V20201028::DeletePrivateZoneRequest`
|
84
|
+
# @rtype: :class:`Tencentcloud::privatedns::V20201028::DeletePrivateZoneResponse`
|
85
|
+
def DeletePrivateZone(request)
|
86
|
+
body = send_request('DeletePrivateZone', request.serialize)
|
87
|
+
response = JSON.parse(body)
|
88
|
+
if response['Response'].key?('Error') == false
|
89
|
+
model = DeletePrivateZoneResponse.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 DeletePrivateZoneRecord.
|
107
|
+
# @type request: :class:`Tencentcloud::privatedns::V20201028::DeletePrivateZoneRecordRequest`
|
108
|
+
# @rtype: :class:`Tencentcloud::privatedns::V20201028::DeletePrivateZoneRecordResponse`
|
109
|
+
def DeletePrivateZoneRecord(request)
|
110
|
+
body = send_request('DeletePrivateZoneRecord', request.serialize)
|
111
|
+
response = JSON.parse(body)
|
112
|
+
if response['Response'].key?('Error') == false
|
113
|
+
model = DeletePrivateZoneRecordResponse.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 DescribeAuditLog.
|
131
|
+
# @type request: :class:`Tencentcloud::privatedns::V20201028::DescribeAuditLogRequest`
|
132
|
+
# @rtype: :class:`Tencentcloud::privatedns::V20201028::DescribeAuditLogResponse`
|
133
|
+
def DescribeAuditLog(request)
|
134
|
+
body = send_request('DescribeAuditLog', request.serialize)
|
135
|
+
response = JSON.parse(body)
|
136
|
+
if response['Response'].key?('Error') == false
|
137
|
+
model = DescribeAuditLogResponse.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 DescribeDashboard.
|
155
|
+
# @type request: :class:`Tencentcloud::privatedns::V20201028::DescribeDashboardRequest`
|
156
|
+
# @rtype: :class:`Tencentcloud::privatedns::V20201028::DescribeDashboardResponse`
|
157
|
+
def DescribeDashboard(request)
|
158
|
+
body = send_request('DescribeDashboard', request.serialize)
|
159
|
+
response = JSON.parse(body)
|
160
|
+
if response['Response'].key?('Error') == false
|
161
|
+
model = DescribeDashboardResponse.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 DescribePrivateDNSAccountList.
|
179
|
+
# @type request: :class:`Tencentcloud::privatedns::V20201028::DescribePrivateDNSAccountListRequest`
|
180
|
+
# @rtype: :class:`Tencentcloud::privatedns::V20201028::DescribePrivateDNSAccountListResponse`
|
181
|
+
def DescribePrivateDNSAccountList(request)
|
182
|
+
body = send_request('DescribePrivateDNSAccountList', request.serialize)
|
183
|
+
response = JSON.parse(body)
|
184
|
+
if response['Response'].key?('Error') == false
|
185
|
+
model = DescribePrivateDNSAccountListResponse.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 DescribePrivateZone.
|
203
|
+
# @type request: :class:`Tencentcloud::privatedns::V20201028::DescribePrivateZoneRequest`
|
204
|
+
# @rtype: :class:`Tencentcloud::privatedns::V20201028::DescribePrivateZoneResponse`
|
205
|
+
def DescribePrivateZone(request)
|
206
|
+
body = send_request('DescribePrivateZone', request.serialize)
|
207
|
+
response = JSON.parse(body)
|
208
|
+
if response['Response'].key?('Error') == false
|
209
|
+
model = DescribePrivateZoneResponse.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 DescribePrivateZoneList.
|
227
|
+
# @type request: :class:`Tencentcloud::privatedns::V20201028::DescribePrivateZoneListRequest`
|
228
|
+
# @rtype: :class:`Tencentcloud::privatedns::V20201028::DescribePrivateZoneListResponse`
|
229
|
+
def DescribePrivateZoneList(request)
|
230
|
+
body = send_request('DescribePrivateZoneList', request.serialize)
|
231
|
+
response = JSON.parse(body)
|
232
|
+
if response['Response'].key?('Error') == false
|
233
|
+
model = DescribePrivateZoneListResponse.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 DescribePrivateZoneRecordList.
|
251
|
+
# @type request: :class:`Tencentcloud::privatedns::V20201028::DescribePrivateZoneRecordListRequest`
|
252
|
+
# @rtype: :class:`Tencentcloud::privatedns::V20201028::DescribePrivateZoneRecordListResponse`
|
253
|
+
def DescribePrivateZoneRecordList(request)
|
254
|
+
body = send_request('DescribePrivateZoneRecordList', request.serialize)
|
255
|
+
response = JSON.parse(body)
|
256
|
+
if response['Response'].key?('Error') == false
|
257
|
+
model = DescribePrivateZoneRecordListResponse.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 DescribePrivateZoneService.
|
275
|
+
# @type request: :class:`Tencentcloud::privatedns::V20201028::DescribePrivateZoneServiceRequest`
|
276
|
+
# @rtype: :class:`Tencentcloud::privatedns::V20201028::DescribePrivateZoneServiceResponse`
|
277
|
+
def DescribePrivateZoneService(request)
|
278
|
+
body = send_request('DescribePrivateZoneService', request.serialize)
|
279
|
+
response = JSON.parse(body)
|
280
|
+
if response['Response'].key?('Error') == false
|
281
|
+
model = DescribePrivateZoneServiceResponse.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 DescribeRequestData.
|
299
|
+
# @type request: :class:`Tencentcloud::privatedns::V20201028::DescribeRequestDataRequest`
|
300
|
+
# @rtype: :class:`Tencentcloud::privatedns::V20201028::DescribeRequestDataResponse`
|
301
|
+
def DescribeRequestData(request)
|
302
|
+
body = send_request('DescribeRequestData', request.serialize)
|
303
|
+
response = JSON.parse(body)
|
304
|
+
if response['Response'].key?('Error') == false
|
305
|
+
model = DescribeRequestDataResponse.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 ModifyPrivateZone.
|
323
|
+
# @type request: :class:`Tencentcloud::privatedns::V20201028::ModifyPrivateZoneRequest`
|
324
|
+
# @rtype: :class:`Tencentcloud::privatedns::V20201028::ModifyPrivateZoneResponse`
|
325
|
+
def ModifyPrivateZone(request)
|
326
|
+
body = send_request('ModifyPrivateZone', request.serialize)
|
327
|
+
response = JSON.parse(body)
|
328
|
+
if response['Response'].key?('Error') == false
|
329
|
+
model = ModifyPrivateZoneResponse.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 ModifyPrivateZoneRecord.
|
347
|
+
# @type request: :class:`Tencentcloud::privatedns::V20201028::ModifyPrivateZoneRecordRequest`
|
348
|
+
# @rtype: :class:`Tencentcloud::privatedns::V20201028::ModifyPrivateZoneRecordResponse`
|
349
|
+
def ModifyPrivateZoneRecord(request)
|
350
|
+
body = send_request('ModifyPrivateZoneRecord', request.serialize)
|
351
|
+
response = JSON.parse(body)
|
352
|
+
if response['Response'].key?('Error') == false
|
353
|
+
model = ModifyPrivateZoneRecordResponse.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
|
+
# 修改私有域关联的VPC
|
369
|
+
|
370
|
+
# @param request: Request instance for ModifyPrivateZoneVpc.
|
371
|
+
# @type request: :class:`Tencentcloud::privatedns::V20201028::ModifyPrivateZoneVpcRequest`
|
372
|
+
# @rtype: :class:`Tencentcloud::privatedns::V20201028::ModifyPrivateZoneVpcResponse`
|
373
|
+
def ModifyPrivateZoneVpc(request)
|
374
|
+
body = send_request('ModifyPrivateZoneVpc', request.serialize)
|
375
|
+
response = JSON.parse(body)
|
376
|
+
if response['Response'].key?('Error') == false
|
377
|
+
model = ModifyPrivateZoneVpcResponse.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 SubscribePrivateZoneService.
|
395
|
+
# @type request: :class:`Tencentcloud::privatedns::V20201028::SubscribePrivateZoneServiceRequest`
|
396
|
+
# @rtype: :class:`Tencentcloud::privatedns::V20201028::SubscribePrivateZoneServiceResponse`
|
397
|
+
def SubscribePrivateZoneService(request)
|
398
|
+
body = send_request('SubscribePrivateZoneService', request.serialize)
|
399
|
+
response = JSON.parse(body)
|
400
|
+
if response['Response'].key?('Error') == false
|
401
|
+
model = SubscribePrivateZoneServiceResponse.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
|
+
end
|
418
|
+
end
|
419
|
+
end
|
420
|
+
end
|