tencentcloud-sdk-cwp 3.0.443 → 3.0.444
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 +33 -9
- 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: 0298de231ae62ff7350bc0c3a6a5e51113a9a689
|
4
|
+
data.tar.gz: 26e2b15ab6b27b4c203a66ea3a6514476413daa9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3180a95762ee53e0a163162488739f070b8cd09a3fa73f071f32b4c407622cb2d651127bec4831ee1ef51d9c614e3f1e5587756dbb18a21a89d0fcc1e9bf3fda
|
7
|
+
data.tar.gz: 94458a09007ebb4c6f5a97a56fbcda466262e18f0c758ffa6d68a60fc441c1ffad20d5c7651ab1c4f62a0c2b1f6af4bdde6eefe18698135d3dffa40689062638
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.444
|
data/lib/v20180228/models.rb
CHANGED
@@ -3819,15 +3819,18 @@ module TencentCloud
|
|
3819
3819
|
# @type TimeoutPeriod: Integer
|
3820
3820
|
# @param EngineType: 1标准模式(只报严重、高危)、2增强模式(报严重、高危、中危)、3严格模式(报严重、高、中、低、提示)
|
3821
3821
|
# @type EngineType: Integer
|
3822
|
+
# @param EnableMemShellScan: 是否开启恶意进程查杀[0:未开启,1:开启]
|
3823
|
+
# @type EnableMemShellScan: Integer
|
3822
3824
|
|
3823
|
-
attr_accessor :ScanPattern, :HostType, :QuuidList, :TimeoutPeriod, :EngineType
|
3825
|
+
attr_accessor :ScanPattern, :HostType, :QuuidList, :TimeoutPeriod, :EngineType, :EnableMemShellScan
|
3824
3826
|
|
3825
|
-
def initialize(scanpattern=nil, hosttype=nil, quuidlist=nil, timeoutperiod=nil, enginetype=nil)
|
3827
|
+
def initialize(scanpattern=nil, hosttype=nil, quuidlist=nil, timeoutperiod=nil, enginetype=nil, enablememshellscan=nil)
|
3826
3828
|
@ScanPattern = scanpattern
|
3827
3829
|
@HostType = hosttype
|
3828
3830
|
@QuuidList = quuidlist
|
3829
3831
|
@TimeoutPeriod = timeoutperiod
|
3830
3832
|
@EngineType = enginetype
|
3833
|
+
@EnableMemShellScan = enablememshellscan
|
3831
3834
|
end
|
3832
3835
|
|
3833
3836
|
def deserialize(params)
|
@@ -3836,6 +3839,7 @@ module TencentCloud
|
|
3836
3839
|
@QuuidList = params['QuuidList']
|
3837
3840
|
@TimeoutPeriod = params['TimeoutPeriod']
|
3838
3841
|
@EngineType = params['EngineType']
|
3842
|
+
@EnableMemShellScan = params['EnableMemShellScan']
|
3839
3843
|
end
|
3840
3844
|
end
|
3841
3845
|
|
@@ -10817,15 +10821,19 @@ module TencentCloud
|
|
10817
10821
|
# @type List: Array
|
10818
10822
|
# @param IsPop: 是否弹出提示 true 弹出, false不弹
|
10819
10823
|
# @type IsPop: Boolean
|
10824
|
+
# @param ProcessList: 异常进程列表信息
|
10825
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10826
|
+
# @type ProcessList: Array
|
10820
10827
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
10821
10828
|
# @type RequestId: String
|
10822
10829
|
|
10823
|
-
attr_accessor :IsCheckRisk, :List, :IsPop, :RequestId
|
10830
|
+
attr_accessor :IsCheckRisk, :List, :IsPop, :ProcessList, :RequestId
|
10824
10831
|
|
10825
|
-
def initialize(ischeckrisk=nil, list=nil, ispop=nil, requestid=nil)
|
10832
|
+
def initialize(ischeckrisk=nil, list=nil, ispop=nil, processlist=nil, requestid=nil)
|
10826
10833
|
@IsCheckRisk = ischeckrisk
|
10827
10834
|
@List = list
|
10828
10835
|
@IsPop = ispop
|
10836
|
+
@ProcessList = processlist
|
10829
10837
|
@RequestId = requestid
|
10830
10838
|
end
|
10831
10839
|
|
@@ -10840,6 +10848,14 @@ module TencentCloud
|
|
10840
10848
|
end
|
10841
10849
|
end
|
10842
10850
|
@IsPop = params['IsPop']
|
10851
|
+
unless params['ProcessList'].nil?
|
10852
|
+
@ProcessList = []
|
10853
|
+
params['ProcessList'].each do |i|
|
10854
|
+
malwarerisk_tmp = MalwareRisk.new
|
10855
|
+
malwarerisk_tmp.deserialize(i)
|
10856
|
+
@ProcessList << malwarerisk_tmp
|
10857
|
+
end
|
10858
|
+
end
|
10843
10859
|
@RequestId = params['RequestId']
|
10844
10860
|
end
|
10845
10861
|
end
|
@@ -10888,12 +10904,14 @@ module TencentCloud
|
|
10888
10904
|
# @type EngineType: Integer
|
10889
10905
|
# @param EnableInspiredEngine: 启发引擎 0 关闭 1开启
|
10890
10906
|
# @type EnableInspiredEngine: Integer
|
10907
|
+
# @param EnableMemShellScan: 是否开启恶意进程查杀[0:未开启,1:开启]
|
10908
|
+
# @type EnableMemShellScan: Integer
|
10891
10909
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
10892
10910
|
# @type RequestId: String
|
10893
10911
|
|
10894
|
-
attr_accessor :CheckPattern, :StartTime, :EndTime, :IsGlobal, :QuuidList, :MonitoringPattern, :Cycle, :EnableScan, :Id, :RealTimeMonitoring, :AutoIsolation, :ClickTimeout, :KillProcess, :EngineType, :EnableInspiredEngine, :RequestId
|
10912
|
+
attr_accessor :CheckPattern, :StartTime, :EndTime, :IsGlobal, :QuuidList, :MonitoringPattern, :Cycle, :EnableScan, :Id, :RealTimeMonitoring, :AutoIsolation, :ClickTimeout, :KillProcess, :EngineType, :EnableInspiredEngine, :EnableMemShellScan, :RequestId
|
10895
10913
|
|
10896
|
-
def initialize(checkpattern=nil, starttime=nil, endtime=nil, isglobal=nil, quuidlist=nil, monitoringpattern=nil, cycle=nil, enablescan=nil, id=nil, realtimemonitoring=nil, autoisolation=nil, clicktimeout=nil, killprocess=nil, enginetype=nil, enableinspiredengine=nil, requestid=nil)
|
10914
|
+
def initialize(checkpattern=nil, starttime=nil, endtime=nil, isglobal=nil, quuidlist=nil, monitoringpattern=nil, cycle=nil, enablescan=nil, id=nil, realtimemonitoring=nil, autoisolation=nil, clicktimeout=nil, killprocess=nil, enginetype=nil, enableinspiredengine=nil, enablememshellscan=nil, requestid=nil)
|
10897
10915
|
@CheckPattern = checkpattern
|
10898
10916
|
@StartTime = starttime
|
10899
10917
|
@EndTime = endtime
|
@@ -10909,6 +10927,7 @@ module TencentCloud
|
|
10909
10927
|
@KillProcess = killprocess
|
10910
10928
|
@EngineType = enginetype
|
10911
10929
|
@EnableInspiredEngine = enableinspiredengine
|
10930
|
+
@EnableMemShellScan = enablememshellscan
|
10912
10931
|
@RequestId = requestid
|
10913
10932
|
end
|
10914
10933
|
|
@@ -10928,6 +10947,7 @@ module TencentCloud
|
|
10928
10947
|
@KillProcess = params['KillProcess']
|
10929
10948
|
@EngineType = params['EngineType']
|
10930
10949
|
@EnableInspiredEngine = params['EnableInspiredEngine']
|
10950
|
+
@EnableMemShellScan = params['EnableMemShellScan']
|
10931
10951
|
@RequestId = params['RequestId']
|
10932
10952
|
end
|
10933
10953
|
end
|
@@ -16641,7 +16661,7 @@ module TencentCloud
|
|
16641
16661
|
# @type FilePath: String
|
16642
16662
|
# @param VirusName: 描述
|
16643
16663
|
# @type VirusName: String
|
16644
|
-
# @param Status: 状态;4-:待处理,5-已信任,6-已隔离,8
|
16664
|
+
# @param Status: 状态;4-:待处理,5-已信任,6-已隔离,8-文件已删除, 14:已处理
|
16645
16665
|
# @type Status: Integer
|
16646
16666
|
# @param Id: 唯一ID
|
16647
16667
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
@@ -17244,10 +17264,12 @@ module TencentCloud
|
|
17244
17264
|
# @type EngineType: Integer
|
17245
17265
|
# @param EnableInspiredEngine: 启发引擎开关 0 关闭 1开启
|
17246
17266
|
# @type EnableInspiredEngine: Integer
|
17267
|
+
# @param EnableMemShellScan: 是否开启恶意进程查杀[0:未开启,1:开启]
|
17268
|
+
# @type EnableMemShellScan: Integer
|
17247
17269
|
|
17248
|
-
attr_accessor :CheckPattern, :StartTime, :EndTime, :IsGlobal, :EnableScan, :MonitoringPattern, :Cycle, :RealTimeMonitoring, :QuuidList, :AutoIsolation, :KillProcess, :EngineType, :EnableInspiredEngine
|
17270
|
+
attr_accessor :CheckPattern, :StartTime, :EndTime, :IsGlobal, :EnableScan, :MonitoringPattern, :Cycle, :RealTimeMonitoring, :QuuidList, :AutoIsolation, :KillProcess, :EngineType, :EnableInspiredEngine, :EnableMemShellScan
|
17249
17271
|
|
17250
|
-
def initialize(checkpattern=nil, starttime=nil, endtime=nil, isglobal=nil, enablescan=nil, monitoringpattern=nil, cycle=nil, realtimemonitoring=nil, quuidlist=nil, autoisolation=nil, killprocess=nil, enginetype=nil, enableinspiredengine=nil)
|
17272
|
+
def initialize(checkpattern=nil, starttime=nil, endtime=nil, isglobal=nil, enablescan=nil, monitoringpattern=nil, cycle=nil, realtimemonitoring=nil, quuidlist=nil, autoisolation=nil, killprocess=nil, enginetype=nil, enableinspiredengine=nil, enablememshellscan=nil)
|
17251
17273
|
@CheckPattern = checkpattern
|
17252
17274
|
@StartTime = starttime
|
17253
17275
|
@EndTime = endtime
|
@@ -17261,6 +17283,7 @@ module TencentCloud
|
|
17261
17283
|
@KillProcess = killprocess
|
17262
17284
|
@EngineType = enginetype
|
17263
17285
|
@EnableInspiredEngine = enableinspiredengine
|
17286
|
+
@EnableMemShellScan = enablememshellscan
|
17264
17287
|
end
|
17265
17288
|
|
17266
17289
|
def deserialize(params)
|
@@ -17277,6 +17300,7 @@ module TencentCloud
|
|
17277
17300
|
@KillProcess = params['KillProcess']
|
17278
17301
|
@EngineType = params['EngineType']
|
17279
17302
|
@EnableInspiredEngine = params['EnableInspiredEngine']
|
17303
|
+
@EnableMemShellScan = params['EnableMemShellScan']
|
17280
17304
|
end
|
17281
17305
|
end
|
17282
17306
|
|
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.444
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-11-
|
11
|
+
date: 2022-11-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|