tencentcloud-sdk-cwp 3.0.567 → 3.0.568
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180228/models.rb +23 -4
- 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: 33fa3efab312801635f8e64728afd53c53c92cfd
|
4
|
+
data.tar.gz: 89355148902d04b9510f356b96beac5cfbbec696
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 432d565983de0942694f56dbe9c769aa250ac096ca657f300c75039ba71c4de6a53a0735394a7d4124f7e7167513c12bdf882c4de60ee7af4090687de474a6ac
|
7
|
+
data.tar.gz: 91f7721cb0f06f9a5a959788379f26f868568df3c4cc1dcd9200f5cd8785affdc8778ef93f0bceff44afccfae435d6bc78dc85007cb85e13461b9bc1eddb221c
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.568
|
data/lib/v20180228/models.rb
CHANGED
@@ -10988,15 +10988,18 @@ module TencentCloud
|
|
10988
10988
|
# @type Order: String
|
10989
10989
|
# @param By: 排序字段 PublishDate LastScanTime HostCount
|
10990
10990
|
# @type By: String
|
10991
|
+
# @param HotspotAttack: 是否热点漏洞
|
10992
|
+
# @type HotspotAttack: Boolean
|
10991
10993
|
|
10992
|
-
attr_accessor :Limit, :Offset, :Filters, :Order, :By
|
10994
|
+
attr_accessor :Limit, :Offset, :Filters, :Order, :By, :HotspotAttack
|
10993
10995
|
|
10994
|
-
def initialize(limit=nil, offset=nil, filters=nil, order=nil, by=nil)
|
10996
|
+
def initialize(limit=nil, offset=nil, filters=nil, order=nil, by=nil, hotspotattack=nil)
|
10995
10997
|
@Limit = limit
|
10996
10998
|
@Offset = offset
|
10997
10999
|
@Filters = filters
|
10998
11000
|
@Order = order
|
10999
11001
|
@By = by
|
11002
|
+
@HotspotAttack = hotspotattack
|
11000
11003
|
end
|
11001
11004
|
|
11002
11005
|
def deserialize(params)
|
@@ -11012,6 +11015,7 @@ module TencentCloud
|
|
11012
11015
|
end
|
11013
11016
|
@Order = params['Order']
|
11014
11017
|
@By = params['By']
|
11018
|
+
@HotspotAttack = params['HotspotAttack']
|
11015
11019
|
end
|
11016
11020
|
end
|
11017
11021
|
|
@@ -17031,10 +17035,19 @@ module TencentCloud
|
|
17031
17035
|
# @param DefenseAttackCount: 已防御的攻击次数
|
17032
17036
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
17033
17037
|
# @type DefenseAttackCount: Integer
|
17038
|
+
# @param Method: 检测规则 0 - 版本比对, 1 - POC验证
|
17039
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
17040
|
+
# @type Method: Integer
|
17041
|
+
# @param AttackLevel: 攻击热度级别
|
17042
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
17043
|
+
# @type AttackLevel: Integer
|
17044
|
+
# @param DefenseState: 是否有漏洞主机开启漏洞防御
|
17045
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
17046
|
+
# @type DefenseState: Boolean
|
17034
17047
|
|
17035
|
-
attr_accessor :VulId, :Level, :VulName, :PublishDate, :Category, :Status, :LastScanTime, :Progress, :CveId, :CvssScore, :Labels, :HostCount, :IsSupportDefense, :DefenseAttackCount
|
17048
|
+
attr_accessor :VulId, :Level, :VulName, :PublishDate, :Category, :Status, :LastScanTime, :Progress, :CveId, :CvssScore, :Labels, :HostCount, :IsSupportDefense, :DefenseAttackCount, :Method, :AttackLevel, :DefenseState
|
17036
17049
|
|
17037
|
-
def initialize(vulid=nil, level=nil, vulname=nil, publishdate=nil, category=nil, status=nil, lastscantime=nil, progress=nil, cveid=nil, cvssscore=nil, labels=nil, hostcount=nil, issupportdefense=nil, defenseattackcount=nil)
|
17050
|
+
def initialize(vulid=nil, level=nil, vulname=nil, publishdate=nil, category=nil, status=nil, lastscantime=nil, progress=nil, cveid=nil, cvssscore=nil, labels=nil, hostcount=nil, issupportdefense=nil, defenseattackcount=nil, method=nil, attacklevel=nil, defensestate=nil)
|
17038
17051
|
@VulId = vulid
|
17039
17052
|
@Level = level
|
17040
17053
|
@VulName = vulname
|
@@ -17049,6 +17062,9 @@ module TencentCloud
|
|
17049
17062
|
@HostCount = hostcount
|
17050
17063
|
@IsSupportDefense = issupportdefense
|
17051
17064
|
@DefenseAttackCount = defenseattackcount
|
17065
|
+
@Method = method
|
17066
|
+
@AttackLevel = attacklevel
|
17067
|
+
@DefenseState = defensestate
|
17052
17068
|
end
|
17053
17069
|
|
17054
17070
|
def deserialize(params)
|
@@ -17066,6 +17082,9 @@ module TencentCloud
|
|
17066
17082
|
@HostCount = params['HostCount']
|
17067
17083
|
@IsSupportDefense = params['IsSupportDefense']
|
17068
17084
|
@DefenseAttackCount = params['DefenseAttackCount']
|
17085
|
+
@Method = params['Method']
|
17086
|
+
@AttackLevel = params['AttackLevel']
|
17087
|
+
@DefenseState = params['DefenseState']
|
17069
17088
|
end
|
17070
17089
|
end
|
17071
17090
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cwp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.568
|
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-05-
|
11
|
+
date: 2023-05-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|