tencentcloud-sdk-cwp 1.0.322 → 1.0.323
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180228/models.rb +16 -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: 3f12310af0f8d92e3687bd9a261a501366a03ccf
|
4
|
+
data.tar.gz: 3c45997a9c0289e5b7eafc274cd8ca08b035a88a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a48bf6cf79da50b5a1e56fe2b6bc61e4fc449182bc4f96e05b0617cae02569a9eb79ad7817682fc4b8a63337c34a873f84d9d784d97269515b1000e37b870688
|
7
|
+
data.tar.gz: f2fe4ef5efb267a651a49d3b8aee3e0eafd53a56d48b2cb01724d3df5e5737a171205ca240ca6f5b9e25dd12e5419e09d2cb2b67195befbed7e6fa17a0638bc9
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.323
|
data/lib/v20180228/models.rb
CHANGED
@@ -9102,7 +9102,7 @@ module TencentCloud
|
|
9102
9102
|
# <li>VirusName - String - 是否必填:否 - 描述筛选</li>
|
9103
9103
|
# <li>CreateBeginTime - String - 是否必填:否 - 创建时间筛选-开始时间</li>
|
9104
9104
|
# <li>CreateEndTime - String - 是否必填:否 - 创建时间筛选-结束时间</li>
|
9105
|
-
# <li>Status - String - 是否必填:否 - 状态筛选 4待处理,5
|
9105
|
+
# <li>Status - String - 是否必填:否 - 状态筛选 4待处理,5信任,6已隔离,10隔离中,11恢复隔离中</li>
|
9106
9106
|
# @type Filters: Array
|
9107
9107
|
# @param By: 检测排序 CreateTime
|
9108
9108
|
# @type By: String
|
@@ -14684,7 +14684,7 @@ module TencentCloud
|
|
14684
14684
|
# @type Id: Integer
|
14685
14685
|
# @param Alias: 主机别名
|
14686
14686
|
# @type Alias: String
|
14687
|
-
# @param Tags:
|
14687
|
+
# @param Tags: 特性标签,已废弃字段,不会再返回标签,详情中才会返回标签信息
|
14688
14688
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
14689
14689
|
# @type Tags: Array
|
14690
14690
|
# @param FileCreateTime: 首次运行时间
|
@@ -14699,10 +14699,16 @@ module TencentCloud
|
|
14699
14699
|
# @type LatestScanTime: String
|
14700
14700
|
# @param Level: 风险等级 0未知、1低、2中、3高、4严重
|
14701
14701
|
# @type Level: Integer
|
14702
|
+
# @param CheckPlatform: '木马检测平台用,分割 1云查杀引擎、2TAV、3binaryAi、4异常行为、5威胁情报
|
14703
|
+
# @type CheckPlatform: String
|
14704
|
+
# @param ProcessExists: 木马进程是否存在 0:不存在,1:存在
|
14705
|
+
# @type ProcessExists: Integer
|
14706
|
+
# @param FileExists: 木马文件是否存在 0:不存在,1:存在
|
14707
|
+
# @type FileExists: Integer
|
14702
14708
|
|
14703
|
-
attr_accessor :HostIp, :Uuid, :FilePath, :VirusName, :Status, :Id, :Alias, :Tags, :FileCreateTime, :FileModifierTime, :CreateTime, :LatestScanTime, :Level
|
14709
|
+
attr_accessor :HostIp, :Uuid, :FilePath, :VirusName, :Status, :Id, :Alias, :Tags, :FileCreateTime, :FileModifierTime, :CreateTime, :LatestScanTime, :Level, :CheckPlatform, :ProcessExists, :FileExists
|
14704
14710
|
|
14705
|
-
def initialize(hostip=nil, uuid=nil, filepath=nil, virusname=nil, status=nil, id=nil, _alias=nil, tags=nil, filecreatetime=nil, filemodifiertime=nil, createtime=nil, latestscantime=nil, level=nil)
|
14711
|
+
def initialize(hostip=nil, uuid=nil, filepath=nil, virusname=nil, status=nil, id=nil, _alias=nil, tags=nil, filecreatetime=nil, filemodifiertime=nil, createtime=nil, latestscantime=nil, level=nil, checkplatform=nil, processexists=nil, fileexists=nil)
|
14706
14712
|
@HostIp = hostip
|
14707
14713
|
@Uuid = uuid
|
14708
14714
|
@FilePath = filepath
|
@@ -14716,6 +14722,9 @@ module TencentCloud
|
|
14716
14722
|
@CreateTime = createtime
|
14717
14723
|
@LatestScanTime = latestscantime
|
14718
14724
|
@Level = level
|
14725
|
+
@CheckPlatform = checkplatform
|
14726
|
+
@ProcessExists = processexists
|
14727
|
+
@FileExists = fileexists
|
14719
14728
|
end
|
14720
14729
|
|
14721
14730
|
def deserialize(params)
|
@@ -14732,6 +14741,9 @@ module TencentCloud
|
|
14732
14741
|
@CreateTime = params['CreateTime']
|
14733
14742
|
@LatestScanTime = params['LatestScanTime']
|
14734
14743
|
@Level = params['Level']
|
14744
|
+
@CheckPlatform = params['CheckPlatform']
|
14745
|
+
@ProcessExists = params['ProcessExists']
|
14746
|
+
@FileExists = params['FileExists']
|
14735
14747
|
end
|
14736
14748
|
end
|
14737
14749
|
|
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: 1.0.
|
4
|
+
version: 1.0.323
|
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-05-
|
11
|
+
date: 2022-05-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|