tencentcloud-sdk-cwp 3.0.885 → 3.0.887
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/v20180228/models.rb +20 -6
- 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: f99c2e52cf20f7246e56e2c493df6fb479e4c2e8
|
4
|
+
data.tar.gz: 1824226f8cc9a32c6413d21222bf8368804db303
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 489cdce0c035e572bb058c1d9e02820fd56a334f7732fea03d8b560c27573d0250ac9ea7c40ec70c7cf13d32692d45ef3b951ee98b8e69d9f7dd0409b1efa0d5
|
7
|
+
data.tar.gz: 6f8eb7b2f422ea50793a8dab7314488b692bda18d46c1885be1c7c58a5afb52e93f4e45657d2ef462a14ca2eb7354cc7ba01a3f070d153629028fe7fd7f5bb95
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.887
|
data/lib/v20180228/models.rb
CHANGED
@@ -5244,14 +5244,18 @@ module TencentCloud
|
|
5244
5244
|
# @param FixTag: 修复提示tag
|
5245
5245
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5246
5246
|
# @type FixTag: Array
|
5247
|
+
# @param VulCategory: 漏洞分类1 web cms漏洞,2应用漏洞,4linux软件漏洞,5windows系统漏洞
|
5248
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5249
|
+
# @type VulCategory: Integer
|
5247
5250
|
|
5248
|
-
attr_accessor :VulId, :VulName, :HostList, :FixTag
|
5251
|
+
attr_accessor :VulId, :VulName, :HostList, :FixTag, :VulCategory
|
5249
5252
|
|
5250
|
-
def initialize(vulid=nil, vulname=nil, hostlist=nil, fixtag=nil)
|
5253
|
+
def initialize(vulid=nil, vulname=nil, hostlist=nil, fixtag=nil, vulcategory=nil)
|
5251
5254
|
@VulId = vulid
|
5252
5255
|
@VulName = vulname
|
5253
5256
|
@HostList = hostlist
|
5254
5257
|
@FixTag = fixtag
|
5258
|
+
@VulCategory = vulcategory
|
5255
5259
|
end
|
5256
5260
|
|
5257
5261
|
def deserialize(params)
|
@@ -5266,6 +5270,7 @@ module TencentCloud
|
|
5266
5270
|
end
|
5267
5271
|
end
|
5268
5272
|
@FixTag = params['FixTag']
|
5273
|
+
@VulCategory = params['VulCategory']
|
5269
5274
|
end
|
5270
5275
|
end
|
5271
5276
|
|
@@ -6647,17 +6652,21 @@ module TencentCloud
|
|
6647
6652
|
# @type VulId: Integer
|
6648
6653
|
# @param Quuids: 需要修复漏洞的主机,所有主机必须有VulId的这个漏洞且是待修复状态。
|
6649
6654
|
# @type Quuids: Array
|
6655
|
+
# @param FixMethod: 修复方式 0组件更新或者安装补丁,1禁用服务
|
6656
|
+
# @type FixMethod: Integer
|
6650
6657
|
|
6651
|
-
attr_accessor :VulId, :Quuids
|
6658
|
+
attr_accessor :VulId, :Quuids, :FixMethod
|
6652
6659
|
|
6653
|
-
def initialize(vulid=nil, quuids=nil)
|
6660
|
+
def initialize(vulid=nil, quuids=nil, fixmethod=nil)
|
6654
6661
|
@VulId = vulid
|
6655
6662
|
@Quuids = quuids
|
6663
|
+
@FixMethod = fixmethod
|
6656
6664
|
end
|
6657
6665
|
|
6658
6666
|
def deserialize(params)
|
6659
6667
|
@VulId = params['VulId']
|
6660
6668
|
@Quuids = params['Quuids']
|
6669
|
+
@FixMethod = params['FixMethod']
|
6661
6670
|
end
|
6662
6671
|
end
|
6663
6672
|
|
@@ -41606,16 +41615,20 @@ module TencentCloud
|
|
41606
41615
|
# @param FixSuccessCnt: 修复成功的数量
|
41607
41616
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
41608
41617
|
# @type FixSuccessCnt: Integer
|
41618
|
+
# @param FixMethod: 修复方式 0组件更新或者安装补丁,1禁用服务
|
41619
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
41620
|
+
# @type FixMethod: Integer
|
41609
41621
|
|
41610
|
-
attr_accessor :VulId, :VulName, :Progress, :HostList, :FailCnt, :FixSuccessCnt
|
41622
|
+
attr_accessor :VulId, :VulName, :Progress, :HostList, :FailCnt, :FixSuccessCnt, :FixMethod
|
41611
41623
|
|
41612
|
-
def initialize(vulid=nil, vulname=nil, progress=nil, hostlist=nil, failcnt=nil, fixsuccesscnt=nil)
|
41624
|
+
def initialize(vulid=nil, vulname=nil, progress=nil, hostlist=nil, failcnt=nil, fixsuccesscnt=nil, fixmethod=nil)
|
41613
41625
|
@VulId = vulid
|
41614
41626
|
@VulName = vulname
|
41615
41627
|
@Progress = progress
|
41616
41628
|
@HostList = hostlist
|
41617
41629
|
@FailCnt = failcnt
|
41618
41630
|
@FixSuccessCnt = fixsuccesscnt
|
41631
|
+
@FixMethod = fixmethod
|
41619
41632
|
end
|
41620
41633
|
|
41621
41634
|
def deserialize(params)
|
@@ -41632,6 +41645,7 @@ module TencentCloud
|
|
41632
41645
|
end
|
41633
41646
|
@FailCnt = params['FailCnt']
|
41634
41647
|
@FixSuccessCnt = params['FixSuccessCnt']
|
41648
|
+
@FixMethod = params['FixMethod']
|
41635
41649
|
end
|
41636
41650
|
end
|
41637
41651
|
|
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.887
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-08-
|
11
|
+
date: 2024-08-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|