tencentcloud-sdk-cws 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-cws.rb +11 -0
- data/lib/v20180312/client.rb +492 -0
- data/lib/v20180312/models.rb +1508 -0
- metadata +66 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 7afa1d458dfc727ffacb7e4267027be98b5684f5
|
4
|
+
data.tar.gz: 5e8e28cab1d9d58e6f82f01d63b10be06039301a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 43620ed9b97b9df12f3f9885457a22d8718ed16668ec814bed62be8d1255b66e25c8529a55aa98f6030d59cc8230bef644e7a0a162973158289fc5e14667b05e
|
7
|
+
data.tar.gz: 96a957bacfea3485f23de943fb1bceaf254d9069df69cee8083908663865201fd885a7028f81c30be15bc88fa031cb0620f768de6f9ef9cc771a0b01027bd41e
|
data/lib/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.0.200
|
@@ -0,0 +1,492 @@
|
|
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 Cws
|
21
|
+
module V20180312
|
22
|
+
class Client < TencentCloud::Common::AbstractClient
|
23
|
+
|
24
|
+
def initialize(credential, region, profile = nil)
|
25
|
+
api_version = '2018-03-12'
|
26
|
+
api_endpoint = 'cws.tencentcloudapi.com'
|
27
|
+
sdk_version = 'CWS_' + File.read(File.expand_path('../VERSION', __dir__)).strip
|
28
|
+
super(credential, region, api_version, api_endpoint, sdk_version, profile)
|
29
|
+
end
|
30
|
+
|
31
|
+
|
32
|
+
# 本接口(CreateMonitors)用于新增一个或多个站点的监测任务。
|
33
|
+
|
34
|
+
# @param request: Request instance for CreateMonitors.
|
35
|
+
# @type request: :class:`Tencentcloud::cws::V20180312::CreateMonitorsRequest`
|
36
|
+
# @rtype: :class:`Tencentcloud::cws::V20180312::CreateMonitorsResponse`
|
37
|
+
def CreateMonitors(request)
|
38
|
+
body = send_request('CreateMonitors', request.serialize)
|
39
|
+
response = JSON.parse(body)
|
40
|
+
if response['Response'].key?('Error') == false
|
41
|
+
model = CreateMonitorsResponse.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
|
+
# 本接口(CreateSites)用于新增一个或多个站点。
|
57
|
+
|
58
|
+
# @param request: Request instance for CreateSites.
|
59
|
+
# @type request: :class:`Tencentcloud::cws::V20180312::CreateSitesRequest`
|
60
|
+
# @rtype: :class:`Tencentcloud::cws::V20180312::CreateSitesResponse`
|
61
|
+
def CreateSites(request)
|
62
|
+
body = send_request('CreateSites', request.serialize)
|
63
|
+
response = JSON.parse(body)
|
64
|
+
if response['Response'].key?('Error') == false
|
65
|
+
model = CreateSitesResponse.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
|
+
# 本接口(CreateSitesScans)用于新增一个或多个站点的单次扫描任务。
|
81
|
+
|
82
|
+
# @param request: Request instance for CreateSitesScans.
|
83
|
+
# @type request: :class:`Tencentcloud::cws::V20180312::CreateSitesScansRequest`
|
84
|
+
# @rtype: :class:`Tencentcloud::cws::V20180312::CreateSitesScansResponse`
|
85
|
+
def CreateSitesScans(request)
|
86
|
+
body = send_request('CreateSitesScans', request.serialize)
|
87
|
+
response = JSON.parse(body)
|
88
|
+
if response['Response'].key?('Error') == false
|
89
|
+
model = CreateSitesScansResponse.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
|
+
# 本接口(CreateVulsMisinformation)可以用于新增一个或多个漏洞误报信息。
|
105
|
+
|
106
|
+
# @param request: Request instance for CreateVulsMisinformation.
|
107
|
+
# @type request: :class:`Tencentcloud::cws::V20180312::CreateVulsMisinformationRequest`
|
108
|
+
# @rtype: :class:`Tencentcloud::cws::V20180312::CreateVulsMisinformationResponse`
|
109
|
+
def CreateVulsMisinformation(request)
|
110
|
+
body = send_request('CreateVulsMisinformation', request.serialize)
|
111
|
+
response = JSON.parse(body)
|
112
|
+
if response['Response'].key?('Error') == false
|
113
|
+
model = CreateVulsMisinformationResponse.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
|
+
# 本接口 (CreateVulsReport) 用于生成漏洞报告并返回下载链接。
|
129
|
+
|
130
|
+
# @param request: Request instance for CreateVulsReport.
|
131
|
+
# @type request: :class:`Tencentcloud::cws::V20180312::CreateVulsReportRequest`
|
132
|
+
# @rtype: :class:`Tencentcloud::cws::V20180312::CreateVulsReportResponse`
|
133
|
+
def CreateVulsReport(request)
|
134
|
+
body = send_request('CreateVulsReport', request.serialize)
|
135
|
+
response = JSON.parse(body)
|
136
|
+
if response['Response'].key?('Error') == false
|
137
|
+
model = CreateVulsReportResponse.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
|
+
# 本接口 (DeleteMonitors) 用于删除用户监控任务。
|
153
|
+
|
154
|
+
# @param request: Request instance for DeleteMonitors.
|
155
|
+
# @type request: :class:`Tencentcloud::cws::V20180312::DeleteMonitorsRequest`
|
156
|
+
# @rtype: :class:`Tencentcloud::cws::V20180312::DeleteMonitorsResponse`
|
157
|
+
def DeleteMonitors(request)
|
158
|
+
body = send_request('DeleteMonitors', request.serialize)
|
159
|
+
response = JSON.parse(body)
|
160
|
+
if response['Response'].key?('Error') == false
|
161
|
+
model = DeleteMonitorsResponse.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
|
+
# 本接口 (DeleteSites) 用于删除站点。
|
177
|
+
|
178
|
+
# @param request: Request instance for DeleteSites.
|
179
|
+
# @type request: :class:`Tencentcloud::cws::V20180312::DeleteSitesRequest`
|
180
|
+
# @rtype: :class:`Tencentcloud::cws::V20180312::DeleteSitesResponse`
|
181
|
+
def DeleteSites(request)
|
182
|
+
body = send_request('DeleteSites', request.serialize)
|
183
|
+
response = JSON.parse(body)
|
184
|
+
if response['Response'].key?('Error') == false
|
185
|
+
model = DeleteSitesResponse.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
|
+
# 本接口 (DescribeConfig) 用于查询用户配置的详细信息。
|
201
|
+
|
202
|
+
# @param request: Request instance for DescribeConfig.
|
203
|
+
# @type request: :class:`Tencentcloud::cws::V20180312::DescribeConfigRequest`
|
204
|
+
# @rtype: :class:`Tencentcloud::cws::V20180312::DescribeConfigResponse`
|
205
|
+
def DescribeConfig(request)
|
206
|
+
body = send_request('DescribeConfig', request.serialize)
|
207
|
+
response = JSON.parse(body)
|
208
|
+
if response['Response'].key?('Error') == false
|
209
|
+
model = DescribeConfigResponse.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
|
+
# 本接口 (DescribeMonitors) 用于查询一个或多个监控任务的详细信息。
|
225
|
+
|
226
|
+
# @param request: Request instance for DescribeMonitors.
|
227
|
+
# @type request: :class:`Tencentcloud::cws::V20180312::DescribeMonitorsRequest`
|
228
|
+
# @rtype: :class:`Tencentcloud::cws::V20180312::DescribeMonitorsResponse`
|
229
|
+
def DescribeMonitors(request)
|
230
|
+
body = send_request('DescribeMonitors', request.serialize)
|
231
|
+
response = JSON.parse(body)
|
232
|
+
if response['Response'].key?('Error') == false
|
233
|
+
model = DescribeMonitorsResponse.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
|
+
# 本接口 (DescribeSiteQuota) 用于查询用户购买的扫描次数总数和已使用数。
|
249
|
+
|
250
|
+
# @param request: Request instance for DescribeSiteQuota.
|
251
|
+
# @type request: :class:`Tencentcloud::cws::V20180312::DescribeSiteQuotaRequest`
|
252
|
+
# @rtype: :class:`Tencentcloud::cws::V20180312::DescribeSiteQuotaResponse`
|
253
|
+
def DescribeSiteQuota(request)
|
254
|
+
body = send_request('DescribeSiteQuota', request.serialize)
|
255
|
+
response = JSON.parse(body)
|
256
|
+
if response['Response'].key?('Error') == false
|
257
|
+
model = DescribeSiteQuotaResponse.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
|
+
# 本接口 (DescribeSites) 用于查询一个或多个站点的详细信息。
|
273
|
+
|
274
|
+
# @param request: Request instance for DescribeSites.
|
275
|
+
# @type request: :class:`Tencentcloud::cws::V20180312::DescribeSitesRequest`
|
276
|
+
# @rtype: :class:`Tencentcloud::cws::V20180312::DescribeSitesResponse`
|
277
|
+
def DescribeSites(request)
|
278
|
+
body = send_request('DescribeSites', request.serialize)
|
279
|
+
response = JSON.parse(body)
|
280
|
+
if response['Response'].key?('Error') == false
|
281
|
+
model = DescribeSitesResponse.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
|
+
# 本接口 (DescribeSitesVerification) 用于查询一个或多个待验证站点的验证信息。
|
297
|
+
|
298
|
+
# @param request: Request instance for DescribeSitesVerification.
|
299
|
+
# @type request: :class:`Tencentcloud::cws::V20180312::DescribeSitesVerificationRequest`
|
300
|
+
# @rtype: :class:`Tencentcloud::cws::V20180312::DescribeSitesVerificationResponse`
|
301
|
+
def DescribeSitesVerification(request)
|
302
|
+
body = send_request('DescribeSitesVerification', request.serialize)
|
303
|
+
response = JSON.parse(body)
|
304
|
+
if response['Response'].key?('Error') == false
|
305
|
+
model = DescribeSitesVerificationResponse.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
|
+
# 本接口 (DescribeVuls) 用于查询一个或多个漏洞的详细信息。
|
321
|
+
|
322
|
+
# @param request: Request instance for DescribeVuls.
|
323
|
+
# @type request: :class:`Tencentcloud::cws::V20180312::DescribeVulsRequest`
|
324
|
+
# @rtype: :class:`Tencentcloud::cws::V20180312::DescribeVulsResponse`
|
325
|
+
def DescribeVuls(request)
|
326
|
+
body = send_request('DescribeVuls', request.serialize)
|
327
|
+
response = JSON.parse(body)
|
328
|
+
if response['Response'].key?('Error') == false
|
329
|
+
model = DescribeVulsResponse.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
|
+
# 本接口 (DescribeVulsNumber) 用于查询用户网站的漏洞总计数量。
|
345
|
+
|
346
|
+
# @param request: Request instance for DescribeVulsNumber.
|
347
|
+
# @type request: :class:`Tencentcloud::cws::V20180312::DescribeVulsNumberRequest`
|
348
|
+
# @rtype: :class:`Tencentcloud::cws::V20180312::DescribeVulsNumberResponse`
|
349
|
+
def DescribeVulsNumber(request)
|
350
|
+
body = send_request('DescribeVulsNumber', request.serialize)
|
351
|
+
response = JSON.parse(body)
|
352
|
+
if response['Response'].key?('Error') == false
|
353
|
+
model = DescribeVulsNumberResponse.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
|
+
# 本接口 (DescribeVulsNumberTimeline) 用于查询漏洞数随时间变化统计信息。
|
369
|
+
|
370
|
+
# @param request: Request instance for DescribeVulsNumberTimeline.
|
371
|
+
# @type request: :class:`Tencentcloud::cws::V20180312::DescribeVulsNumberTimelineRequest`
|
372
|
+
# @rtype: :class:`Tencentcloud::cws::V20180312::DescribeVulsNumberTimelineResponse`
|
373
|
+
def DescribeVulsNumberTimeline(request)
|
374
|
+
body = send_request('DescribeVulsNumberTimeline', request.serialize)
|
375
|
+
response = JSON.parse(body)
|
376
|
+
if response['Response'].key?('Error') == false
|
377
|
+
model = DescribeVulsNumberTimelineResponse.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
|
+
# 本接口 (ModifyConfigAttribute) 用于修改用户配置的属性。
|
393
|
+
|
394
|
+
# @param request: Request instance for ModifyConfigAttribute.
|
395
|
+
# @type request: :class:`Tencentcloud::cws::V20180312::ModifyConfigAttributeRequest`
|
396
|
+
# @rtype: :class:`Tencentcloud::cws::V20180312::ModifyConfigAttributeResponse`
|
397
|
+
def ModifyConfigAttribute(request)
|
398
|
+
body = send_request('ModifyConfigAttribute', request.serialize)
|
399
|
+
response = JSON.parse(body)
|
400
|
+
if response['Response'].key?('Error') == false
|
401
|
+
model = ModifyConfigAttributeResponse.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
|
+
# 本接口 (ModifyMonitorAttribute) 用于修改监测任务的属性。
|
417
|
+
|
418
|
+
# @param request: Request instance for ModifyMonitorAttribute.
|
419
|
+
# @type request: :class:`Tencentcloud::cws::V20180312::ModifyMonitorAttributeRequest`
|
420
|
+
# @rtype: :class:`Tencentcloud::cws::V20180312::ModifyMonitorAttributeResponse`
|
421
|
+
def ModifyMonitorAttribute(request)
|
422
|
+
body = send_request('ModifyMonitorAttribute', request.serialize)
|
423
|
+
response = JSON.parse(body)
|
424
|
+
if response['Response'].key?('Error') == false
|
425
|
+
model = ModifyMonitorAttributeResponse.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
|
+
# 本接口 (ModifySiteAttribute) 用于修改站点的属性。
|
441
|
+
|
442
|
+
# @param request: Request instance for ModifySiteAttribute.
|
443
|
+
# @type request: :class:`Tencentcloud::cws::V20180312::ModifySiteAttributeRequest`
|
444
|
+
# @rtype: :class:`Tencentcloud::cws::V20180312::ModifySiteAttributeResponse`
|
445
|
+
def ModifySiteAttribute(request)
|
446
|
+
body = send_request('ModifySiteAttribute', request.serialize)
|
447
|
+
response = JSON.parse(body)
|
448
|
+
if response['Response'].key?('Error') == false
|
449
|
+
model = ModifySiteAttributeResponse.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
|
+
# 本接口 (VerifySites) 用于验证一个或多个待验证站点。
|
465
|
+
|
466
|
+
# @param request: Request instance for VerifySites.
|
467
|
+
# @type request: :class:`Tencentcloud::cws::V20180312::VerifySitesRequest`
|
468
|
+
# @rtype: :class:`Tencentcloud::cws::V20180312::VerifySitesResponse`
|
469
|
+
def VerifySites(request)
|
470
|
+
body = send_request('VerifySites', request.serialize)
|
471
|
+
response = JSON.parse(body)
|
472
|
+
if response['Response'].key?('Error') == false
|
473
|
+
model = VerifySitesResponse.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
|
+
end
|
490
|
+
end
|
491
|
+
end
|
492
|
+
end
|