tencentcloud-sdk-teo 3.0.503 → 3.0.504

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20220901/models.rb +27 -18
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fca8c9a62588cec0bb65a212371074819df1a987
4
- data.tar.gz: 8ab1af2abe0c003f17e5198c1b4c080f307895cc
3
+ metadata.gz: 48af9cd732848d3e993895c15e69cfc393f406f6
4
+ data.tar.gz: ac3dda014c0d1acaba2c6c7f58849f2c1bc1cdd1
5
5
  SHA512:
6
- metadata.gz: 9a5732415549636e66effb9837622046ea6a418512b4ed81442ebce2b3351f45e1ff2acb1540ffe561c7acd7eb9464ef9de9e0f824bb1402ea861b5cceb22065
7
- data.tar.gz: f7db8e5af20549d3edb77174a47690c35aa996a3fc9e06d89efee7484446d6c5057630d9db270321092aba52c7abf686f3a1f30b41db6aff71d1c0b4cc799f97
6
+ metadata.gz: d355c585148150d5cbed995ea6b529f07c71338cb8f6630e30b82e60a6ca1dab1137f6684d96b93eb8b271122486715236f5f7c2b433cc4a58289be39dda2b35
7
+ data.tar.gz: 3ac53ac661e3aa3a508e277c584d5946c36bc27608725e168400fdbe974f7a5dc2acb41cace9a472f65dc4b6058ebcbc6d0cb2297063d10486e99be3c7865613
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.503
1
+ 3.0.504
@@ -4604,6 +4604,7 @@ module TencentCloud
4604
4604
  # <li>ruleId:规则id;</li>
4605
4605
  # <li>sipCountryCode:ip所在国家;</li>
4606
4606
  # <li>attackIp:攻击ip;</li>
4607
+ # <li>realClientIp:真实客户端ip;</li>
4607
4608
  # <li>oriDomain:被攻击的子域名;</li>
4608
4609
  # <li>eventId:事件id;</li>
4609
4610
  # <li>ua:用户代理;</li>
@@ -10409,56 +10410,64 @@ module TencentCloud
10409
10410
  class WebLogs < TencentCloud::Common::AbstractModel
10410
10411
  # @param EventId: 请求(事件)ID。
10411
10412
  # @type EventId: String
10412
- # @param AttackIp: 攻击源(客户端)Ip。
10413
- # @type AttackIp: String
10414
- # @param Domain: 受攻击子域名。
10415
- # @type Domain: String
10416
10413
  # @param HttpLog: http 日志内容。
10417
10414
  # @type HttpLog: String
10415
+ # @param Domain: 受攻击子域名。
10416
+ # @type Domain: String
10417
+ # @param AttackIp: 攻击源(客户端)Ip。
10418
+ # @type AttackIp: String
10418
10419
  # @param SipCountryCode: IP所在国家iso-3166中alpha-2编码,编码信息请参考[ISO-3166](https://git.woa.com/edgeone/iso-3166/blob/master/all/all.json)
10419
10420
  # @type SipCountryCode: String
10421
+ # @param RealClientIp: 真实客户端Ip。
10422
+ # @type RealClientIp: String
10423
+ # @param RealClientIpCountryCode: 真实客户端Ip所在国家iso-3166中alpha-2编码。
10424
+ # @type RealClientIpCountryCode: String
10420
10425
  # @param AttackTime: 攻击时间,采用unix秒级时间戳。
10421
10426
  # @type AttackTime: Integer
10422
10427
  # @param RequestUri: 请求地址。
10423
10428
  # @type RequestUri: String
10424
- # @param AttackContent: 攻击内容。
10429
+ # @param ReqMethod: 请求类型。
10425
10430
  # 注意:此字段可能返回 null,表示取不到有效值。
10426
- # @type AttackContent: String
10431
+ # @type ReqMethod: String
10427
10432
  # @param RuleDetailList: 规则相关信息列表。
10428
10433
  # 注意:此字段可能返回 null,表示取不到有效值。
10429
10434
  # @type RuleDetailList: Array
10430
- # @param ReqMethod: 请求类型。
10435
+ # @param AttackContent: 攻击内容。
10431
10436
  # 注意:此字段可能返回 null,表示取不到有效值。
10432
- # @type ReqMethod: String
10437
+ # @type AttackContent: String
10433
10438
  # @param Area: 日志所属区域。
10434
10439
  # 注意:此字段可能返回 null,表示取不到有效值。
10435
10440
  # @type Area: String
10436
10441
 
10437
- attr_accessor :EventId, :AttackIp, :Domain, :HttpLog, :SipCountryCode, :AttackTime, :RequestUri, :AttackContent, :RuleDetailList, :ReqMethod, :Area
10442
+ attr_accessor :EventId, :HttpLog, :Domain, :AttackIp, :SipCountryCode, :RealClientIp, :RealClientIpCountryCode, :AttackTime, :RequestUri, :ReqMethod, :RuleDetailList, :AttackContent, :Area
10438
10443
 
10439
- def initialize(eventid=nil, attackip=nil, domain=nil, httplog=nil, sipcountrycode=nil, attacktime=nil, requesturi=nil, attackcontent=nil, ruledetaillist=nil, reqmethod=nil, area=nil)
10444
+ def initialize(eventid=nil, httplog=nil, domain=nil, attackip=nil, sipcountrycode=nil, realclientip=nil, realclientipcountrycode=nil, attacktime=nil, requesturi=nil, reqmethod=nil, ruledetaillist=nil, attackcontent=nil, area=nil)
10440
10445
  @EventId = eventid
10441
- @AttackIp = attackip
10442
- @Domain = domain
10443
10446
  @HttpLog = httplog
10447
+ @Domain = domain
10448
+ @AttackIp = attackip
10444
10449
  @SipCountryCode = sipcountrycode
10450
+ @RealClientIp = realclientip
10451
+ @RealClientIpCountryCode = realclientipcountrycode
10445
10452
  @AttackTime = attacktime
10446
10453
  @RequestUri = requesturi
10447
- @AttackContent = attackcontent
10448
- @RuleDetailList = ruledetaillist
10449
10454
  @ReqMethod = reqmethod
10455
+ @RuleDetailList = ruledetaillist
10456
+ @AttackContent = attackcontent
10450
10457
  @Area = area
10451
10458
  end
10452
10459
 
10453
10460
  def deserialize(params)
10454
10461
  @EventId = params['EventId']
10455
- @AttackIp = params['AttackIp']
10456
- @Domain = params['Domain']
10457
10462
  @HttpLog = params['HttpLog']
10463
+ @Domain = params['Domain']
10464
+ @AttackIp = params['AttackIp']
10458
10465
  @SipCountryCode = params['SipCountryCode']
10466
+ @RealClientIp = params['RealClientIp']
10467
+ @RealClientIpCountryCode = params['RealClientIpCountryCode']
10459
10468
  @AttackTime = params['AttackTime']
10460
10469
  @RequestUri = params['RequestUri']
10461
- @AttackContent = params['AttackContent']
10470
+ @ReqMethod = params['ReqMethod']
10462
10471
  unless params['RuleDetailList'].nil?
10463
10472
  @RuleDetailList = []
10464
10473
  params['RuleDetailList'].each do |i|
@@ -10467,7 +10476,7 @@ module TencentCloud
10467
10476
  @RuleDetailList << secrulerelatedinfo_tmp
10468
10477
  end
10469
10478
  end
10470
- @ReqMethod = params['ReqMethod']
10479
+ @AttackContent = params['AttackContent']
10471
10480
  @Area = params['Area']
10472
10481
  end
10473
10482
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-teo
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.503
4
+ version: 3.0.504
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-07 00:00:00.000000000 Z
11
+ date: 2023-02-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common