tencentcloud-sdk-cwp 3.0.891 → 3.0.892
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 +42 -14
- 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: 638be22b61fc1bdaed0204eaa815c61a083dcd66
|
4
|
+
data.tar.gz: a20d7641d0ab42b0ee10ce584793caf2c356669e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ffe9c0101d050b50616ea3d10d7dd8633a10bb57b8a690f5d76a42d9bb28c2a658b72a70c4e86aa53735c67e1ac09879142b83f28fb64ce817eccb725cc731f
|
7
|
+
data.tar.gz: 97ca291b253b839d8a64d51a9070d38ba862bdd4accb6e64f2a618bc56880a59e28a38e552760cab2cd57f7661385cfed11d33026cb60d2b9b16d3b71fb904a0
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.892
|
data/lib/v20180228/models.rb
CHANGED
@@ -6237,10 +6237,12 @@ module TencentCloud
|
|
6237
6237
|
# @type Md5List: Array
|
6238
6238
|
# @param EventId: 木马事件ID
|
6239
6239
|
# @type EventId: Integer
|
6240
|
+
# @param IsHandleHistoryEvents: 对历史待处理执行加白操作;0是不处理,1是处理
|
6241
|
+
# @type IsHandleHistoryEvents: Integer
|
6240
6242
|
|
6241
|
-
attr_accessor :Mode, :QuuidList, :IsGlobal, :MatchType, :FileName, :FileDirectory, :FileExtension, :Md5List, :EventId
|
6243
|
+
attr_accessor :Mode, :QuuidList, :IsGlobal, :MatchType, :FileName, :FileDirectory, :FileExtension, :Md5List, :EventId, :IsHandleHistoryEvents
|
6242
6244
|
|
6243
|
-
def initialize(mode=nil, quuidlist=nil, isglobal=nil, matchtype=nil, filename=nil, filedirectory=nil, fileextension=nil, md5list=nil, eventid=nil)
|
6245
|
+
def initialize(mode=nil, quuidlist=nil, isglobal=nil, matchtype=nil, filename=nil, filedirectory=nil, fileextension=nil, md5list=nil, eventid=nil, ishandlehistoryevents=nil)
|
6244
6246
|
@Mode = mode
|
6245
6247
|
@QuuidList = quuidlist
|
6246
6248
|
@IsGlobal = isglobal
|
@@ -6250,6 +6252,7 @@ module TencentCloud
|
|
6250
6252
|
@FileExtension = fileextension
|
6251
6253
|
@Md5List = md5list
|
6252
6254
|
@EventId = eventid
|
6255
|
+
@IsHandleHistoryEvents = ishandlehistoryevents
|
6253
6256
|
end
|
6254
6257
|
|
6255
6258
|
def deserialize(params)
|
@@ -6262,6 +6265,7 @@ module TencentCloud
|
|
6262
6265
|
@FileExtension = params['FileExtension']
|
6263
6266
|
@Md5List = params['Md5List']
|
6264
6267
|
@EventId = params['EventId']
|
6268
|
+
@IsHandleHistoryEvents = params['IsHandleHistoryEvents']
|
6265
6269
|
end
|
6266
6270
|
end
|
6267
6271
|
|
@@ -22009,12 +22013,14 @@ module TencentCloud
|
|
22009
22013
|
# @type ClickTimeout: Integer
|
22010
22014
|
# @param Uuids: 为空默认扫描全部专业版、旗舰版、普惠版主机,不为空只扫描选中主机
|
22011
22015
|
# @type Uuids: Array
|
22016
|
+
# @param ScanMethod: 0版本比对,2版本比对+poc
|
22017
|
+
# @type ScanMethod: Integer
|
22012
22018
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
22013
22019
|
# @type RequestId: String
|
22014
22020
|
|
22015
|
-
attr_accessor :VulCategories, :VulLevels, :TimerInterval, :TimerTime, :VulEmergency, :StartTime, :EnableScan, :EndTime, :ClickTimeout, :Uuids, :RequestId
|
22021
|
+
attr_accessor :VulCategories, :VulLevels, :TimerInterval, :TimerTime, :VulEmergency, :StartTime, :EnableScan, :EndTime, :ClickTimeout, :Uuids, :ScanMethod, :RequestId
|
22016
22022
|
|
22017
|
-
def initialize(vulcategories=nil, vullevels=nil, timerinterval=nil, timertime=nil, vulemergency=nil, starttime=nil, enablescan=nil, endtime=nil, clicktimeout=nil, uuids=nil, requestid=nil)
|
22023
|
+
def initialize(vulcategories=nil, vullevels=nil, timerinterval=nil, timertime=nil, vulemergency=nil, starttime=nil, enablescan=nil, endtime=nil, clicktimeout=nil, uuids=nil, scanmethod=nil, requestid=nil)
|
22018
22024
|
@VulCategories = vulcategories
|
22019
22025
|
@VulLevels = vullevels
|
22020
22026
|
@TimerInterval = timerinterval
|
@@ -22025,6 +22031,7 @@ module TencentCloud
|
|
22025
22031
|
@EndTime = endtime
|
22026
22032
|
@ClickTimeout = clicktimeout
|
22027
22033
|
@Uuids = uuids
|
22034
|
+
@ScanMethod = scanmethod
|
22028
22035
|
@RequestId = requestid
|
22029
22036
|
end
|
22030
22037
|
|
@@ -22039,6 +22046,7 @@ module TencentCloud
|
|
22039
22046
|
@EndTime = params['EndTime']
|
22040
22047
|
@ClickTimeout = params['ClickTimeout']
|
22041
22048
|
@Uuids = params['Uuids']
|
22049
|
+
@ScanMethod = params['ScanMethod']
|
22042
22050
|
@RequestId = params['RequestId']
|
22043
22051
|
end
|
22044
22052
|
end
|
@@ -25429,17 +25437,20 @@ module TencentCloud
|
|
25429
25437
|
# @param ItemLabelIds: 项目或标签的id列表,自选主机时为空
|
25430
25438
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
25431
25439
|
# @type ItemLabelIds: Array
|
25440
|
+
# @param ExcludedQuuids: 需排除的机器列表
|
25441
|
+
# @type ExcludedQuuids: Array
|
25432
25442
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
25433
25443
|
# @type RequestId: String
|
25434
25444
|
|
25435
|
-
attr_accessor :HostRange, :ItemLabels, :Quuids, :TotalCount, :ItemLabelIds, :RequestId
|
25445
|
+
attr_accessor :HostRange, :ItemLabels, :Quuids, :TotalCount, :ItemLabelIds, :ExcludedQuuids, :RequestId
|
25436
25446
|
|
25437
|
-
def initialize(hostrange=nil, itemlabels=nil, quuids=nil, totalcount=nil, itemlabelids=nil, requestid=nil)
|
25447
|
+
def initialize(hostrange=nil, itemlabels=nil, quuids=nil, totalcount=nil, itemlabelids=nil, excludedquuids=nil, requestid=nil)
|
25438
25448
|
@HostRange = hostrange
|
25439
25449
|
@ItemLabels = itemlabels
|
25440
25450
|
@Quuids = quuids
|
25441
25451
|
@TotalCount = totalcount
|
25442
25452
|
@ItemLabelIds = itemlabelids
|
25453
|
+
@ExcludedQuuids = excludedquuids
|
25443
25454
|
@RequestId = requestid
|
25444
25455
|
end
|
25445
25456
|
|
@@ -25449,6 +25460,7 @@ module TencentCloud
|
|
25449
25460
|
@Quuids = params['Quuids']
|
25450
25461
|
@TotalCount = params['TotalCount']
|
25451
25462
|
@ItemLabelIds = params['ItemLabelIds']
|
25463
|
+
@ExcludedQuuids = params['ExcludedQuuids']
|
25452
25464
|
@RequestId = params['RequestId']
|
25453
25465
|
end
|
25454
25466
|
end
|
@@ -35260,15 +35272,18 @@ module TencentCloud
|
|
35260
35272
|
# @type Quuids: Array
|
35261
35273
|
# @param ItemLabelIds: 项目或标签的id列表,自选主机时为空
|
35262
35274
|
# @type ItemLabelIds: Array
|
35275
|
+
# @param ExcludedQuuids: 需排除的机器列表
|
35276
|
+
# @type ExcludedQuuids: Array
|
35263
35277
|
|
35264
|
-
attr_accessor :Type, :HostRange, :ItemLabels, :Quuids, :ItemLabelIds
|
35278
|
+
attr_accessor :Type, :HostRange, :ItemLabels, :Quuids, :ItemLabelIds, :ExcludedQuuids
|
35265
35279
|
|
35266
|
-
def initialize(type=nil, hostrange=nil, itemlabels=nil, quuids=nil, itemlabelids=nil)
|
35280
|
+
def initialize(type=nil, hostrange=nil, itemlabels=nil, quuids=nil, itemlabelids=nil, excludedquuids=nil)
|
35267
35281
|
@Type = type
|
35268
35282
|
@HostRange = hostrange
|
35269
35283
|
@ItemLabels = itemlabels
|
35270
35284
|
@Quuids = quuids
|
35271
35285
|
@ItemLabelIds = itemlabelids
|
35286
|
+
@ExcludedQuuids = excludedquuids
|
35272
35287
|
end
|
35273
35288
|
|
35274
35289
|
def deserialize(params)
|
@@ -35277,6 +35292,7 @@ module TencentCloud
|
|
35277
35292
|
@ItemLabels = params['ItemLabels']
|
35278
35293
|
@Quuids = params['Quuids']
|
35279
35294
|
@ItemLabelIds = params['ItemLabelIds']
|
35295
|
+
@ExcludedQuuids = params['ExcludedQuuids']
|
35280
35296
|
end
|
35281
35297
|
end
|
35282
35298
|
|
@@ -35355,10 +35371,12 @@ module TencentCloud
|
|
35355
35371
|
# @type IsDisabled: Integer
|
35356
35372
|
# @param Quuids: 主机列表
|
35357
35373
|
# @type Quuids: Array
|
35374
|
+
# @param ExcludedQuuids: 需排除的机器列表
|
35375
|
+
# @type ExcludedQuuids: Array
|
35358
35376
|
|
35359
|
-
attr_accessor :Id, :Name, :Events, :HostLabels, :Receivers, :Format, :CustomFields, :IsDisabled, :Quuids
|
35377
|
+
attr_accessor :Id, :Name, :Events, :HostLabels, :Receivers, :Format, :CustomFields, :IsDisabled, :Quuids, :ExcludedQuuids
|
35360
35378
|
|
35361
|
-
def initialize(id=nil, name=nil, events=nil, hostlabels=nil, receivers=nil, format=nil, customfields=nil, isdisabled=nil, quuids=nil)
|
35379
|
+
def initialize(id=nil, name=nil, events=nil, hostlabels=nil, receivers=nil, format=nil, customfields=nil, isdisabled=nil, quuids=nil, excludedquuids=nil)
|
35362
35380
|
@Id = id
|
35363
35381
|
@Name = name
|
35364
35382
|
@Events = events
|
@@ -35368,6 +35386,7 @@ module TencentCloud
|
|
35368
35386
|
@CustomFields = customfields
|
35369
35387
|
@IsDisabled = isdisabled
|
35370
35388
|
@Quuids = quuids
|
35389
|
+
@ExcludedQuuids = excludedquuids
|
35371
35390
|
end
|
35372
35391
|
|
35373
35392
|
def deserialize(params)
|
@@ -35408,6 +35427,7 @@ module TencentCloud
|
|
35408
35427
|
end
|
35409
35428
|
@IsDisabled = params['IsDisabled']
|
35410
35429
|
@Quuids = params['Quuids']
|
35430
|
+
@ExcludedQuuids = params['ExcludedQuuids']
|
35411
35431
|
end
|
35412
35432
|
end
|
35413
35433
|
|
@@ -38786,10 +38806,12 @@ module TencentCloud
|
|
38786
38806
|
# @type TimeoutPeriod: Integer
|
38787
38807
|
# @param VulIds: 需要扫描的漏洞id
|
38788
38808
|
# @type VulIds: Array
|
38809
|
+
# @param ScanMethod: 0版本比对,2版本比对+poc
|
38810
|
+
# @type ScanMethod: Integer
|
38789
38811
|
|
38790
|
-
attr_accessor :VulLevels, :HostType, :VulCategories, :QuuidList, :VulEmergency, :TimeoutPeriod, :VulIds
|
38812
|
+
attr_accessor :VulLevels, :HostType, :VulCategories, :QuuidList, :VulEmergency, :TimeoutPeriod, :VulIds, :ScanMethod
|
38791
38813
|
|
38792
|
-
def initialize(vullevels=nil, hosttype=nil, vulcategories=nil, quuidlist=nil, vulemergency=nil, timeoutperiod=nil, vulids=nil)
|
38814
|
+
def initialize(vullevels=nil, hosttype=nil, vulcategories=nil, quuidlist=nil, vulemergency=nil, timeoutperiod=nil, vulids=nil, scanmethod=nil)
|
38793
38815
|
@VulLevels = vullevels
|
38794
38816
|
@HostType = hosttype
|
38795
38817
|
@VulCategories = vulcategories
|
@@ -38797,6 +38819,7 @@ module TencentCloud
|
|
38797
38819
|
@VulEmergency = vulemergency
|
38798
38820
|
@TimeoutPeriod = timeoutperiod
|
38799
38821
|
@VulIds = vulids
|
38822
|
+
@ScanMethod = scanmethod
|
38800
38823
|
end
|
38801
38824
|
|
38802
38825
|
def deserialize(params)
|
@@ -38807,6 +38830,7 @@ module TencentCloud
|
|
38807
38830
|
@VulEmergency = params['VulEmergency']
|
38808
38831
|
@TimeoutPeriod = params['TimeoutPeriod']
|
38809
38832
|
@VulIds = params['VulIds']
|
38833
|
+
@ScanMethod = params['ScanMethod']
|
38810
38834
|
end
|
38811
38835
|
end
|
38812
38836
|
|
@@ -38851,10 +38875,12 @@ module TencentCloud
|
|
38851
38875
|
# @type EnableScan: Integer
|
38852
38876
|
# @param Uuids: 为空默认扫描全部专业版、旗舰版、普惠版主机,不为空只扫描选中主机
|
38853
38877
|
# @type Uuids: Array
|
38878
|
+
# @param ScanMethod: 0版本比对,2版本比对+poc
|
38879
|
+
# @type ScanMethod: Integer
|
38854
38880
|
|
38855
|
-
attr_accessor :TimerInterval, :VulCategories, :VulLevels, :TimerTime, :VulEmergency, :StartTime, :EndTime, :EnableScan, :Uuids
|
38881
|
+
attr_accessor :TimerInterval, :VulCategories, :VulLevels, :TimerTime, :VulEmergency, :StartTime, :EndTime, :EnableScan, :Uuids, :ScanMethod
|
38856
38882
|
|
38857
|
-
def initialize(timerinterval=nil, vulcategories=nil, vullevels=nil, timertime=nil, vulemergency=nil, starttime=nil, endtime=nil, enablescan=nil, uuids=nil)
|
38883
|
+
def initialize(timerinterval=nil, vulcategories=nil, vullevels=nil, timertime=nil, vulemergency=nil, starttime=nil, endtime=nil, enablescan=nil, uuids=nil, scanmethod=nil)
|
38858
38884
|
@TimerInterval = timerinterval
|
38859
38885
|
@VulCategories = vulcategories
|
38860
38886
|
@VulLevels = vullevels
|
@@ -38864,6 +38890,7 @@ module TencentCloud
|
|
38864
38890
|
@EndTime = endtime
|
38865
38891
|
@EnableScan = enablescan
|
38866
38892
|
@Uuids = uuids
|
38893
|
+
@ScanMethod = scanmethod
|
38867
38894
|
end
|
38868
38895
|
|
38869
38896
|
def deserialize(params)
|
@@ -38876,6 +38903,7 @@ module TencentCloud
|
|
38876
38903
|
@EndTime = params['EndTime']
|
38877
38904
|
@EnableScan = params['EnableScan']
|
38878
38905
|
@Uuids = params['Uuids']
|
38906
|
+
@ScanMethod = params['ScanMethod']
|
38879
38907
|
end
|
38880
38908
|
end
|
38881
38909
|
|
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.892
|
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-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|