tencentcloud-sdk-teo 3.0.503 → 3.0.504
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20220901/models.rb +27 -18
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 48af9cd732848d3e993895c15e69cfc393f406f6
|
4
|
+
data.tar.gz: ac3dda014c0d1acaba2c6c7f58849f2c1bc1cdd1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d355c585148150d5cbed995ea6b529f07c71338cb8f6630e30b82e60a6ca1dab1137f6684d96b93eb8b271122486715236f5f7c2b433cc4a58289be39dda2b35
|
7
|
+
data.tar.gz: 3ac53ac661e3aa3a508e277c584d5946c36bc27608725e168400fdbe974f7a5dc2acb41cace9a472f65dc4b6058ebcbc6d0cb2297063d10486e99be3c7865613
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.504
|
data/lib/v20220901/models.rb
CHANGED
@@ -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
|
10429
|
+
# @param ReqMethod: 请求类型。
|
10425
10430
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10426
|
-
# @type
|
10431
|
+
# @type ReqMethod: String
|
10427
10432
|
# @param RuleDetailList: 规则相关信息列表。
|
10428
10433
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10429
10434
|
# @type RuleDetailList: Array
|
10430
|
-
# @param
|
10435
|
+
# @param AttackContent: 攻击内容。
|
10431
10436
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10432
|
-
# @type
|
10437
|
+
# @type AttackContent: String
|
10433
10438
|
# @param Area: 日志所属区域。
|
10434
10439
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10435
10440
|
# @type Area: String
|
10436
10441
|
|
10437
|
-
attr_accessor :EventId, :
|
10442
|
+
attr_accessor :EventId, :HttpLog, :Domain, :AttackIp, :SipCountryCode, :RealClientIp, :RealClientIpCountryCode, :AttackTime, :RequestUri, :ReqMethod, :RuleDetailList, :AttackContent, :Area
|
10438
10443
|
|
10439
|
-
def initialize(eventid=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
|
-
@
|
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
|
-
@
|
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.
|
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-
|
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
|