Class: TencentCloud::Antiddos::V20200309::Client

Inherits:
Common::AbstractClient
  • Object
show all
Defined in:
lib/v20200309/client.rb

Instance Method Summary collapse

Constructor Details

#initialize(credential, region, profile = nil) ⇒ Client

Returns a new instance of Client.



24
25
26
27
28
29
# File 'lib/v20200309/client.rb', line 24

def initialize(credential, region, profile = nil)
    api_version = '2020-03-09'
    api_endpoint = 'antiddos.tencentcloudapi.com'
    sdk_version = 'ANTIDDOS_' + File.read(File.expand_path('../VERSION', __dir__)).strip
    super(credential, region, api_version, api_endpoint, sdk_version, profile)
end

Instance Method Details

#AssociateDDoSEipAddress(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::AssociateDDoSEipAddressResponse`

Parameters:

  • request:

    Request instance for AssociateDDoSEipAddress.



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/v20200309/client.rb', line 37

def AssociateDDoSEipAddress(request)
  body = send_request('AssociateDDoSEipAddress', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = AssociateDDoSEipAddressResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#AssociateDDoSEipLoadBalancer(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::AssociateDDoSEipLoadBalancerResponse`

Parameters:

  • request:

    Request instance for AssociateDDoSEipLoadBalancer.



61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# File 'lib/v20200309/client.rb', line 61

def AssociateDDoSEipLoadBalancer(request)
  body = send_request('AssociateDDoSEipLoadBalancer', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = AssociateDDoSEipLoadBalancerResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#CreateBlackWhiteIpList(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::CreateBlackWhiteIpListResponse`

Parameters:

  • request:

    Request instance for CreateBlackWhiteIpList.



85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'lib/v20200309/client.rb', line 85

def CreateBlackWhiteIpList(request)
  body = send_request('CreateBlackWhiteIpList', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = CreateBlackWhiteIpListResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#CreateBoundIP(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::CreateBoundIPResponse`

Parameters:

  • request:

    Request instance for CreateBoundIP.



109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# File 'lib/v20200309/client.rb', line 109

def CreateBoundIP(request)
  body = send_request('CreateBoundIP', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = CreateBoundIPResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#CreateCcBlackWhiteIpList(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::CreateCcBlackWhiteIpListResponse`

Parameters:

  • request:

    Request instance for CreateCcBlackWhiteIpList.



181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
# File 'lib/v20200309/client.rb', line 181

def CreateCcBlackWhiteIpList(request)
  body = send_request('CreateCcBlackWhiteIpList', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = CreateCcBlackWhiteIpListResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#CreateCcGeoIPBlockConfig(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::CreateCcGeoIPBlockConfigResponse`

Parameters:

  • request:

    Request instance for CreateCcGeoIPBlockConfig.



205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
# File 'lib/v20200309/client.rb', line 205

def CreateCcGeoIPBlockConfig(request)
  body = send_request('CreateCcGeoIPBlockConfig', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = CreateCcGeoIPBlockConfigResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#CreateCCPrecisionPolicy(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::CreateCCPrecisionPolicyResponse`

Parameters:

  • request:

    Request instance for CreateCCPrecisionPolicy.



133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
# File 'lib/v20200309/client.rb', line 133

def CreateCCPrecisionPolicy(request)
  body = send_request('CreateCCPrecisionPolicy', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = CreateCCPrecisionPolicyResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#CreateCCReqLimitPolicy(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::CreateCCReqLimitPolicyResponse`

Parameters:

  • request:

    Request instance for CreateCCReqLimitPolicy.



157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
# File 'lib/v20200309/client.rb', line 157

def CreateCCReqLimitPolicy(request)
  body = send_request('CreateCCReqLimitPolicy', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = CreateCCReqLimitPolicyResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#CreateDDoSAI(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::CreateDDoSAIResponse`

Parameters:

  • request:

    Request instance for CreateDDoSAI.



229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
# File 'lib/v20200309/client.rb', line 229

def CreateDDoSAI(request)
  body = send_request('CreateDDoSAI', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = CreateDDoSAIResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#CreateDDoSBlackWhiteIpList(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::CreateDDoSBlackWhiteIpListResponse`

Parameters:

  • request:

    Request instance for CreateDDoSBlackWhiteIpList.



253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
# File 'lib/v20200309/client.rb', line 253

def CreateDDoSBlackWhiteIpList(request)
  body = send_request('CreateDDoSBlackWhiteIpList', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = CreateDDoSBlackWhiteIpListResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#CreateDDoSConnectLimit(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::CreateDDoSConnectLimitResponse`

Parameters:

  • request:

    Request instance for CreateDDoSConnectLimit.



277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
# File 'lib/v20200309/client.rb', line 277

def CreateDDoSConnectLimit(request)
  body = send_request('CreateDDoSConnectLimit', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = CreateDDoSConnectLimitResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#CreateDDoSGeoIPBlockConfig(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::CreateDDoSGeoIPBlockConfigResponse`

Parameters:

  • request:

    Request instance for CreateDDoSGeoIPBlockConfig.



301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
# File 'lib/v20200309/client.rb', line 301

def CreateDDoSGeoIPBlockConfig(request)
  body = send_request('CreateDDoSGeoIPBlockConfig', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = CreateDDoSGeoIPBlockConfigResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#CreateDDoSSpeedLimitConfig(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::CreateDDoSSpeedLimitConfigResponse`

Parameters:

  • request:

    Request instance for CreateDDoSSpeedLimitConfig.



325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
# File 'lib/v20200309/client.rb', line 325

def CreateDDoSSpeedLimitConfig(request)
  body = send_request('CreateDDoSSpeedLimitConfig', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = CreateDDoSSpeedLimitConfigResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#CreateDefaultAlarmThreshold(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::CreateDefaultAlarmThresholdResponse`

Parameters:

  • request:

    Request instance for CreateDefaultAlarmThreshold.



349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
# File 'lib/v20200309/client.rb', line 349

def CreateDefaultAlarmThreshold(request)
  body = send_request('CreateDefaultAlarmThreshold', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = CreateDefaultAlarmThresholdResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#CreateIPAlarmThresholdConfig(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::CreateIPAlarmThresholdConfigResponse`

Parameters:

  • request:

    Request instance for CreateIPAlarmThresholdConfig.



373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
# File 'lib/v20200309/client.rb', line 373

def CreateIPAlarmThresholdConfig(request)
  body = send_request('CreateIPAlarmThresholdConfig', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = CreateIPAlarmThresholdConfigResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#CreateL7RuleCerts(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::CreateL7RuleCertsResponse`

Parameters:

  • request:

    Request instance for CreateL7RuleCerts.



397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
# File 'lib/v20200309/client.rb', line 397

def CreateL7RuleCerts(request)
  body = send_request('CreateL7RuleCerts', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = CreateL7RuleCertsResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#CreateNewL7Rules(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::CreateNewL7RulesResponse`

Parameters:

  • request:

    Request instance for CreateNewL7Rules.



421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
# File 'lib/v20200309/client.rb', line 421

def CreateNewL7Rules(request)
  body = send_request('CreateNewL7Rules', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = CreateNewL7RulesResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#CreatePacketFilterConfig(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::CreatePacketFilterConfigResponse`

Parameters:

  • request:

    Request instance for CreatePacketFilterConfig.



445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
# File 'lib/v20200309/client.rb', line 445

def CreatePacketFilterConfig(request)
  body = send_request('CreatePacketFilterConfig', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = CreatePacketFilterConfigResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#CreatePortAclConfig(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::CreatePortAclConfigResponse`

Parameters:

  • request:

    Request instance for CreatePortAclConfig.



469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
# File 'lib/v20200309/client.rb', line 469

def CreatePortAclConfig(request)
  body = send_request('CreatePortAclConfig', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = CreatePortAclConfigResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#CreatePortAclConfigList(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::CreatePortAclConfigListResponse`

Parameters:

  • request:

    Request instance for CreatePortAclConfigList.



493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
# File 'lib/v20200309/client.rb', line 493

def CreatePortAclConfigList(request)
  body = send_request('CreatePortAclConfigList', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = CreatePortAclConfigListResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#CreateProtocolBlockConfig(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::CreateProtocolBlockConfigResponse`

Parameters:

  • request:

    Request instance for CreateProtocolBlockConfig.



517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
# File 'lib/v20200309/client.rb', line 517

def CreateProtocolBlockConfig(request)
  body = send_request('CreateProtocolBlockConfig', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = CreateProtocolBlockConfigResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#CreateSchedulingDomain(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::CreateSchedulingDomainResponse`

Parameters:

  • request:

    Request instance for CreateSchedulingDomain.



541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
# File 'lib/v20200309/client.rb', line 541

def CreateSchedulingDomain(request)
  body = send_request('CreateSchedulingDomain', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = CreateSchedulingDomainResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#CreateWaterPrintConfig(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::CreateWaterPrintConfigResponse`

Parameters:

  • request:

    Request instance for CreateWaterPrintConfig.



565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
# File 'lib/v20200309/client.rb', line 565

def CreateWaterPrintConfig(request)
  body = send_request('CreateWaterPrintConfig', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = CreateWaterPrintConfigResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#CreateWaterPrintKey(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::CreateWaterPrintKeyResponse`

Parameters:

  • request:

    Request instance for CreateWaterPrintKey.



589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
# File 'lib/v20200309/client.rb', line 589

def CreateWaterPrintKey(request)
  body = send_request('CreateWaterPrintKey', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = CreateWaterPrintKeyResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DeleteCcBlackWhiteIpList(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DeleteCcBlackWhiteIpListResponse`

Parameters:

  • request:

    Request instance for DeleteCcBlackWhiteIpList.



709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
# File 'lib/v20200309/client.rb', line 709

def DeleteCcBlackWhiteIpList(request)
  body = send_request('DeleteCcBlackWhiteIpList', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DeleteCcBlackWhiteIpListResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DeleteCcGeoIPBlockConfig(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DeleteCcGeoIPBlockConfigResponse`

Parameters:

  • request:

    Request instance for DeleteCcGeoIPBlockConfig.



733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
# File 'lib/v20200309/client.rb', line 733

def DeleteCcGeoIPBlockConfig(request)
  body = send_request('DeleteCcGeoIPBlockConfig', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DeleteCcGeoIPBlockConfigResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DeleteCCLevelPolicy(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DeleteCCLevelPolicyResponse`

Parameters:

  • request:

    Request instance for DeleteCCLevelPolicy.



613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
# File 'lib/v20200309/client.rb', line 613

def DeleteCCLevelPolicy(request)
  body = send_request('DeleteCCLevelPolicy', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DeleteCCLevelPolicyResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DeleteCCPrecisionPolicy(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DeleteCCPrecisionPolicyResponse`

Parameters:

  • request:

    Request instance for DeleteCCPrecisionPolicy.



637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
# File 'lib/v20200309/client.rb', line 637

def DeleteCCPrecisionPolicy(request)
  body = send_request('DeleteCCPrecisionPolicy', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DeleteCCPrecisionPolicyResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DeleteCCRequestLimitPolicy(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DeleteCCRequestLimitPolicyResponse`

Parameters:

  • request:

    Request instance for DeleteCCRequestLimitPolicy.



661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
# File 'lib/v20200309/client.rb', line 661

def DeleteCCRequestLimitPolicy(request)
  body = send_request('DeleteCCRequestLimitPolicy', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DeleteCCRequestLimitPolicyResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DeleteCCThresholdPolicy(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DeleteCCThresholdPolicyResponse`

Parameters:

  • request:

    Request instance for DeleteCCThresholdPolicy.



685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
# File 'lib/v20200309/client.rb', line 685

def DeleteCCThresholdPolicy(request)
  body = send_request('DeleteCCThresholdPolicy', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DeleteCCThresholdPolicyResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DeleteDDoSBlackWhiteIpList(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DeleteDDoSBlackWhiteIpListResponse`

Parameters:

  • request:

    Request instance for DeleteDDoSBlackWhiteIpList.



757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
# File 'lib/v20200309/client.rb', line 757

def DeleteDDoSBlackWhiteIpList(request)
  body = send_request('DeleteDDoSBlackWhiteIpList', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DeleteDDoSBlackWhiteIpListResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DeleteDDoSGeoIPBlockConfig(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DeleteDDoSGeoIPBlockConfigResponse`

Parameters:

  • request:

    Request instance for DeleteDDoSGeoIPBlockConfig.



781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
# File 'lib/v20200309/client.rb', line 781

def DeleteDDoSGeoIPBlockConfig(request)
  body = send_request('DeleteDDoSGeoIPBlockConfig', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DeleteDDoSGeoIPBlockConfigResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DeleteDDoSSpeedLimitConfig(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DeleteDDoSSpeedLimitConfigResponse`

Parameters:

  • request:

    Request instance for DeleteDDoSSpeedLimitConfig.



805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
# File 'lib/v20200309/client.rb', line 805

def DeleteDDoSSpeedLimitConfig(request)
  body = send_request('DeleteDDoSSpeedLimitConfig', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DeleteDDoSSpeedLimitConfigResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DeletePacketFilterConfig(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DeletePacketFilterConfigResponse`

Parameters:

  • request:

    Request instance for DeletePacketFilterConfig.



829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
# File 'lib/v20200309/client.rb', line 829

def DeletePacketFilterConfig(request)
  body = send_request('DeletePacketFilterConfig', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DeletePacketFilterConfigResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DeletePortAclConfig(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DeletePortAclConfigResponse`

Parameters:

  • request:

    Request instance for DeletePortAclConfig.



853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
# File 'lib/v20200309/client.rb', line 853

def DeletePortAclConfig(request)
  body = send_request('DeletePortAclConfig', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DeletePortAclConfigResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DeleteWaterPrintConfig(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DeleteWaterPrintConfigResponse`

Parameters:

  • request:

    Request instance for DeleteWaterPrintConfig.



877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
# File 'lib/v20200309/client.rb', line 877

def DeleteWaterPrintConfig(request)
  body = send_request('DeleteWaterPrintConfig', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DeleteWaterPrintConfigResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DeleteWaterPrintKey(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DeleteWaterPrintKeyResponse`

Parameters:

  • request:

    Request instance for DeleteWaterPrintKey.



901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
# File 'lib/v20200309/client.rb', line 901

def DeleteWaterPrintKey(request)
  body = send_request('DeleteWaterPrintKey', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DeleteWaterPrintKeyResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeBasicDeviceStatus(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeBasicDeviceStatusResponse`

Parameters:

  • request:

    Request instance for DescribeBasicDeviceStatus.



949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
# File 'lib/v20200309/client.rb', line 949

def DescribeBasicDeviceStatus(request)
  body = send_request('DescribeBasicDeviceStatus', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeBasicDeviceStatusResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeBgpBizTrend(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeBgpBizTrendResponse`

Parameters:

  • request:

    Request instance for DescribeBgpBizTrend.



973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
# File 'lib/v20200309/client.rb', line 973

def DescribeBgpBizTrend(request)
  body = send_request('DescribeBgpBizTrend', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeBgpBizTrendResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeBGPIPL7Rules(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeBGPIPL7RulesResponse`

Parameters:

  • request:

    Request instance for DescribeBGPIPL7Rules.



925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
# File 'lib/v20200309/client.rb', line 925

def DescribeBGPIPL7Rules(request)
  body = send_request('DescribeBGPIPL7Rules', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeBGPIPL7RulesResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeBizHttpStatus(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeBizHttpStatusResponse`

Parameters:

  • request:

    Request instance for DescribeBizHttpStatus.



997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
# File 'lib/v20200309/client.rb', line 997

def DescribeBizHttpStatus(request)
  body = send_request('DescribeBizHttpStatus', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeBizHttpStatusResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeBizMonitorTrend(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeBizMonitorTrendResponse`

Parameters:

  • request:

    Request instance for DescribeBizMonitorTrend.



1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
# File 'lib/v20200309/client.rb', line 1021

def DescribeBizMonitorTrend(request)
  body = send_request('DescribeBizMonitorTrend', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeBizMonitorTrendResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeBizTrend(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeBizTrendResponse`

Parameters:

  • request:

    Request instance for DescribeBizTrend.



1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
# File 'lib/v20200309/client.rb', line 1045

def DescribeBizTrend(request)
  body = send_request('DescribeBizTrend', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeBizTrendResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeCcBlackWhiteIpList(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeCcBlackWhiteIpListResponse`

Parameters:

  • request:

    Request instance for DescribeCcBlackWhiteIpList.



1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
# File 'lib/v20200309/client.rb', line 1213

def DescribeCcBlackWhiteIpList(request)
  body = send_request('DescribeCcBlackWhiteIpList', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeCcBlackWhiteIpListResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeCcGeoIPBlockConfigList(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeCcGeoIPBlockConfigListResponse`

Parameters:

  • request:

    Request instance for DescribeCcGeoIPBlockConfigList.



1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
# File 'lib/v20200309/client.rb', line 1237

def DescribeCcGeoIPBlockConfigList(request)
  body = send_request('DescribeCcGeoIPBlockConfigList', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeCcGeoIPBlockConfigListResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeCCLevelList(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeCCLevelListResponse`

Parameters:

  • request:

    Request instance for DescribeCCLevelList.



1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
# File 'lib/v20200309/client.rb', line 1069

def DescribeCCLevelList(request)
  body = send_request('DescribeCCLevelList', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeCCLevelListResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeCCLevelPolicy(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeCCLevelPolicyResponse`

Parameters:

  • request:

    Request instance for DescribeCCLevelPolicy.



1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
# File 'lib/v20200309/client.rb', line 1093

def DescribeCCLevelPolicy(request)
  body = send_request('DescribeCCLevelPolicy', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeCCLevelPolicyResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeCCPrecisionPlyList(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeCCPrecisionPlyListResponse`

Parameters:

  • request:

    Request instance for DescribeCCPrecisionPlyList.



1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
# File 'lib/v20200309/client.rb', line 1117

def DescribeCCPrecisionPlyList(request)
  body = send_request('DescribeCCPrecisionPlyList', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeCCPrecisionPlyListResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeCCReqLimitPolicyList(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeCCReqLimitPolicyListResponse`

Parameters:

  • request:

    Request instance for DescribeCCReqLimitPolicyList.



1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
# File 'lib/v20200309/client.rb', line 1141

def DescribeCCReqLimitPolicyList(request)
  body = send_request('DescribeCCReqLimitPolicyList', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeCCReqLimitPolicyListResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeCCThresholdList(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeCCThresholdListResponse`

Parameters:

  • request:

    Request instance for DescribeCCThresholdList.



1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
# File 'lib/v20200309/client.rb', line 1165

def DescribeCCThresholdList(request)
  body = send_request('DescribeCCThresholdList', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeCCThresholdListResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeCCTrend(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeCCTrendResponse`

Parameters:

  • request:

    Request instance for DescribeCCTrend.



1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
# File 'lib/v20200309/client.rb', line 1189

def DescribeCCTrend(request)
  body = send_request('DescribeCCTrend', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeCCTrendResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeDDoSBlackWhiteIpList(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeDDoSBlackWhiteIpListResponse`

Parameters:

  • request:

    Request instance for DescribeDDoSBlackWhiteIpList.



1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
# File 'lib/v20200309/client.rb', line 1261

def DescribeDDoSBlackWhiteIpList(request)
  body = send_request('DescribeDDoSBlackWhiteIpList', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeDDoSBlackWhiteIpListResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeDDoSConnectLimitList(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeDDoSConnectLimitListResponse`

Parameters:

  • request:

    Request instance for DescribeDDoSConnectLimitList.



1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
# File 'lib/v20200309/client.rb', line 1285

def DescribeDDoSConnectLimitList(request)
  body = send_request('DescribeDDoSConnectLimitList', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeDDoSConnectLimitListResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeDDoSTrend(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeDDoSTrendResponse`

Parameters:

  • request:

    Request instance for DescribeDDoSTrend.



1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
# File 'lib/v20200309/client.rb', line 1309

def DescribeDDoSTrend(request)
  body = send_request('DescribeDDoSTrend', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeDDoSTrendResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeDefaultAlarmThreshold(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeDefaultAlarmThresholdResponse`

Parameters:

  • request:

    Request instance for DescribeDefaultAlarmThreshold.



1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
# File 'lib/v20200309/client.rb', line 1333

def DescribeDefaultAlarmThreshold(request)
  body = send_request('DescribeDefaultAlarmThreshold', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeDefaultAlarmThresholdResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeIpBlockList(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeIpBlockListResponse`

Parameters:

  • request:

    Request instance for DescribeIpBlockList.



1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
# File 'lib/v20200309/client.rb', line 1357

def DescribeIpBlockList(request)
  body = send_request('DescribeIpBlockList', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeIpBlockListResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeL7RulesBySSLCertId(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeL7RulesBySSLCertIdResponse`

Parameters:

  • request:

    Request instance for DescribeL7RulesBySSLCertId.



1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
# File 'lib/v20200309/client.rb', line 1381

def DescribeL7RulesBySSLCertId(request)
  body = send_request('DescribeL7RulesBySSLCertId', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeL7RulesBySSLCertIdResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeListBGPInstances(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeListBGPInstancesResponse`

Parameters:

  • request:

    Request instance for DescribeListBGPInstances.



1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
# File 'lib/v20200309/client.rb', line 1429

def DescribeListBGPInstances(request)
  body = send_request('DescribeListBGPInstances', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeListBGPInstancesResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeListBGPIPInstances(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeListBGPIPInstancesResponse`

Parameters:

  • request:

    Request instance for DescribeListBGPIPInstances.



1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
# File 'lib/v20200309/client.rb', line 1405

def DescribeListBGPIPInstances(request)
  body = send_request('DescribeListBGPIPInstances', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeListBGPIPInstancesResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeListBlackWhiteIpList(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeListBlackWhiteIpListResponse`

Parameters:

  • request:

    Request instance for DescribeListBlackWhiteIpList.



1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
# File 'lib/v20200309/client.rb', line 1453

def DescribeListBlackWhiteIpList(request)
  body = send_request('DescribeListBlackWhiteIpList', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeListBlackWhiteIpListResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeListDDoSAI(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeListDDoSAIResponse`

Parameters:

  • request:

    Request instance for DescribeListDDoSAI.



1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
# File 'lib/v20200309/client.rb', line 1477

def DescribeListDDoSAI(request)
  body = send_request('DescribeListDDoSAI', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeListDDoSAIResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeListDDoSGeoIPBlockConfig(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeListDDoSGeoIPBlockConfigResponse`

Parameters:

  • request:

    Request instance for DescribeListDDoSGeoIPBlockConfig.



1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
# File 'lib/v20200309/client.rb', line 1501

def DescribeListDDoSGeoIPBlockConfig(request)
  body = send_request('DescribeListDDoSGeoIPBlockConfig', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeListDDoSGeoIPBlockConfigResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeListDDoSSpeedLimitConfig(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeListDDoSSpeedLimitConfigResponse`

Parameters:

  • request:

    Request instance for DescribeListDDoSSpeedLimitConfig.



1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
# File 'lib/v20200309/client.rb', line 1525

def DescribeListDDoSSpeedLimitConfig(request)
  body = send_request('DescribeListDDoSSpeedLimitConfig', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeListDDoSSpeedLimitConfigResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeListIPAlarmConfig(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeListIPAlarmConfigResponse`

Parameters:

  • request:

    Request instance for DescribeListIPAlarmConfig.



1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
# File 'lib/v20200309/client.rb', line 1549

def DescribeListIPAlarmConfig(request)
  body = send_request('DescribeListIPAlarmConfig', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeListIPAlarmConfigResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeListListener(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeListListenerResponse`

Parameters:

  • request:

    Request instance for DescribeListListener.



1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
# File 'lib/v20200309/client.rb', line 1573

def DescribeListListener(request)
  body = send_request('DescribeListListener', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeListListenerResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeListPacketFilterConfig(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeListPacketFilterConfigResponse`

Parameters:

  • request:

    Request instance for DescribeListPacketFilterConfig.



1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
# File 'lib/v20200309/client.rb', line 1597

def DescribeListPacketFilterConfig(request)
  body = send_request('DescribeListPacketFilterConfig', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeListPacketFilterConfigResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeListPortAclList(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeListPortAclListResponse`

Parameters:

  • request:

    Request instance for DescribeListPortAclList.



1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
# File 'lib/v20200309/client.rb', line 1621

def DescribeListPortAclList(request)
  body = send_request('DescribeListPortAclList', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeListPortAclListResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeListProtocolBlockConfig(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeListProtocolBlockConfigResponse`

Parameters:

  • request:

    Request instance for DescribeListProtocolBlockConfig.



1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
# File 'lib/v20200309/client.rb', line 1645

def DescribeListProtocolBlockConfig(request)
  body = send_request('DescribeListProtocolBlockConfig', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeListProtocolBlockConfigResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeListSchedulingDomain(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeListSchedulingDomainResponse`

Parameters:

  • request:

    Request instance for DescribeListSchedulingDomain.



1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
# File 'lib/v20200309/client.rb', line 1669

def DescribeListSchedulingDomain(request)
  body = send_request('DescribeListSchedulingDomain', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeListSchedulingDomainResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeListWaterPrintConfig(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeListWaterPrintConfigResponse`

Parameters:

  • request:

    Request instance for DescribeListWaterPrintConfig.



1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
# File 'lib/v20200309/client.rb', line 1693

def DescribeListWaterPrintConfig(request)
  body = send_request('DescribeListWaterPrintConfig', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeListWaterPrintConfigResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeNewL7Rules(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeNewL7RulesResponse`

Parameters:

  • request:

    Request instance for DescribeNewL7Rules.



1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
# File 'lib/v20200309/client.rb', line 1717

def DescribeNewL7Rules(request)
  body = send_request('DescribeNewL7Rules', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeNewL7RulesResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeNewL7RulesErrHealth(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeNewL7RulesErrHealthResponse`

Parameters:

  • request:

    Request instance for DescribeNewL7RulesErrHealth.



1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
# File 'lib/v20200309/client.rb', line 1741

def DescribeNewL7RulesErrHealth(request)
  body = send_request('DescribeNewL7RulesErrHealth', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeNewL7RulesErrHealthResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeOverviewAttackTrend(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeOverviewAttackTrendResponse`

Parameters:

  • request:

    Request instance for DescribeOverviewAttackTrend.



1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
# File 'lib/v20200309/client.rb', line 1765

def DescribeOverviewAttackTrend(request)
  body = send_request('DescribeOverviewAttackTrend', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeOverviewAttackTrendResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeOverviewCCTrend(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeOverviewCCTrendResponse`

Parameters:

  • request:

    Request instance for DescribeOverviewCCTrend.



1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
# File 'lib/v20200309/client.rb', line 1789

def DescribeOverviewCCTrend(request)
  body = send_request('DescribeOverviewCCTrend', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeOverviewCCTrendResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeOverviewDDoSEventList(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeOverviewDDoSEventListResponse`

Parameters:

  • request:

    Request instance for DescribeOverviewDDoSEventList.



1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
# File 'lib/v20200309/client.rb', line 1813

def DescribeOverviewDDoSEventList(request)
  body = send_request('DescribeOverviewDDoSEventList', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeOverviewDDoSEventListResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeOverviewDDoSTrend(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeOverviewDDoSTrendResponse`

Parameters:

  • request:

    Request instance for DescribeOverviewDDoSTrend.



1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
# File 'lib/v20200309/client.rb', line 1837

def DescribeOverviewDDoSTrend(request)
  body = send_request('DescribeOverviewDDoSTrend', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeOverviewDDoSTrendResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeOverviewIndex(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribeOverviewIndexResponse`

Parameters:

  • request:

    Request instance for DescribeOverviewIndex.



1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
# File 'lib/v20200309/client.rb', line 1861

def DescribeOverviewIndex(request)
  body = send_request('DescribeOverviewIndex', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeOverviewIndexResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribePendingRiskInfo(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DescribePendingRiskInfoResponse`

Parameters:

  • request:

    Request instance for DescribePendingRiskInfo.



1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
# File 'lib/v20200309/client.rb', line 1885

def DescribePendingRiskInfo(request)
  body = send_request('DescribePendingRiskInfo', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribePendingRiskInfoResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DisassociateDDoSEipAddress(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::DisassociateDDoSEipAddressResponse`

Parameters:

  • request:

    Request instance for DisassociateDDoSEipAddress.



1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
# File 'lib/v20200309/client.rb', line 1909

def DisassociateDDoSEipAddress(request)
  body = send_request('DisassociateDDoSEipAddress', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DisassociateDDoSEipAddressResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#ModifyCcBlackWhiteIpList(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::ModifyCcBlackWhiteIpListResponse`

Parameters:

  • request:

    Request instance for ModifyCcBlackWhiteIpList.



2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
# File 'lib/v20200309/client.rb', line 2029

def ModifyCcBlackWhiteIpList(request)
  body = send_request('ModifyCcBlackWhiteIpList', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = ModifyCcBlackWhiteIpListResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#ModifyCCLevelPolicy(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::ModifyCCLevelPolicyResponse`

Parameters:

  • request:

    Request instance for ModifyCCLevelPolicy.



1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
# File 'lib/v20200309/client.rb', line 1933

def ModifyCCLevelPolicy(request)
  body = send_request('ModifyCCLevelPolicy', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = ModifyCCLevelPolicyResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#ModifyCCPrecisionPolicy(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::ModifyCCPrecisionPolicyResponse`

Parameters:

  • request:

    Request instance for ModifyCCPrecisionPolicy.



1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
# File 'lib/v20200309/client.rb', line 1957

def ModifyCCPrecisionPolicy(request)
  body = send_request('ModifyCCPrecisionPolicy', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = ModifyCCPrecisionPolicyResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#ModifyCCReqLimitPolicy(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::ModifyCCReqLimitPolicyResponse`

Parameters:

  • request:

    Request instance for ModifyCCReqLimitPolicy.



1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
# File 'lib/v20200309/client.rb', line 1981

def ModifyCCReqLimitPolicy(request)
  body = send_request('ModifyCCReqLimitPolicy', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = ModifyCCReqLimitPolicyResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#ModifyCCThresholdPolicy(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::ModifyCCThresholdPolicyResponse`

Parameters:

  • request:

    Request instance for ModifyCCThresholdPolicy.



2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
# File 'lib/v20200309/client.rb', line 2005

def ModifyCCThresholdPolicy(request)
  body = send_request('ModifyCCThresholdPolicy', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = ModifyCCThresholdPolicyResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#ModifyDDoSBlackWhiteIpList(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::ModifyDDoSBlackWhiteIpListResponse`

Parameters:

  • request:

    Request instance for ModifyDDoSBlackWhiteIpList.



2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
# File 'lib/v20200309/client.rb', line 2053

def ModifyDDoSBlackWhiteIpList(request)
  body = send_request('ModifyDDoSBlackWhiteIpList', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = ModifyDDoSBlackWhiteIpListResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#ModifyDDoSGeoIPBlockConfig(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::ModifyDDoSGeoIPBlockConfigResponse`

Parameters:

  • request:

    Request instance for ModifyDDoSGeoIPBlockConfig.



2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
# File 'lib/v20200309/client.rb', line 2077

def ModifyDDoSGeoIPBlockConfig(request)
  body = send_request('ModifyDDoSGeoIPBlockConfig', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = ModifyDDoSGeoIPBlockConfigResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#ModifyDDoSLevel(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::ModifyDDoSLevelResponse`

Parameters:

  • request:

    Request instance for ModifyDDoSLevel.



2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
# File 'lib/v20200309/client.rb', line 2101

def ModifyDDoSLevel(request)
  body = send_request('ModifyDDoSLevel', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = ModifyDDoSLevelResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#ModifyDDoSSpeedLimitConfig(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::ModifyDDoSSpeedLimitConfigResponse`

Parameters:

  • request:

    Request instance for ModifyDDoSSpeedLimitConfig.



2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
# File 'lib/v20200309/client.rb', line 2125

def ModifyDDoSSpeedLimitConfig(request)
  body = send_request('ModifyDDoSSpeedLimitConfig', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = ModifyDDoSSpeedLimitConfigResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#ModifyDDoSThreshold(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::ModifyDDoSThresholdResponse`

Parameters:

  • request:

    Request instance for ModifyDDoSThreshold.



2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
# File 'lib/v20200309/client.rb', line 2149

def ModifyDDoSThreshold(request)
  body = send_request('ModifyDDoSThreshold', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = ModifyDDoSThresholdResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#ModifyDomainUsrName(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::ModifyDomainUsrNameResponse`

Parameters:

  • request:

    Request instance for ModifyDomainUsrName.



2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
# File 'lib/v20200309/client.rb', line 2173

def ModifyDomainUsrName(request)
  body = send_request('ModifyDomainUsrName', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = ModifyDomainUsrNameResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#ModifyNewDomainRules(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::ModifyNewDomainRulesResponse`

Parameters:

  • request:

    Request instance for ModifyNewDomainRules.



2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
# File 'lib/v20200309/client.rb', line 2197

def ModifyNewDomainRules(request)
  body = send_request('ModifyNewDomainRules', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = ModifyNewDomainRulesResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#ModifyPacketFilterConfig(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::ModifyPacketFilterConfigResponse`

Parameters:

  • request:

    Request instance for ModifyPacketFilterConfig.



2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
# File 'lib/v20200309/client.rb', line 2221

def ModifyPacketFilterConfig(request)
  body = send_request('ModifyPacketFilterConfig', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = ModifyPacketFilterConfigResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#ModifyPortAclConfig(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::ModifyPortAclConfigResponse`

Parameters:

  • request:

    Request instance for ModifyPortAclConfig.



2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
# File 'lib/v20200309/client.rb', line 2245

def ModifyPortAclConfig(request)
  body = send_request('ModifyPortAclConfig', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = ModifyPortAclConfigResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#SwitchWaterPrintConfig(request) ⇒ Object

@rtype: :class:‘Tencentcloud::antiddos::V20200309::SwitchWaterPrintConfigResponse`

Parameters:

  • request:

    Request instance for SwitchWaterPrintConfig.



2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
# File 'lib/v20200309/client.rb', line 2269

def SwitchWaterPrintConfig(request)
  body = send_request('SwitchWaterPrintConfig', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = SwitchWaterPrintConfigResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end