tencentcloud-sdk-cwp 3.0.861 → 3.0.863
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 +25 -4
- 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: 7c298524169c738ba993f012ee760311b33776b1
|
4
|
+
data.tar.gz: ff1473b37a22546c55d3fda032e1185a7ef2754f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a0972e9b889c2ad62751e94ad7607ba4e11d78755d18b3148b7f4277c5ae7cf55dcd258c13a366f2a8b379dc0c37f380bc8186c8939a5d2fc384ebbec0144a78
|
7
|
+
data.tar.gz: 98fb573f3dfca70b243e70167cc275ca1c9fa1a2e68150f2553b953405ed4062c45949760ea3c8dfb587651d5c96424feec258777ad5661820a0b51e567c2314
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.863
|
data/lib/v20180228/models.rb
CHANGED
@@ -19209,12 +19209,16 @@ module TencentCloud
|
|
19209
19209
|
# @type EnableInspiredEngine: Integer
|
19210
19210
|
# @param EnableMemShellScan: 是否开启恶意进程查杀[0:未开启,1:开启]
|
19211
19211
|
# @type EnableMemShellScan: Integer
|
19212
|
+
# @param ProtectMode: 防护模式 0 标准 1 重保
|
19213
|
+
# @type ProtectMode: Integer
|
19214
|
+
# @param ProtectFileScope: 查杀范围 0 脚本类之外的恶意文件,1全部恶意文件
|
19215
|
+
# @type ProtectFileScope: Integer
|
19212
19216
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
19213
19217
|
# @type RequestId: String
|
19214
19218
|
|
19215
|
-
attr_accessor :CheckPattern, :StartTime, :EndTime, :IsGlobal, :QuuidList, :MonitoringPattern, :Cycle, :EnableScan, :Id, :RealTimeMonitoring, :AutoIsolation, :ClickTimeout, :KillProcess, :EngineType, :EnableInspiredEngine, :EnableMemShellScan, :RequestId
|
19219
|
+
attr_accessor :CheckPattern, :StartTime, :EndTime, :IsGlobal, :QuuidList, :MonitoringPattern, :Cycle, :EnableScan, :Id, :RealTimeMonitoring, :AutoIsolation, :ClickTimeout, :KillProcess, :EngineType, :EnableInspiredEngine, :EnableMemShellScan, :ProtectMode, :ProtectFileScope, :RequestId
|
19216
19220
|
|
19217
|
-
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)
|
19221
|
+
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, protectmode=nil, protectfilescope=nil, requestid=nil)
|
19218
19222
|
@CheckPattern = checkpattern
|
19219
19223
|
@StartTime = starttime
|
19220
19224
|
@EndTime = endtime
|
@@ -19231,6 +19235,8 @@ module TencentCloud
|
|
19231
19235
|
@EngineType = enginetype
|
19232
19236
|
@EnableInspiredEngine = enableinspiredengine
|
19233
19237
|
@EnableMemShellScan = enablememshellscan
|
19238
|
+
@ProtectMode = protectmode
|
19239
|
+
@ProtectFileScope = protectfilescope
|
19234
19240
|
@RequestId = requestid
|
19235
19241
|
end
|
19236
19242
|
|
@@ -19251,6 +19257,8 @@ module TencentCloud
|
|
19251
19257
|
@EngineType = params['EngineType']
|
19252
19258
|
@EnableInspiredEngine = params['EnableInspiredEngine']
|
19253
19259
|
@EnableMemShellScan = params['EnableMemShellScan']
|
19260
|
+
@ProtectMode = params['ProtectMode']
|
19261
|
+
@ProtectFileScope = params['ProtectFileScope']
|
19254
19262
|
@RequestId = params['RequestId']
|
19255
19263
|
end
|
19256
19264
|
end
|
@@ -34498,16 +34506,23 @@ module TencentCloud
|
|
34498
34506
|
# @type AutoIsolation: Integer
|
34499
34507
|
# @param KillProcess: 是否杀掉进程 1杀掉 0不杀掉
|
34500
34508
|
# @type KillProcess: Integer
|
34509
|
+
# @param DoClean: 1 清理, 0 不清理
|
34510
|
+
# <li>本操作会修复被篡改的系统命令,计划任务等系统文件,操作中请确保yum/apt 可用</li>
|
34511
|
+
# @type DoClean: Integer
|
34501
34512
|
# @param EngineType: 1标准模式(只报严重、高危)、2增强模式(报严重、高危、中危)、3严格模式(报严重、高、中、低、提示)
|
34502
34513
|
# @type EngineType: Integer
|
34503
34514
|
# @param EnableInspiredEngine: 启发引擎开关 0 关闭 1开启
|
34504
34515
|
# @type EnableInspiredEngine: Integer
|
34505
34516
|
# @param EnableMemShellScan: 是否开启恶意进程查杀[0:未开启,1:开启]
|
34506
34517
|
# @type EnableMemShellScan: Integer
|
34518
|
+
# @param ProtectMode: 防护模式 0 标准 1重保
|
34519
|
+
# @type ProtectMode: Integer
|
34520
|
+
# @param ProtectFileScope: 查杀范围 0 脚本类之外的恶意文件,1全部恶意文件
|
34521
|
+
# @type ProtectFileScope: Integer
|
34507
34522
|
|
34508
|
-
attr_accessor :CheckPattern, :StartTime, :EndTime, :IsGlobal, :EnableScan, :MonitoringPattern, :Cycle, :RealTimeMonitoring, :QuuidList, :AutoIsolation, :KillProcess, :EngineType, :EnableInspiredEngine, :EnableMemShellScan
|
34523
|
+
attr_accessor :CheckPattern, :StartTime, :EndTime, :IsGlobal, :EnableScan, :MonitoringPattern, :Cycle, :RealTimeMonitoring, :QuuidList, :AutoIsolation, :KillProcess, :DoClean, :EngineType, :EnableInspiredEngine, :EnableMemShellScan, :ProtectMode, :ProtectFileScope
|
34509
34524
|
|
34510
|
-
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)
|
34525
|
+
def initialize(checkpattern=nil, starttime=nil, endtime=nil, isglobal=nil, enablescan=nil, monitoringpattern=nil, cycle=nil, realtimemonitoring=nil, quuidlist=nil, autoisolation=nil, killprocess=nil, doclean=nil, enginetype=nil, enableinspiredengine=nil, enablememshellscan=nil, protectmode=nil, protectfilescope=nil)
|
34511
34526
|
@CheckPattern = checkpattern
|
34512
34527
|
@StartTime = starttime
|
34513
34528
|
@EndTime = endtime
|
@@ -34519,9 +34534,12 @@ module TencentCloud
|
|
34519
34534
|
@QuuidList = quuidlist
|
34520
34535
|
@AutoIsolation = autoisolation
|
34521
34536
|
@KillProcess = killprocess
|
34537
|
+
@DoClean = doclean
|
34522
34538
|
@EngineType = enginetype
|
34523
34539
|
@EnableInspiredEngine = enableinspiredengine
|
34524
34540
|
@EnableMemShellScan = enablememshellscan
|
34541
|
+
@ProtectMode = protectmode
|
34542
|
+
@ProtectFileScope = protectfilescope
|
34525
34543
|
end
|
34526
34544
|
|
34527
34545
|
def deserialize(params)
|
@@ -34536,9 +34554,12 @@ module TencentCloud
|
|
34536
34554
|
@QuuidList = params['QuuidList']
|
34537
34555
|
@AutoIsolation = params['AutoIsolation']
|
34538
34556
|
@KillProcess = params['KillProcess']
|
34557
|
+
@DoClean = params['DoClean']
|
34539
34558
|
@EngineType = params['EngineType']
|
34540
34559
|
@EnableInspiredEngine = params['EnableInspiredEngine']
|
34541
34560
|
@EnableMemShellScan = params['EnableMemShellScan']
|
34561
|
+
@ProtectMode = params['ProtectMode']
|
34562
|
+
@ProtectFileScope = params['ProtectFileScope']
|
34542
34563
|
end
|
34543
34564
|
end
|
34544
34565
|
|
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.863
|
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-07-
|
11
|
+
date: 2024-07-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|