tencentcloud-sdk-cfw 1.0.200
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/lib/VERSION +1 -0
- data/lib/tencentcloud-sdk-cfw.rb +11 -0
- data/lib/v20190904/client.rb +1624 -0
- data/lib/v20190904/models.rb +4857 -0
- metadata +66 -0
@@ -0,0 +1,1624 @@
|
|
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 Cfw
|
21
|
+
module V20190904
|
22
|
+
class Client < TencentCloud::Common::AbstractClient
|
23
|
+
|
24
|
+
def initialize(credential, region, profile = nil)
|
25
|
+
api_version = '2019-09-04'
|
26
|
+
api_endpoint = 'cfw.tencentcloudapi.com'
|
27
|
+
sdk_version = 'CFW_' + 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 AddAcRule.
|
35
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::AddAcRuleRequest`
|
36
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::AddAcRuleResponse`
|
37
|
+
def AddAcRule(request)
|
38
|
+
body = send_request('AddAcRule', request.serialize)
|
39
|
+
response = JSON.parse(body)
|
40
|
+
if response['Response'].key?('Error') == false
|
41
|
+
model = AddAcRuleResponse.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 CreateAcRules.
|
59
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::CreateAcRulesRequest`
|
60
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::CreateAcRulesResponse`
|
61
|
+
def CreateAcRules(request)
|
62
|
+
body = send_request('CreateAcRules', request.serialize)
|
63
|
+
response = JSON.parse(body)
|
64
|
+
if response['Response'].key?('Error') == false
|
65
|
+
model = CreateAcRulesResponse.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
|
+
# 创建、选择vpc
|
81
|
+
|
82
|
+
# @param request: Request instance for CreateChooseVpcs.
|
83
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::CreateChooseVpcsRequest`
|
84
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::CreateChooseVpcsResponse`
|
85
|
+
def CreateChooseVpcs(request)
|
86
|
+
body = send_request('CreateChooseVpcs', request.serialize)
|
87
|
+
response = JSON.parse(body)
|
88
|
+
if response['Response'].key?('Error') == false
|
89
|
+
model = CreateChooseVpcsResponse.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 CreateDatabaseWhiteListRules.
|
107
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::CreateDatabaseWhiteListRulesRequest`
|
108
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::CreateDatabaseWhiteListRulesResponse`
|
109
|
+
def CreateDatabaseWhiteListRules(request)
|
110
|
+
body = send_request('CreateDatabaseWhiteListRules', request.serialize)
|
111
|
+
response = JSON.parse(body)
|
112
|
+
if response['Response'].key?('Error') == false
|
113
|
+
model = CreateDatabaseWhiteListRulesResponse.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 CreateNatFwInstance.
|
131
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::CreateNatFwInstanceRequest`
|
132
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::CreateNatFwInstanceResponse`
|
133
|
+
def CreateNatFwInstance(request)
|
134
|
+
body = send_request('CreateNatFwInstance', request.serialize)
|
135
|
+
response = JSON.parse(body)
|
136
|
+
if response['Response'].key?('Error') == false
|
137
|
+
model = CreateNatFwInstanceResponse.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 CreateNatFwInstanceWithDomain.
|
155
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::CreateNatFwInstanceWithDomainRequest`
|
156
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::CreateNatFwInstanceWithDomainResponse`
|
157
|
+
def CreateNatFwInstanceWithDomain(request)
|
158
|
+
body = send_request('CreateNatFwInstanceWithDomain', request.serialize)
|
159
|
+
response = JSON.parse(body)
|
160
|
+
if response['Response'].key?('Error') == false
|
161
|
+
model = CreateNatFwInstanceWithDomainResponse.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
|
+
# 创建安全组API规则
|
177
|
+
|
178
|
+
# @param request: Request instance for CreateSecurityGroupApiRules.
|
179
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::CreateSecurityGroupApiRulesRequest`
|
180
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::CreateSecurityGroupApiRulesResponse`
|
181
|
+
def CreateSecurityGroupApiRules(request)
|
182
|
+
body = send_request('CreateSecurityGroupApiRules', request.serialize)
|
183
|
+
response = JSON.parse(body)
|
184
|
+
if response['Response'].key?('Error') == false
|
185
|
+
model = CreateSecurityGroupApiRulesResponse.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 CreateSecurityGroupRules.
|
203
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::CreateSecurityGroupRulesRequest`
|
204
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::CreateSecurityGroupRulesResponse`
|
205
|
+
def CreateSecurityGroupRules(request)
|
206
|
+
body = send_request('CreateSecurityGroupRules', request.serialize)
|
207
|
+
response = JSON.parse(body)
|
208
|
+
if response['Response'].key?('Error') == false
|
209
|
+
model = CreateSecurityGroupRulesResponse.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 DeleteAcRule.
|
227
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DeleteAcRuleRequest`
|
228
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DeleteAcRuleResponse`
|
229
|
+
def DeleteAcRule(request)
|
230
|
+
body = send_request('DeleteAcRule', request.serialize)
|
231
|
+
response = JSON.parse(body)
|
232
|
+
if response['Response'].key?('Error') == false
|
233
|
+
model = DeleteAcRuleResponse.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 DeleteAllAccessControlRule.
|
251
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DeleteAllAccessControlRuleRequest`
|
252
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DeleteAllAccessControlRuleResponse`
|
253
|
+
def DeleteAllAccessControlRule(request)
|
254
|
+
body = send_request('DeleteAllAccessControlRule', request.serialize)
|
255
|
+
response = JSON.parse(body)
|
256
|
+
if response['Response'].key?('Error') == false
|
257
|
+
model = DeleteAllAccessControlRuleResponse.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 DeleteNatFwInstance.
|
275
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DeleteNatFwInstanceRequest`
|
276
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DeleteNatFwInstanceResponse`
|
277
|
+
def DeleteNatFwInstance(request)
|
278
|
+
body = send_request('DeleteNatFwInstance', request.serialize)
|
279
|
+
response = JSON.parse(body)
|
280
|
+
if response['Response'].key?('Error') == false
|
281
|
+
model = DeleteNatFwInstanceResponse.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
|
+
# DeleteResourceGroup-资产中心资产组删除
|
297
|
+
|
298
|
+
# @param request: Request instance for DeleteResourceGroup.
|
299
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DeleteResourceGroupRequest`
|
300
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DeleteResourceGroupResponse`
|
301
|
+
def DeleteResourceGroup(request)
|
302
|
+
body = send_request('DeleteResourceGroup', request.serialize)
|
303
|
+
response = JSON.parse(body)
|
304
|
+
if response['Response'].key?('Error') == false
|
305
|
+
model = DeleteResourceGroupResponse.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 DeleteSecurityGroupAllRule.
|
323
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DeleteSecurityGroupAllRuleRequest`
|
324
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DeleteSecurityGroupAllRuleResponse`
|
325
|
+
def DeleteSecurityGroupAllRule(request)
|
326
|
+
body = send_request('DeleteSecurityGroupAllRule', request.serialize)
|
327
|
+
response = JSON.parse(body)
|
328
|
+
if response['Response'].key?('Error') == false
|
329
|
+
model = DeleteSecurityGroupAllRuleResponse.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 DeleteSecurityGroupRule.
|
347
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DeleteSecurityGroupRuleRequest`
|
348
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DeleteSecurityGroupRuleResponse`
|
349
|
+
def DeleteSecurityGroupRule(request)
|
350
|
+
body = send_request('DeleteSecurityGroupRule', request.serialize)
|
351
|
+
response = JSON.parse(body)
|
352
|
+
if response['Response'].key?('Error') == false
|
353
|
+
model = DeleteSecurityGroupRuleResponse.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 DeleteVpcInstance.
|
371
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DeleteVpcInstanceRequest`
|
372
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DeleteVpcInstanceResponse`
|
373
|
+
def DeleteVpcInstance(request)
|
374
|
+
body = send_request('DeleteVpcInstance', request.serialize)
|
375
|
+
response = JSON.parse(body)
|
376
|
+
if response['Response'].key?('Error') == false
|
377
|
+
model = DeleteVpcInstanceResponse.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 DescribeAcLists.
|
395
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DescribeAcListsRequest`
|
396
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DescribeAcListsResponse`
|
397
|
+
def DescribeAcLists(request)
|
398
|
+
body = send_request('DescribeAcLists', request.serialize)
|
399
|
+
response = JSON.parse(body)
|
400
|
+
if response['Response'].key?('Error') == false
|
401
|
+
model = DescribeAcListsResponse.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 DescribeAssociatedInstanceList.
|
419
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DescribeAssociatedInstanceListRequest`
|
420
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DescribeAssociatedInstanceListResponse`
|
421
|
+
def DescribeAssociatedInstanceList(request)
|
422
|
+
body = send_request('DescribeAssociatedInstanceList', request.serialize)
|
423
|
+
response = JSON.parse(body)
|
424
|
+
if response['Response'].key?('Error') == false
|
425
|
+
model = DescribeAssociatedInstanceListResponse.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
|
+
# DescribeBlockByIpTimesList 告警中心阻断IP折线图
|
441
|
+
|
442
|
+
# @param request: Request instance for DescribeBlockByIpTimesList.
|
443
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DescribeBlockByIpTimesListRequest`
|
444
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DescribeBlockByIpTimesListResponse`
|
445
|
+
def DescribeBlockByIpTimesList(request)
|
446
|
+
body = send_request('DescribeBlockByIpTimesList', request.serialize)
|
447
|
+
response = JSON.parse(body)
|
448
|
+
if response['Response'].key?('Error') == false
|
449
|
+
model = DescribeBlockByIpTimesListResponse.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
|
+
# DescribeBlockStaticList 告警中心柱形图
|
465
|
+
|
466
|
+
# @param request: Request instance for DescribeBlockStaticList.
|
467
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DescribeBlockStaticListRequest`
|
468
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DescribeBlockStaticListResponse`
|
469
|
+
def DescribeBlockStaticList(request)
|
470
|
+
body = send_request('DescribeBlockStaticList', request.serialize)
|
471
|
+
response = JSON.parse(body)
|
472
|
+
if response['Response'].key?('Error') == false
|
473
|
+
model = DescribeBlockStaticListResponse.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
|
+
# 查询防火墙弹性公网IP
|
489
|
+
|
490
|
+
# @param request: Request instance for DescribeCfwEips.
|
491
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DescribeCfwEipsRequest`
|
492
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DescribeCfwEipsResponse`
|
493
|
+
def DescribeCfwEips(request)
|
494
|
+
body = send_request('DescribeCfwEips', request.serialize)
|
495
|
+
response = JSON.parse(body)
|
496
|
+
if response['Response'].key?('Error') == false
|
497
|
+
model = DescribeCfwEipsResponse.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
|
+
# DescribeGuideScanInfo新手引导扫描接口信息
|
513
|
+
|
514
|
+
# @param request: Request instance for DescribeGuideScanInfo.
|
515
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DescribeGuideScanInfoRequest`
|
516
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DescribeGuideScanInfoResponse`
|
517
|
+
def DescribeGuideScanInfo(request)
|
518
|
+
body = send_request('DescribeGuideScanInfo', request.serialize)
|
519
|
+
response = JSON.parse(body)
|
520
|
+
if response['Response'].key?('Error') == false
|
521
|
+
model = DescribeGuideScanInfoResponse.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
|
+
# 获取当前用户接入nat防火墙的所有子网数及natfw实例个数
|
537
|
+
|
538
|
+
# @param request: Request instance for DescribeNatFwInfoCount.
|
539
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DescribeNatFwInfoCountRequest`
|
540
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DescribeNatFwInfoCountResponse`
|
541
|
+
def DescribeNatFwInfoCount(request)
|
542
|
+
body = send_request('DescribeNatFwInfoCount', request.serialize)
|
543
|
+
response = JSON.parse(body)
|
544
|
+
if response['Response'].key?('Error') == false
|
545
|
+
model = DescribeNatFwInfoCountResponse.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
|
+
# DescribeNatFwInstance 获取租户所有NAT实例
|
561
|
+
|
562
|
+
# @param request: Request instance for DescribeNatFwInstance.
|
563
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DescribeNatFwInstanceRequest`
|
564
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DescribeNatFwInstanceResponse`
|
565
|
+
def DescribeNatFwInstance(request)
|
566
|
+
body = send_request('DescribeNatFwInstance', request.serialize)
|
567
|
+
response = JSON.parse(body)
|
568
|
+
if response['Response'].key?('Error') == false
|
569
|
+
model = DescribeNatFwInstanceResponse.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
|
+
# GetNatFwInstanceWithRegion 获取租户新增运维的NAT实例,带上地域
|
585
|
+
|
586
|
+
# @param request: Request instance for DescribeNatFwInstanceWithRegion.
|
587
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DescribeNatFwInstanceWithRegionRequest`
|
588
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DescribeNatFwInstanceWithRegionResponse`
|
589
|
+
def DescribeNatFwInstanceWithRegion(request)
|
590
|
+
body = send_request('DescribeNatFwInstanceWithRegion', request.serialize)
|
591
|
+
response = JSON.parse(body)
|
592
|
+
if response['Response'].key?('Error') == false
|
593
|
+
model = DescribeNatFwInstanceWithRegionResponse.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
|
+
# GetNatInstance 获取租户所有NAT实例及实例卡片信息
|
609
|
+
|
610
|
+
# @param request: Request instance for DescribeNatFwInstancesInfo.
|
611
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DescribeNatFwInstancesInfoRequest`
|
612
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DescribeNatFwInstancesInfoResponse`
|
613
|
+
def DescribeNatFwInstancesInfo(request)
|
614
|
+
body = send_request('DescribeNatFwInstancesInfo', request.serialize)
|
615
|
+
response = JSON.parse(body)
|
616
|
+
if response['Response'].key?('Error') == false
|
617
|
+
model = DescribeNatFwInstancesInfoResponse.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
|
+
# 展示当前natfw 实例对应的vpc dns开关
|
633
|
+
|
634
|
+
# @param request: Request instance for DescribeNatFwVpcDnsLst.
|
635
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DescribeNatFwVpcDnsLstRequest`
|
636
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DescribeNatFwVpcDnsLstResponse`
|
637
|
+
def DescribeNatFwVpcDnsLst(request)
|
638
|
+
body = send_request('DescribeNatFwVpcDnsLst', request.serialize)
|
639
|
+
response = JSON.parse(body)
|
640
|
+
if response['Response'].key?('Error') == false
|
641
|
+
model = DescribeNatFwVpcDnsLstResponse.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
|
+
# nat规则列表概况
|
657
|
+
|
658
|
+
# @param request: Request instance for DescribeNatRuleOverview.
|
659
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DescribeNatRuleOverviewRequest`
|
660
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DescribeNatRuleOverviewResponse`
|
661
|
+
def DescribeNatRuleOverview(request)
|
662
|
+
body = send_request('DescribeNatRuleOverview', request.serialize)
|
663
|
+
response = JSON.parse(body)
|
664
|
+
if response['Response'].key?('Error') == false
|
665
|
+
model = DescribeNatRuleOverviewResponse.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
|
+
# DescribeResourceGroup资产中心资产树信息
|
681
|
+
|
682
|
+
# @param request: Request instance for DescribeResourceGroup.
|
683
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DescribeResourceGroupRequest`
|
684
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DescribeResourceGroupResponse`
|
685
|
+
def DescribeResourceGroup(request)
|
686
|
+
body = send_request('DescribeResourceGroup', request.serialize)
|
687
|
+
response = JSON.parse(body)
|
688
|
+
if response['Response'].key?('Error') == false
|
689
|
+
model = DescribeResourceGroupResponse.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
|
+
# DescribeResourceGroupNew资产中心资产树信息
|
705
|
+
|
706
|
+
# @param request: Request instance for DescribeResourceGroupNew.
|
707
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DescribeResourceGroupNewRequest`
|
708
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DescribeResourceGroupNewResponse`
|
709
|
+
def DescribeResourceGroupNew(request)
|
710
|
+
body = send_request('DescribeResourceGroupNew', request.serialize)
|
711
|
+
response = JSON.parse(body)
|
712
|
+
if response['Response'].key?('Error') == false
|
713
|
+
model = DescribeResourceGroupNewResponse.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 DescribeRuleOverview.
|
731
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DescribeRuleOverviewRequest`
|
732
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DescribeRuleOverviewResponse`
|
733
|
+
def DescribeRuleOverview(request)
|
734
|
+
body = send_request('DescribeRuleOverview', request.serialize)
|
735
|
+
response = JSON.parse(body)
|
736
|
+
if response['Response'].key?('Error') == false
|
737
|
+
model = DescribeRuleOverviewResponse.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 DescribeSecurityGroupList.
|
755
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DescribeSecurityGroupListRequest`
|
756
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DescribeSecurityGroupListResponse`
|
757
|
+
def DescribeSecurityGroupList(request)
|
758
|
+
body = send_request('DescribeSecurityGroupList', request.serialize)
|
759
|
+
response = JSON.parse(body)
|
760
|
+
if response['Response'].key?('Error') == false
|
761
|
+
model = DescribeSecurityGroupListResponse.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
|
+
# DescribeSourceAsset-查询资产组全部资产信息
|
777
|
+
|
778
|
+
# @param request: Request instance for DescribeSourceAsset.
|
779
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DescribeSourceAssetRequest`
|
780
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DescribeSourceAssetResponse`
|
781
|
+
def DescribeSourceAsset(request)
|
782
|
+
body = send_request('DescribeSourceAsset', request.serialize)
|
783
|
+
response = JSON.parse(body)
|
784
|
+
if response['Response'].key?('Error') == false
|
785
|
+
model = DescribeSourceAssetResponse.new
|
786
|
+
model.deserialize(response['Response'])
|
787
|
+
model
|
788
|
+
else
|
789
|
+
code = response['Response']['Error']['Code']
|
790
|
+
message = response['Response']['Error']['Message']
|
791
|
+
reqid = response['Response']['RequestId']
|
792
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
793
|
+
end
|
794
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
795
|
+
raise e
|
796
|
+
rescue StandardError => e
|
797
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
798
|
+
end
|
799
|
+
|
800
|
+
# 防火墙开关列表
|
801
|
+
|
802
|
+
# @param request: Request instance for DescribeSwitchLists.
|
803
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DescribeSwitchListsRequest`
|
804
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DescribeSwitchListsResponse`
|
805
|
+
def DescribeSwitchLists(request)
|
806
|
+
body = send_request('DescribeSwitchLists', request.serialize)
|
807
|
+
response = JSON.parse(body)
|
808
|
+
if response['Response'].key?('Error') == false
|
809
|
+
model = DescribeSwitchListsResponse.new
|
810
|
+
model.deserialize(response['Response'])
|
811
|
+
model
|
812
|
+
else
|
813
|
+
code = response['Response']['Error']['Code']
|
814
|
+
message = response['Response']['Error']['Message']
|
815
|
+
reqid = response['Response']['RequestId']
|
816
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
817
|
+
end
|
818
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
819
|
+
raise e
|
820
|
+
rescue StandardError => e
|
821
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
822
|
+
end
|
823
|
+
|
824
|
+
# 同步资产状态查询-互联网&VPC
|
825
|
+
|
826
|
+
# @param request: Request instance for DescribeSyncAssetStatus.
|
827
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DescribeSyncAssetStatusRequest`
|
828
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DescribeSyncAssetStatusResponse`
|
829
|
+
def DescribeSyncAssetStatus(request)
|
830
|
+
body = send_request('DescribeSyncAssetStatus', request.serialize)
|
831
|
+
response = JSON.parse(body)
|
832
|
+
if response['Response'].key?('Error') == false
|
833
|
+
model = DescribeSyncAssetStatusResponse.new
|
834
|
+
model.deserialize(response['Response'])
|
835
|
+
model
|
836
|
+
else
|
837
|
+
code = response['Response']['Error']['Code']
|
838
|
+
message = response['Response']['Error']['Message']
|
839
|
+
reqid = response['Response']['RequestId']
|
840
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
841
|
+
end
|
842
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
843
|
+
raise e
|
844
|
+
rescue StandardError => e
|
845
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
846
|
+
end
|
847
|
+
|
848
|
+
# DescribeTLogInfo告警中心概况
|
849
|
+
|
850
|
+
# @param request: Request instance for DescribeTLogInfo.
|
851
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DescribeTLogInfoRequest`
|
852
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DescribeTLogInfoResponse`
|
853
|
+
def DescribeTLogInfo(request)
|
854
|
+
body = send_request('DescribeTLogInfo', request.serialize)
|
855
|
+
response = JSON.parse(body)
|
856
|
+
if response['Response'].key?('Error') == false
|
857
|
+
model = DescribeTLogInfoResponse.new
|
858
|
+
model.deserialize(response['Response'])
|
859
|
+
model
|
860
|
+
else
|
861
|
+
code = response['Response']['Error']['Code']
|
862
|
+
message = response['Response']['Error']['Message']
|
863
|
+
reqid = response['Response']['RequestId']
|
864
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
865
|
+
end
|
866
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
867
|
+
raise e
|
868
|
+
rescue StandardError => e
|
869
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
870
|
+
end
|
871
|
+
|
872
|
+
# DescribeTLogIpList告警中心IP柱形图
|
873
|
+
|
874
|
+
# @param request: Request instance for DescribeTLogIpList.
|
875
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DescribeTLogIpListRequest`
|
876
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DescribeTLogIpListResponse`
|
877
|
+
def DescribeTLogIpList(request)
|
878
|
+
body = send_request('DescribeTLogIpList', request.serialize)
|
879
|
+
response = JSON.parse(body)
|
880
|
+
if response['Response'].key?('Error') == false
|
881
|
+
model = DescribeTLogIpListResponse.new
|
882
|
+
model.deserialize(response['Response'])
|
883
|
+
model
|
884
|
+
else
|
885
|
+
code = response['Response']['Error']['Code']
|
886
|
+
message = response['Response']['Error']['Message']
|
887
|
+
reqid = response['Response']['RequestId']
|
888
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
889
|
+
end
|
890
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
891
|
+
raise e
|
892
|
+
rescue StandardError => e
|
893
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
894
|
+
end
|
895
|
+
|
896
|
+
# 查询规则表状态
|
897
|
+
|
898
|
+
# @param request: Request instance for DescribeTableStatus.
|
899
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DescribeTableStatusRequest`
|
900
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DescribeTableStatusResponse`
|
901
|
+
def DescribeTableStatus(request)
|
902
|
+
body = send_request('DescribeTableStatus', request.serialize)
|
903
|
+
response = JSON.parse(body)
|
904
|
+
if response['Response'].key?('Error') == false
|
905
|
+
model = DescribeTableStatusResponse.new
|
906
|
+
model.deserialize(response['Response'])
|
907
|
+
model
|
908
|
+
else
|
909
|
+
code = response['Response']['Error']['Code']
|
910
|
+
message = response['Response']['Error']['Message']
|
911
|
+
reqid = response['Response']['RequestId']
|
912
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
913
|
+
end
|
914
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
915
|
+
raise e
|
916
|
+
rescue StandardError => e
|
917
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
918
|
+
end
|
919
|
+
|
920
|
+
# DescribeUnHandleEventTabList 告警中心伪攻击链事件未处置接口
|
921
|
+
|
922
|
+
# @param request: Request instance for DescribeUnHandleEventTabList.
|
923
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DescribeUnHandleEventTabListRequest`
|
924
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DescribeUnHandleEventTabListResponse`
|
925
|
+
def DescribeUnHandleEventTabList(request)
|
926
|
+
body = send_request('DescribeUnHandleEventTabList', request.serialize)
|
927
|
+
response = JSON.parse(body)
|
928
|
+
if response['Response'].key?('Error') == false
|
929
|
+
model = DescribeUnHandleEventTabListResponse.new
|
930
|
+
model.deserialize(response['Response'])
|
931
|
+
model
|
932
|
+
else
|
933
|
+
code = response['Response']['Error']['Code']
|
934
|
+
message = response['Response']['Error']['Message']
|
935
|
+
reqid = response['Response']['RequestId']
|
936
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
937
|
+
end
|
938
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
939
|
+
raise e
|
940
|
+
rescue StandardError => e
|
941
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
942
|
+
end
|
943
|
+
|
944
|
+
# vpc规则列表概况
|
945
|
+
|
946
|
+
# @param request: Request instance for DescribeVpcRuleOverview.
|
947
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::DescribeVpcRuleOverviewRequest`
|
948
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::DescribeVpcRuleOverviewResponse`
|
949
|
+
def DescribeVpcRuleOverview(request)
|
950
|
+
body = send_request('DescribeVpcRuleOverview', request.serialize)
|
951
|
+
response = JSON.parse(body)
|
952
|
+
if response['Response'].key?('Error') == false
|
953
|
+
model = DescribeVpcRuleOverviewResponse.new
|
954
|
+
model.deserialize(response['Response'])
|
955
|
+
model
|
956
|
+
else
|
957
|
+
code = response['Response']['Error']['Code']
|
958
|
+
message = response['Response']['Error']['Message']
|
959
|
+
reqid = response['Response']['RequestId']
|
960
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
961
|
+
end
|
962
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
963
|
+
raise e
|
964
|
+
rescue StandardError => e
|
965
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
966
|
+
end
|
967
|
+
|
968
|
+
# 防火墙垂直扩容
|
969
|
+
|
970
|
+
# @param request: Request instance for ExpandCfwVertical.
|
971
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::ExpandCfwVerticalRequest`
|
972
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::ExpandCfwVerticalResponse`
|
973
|
+
def ExpandCfwVertical(request)
|
974
|
+
body = send_request('ExpandCfwVertical', request.serialize)
|
975
|
+
response = JSON.parse(body)
|
976
|
+
if response['Response'].key?('Error') == false
|
977
|
+
model = ExpandCfwVerticalResponse.new
|
978
|
+
model.deserialize(response['Response'])
|
979
|
+
model
|
980
|
+
else
|
981
|
+
code = response['Response']['Error']['Code']
|
982
|
+
message = response['Response']['Error']['Message']
|
983
|
+
reqid = response['Response']['RequestId']
|
984
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
985
|
+
end
|
986
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
987
|
+
raise e
|
988
|
+
rescue StandardError => e
|
989
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
990
|
+
end
|
991
|
+
|
992
|
+
# 修改规则
|
993
|
+
|
994
|
+
# @param request: Request instance for ModifyAcRule.
|
995
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::ModifyAcRuleRequest`
|
996
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::ModifyAcRuleResponse`
|
997
|
+
def ModifyAcRule(request)
|
998
|
+
body = send_request('ModifyAcRule', request.serialize)
|
999
|
+
response = JSON.parse(body)
|
1000
|
+
if response['Response'].key?('Error') == false
|
1001
|
+
model = ModifyAcRuleResponse.new
|
1002
|
+
model.deserialize(response['Response'])
|
1003
|
+
model
|
1004
|
+
else
|
1005
|
+
code = response['Response']['Error']['Code']
|
1006
|
+
message = response['Response']['Error']['Message']
|
1007
|
+
reqid = response['Response']['RequestId']
|
1008
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1009
|
+
end
|
1010
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1011
|
+
raise e
|
1012
|
+
rescue StandardError => e
|
1013
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1014
|
+
end
|
1015
|
+
|
1016
|
+
# 互联网边界防火墙一键开关
|
1017
|
+
|
1018
|
+
# @param request: Request instance for ModifyAllPublicIPSwitchStatus.
|
1019
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::ModifyAllPublicIPSwitchStatusRequest`
|
1020
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::ModifyAllPublicIPSwitchStatusResponse`
|
1021
|
+
def ModifyAllPublicIPSwitchStatus(request)
|
1022
|
+
body = send_request('ModifyAllPublicIPSwitchStatus', request.serialize)
|
1023
|
+
response = JSON.parse(body)
|
1024
|
+
if response['Response'].key?('Error') == false
|
1025
|
+
model = ModifyAllPublicIPSwitchStatusResponse.new
|
1026
|
+
model.deserialize(response['Response'])
|
1027
|
+
model
|
1028
|
+
else
|
1029
|
+
code = response['Response']['Error']['Code']
|
1030
|
+
message = response['Response']['Error']['Message']
|
1031
|
+
reqid = response['Response']['RequestId']
|
1032
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1033
|
+
end
|
1034
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1035
|
+
raise e
|
1036
|
+
rescue StandardError => e
|
1037
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1038
|
+
end
|
1039
|
+
|
1040
|
+
# 启用停用全部规则
|
1041
|
+
|
1042
|
+
# @param request: Request instance for ModifyAllRuleStatus.
|
1043
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::ModifyAllRuleStatusRequest`
|
1044
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::ModifyAllRuleStatusResponse`
|
1045
|
+
def ModifyAllRuleStatus(request)
|
1046
|
+
body = send_request('ModifyAllRuleStatus', request.serialize)
|
1047
|
+
response = JSON.parse(body)
|
1048
|
+
if response['Response'].key?('Error') == false
|
1049
|
+
model = ModifyAllRuleStatusResponse.new
|
1050
|
+
model.deserialize(response['Response'])
|
1051
|
+
model
|
1052
|
+
else
|
1053
|
+
code = response['Response']['Error']['Code']
|
1054
|
+
message = response['Response']['Error']['Message']
|
1055
|
+
reqid = response['Response']['RequestId']
|
1056
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1057
|
+
end
|
1058
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1059
|
+
raise e
|
1060
|
+
rescue StandardError => e
|
1061
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1062
|
+
end
|
1063
|
+
|
1064
|
+
# 一键开启和关闭
|
1065
|
+
|
1066
|
+
# @param request: Request instance for ModifyAllSwitchStatus.
|
1067
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::ModifyAllSwitchStatusRequest`
|
1068
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::ModifyAllSwitchStatusResponse`
|
1069
|
+
def ModifyAllSwitchStatus(request)
|
1070
|
+
body = send_request('ModifyAllSwitchStatus', request.serialize)
|
1071
|
+
response = JSON.parse(body)
|
1072
|
+
if response['Response'].key?('Error') == false
|
1073
|
+
model = ModifyAllSwitchStatusResponse.new
|
1074
|
+
model.deserialize(response['Response'])
|
1075
|
+
model
|
1076
|
+
else
|
1077
|
+
code = response['Response']['Error']['Code']
|
1078
|
+
message = response['Response']['Error']['Message']
|
1079
|
+
reqid = response['Response']['RequestId']
|
1080
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1081
|
+
end
|
1082
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1083
|
+
raise e
|
1084
|
+
rescue StandardError => e
|
1085
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1086
|
+
end
|
1087
|
+
|
1088
|
+
# VPC防火墙一键开关
|
1089
|
+
|
1090
|
+
# @param request: Request instance for ModifyAllVPCSwitchStatus.
|
1091
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::ModifyAllVPCSwitchStatusRequest`
|
1092
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::ModifyAllVPCSwitchStatusResponse`
|
1093
|
+
def ModifyAllVPCSwitchStatus(request)
|
1094
|
+
body = send_request('ModifyAllVPCSwitchStatus', request.serialize)
|
1095
|
+
response = JSON.parse(body)
|
1096
|
+
if response['Response'].key?('Error') == false
|
1097
|
+
model = ModifyAllVPCSwitchStatusResponse.new
|
1098
|
+
model.deserialize(response['Response'])
|
1099
|
+
model
|
1100
|
+
else
|
1101
|
+
code = response['Response']['Error']['Code']
|
1102
|
+
message = response['Response']['Error']['Message']
|
1103
|
+
reqid = response['Response']['RequestId']
|
1104
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1105
|
+
end
|
1106
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1107
|
+
raise e
|
1108
|
+
rescue StandardError => e
|
1109
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1110
|
+
end
|
1111
|
+
|
1112
|
+
# 资产扫描
|
1113
|
+
|
1114
|
+
# @param request: Request instance for ModifyAssetScan.
|
1115
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::ModifyAssetScanRequest`
|
1116
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::ModifyAssetScanResponse`
|
1117
|
+
def ModifyAssetScan(request)
|
1118
|
+
body = send_request('ModifyAssetScan', request.serialize)
|
1119
|
+
response = JSON.parse(body)
|
1120
|
+
if response['Response'].key?('Error') == false
|
1121
|
+
model = ModifyAssetScanResponse.new
|
1122
|
+
model.deserialize(response['Response'])
|
1123
|
+
model
|
1124
|
+
else
|
1125
|
+
code = response['Response']['Error']['Code']
|
1126
|
+
message = response['Response']['Error']['Message']
|
1127
|
+
reqid = response['Response']['RequestId']
|
1128
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1129
|
+
end
|
1130
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1131
|
+
raise e
|
1132
|
+
rescue StandardError => e
|
1133
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1134
|
+
end
|
1135
|
+
|
1136
|
+
# 支持对拦截列表、忽略列表如下操作:
|
1137
|
+
# 批量增加拦截IP、忽略IP/域名
|
1138
|
+
# 批量删除拦截IP、忽略IP/域名
|
1139
|
+
# 批量修改拦截IP、忽略IP/域名生效事件
|
1140
|
+
|
1141
|
+
# @param request: Request instance for ModifyBlockIgnoreList.
|
1142
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::ModifyBlockIgnoreListRequest`
|
1143
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::ModifyBlockIgnoreListResponse`
|
1144
|
+
def ModifyBlockIgnoreList(request)
|
1145
|
+
body = send_request('ModifyBlockIgnoreList', request.serialize)
|
1146
|
+
response = JSON.parse(body)
|
1147
|
+
if response['Response'].key?('Error') == false
|
1148
|
+
model = ModifyBlockIgnoreListResponse.new
|
1149
|
+
model.deserialize(response['Response'])
|
1150
|
+
model
|
1151
|
+
else
|
1152
|
+
code = response['Response']['Error']['Code']
|
1153
|
+
message = response['Response']['Error']['Message']
|
1154
|
+
reqid = response['Response']['RequestId']
|
1155
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1156
|
+
end
|
1157
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1158
|
+
raise e
|
1159
|
+
rescue StandardError => e
|
1160
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1161
|
+
end
|
1162
|
+
|
1163
|
+
# ModifyBlockTop取消置顶接口
|
1164
|
+
|
1165
|
+
# @param request: Request instance for ModifyBlockTop.
|
1166
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::ModifyBlockTopRequest`
|
1167
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::ModifyBlockTopResponse`
|
1168
|
+
def ModifyBlockTop(request)
|
1169
|
+
body = send_request('ModifyBlockTop', request.serialize)
|
1170
|
+
response = JSON.parse(body)
|
1171
|
+
if response['Response'].key?('Error') == false
|
1172
|
+
model = ModifyBlockTopResponse.new
|
1173
|
+
model.deserialize(response['Response'])
|
1174
|
+
model
|
1175
|
+
else
|
1176
|
+
code = response['Response']['Error']['Code']
|
1177
|
+
message = response['Response']['Error']['Message']
|
1178
|
+
reqid = response['Response']['RequestId']
|
1179
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1180
|
+
end
|
1181
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1182
|
+
raise e
|
1183
|
+
rescue StandardError => e
|
1184
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1185
|
+
end
|
1186
|
+
|
1187
|
+
# 修改单个防火墙开关
|
1188
|
+
|
1189
|
+
# @param request: Request instance for ModifyItemSwitchStatus.
|
1190
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::ModifyItemSwitchStatusRequest`
|
1191
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::ModifyItemSwitchStatusResponse`
|
1192
|
+
def ModifyItemSwitchStatus(request)
|
1193
|
+
body = send_request('ModifyItemSwitchStatus', request.serialize)
|
1194
|
+
response = JSON.parse(body)
|
1195
|
+
if response['Response'].key?('Error') == false
|
1196
|
+
model = ModifyItemSwitchStatusResponse.new
|
1197
|
+
model.deserialize(response['Response'])
|
1198
|
+
model
|
1199
|
+
else
|
1200
|
+
code = response['Response']['Error']['Code']
|
1201
|
+
message = response['Response']['Error']['Message']
|
1202
|
+
reqid = response['Response']['RequestId']
|
1203
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1204
|
+
end
|
1205
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1206
|
+
raise e
|
1207
|
+
rescue StandardError => e
|
1208
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1209
|
+
end
|
1210
|
+
|
1211
|
+
# 防火墙实例重新选择vpc或nat
|
1212
|
+
|
1213
|
+
# @param request: Request instance for ModifyNatFwReSelect.
|
1214
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::ModifyNatFwReSelectRequest`
|
1215
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::ModifyNatFwReSelectResponse`
|
1216
|
+
def ModifyNatFwReSelect(request)
|
1217
|
+
body = send_request('ModifyNatFwReSelect', request.serialize)
|
1218
|
+
response = JSON.parse(body)
|
1219
|
+
if response['Response'].key?('Error') == false
|
1220
|
+
model = ModifyNatFwReSelectResponse.new
|
1221
|
+
model.deserialize(response['Response'])
|
1222
|
+
model
|
1223
|
+
else
|
1224
|
+
code = response['Response']['Error']['Code']
|
1225
|
+
message = response['Response']['Error']['Message']
|
1226
|
+
reqid = response['Response']['RequestId']
|
1227
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1228
|
+
end
|
1229
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1230
|
+
raise e
|
1231
|
+
rescue StandardError => e
|
1232
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1233
|
+
end
|
1234
|
+
|
1235
|
+
# 修改NAT防火墙开关
|
1236
|
+
|
1237
|
+
# @param request: Request instance for ModifyNatFwSwitch.
|
1238
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::ModifyNatFwSwitchRequest`
|
1239
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::ModifyNatFwSwitchResponse`
|
1240
|
+
def ModifyNatFwSwitch(request)
|
1241
|
+
body = send_request('ModifyNatFwSwitch', request.serialize)
|
1242
|
+
response = JSON.parse(body)
|
1243
|
+
if response['Response'].key?('Error') == false
|
1244
|
+
model = ModifyNatFwSwitchResponse.new
|
1245
|
+
model.deserialize(response['Response'])
|
1246
|
+
model
|
1247
|
+
else
|
1248
|
+
code = response['Response']['Error']['Code']
|
1249
|
+
message = response['Response']['Error']['Message']
|
1250
|
+
reqid = response['Response']['RequestId']
|
1251
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1252
|
+
end
|
1253
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1254
|
+
raise e
|
1255
|
+
rescue StandardError => e
|
1256
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1257
|
+
end
|
1258
|
+
|
1259
|
+
# nat 防火墙VPC DNS 开关切换
|
1260
|
+
|
1261
|
+
# @param request: Request instance for ModifyNatFwVpcDnsSwitch.
|
1262
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::ModifyNatFwVpcDnsSwitchRequest`
|
1263
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::ModifyNatFwVpcDnsSwitchResponse`
|
1264
|
+
def ModifyNatFwVpcDnsSwitch(request)
|
1265
|
+
body = send_request('ModifyNatFwVpcDnsSwitch', request.serialize)
|
1266
|
+
response = JSON.parse(body)
|
1267
|
+
if response['Response'].key?('Error') == false
|
1268
|
+
model = ModifyNatFwVpcDnsSwitchResponse.new
|
1269
|
+
model.deserialize(response['Response'])
|
1270
|
+
model
|
1271
|
+
else
|
1272
|
+
code = response['Response']['Error']['Code']
|
1273
|
+
message = response['Response']['Error']['Message']
|
1274
|
+
reqid = response['Response']['RequestId']
|
1275
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1276
|
+
end
|
1277
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1278
|
+
raise e
|
1279
|
+
rescue StandardError => e
|
1280
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1281
|
+
end
|
1282
|
+
|
1283
|
+
# 单个修改互联网边界防火墙开关
|
1284
|
+
|
1285
|
+
# @param request: Request instance for ModifyPublicIPSwitchStatus.
|
1286
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::ModifyPublicIPSwitchStatusRequest`
|
1287
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::ModifyPublicIPSwitchStatusResponse`
|
1288
|
+
def ModifyPublicIPSwitchStatus(request)
|
1289
|
+
body = send_request('ModifyPublicIPSwitchStatus', request.serialize)
|
1290
|
+
response = JSON.parse(body)
|
1291
|
+
if response['Response'].key?('Error') == false
|
1292
|
+
model = ModifyPublicIPSwitchStatusResponse.new
|
1293
|
+
model.deserialize(response['Response'])
|
1294
|
+
model
|
1295
|
+
else
|
1296
|
+
code = response['Response']['Error']['Code']
|
1297
|
+
message = response['Response']['Error']['Message']
|
1298
|
+
reqid = response['Response']['RequestId']
|
1299
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1300
|
+
end
|
1301
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1302
|
+
raise e
|
1303
|
+
rescue StandardError => e
|
1304
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1305
|
+
end
|
1306
|
+
|
1307
|
+
# ModifyResourceGroup-资产中心资产组信息修改
|
1308
|
+
|
1309
|
+
|
1310
|
+
# @param request: Request instance for ModifyResourceGroup.
|
1311
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::ModifyResourceGroupRequest`
|
1312
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::ModifyResourceGroupResponse`
|
1313
|
+
def ModifyResourceGroup(request)
|
1314
|
+
body = send_request('ModifyResourceGroup', request.serialize)
|
1315
|
+
response = JSON.parse(body)
|
1316
|
+
if response['Response'].key?('Error') == false
|
1317
|
+
model = ModifyResourceGroupResponse.new
|
1318
|
+
model.deserialize(response['Response'])
|
1319
|
+
model
|
1320
|
+
else
|
1321
|
+
code = response['Response']['Error']['Code']
|
1322
|
+
message = response['Response']['Error']['Message']
|
1323
|
+
reqid = response['Response']['RequestId']
|
1324
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1325
|
+
end
|
1326
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1327
|
+
raise e
|
1328
|
+
rescue StandardError => e
|
1329
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1330
|
+
end
|
1331
|
+
|
1332
|
+
# 启用停用全部规则
|
1333
|
+
|
1334
|
+
# @param request: Request instance for ModifySecurityGroupAllRuleStatus.
|
1335
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::ModifySecurityGroupAllRuleStatusRequest`
|
1336
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::ModifySecurityGroupAllRuleStatusResponse`
|
1337
|
+
def ModifySecurityGroupAllRuleStatus(request)
|
1338
|
+
body = send_request('ModifySecurityGroupAllRuleStatus', request.serialize)
|
1339
|
+
response = JSON.parse(body)
|
1340
|
+
if response['Response'].key?('Error') == false
|
1341
|
+
model = ModifySecurityGroupAllRuleStatusResponse.new
|
1342
|
+
model.deserialize(response['Response'])
|
1343
|
+
model
|
1344
|
+
else
|
1345
|
+
code = response['Response']['Error']['Code']
|
1346
|
+
message = response['Response']['Error']['Message']
|
1347
|
+
reqid = response['Response']['RequestId']
|
1348
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1349
|
+
end
|
1350
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1351
|
+
raise e
|
1352
|
+
rescue StandardError => e
|
1353
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1354
|
+
end
|
1355
|
+
|
1356
|
+
# 启用停用单条企业安全组规则
|
1357
|
+
|
1358
|
+
# @param request: Request instance for ModifySecurityGroupItemRuleStatus.
|
1359
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::ModifySecurityGroupItemRuleStatusRequest`
|
1360
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::ModifySecurityGroupItemRuleStatusResponse`
|
1361
|
+
def ModifySecurityGroupItemRuleStatus(request)
|
1362
|
+
body = send_request('ModifySecurityGroupItemRuleStatus', request.serialize)
|
1363
|
+
response = JSON.parse(body)
|
1364
|
+
if response['Response'].key?('Error') == false
|
1365
|
+
model = ModifySecurityGroupItemRuleStatusResponse.new
|
1366
|
+
model.deserialize(response['Response'])
|
1367
|
+
model
|
1368
|
+
else
|
1369
|
+
code = response['Response']['Error']['Code']
|
1370
|
+
message = response['Response']['Error']['Message']
|
1371
|
+
reqid = response['Response']['RequestId']
|
1372
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1373
|
+
end
|
1374
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1375
|
+
raise e
|
1376
|
+
rescue StandardError => e
|
1377
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1378
|
+
end
|
1379
|
+
|
1380
|
+
# 编辑单条安全组规则
|
1381
|
+
|
1382
|
+
# @param request: Request instance for ModifySecurityGroupRule.
|
1383
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::ModifySecurityGroupRuleRequest`
|
1384
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::ModifySecurityGroupRuleResponse`
|
1385
|
+
def ModifySecurityGroupRule(request)
|
1386
|
+
body = send_request('ModifySecurityGroupRule', request.serialize)
|
1387
|
+
response = JSON.parse(body)
|
1388
|
+
if response['Response'].key?('Error') == false
|
1389
|
+
model = ModifySecurityGroupRuleResponse.new
|
1390
|
+
model.deserialize(response['Response'])
|
1391
|
+
model
|
1392
|
+
else
|
1393
|
+
code = response['Response']['Error']['Code']
|
1394
|
+
message = response['Response']['Error']['Message']
|
1395
|
+
reqid = response['Response']['RequestId']
|
1396
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1397
|
+
end
|
1398
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1399
|
+
raise e
|
1400
|
+
rescue StandardError => e
|
1401
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1402
|
+
end
|
1403
|
+
|
1404
|
+
# 企业安全组规则快速排序
|
1405
|
+
|
1406
|
+
# @param request: Request instance for ModifySecurityGroupSequenceRules.
|
1407
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::ModifySecurityGroupSequenceRulesRequest`
|
1408
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::ModifySecurityGroupSequenceRulesResponse`
|
1409
|
+
def ModifySecurityGroupSequenceRules(request)
|
1410
|
+
body = send_request('ModifySecurityGroupSequenceRules', request.serialize)
|
1411
|
+
response = JSON.parse(body)
|
1412
|
+
if response['Response'].key?('Error') == false
|
1413
|
+
model = ModifySecurityGroupSequenceRulesResponse.new
|
1414
|
+
model.deserialize(response['Response'])
|
1415
|
+
model
|
1416
|
+
else
|
1417
|
+
code = response['Response']['Error']['Code']
|
1418
|
+
message = response['Response']['Error']['Message']
|
1419
|
+
reqid = response['Response']['RequestId']
|
1420
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1421
|
+
end
|
1422
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1423
|
+
raise e
|
1424
|
+
rescue StandardError => e
|
1425
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1426
|
+
end
|
1427
|
+
|
1428
|
+
# 修改规则执行顺序
|
1429
|
+
|
1430
|
+
# @param request: Request instance for ModifySequenceRules.
|
1431
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::ModifySequenceRulesRequest`
|
1432
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::ModifySequenceRulesResponse`
|
1433
|
+
def ModifySequenceRules(request)
|
1434
|
+
body = send_request('ModifySequenceRules', request.serialize)
|
1435
|
+
response = JSON.parse(body)
|
1436
|
+
if response['Response'].key?('Error') == false
|
1437
|
+
model = ModifySequenceRulesResponse.new
|
1438
|
+
model.deserialize(response['Response'])
|
1439
|
+
model
|
1440
|
+
else
|
1441
|
+
code = response['Response']['Error']['Code']
|
1442
|
+
message = response['Response']['Error']['Message']
|
1443
|
+
reqid = response['Response']['RequestId']
|
1444
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1445
|
+
end
|
1446
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1447
|
+
raise e
|
1448
|
+
rescue StandardError => e
|
1449
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1450
|
+
end
|
1451
|
+
|
1452
|
+
# 修改规则表状态
|
1453
|
+
|
1454
|
+
# @param request: Request instance for ModifyTableStatus.
|
1455
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::ModifyTableStatusRequest`
|
1456
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::ModifyTableStatusResponse`
|
1457
|
+
def ModifyTableStatus(request)
|
1458
|
+
body = send_request('ModifyTableStatus', request.serialize)
|
1459
|
+
response = JSON.parse(body)
|
1460
|
+
if response['Response'].key?('Error') == false
|
1461
|
+
model = ModifyTableStatusResponse.new
|
1462
|
+
model.deserialize(response['Response'])
|
1463
|
+
model
|
1464
|
+
else
|
1465
|
+
code = response['Response']['Error']['Code']
|
1466
|
+
message = response['Response']['Error']['Message']
|
1467
|
+
reqid = response['Response']['RequestId']
|
1468
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1469
|
+
end
|
1470
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1471
|
+
raise e
|
1472
|
+
rescue StandardError => e
|
1473
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1474
|
+
end
|
1475
|
+
|
1476
|
+
# 单个修改VPC火墙开关
|
1477
|
+
|
1478
|
+
# @param request: Request instance for ModifyVPCSwitchStatus.
|
1479
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::ModifyVPCSwitchStatusRequest`
|
1480
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::ModifyVPCSwitchStatusResponse`
|
1481
|
+
def ModifyVPCSwitchStatus(request)
|
1482
|
+
body = send_request('ModifyVPCSwitchStatus', request.serialize)
|
1483
|
+
response = JSON.parse(body)
|
1484
|
+
if response['Response'].key?('Error') == false
|
1485
|
+
model = ModifyVPCSwitchStatusResponse.new
|
1486
|
+
model.deserialize(response['Response'])
|
1487
|
+
model
|
1488
|
+
else
|
1489
|
+
code = response['Response']['Error']['Code']
|
1490
|
+
message = response['Response']['Error']['Message']
|
1491
|
+
reqid = response['Response']['RequestId']
|
1492
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1493
|
+
end
|
1494
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1495
|
+
raise e
|
1496
|
+
rescue StandardError => e
|
1497
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1498
|
+
end
|
1499
|
+
|
1500
|
+
# 删除互联网边界规则
|
1501
|
+
|
1502
|
+
# @param request: Request instance for RemoveAcRule.
|
1503
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::RemoveAcRuleRequest`
|
1504
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::RemoveAcRuleResponse`
|
1505
|
+
def RemoveAcRule(request)
|
1506
|
+
body = send_request('RemoveAcRule', request.serialize)
|
1507
|
+
response = JSON.parse(body)
|
1508
|
+
if response['Response'].key?('Error') == false
|
1509
|
+
model = RemoveAcRuleResponse.new
|
1510
|
+
model.deserialize(response['Response'])
|
1511
|
+
model
|
1512
|
+
else
|
1513
|
+
code = response['Response']['Error']['Code']
|
1514
|
+
message = response['Response']['Error']['Message']
|
1515
|
+
reqid = response['Response']['RequestId']
|
1516
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1517
|
+
end
|
1518
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1519
|
+
raise e
|
1520
|
+
rescue StandardError => e
|
1521
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1522
|
+
end
|
1523
|
+
|
1524
|
+
# 同步资产-互联网&VPC
|
1525
|
+
|
1526
|
+
# @param request: Request instance for RunSyncAsset.
|
1527
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::RunSyncAssetRequest`
|
1528
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::RunSyncAssetResponse`
|
1529
|
+
def RunSyncAsset(request)
|
1530
|
+
body = send_request('RunSyncAsset', request.serialize)
|
1531
|
+
response = JSON.parse(body)
|
1532
|
+
if response['Response'].key?('Error') == false
|
1533
|
+
model = RunSyncAssetResponse.new
|
1534
|
+
model.deserialize(response['Response'])
|
1535
|
+
model
|
1536
|
+
else
|
1537
|
+
code = response['Response']['Error']['Code']
|
1538
|
+
message = response['Response']['Error']['Message']
|
1539
|
+
reqid = response['Response']['RequestId']
|
1540
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1541
|
+
end
|
1542
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1543
|
+
raise e
|
1544
|
+
rescue StandardError => e
|
1545
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1546
|
+
end
|
1547
|
+
|
1548
|
+
# 配置防火墙Dnat规则
|
1549
|
+
|
1550
|
+
# @param request: Request instance for SetNatFwDnatRule.
|
1551
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::SetNatFwDnatRuleRequest`
|
1552
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::SetNatFwDnatRuleResponse`
|
1553
|
+
def SetNatFwDnatRule(request)
|
1554
|
+
body = send_request('SetNatFwDnatRule', request.serialize)
|
1555
|
+
response = JSON.parse(body)
|
1556
|
+
if response['Response'].key?('Error') == false
|
1557
|
+
model = SetNatFwDnatRuleResponse.new
|
1558
|
+
model.deserialize(response['Response'])
|
1559
|
+
model
|
1560
|
+
else
|
1561
|
+
code = response['Response']['Error']['Code']
|
1562
|
+
message = response['Response']['Error']['Message']
|
1563
|
+
reqid = response['Response']['RequestId']
|
1564
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1565
|
+
end
|
1566
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1567
|
+
raise e
|
1568
|
+
rescue StandardError => e
|
1569
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1570
|
+
end
|
1571
|
+
|
1572
|
+
# 设置防火墙实例弹性公网ip,目前仅支持新增模式的防火墙实例
|
1573
|
+
|
1574
|
+
# @param request: Request instance for SetNatFwEip.
|
1575
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::SetNatFwEipRequest`
|
1576
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::SetNatFwEipResponse`
|
1577
|
+
def SetNatFwEip(request)
|
1578
|
+
body = send_request('SetNatFwEip', request.serialize)
|
1579
|
+
response = JSON.parse(body)
|
1580
|
+
if response['Response'].key?('Error') == false
|
1581
|
+
model = SetNatFwEipResponse.new
|
1582
|
+
model.deserialize(response['Response'])
|
1583
|
+
model
|
1584
|
+
else
|
1585
|
+
code = response['Response']['Error']['Code']
|
1586
|
+
message = response['Response']['Error']['Message']
|
1587
|
+
reqid = response['Response']['RequestId']
|
1588
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1589
|
+
end
|
1590
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1591
|
+
raise e
|
1592
|
+
rescue StandardError => e
|
1593
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1594
|
+
end
|
1595
|
+
|
1596
|
+
# 中止安全组规则下发
|
1597
|
+
|
1598
|
+
# @param request: Request instance for StopSecurityGroupRuleDispatch.
|
1599
|
+
# @type request: :class:`Tencentcloud::cfw::V20190904::StopSecurityGroupRuleDispatchRequest`
|
1600
|
+
# @rtype: :class:`Tencentcloud::cfw::V20190904::StopSecurityGroupRuleDispatchResponse`
|
1601
|
+
def StopSecurityGroupRuleDispatch(request)
|
1602
|
+
body = send_request('StopSecurityGroupRuleDispatch', request.serialize)
|
1603
|
+
response = JSON.parse(body)
|
1604
|
+
if response['Response'].key?('Error') == false
|
1605
|
+
model = StopSecurityGroupRuleDispatchResponse.new
|
1606
|
+
model.deserialize(response['Response'])
|
1607
|
+
model
|
1608
|
+
else
|
1609
|
+
code = response['Response']['Error']['Code']
|
1610
|
+
message = response['Response']['Error']['Message']
|
1611
|
+
reqid = response['Response']['RequestId']
|
1612
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1613
|
+
end
|
1614
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1615
|
+
raise e
|
1616
|
+
rescue StandardError => e
|
1617
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1618
|
+
end
|
1619
|
+
|
1620
|
+
|
1621
|
+
end
|
1622
|
+
end
|
1623
|
+
end
|
1624
|
+
end
|