tencentcloud-sdk-cwp 3.0.567 → 3.0.568

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180228/models.rb +23 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 931b24bed2e1217cfd3a9a1142ef4598e1f4bd08
4
- data.tar.gz: 80711a7c7ee80cb25e8ba798ab6e3e2a63884f33
3
+ metadata.gz: 33fa3efab312801635f8e64728afd53c53c92cfd
4
+ data.tar.gz: 89355148902d04b9510f356b96beac5cfbbec696
5
5
  SHA512:
6
- metadata.gz: e8132c32d8c14ced97f40e8b4ed88fc3655419cf5b36c30174d658a1d39e9f62facedf4b0699cc3d0e2e78c6aad14f12232e57654a43b211fe3831e452315912
7
- data.tar.gz: f017c6d253279e1e6849e9eff2619e0c67bb271c95fbd73affb4353271d3b888b7ecb66b5eae88cfc8b924c9dc564577772c502cbf8bd49f56125accac96d3d7
6
+ metadata.gz: 432d565983de0942694f56dbe9c769aa250ac096ca657f300c75039ba71c4de6a53a0735394a7d4124f7e7167513c12bdf882c4de60ee7af4090687de474a6ac
7
+ data.tar.gz: 91f7721cb0f06f9a5a959788379f26f868568df3c4cc1dcd9200f5cd8785affdc8778ef93f0bceff44afccfae435d6bc78dc85007cb85e13461b9bc1eddb221c
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.567
1
+ 3.0.568
@@ -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.567
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 00:00:00.000000000 Z
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