tencentcloud-sdk-cwp 3.0.568 → 3.0.570

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 +35 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 33fa3efab312801635f8e64728afd53c53c92cfd
4
- data.tar.gz: 89355148902d04b9510f356b96beac5cfbbec696
3
+ metadata.gz: 37334db6858b5cb2ea99974c2f77c453873c15a4
4
+ data.tar.gz: 32c2b8b37d2e4e2e334864a9cae46498afb77d7a
5
5
  SHA512:
6
- metadata.gz: 432d565983de0942694f56dbe9c769aa250ac096ca657f300c75039ba71c4de6a53a0735394a7d4124f7e7167513c12bdf882c4de60ee7af4090687de474a6ac
7
- data.tar.gz: 91f7721cb0f06f9a5a959788379f26f868568df3c4cc1dcd9200f5cd8785affdc8778ef93f0bceff44afccfae435d6bc78dc85007cb85e13461b9bc1eddb221c
6
+ metadata.gz: ff38609e5b8bcb420b3258c1141e5c1f547b4ae31e804e72516346d340b8aa63eed6673ae91581f903f29a2915c0d0b0a7f03a4579e38ab57fb9a1eeb48f4864
7
+ data.tar.gz: 6cd1e41c4c81c2bc43be47751df4427251f07bec8fe04437efce6a87ab26c45ed6d6d1a4bac9e861ef3eeaf1a3849ab2bfb39e2f0c4b843775a00a276467f586
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.568
1
+ 3.0.570
@@ -16316,6 +16316,10 @@ module TencentCloud
16316
16316
  # <li>VulCategory- string - 是否必填:否 - 漏洞类别 1: web-cms漏洞 2:应用漏洞 4: Linux软件漏洞 5: Windows系统漏洞</li>
16317
16317
  # <li>IsSupportDefense - int- 是否必填:否 - 是否支持防御 0:不支持 1:支持</li>
16318
16318
  # <li>Labels- string- 是否必填:否 - 标签搜索</li>
16319
+ # <li>IsSupportAutoFix- string- 是否必填:否 - 是否支持自动修复 0:不支持 1:支持</li>
16320
+ # <li>CvssScore- string- 是否必填:否 - CvssScore大于多少</li>
16321
+ # <li>AttackLevel- string- 是否必填:否 - 攻击热度大于多少</li>
16322
+
16319
16323
  # @type Filters: Array
16320
16324
  # @param By: 可选排序字段 Level,LastTime,HostCount
16321
16325
  # @type By: String
@@ -19475,19 +19479,31 @@ module TencentCloud
19475
19479
  # @type ErrMsg: String
19476
19480
  # @param Status: 0 执行中, 1 成功,2失败
19477
19481
  # @type Status: Integer
19482
+ # @param FixMessage: 修复建议
19483
+ # @type FixMessage: String
19484
+ # @param MachineExtraInfo: 机器额外信息
19485
+ # 注意:此字段可能返回 null,表示取不到有效值。
19486
+ # @type MachineExtraInfo: :class:`Tencentcloud::Cwp.v20180228.models.MachineExtraInfo`
19478
19487
 
19479
- attr_accessor :Quuid, :ErrMsg, :Status
19488
+ attr_accessor :Quuid, :ErrMsg, :Status, :FixMessage, :MachineExtraInfo
19480
19489
 
19481
- def initialize(quuid=nil, errmsg=nil, status=nil)
19490
+ def initialize(quuid=nil, errmsg=nil, status=nil, fixmessage=nil, machineextrainfo=nil)
19482
19491
  @Quuid = quuid
19483
19492
  @ErrMsg = errmsg
19484
19493
  @Status = status
19494
+ @FixMessage = fixmessage
19495
+ @MachineExtraInfo = machineextrainfo
19485
19496
  end
19486
19497
 
19487
19498
  def deserialize(params)
19488
19499
  @Quuid = params['Quuid']
19489
19500
  @ErrMsg = params['ErrMsg']
19490
19501
  @Status = params['Status']
19502
+ @FixMessage = params['FixMessage']
19503
+ unless params['MachineExtraInfo'].nil?
19504
+ @MachineExtraInfo = MachineExtraInfo.new
19505
+ @MachineExtraInfo.deserialize(params['MachineExtraInfo'])
19506
+ end
19491
19507
  end
19492
19508
  end
19493
19509
 
@@ -24148,10 +24164,19 @@ module TencentCloud
24148
24164
  # @param VulCategory: 漏洞类别 1: web-cms漏洞 2:应用漏洞 4: Linux软件漏洞 5: Windows系统漏洞
24149
24165
  # 注意:此字段可能返回 null,表示取不到有效值。
24150
24166
  # @type VulCategory: Integer
24167
+ # @param AttackLevel: 攻击热度级别
24168
+ # 注意:此字段可能返回 null,表示取不到有效值。
24169
+ # @type AttackLevel: Integer
24170
+ # @param FixNoNeedRestart: 漏洞修复后是否需要重启
24171
+ # 注意:此字段可能返回 null,表示取不到有效值。
24172
+ # @type FixNoNeedRestart: Boolean
24173
+ # @param Method: 检测方式0 - 版本比对, 1 - POC验证
24174
+ # 注意:此字段可能返回 null,表示取不到有效值。
24175
+ # @type Method: Integer
24151
24176
 
24152
- 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
24177
+ 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
24153
24178
 
24154
- 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)
24179
+ 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)
24155
24180
  @Ids = ids
24156
24181
  @Name = name
24157
24182
  @Status = status
@@ -24175,6 +24200,9 @@ module TencentCloud
24175
24200
  @DefenseAttackCount = defenseattackcount
24176
24201
  @FirstAppearTime = firstappeartime
24177
24202
  @VulCategory = vulcategory
24203
+ @AttackLevel = attacklevel
24204
+ @FixNoNeedRestart = fixnoneedrestart
24205
+ @Method = method
24178
24206
  end
24179
24207
 
24180
24208
  def deserialize(params)
@@ -24201,6 +24229,9 @@ module TencentCloud
24201
24229
  @DefenseAttackCount = params['DefenseAttackCount']
24202
24230
  @FirstAppearTime = params['FirstAppearTime']
24203
24231
  @VulCategory = params['VulCategory']
24232
+ @AttackLevel = params['AttackLevel']
24233
+ @FixNoNeedRestart = params['FixNoNeedRestart']
24234
+ @Method = params['Method']
24204
24235
  end
24205
24236
  end
24206
24237
 
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.568
4
+ version: 3.0.570
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-12 00:00:00.000000000 Z
11
+ date: 2023-05-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common