tencentcloud-sdk-cwp 3.0.567 → 3.0.569

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 +44 -6
  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: 1f97b4c1d9a41b48ce09bfb6b87a7807d13de394
4
+ data.tar.gz: d48ac3cd96594a7f6e6ca36def1688ede0a9e298
5
5
  SHA512:
6
- metadata.gz: e8132c32d8c14ced97f40e8b4ed88fc3655419cf5b36c30174d658a1d39e9f62facedf4b0699cc3d0e2e78c6aad14f12232e57654a43b211fe3831e452315912
7
- data.tar.gz: f017c6d253279e1e6849e9eff2619e0c67bb271c95fbd73affb4353271d3b888b7ecb66b5eae88cfc8b924c9dc564577772c502cbf8bd49f56125accac96d3d7
6
+ metadata.gz: 17a2b0e79678127001665e5cedc3f1c2f2fe27590763638c843f4d555934a2a8f5bbbd13e8875ebd623b0f90ad08f3e91a86014456387d15dcbe512b13928d61
7
+ data.tar.gz: aa85e3282b0259c727e290ca8955983683b7a2a1b0c9d5a1dc09c89b0f56c62ae2eca3e9a838e88238172813f5400d769fe625dd15f3ea1aec478c53534557ed
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.567
1
+ 3.0.569
@@ -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
 
@@ -16312,6 +16316,10 @@ module TencentCloud
16312
16316
  # <li>VulCategory- string - 是否必填:否 - 漏洞类别 1: web-cms漏洞 2:应用漏洞 4: Linux软件漏洞 5: Windows系统漏洞</li>
16313
16317
  # <li>IsSupportDefense - int- 是否必填:否 - 是否支持防御 0:不支持 1:支持</li>
16314
16318
  # <li>Labels- string- 是否必填:否 - 标签搜索</li>
16319
+ # <li>IsSupportAutoFix- string- 是否必填:否 - 是否支持自动修复 0:不支持 1:支持</li>
16320
+ # <li>CvssScore- string- 是否必填:否 - CvssScore大于多少</li>
16321
+ # <li>AttackLevel- string- 是否必填:否 - 攻击热度大于多少</li>
16322
+
16315
16323
  # @type Filters: Array
16316
16324
  # @param By: 可选排序字段 Level,LastTime,HostCount
16317
16325
  # @type By: String
@@ -17031,10 +17039,19 @@ module TencentCloud
17031
17039
  # @param DefenseAttackCount: 已防御的攻击次数
17032
17040
  # 注意:此字段可能返回 null,表示取不到有效值。
17033
17041
  # @type DefenseAttackCount: Integer
17042
+ # @param Method: 检测规则 0 - 版本比对, 1 - POC验证
17043
+ # 注意:此字段可能返回 null,表示取不到有效值。
17044
+ # @type Method: Integer
17045
+ # @param AttackLevel: 攻击热度级别
17046
+ # 注意:此字段可能返回 null,表示取不到有效值。
17047
+ # @type AttackLevel: Integer
17048
+ # @param DefenseState: 是否有漏洞主机开启漏洞防御
17049
+ # 注意:此字段可能返回 null,表示取不到有效值。
17050
+ # @type DefenseState: Boolean
17034
17051
 
17035
- attr_accessor :VulId, :Level, :VulName, :PublishDate, :Category, :Status, :LastScanTime, :Progress, :CveId, :CvssScore, :Labels, :HostCount, :IsSupportDefense, :DefenseAttackCount
17052
+ attr_accessor :VulId, :Level, :VulName, :PublishDate, :Category, :Status, :LastScanTime, :Progress, :CveId, :CvssScore, :Labels, :HostCount, :IsSupportDefense, :DefenseAttackCount, :Method, :AttackLevel, :DefenseState
17036
17053
 
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)
17054
+ 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
17055
  @VulId = vulid
17039
17056
  @Level = level
17040
17057
  @VulName = vulname
@@ -17049,6 +17066,9 @@ module TencentCloud
17049
17066
  @HostCount = hostcount
17050
17067
  @IsSupportDefense = issupportdefense
17051
17068
  @DefenseAttackCount = defenseattackcount
17069
+ @Method = method
17070
+ @AttackLevel = attacklevel
17071
+ @DefenseState = defensestate
17052
17072
  end
17053
17073
 
17054
17074
  def deserialize(params)
@@ -17066,6 +17086,9 @@ module TencentCloud
17066
17086
  @HostCount = params['HostCount']
17067
17087
  @IsSupportDefense = params['IsSupportDefense']
17068
17088
  @DefenseAttackCount = params['DefenseAttackCount']
17089
+ @Method = params['Method']
17090
+ @AttackLevel = params['AttackLevel']
17091
+ @DefenseState = params['DefenseState']
17069
17092
  end
17070
17093
  end
17071
17094
 
@@ -24129,10 +24152,19 @@ module TencentCloud
24129
24152
  # @param VulCategory: 漏洞类别 1: web-cms漏洞 2:应用漏洞 4: Linux软件漏洞 5: Windows系统漏洞
24130
24153
  # 注意:此字段可能返回 null,表示取不到有效值。
24131
24154
  # @type VulCategory: Integer
24155
+ # @param AttackLevel: 攻击热度级别
24156
+ # 注意:此字段可能返回 null,表示取不到有效值。
24157
+ # @type AttackLevel: Integer
24158
+ # @param FixNoNeedRestart: 漏洞修复后是否需要重启
24159
+ # 注意:此字段可能返回 null,表示取不到有效值。
24160
+ # @type FixNoNeedRestart: Boolean
24161
+ # @param Method: 检测方式0 - 版本比对, 1 - POC验证
24162
+ # 注意:此字段可能返回 null,表示取不到有效值。
24163
+ # @type Method: Integer
24132
24164
 
24133
- attr_accessor :Ids, :Name, :Status, :VulId, :PublishTime, :LastTime, :HostCount, :Level, :From, :Descript, :PublishTimeWisteria, :NameWisteria, :DescriptWisteria, :StatusStr, :CveId, :CvssScore, :Labels, :FixSwitch, :TaskId, :IsSupportDefense, :DefenseAttackCount, :FirstAppearTime, :VulCategory
24165
+ attr_accessor :Ids, :Name, :Status, :VulId, :PublishTime, :LastTime, :HostCount, :Level, :From, :Descript, :PublishTimeWisteria, :NameWisteria, :DescriptWisteria, :StatusStr, :CveId, :CvssScore, :Labels, :FixSwitch, :TaskId, :IsSupportDefense, :DefenseAttackCount, :FirstAppearTime, :VulCategory, :AttackLevel, :FixNoNeedRestart, :Method
24134
24166
 
24135
- def initialize(ids=nil, name=nil, status=nil, vulid=nil, publishtime=nil, lasttime=nil, hostcount=nil, level=nil, from=nil, descript=nil, publishtimewisteria=nil, namewisteria=nil, descriptwisteria=nil, statusstr=nil, cveid=nil, cvssscore=nil, labels=nil, fixswitch=nil, taskid=nil, issupportdefense=nil, defenseattackcount=nil, firstappeartime=nil, vulcategory=nil)
24167
+ def initialize(ids=nil, name=nil, status=nil, vulid=nil, publishtime=nil, lasttime=nil, hostcount=nil, level=nil, from=nil, descript=nil, publishtimewisteria=nil, namewisteria=nil, descriptwisteria=nil, statusstr=nil, cveid=nil, cvssscore=nil, labels=nil, fixswitch=nil, taskid=nil, issupportdefense=nil, defenseattackcount=nil, firstappeartime=nil, vulcategory=nil, attacklevel=nil, fixnoneedrestart=nil, method=nil)
24136
24168
  @Ids = ids
24137
24169
  @Name = name
24138
24170
  @Status = status
@@ -24156,6 +24188,9 @@ module TencentCloud
24156
24188
  @DefenseAttackCount = defenseattackcount
24157
24189
  @FirstAppearTime = firstappeartime
24158
24190
  @VulCategory = vulcategory
24191
+ @AttackLevel = attacklevel
24192
+ @FixNoNeedRestart = fixnoneedrestart
24193
+ @Method = method
24159
24194
  end
24160
24195
 
24161
24196
  def deserialize(params)
@@ -24182,6 +24217,9 @@ module TencentCloud
24182
24217
  @DefenseAttackCount = params['DefenseAttackCount']
24183
24218
  @FirstAppearTime = params['FirstAppearTime']
24184
24219
  @VulCategory = params['VulCategory']
24220
+ @AttackLevel = params['AttackLevel']
24221
+ @FixNoNeedRestart = params['FixNoNeedRestart']
24222
+ @Method = params['Method']
24185
24223
  end
24186
24224
  end
24187
24225
 
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.569
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-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common