tencentcloud-sdk-tcss 3.0.440 → 3.0.441
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/v20201101/models.rb +47 -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: 124fa318c5f4f9473c6f36ef4dff29200f742d21
|
4
|
+
data.tar.gz: 6193e87dfa4ac621386194f034344e8c336cfcc4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d9902e4987a9567eb1c1134db8b18a4cabf02d244792063ccda2aa6953f93504c598f9f7437ab0e63d18177277de60b2af61f56091594e72fc1934dad2f5776
|
7
|
+
data.tar.gz: 79790830b21d7a91525f94019da9ece97837eef014eab3bc34d079986ebbbb8503a2b44199b3d27bf1b8200cd5ed415a3703baf4d8b2e1076406de4e96f11af2
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.441
|
data/lib/v20201101/models.rb
CHANGED
@@ -11232,18 +11232,25 @@ module TencentCloud
|
|
11232
11232
|
# @type UnhandledFileCnt: Integer
|
11233
11233
|
# @param UnhandledVirusEventCnt: 未处理木马事件
|
11234
11234
|
# @type UnhandledVirusEventCnt: Integer
|
11235
|
+
# @param UnhandledMaliciousConnectionEventCnt: 未处理恶意外连事件
|
11236
|
+
# @type UnhandledMaliciousConnectionEventCnt: Integer
|
11237
|
+
# @param UnhandledK8sApiEventCnt: 未处理k8sApi事件
|
11238
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11239
|
+
# @type UnhandledK8sApiEventCnt: Integer
|
11235
11240
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
11236
11241
|
# @type RequestId: String
|
11237
11242
|
|
11238
|
-
attr_accessor :UnhandledEscapeCnt, :UnhandledReverseShellCnt, :UnhandledRiskSyscallCnt, :UnhandledAbnormalProcessCnt, :UnhandledFileCnt, :UnhandledVirusEventCnt, :RequestId
|
11243
|
+
attr_accessor :UnhandledEscapeCnt, :UnhandledReverseShellCnt, :UnhandledRiskSyscallCnt, :UnhandledAbnormalProcessCnt, :UnhandledFileCnt, :UnhandledVirusEventCnt, :UnhandledMaliciousConnectionEventCnt, :UnhandledK8sApiEventCnt, :RequestId
|
11239
11244
|
|
11240
|
-
def initialize(unhandledescapecnt=nil, unhandledreverseshellcnt=nil, unhandledrisksyscallcnt=nil, unhandledabnormalprocesscnt=nil, unhandledfilecnt=nil, unhandledviruseventcnt=nil, requestid=nil)
|
11245
|
+
def initialize(unhandledescapecnt=nil, unhandledreverseshellcnt=nil, unhandledrisksyscallcnt=nil, unhandledabnormalprocesscnt=nil, unhandledfilecnt=nil, unhandledviruseventcnt=nil, unhandledmaliciousconnectioneventcnt=nil, unhandledk8sapieventcnt=nil, requestid=nil)
|
11241
11246
|
@UnhandledEscapeCnt = unhandledescapecnt
|
11242
11247
|
@UnhandledReverseShellCnt = unhandledreverseshellcnt
|
11243
11248
|
@UnhandledRiskSyscallCnt = unhandledrisksyscallcnt
|
11244
11249
|
@UnhandledAbnormalProcessCnt = unhandledabnormalprocesscnt
|
11245
11250
|
@UnhandledFileCnt = unhandledfilecnt
|
11246
11251
|
@UnhandledVirusEventCnt = unhandledviruseventcnt
|
11252
|
+
@UnhandledMaliciousConnectionEventCnt = unhandledmaliciousconnectioneventcnt
|
11253
|
+
@UnhandledK8sApiEventCnt = unhandledk8sapieventcnt
|
11247
11254
|
@RequestId = requestid
|
11248
11255
|
end
|
11249
11256
|
|
@@ -11254,6 +11261,8 @@ module TencentCloud
|
|
11254
11261
|
@UnhandledAbnormalProcessCnt = params['UnhandledAbnormalProcessCnt']
|
11255
11262
|
@UnhandledFileCnt = params['UnhandledFileCnt']
|
11256
11263
|
@UnhandledVirusEventCnt = params['UnhandledVirusEventCnt']
|
11264
|
+
@UnhandledMaliciousConnectionEventCnt = params['UnhandledMaliciousConnectionEventCnt']
|
11265
|
+
@UnhandledK8sApiEventCnt = params['UnhandledK8sApiEventCnt']
|
11257
11266
|
@RequestId = params['RequestId']
|
11258
11267
|
end
|
11259
11268
|
end
|
@@ -21999,6 +22008,26 @@ module TencentCloud
|
|
21999
22008
|
end
|
22000
22009
|
end
|
22001
22010
|
|
22011
|
+
# 漏洞防御插件 rasp信息
|
22012
|
+
class RaspInfo < TencentCloud::Common::AbstractModel
|
22013
|
+
# @param Name: rasp名称
|
22014
|
+
# @type Name: String
|
22015
|
+
# @param Value: rasp 描述
|
22016
|
+
# @type Value: String
|
22017
|
+
|
22018
|
+
attr_accessor :Name, :Value
|
22019
|
+
|
22020
|
+
def initialize(name=nil, value=nil)
|
22021
|
+
@Name = name
|
22022
|
+
@Value = value
|
22023
|
+
end
|
22024
|
+
|
22025
|
+
def deserialize(params)
|
22026
|
+
@Name = params['Name']
|
22027
|
+
@Value = params['Value']
|
22028
|
+
end
|
22029
|
+
end
|
22030
|
+
|
22002
22031
|
# 地域信息
|
22003
22032
|
class RegionInfo < TencentCloud::Common::AbstractModel
|
22004
22033
|
# @param Region: 地域标识
|
@@ -23234,6 +23263,8 @@ module TencentCloud
|
|
23234
23263
|
# ET_RISK_SYSCALL:高危系统调用
|
23235
23264
|
# ET_ABNORMAL_PROCESS: 异常进程
|
23236
23265
|
# ET_ACCESS_CONTROL 文件篡改
|
23266
|
+
# ET_VIRUS 木马事件
|
23267
|
+
# ET_MALICIOUS_CONNECTION 恶意外连事件
|
23237
23268
|
# @type EventType: String
|
23238
23269
|
|
23239
23270
|
attr_accessor :EventSet, :EventType
|
@@ -24699,10 +24730,13 @@ module TencentCloud
|
|
24699
24730
|
# @param JNDIUrl: 接口Url
|
24700
24731
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
24701
24732
|
# @type JNDIUrl: String
|
24733
|
+
# @param RaspDetail: rasp detail
|
24734
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
24735
|
+
# @type RaspDetail: Array
|
24702
24736
|
|
24703
|
-
attr_accessor :CVEID, :VulName, :PocID, :EventType, :SourceIP, :City, :EventCount, :ContainerID, :ContainerName, :ImageID, :ImageName, :Status, :SourcePort, :EventID, :HostName, :HostIP, :PublicIP, :PodName, :Description, :OfficialSolution, :NetworkPayload, :PID, :MainClass, :StackTrace, :ServerAccount, :ServerPort, :ServerExe, :ServerArg, :QUUID, :ContainerNetStatus, :ContainerNetSubStatus, :ContainerIsolateOperationSrc, :ContainerStatus, :JNDIUrl
|
24737
|
+
attr_accessor :CVEID, :VulName, :PocID, :EventType, :SourceIP, :City, :EventCount, :ContainerID, :ContainerName, :ImageID, :ImageName, :Status, :SourcePort, :EventID, :HostName, :HostIP, :PublicIP, :PodName, :Description, :OfficialSolution, :NetworkPayload, :PID, :MainClass, :StackTrace, :ServerAccount, :ServerPort, :ServerExe, :ServerArg, :QUUID, :ContainerNetStatus, :ContainerNetSubStatus, :ContainerIsolateOperationSrc, :ContainerStatus, :JNDIUrl, :RaspDetail
|
24704
24738
|
|
24705
|
-
def initialize(cveid=nil, vulname=nil, pocid=nil, eventtype=nil, sourceip=nil, city=nil, eventcount=nil, containerid=nil, containername=nil, imageid=nil, imagename=nil, status=nil, sourceport=nil, eventid=nil, hostname=nil, hostip=nil, publicip=nil, podname=nil, description=nil, officialsolution=nil, networkpayload=nil, pid=nil, mainclass=nil, stacktrace=nil, serveraccount=nil, serverport=nil, serverexe=nil, serverarg=nil, quuid=nil, containernetstatus=nil, containernetsubstatus=nil, containerisolateoperationsrc=nil, containerstatus=nil, jndiurl=nil)
|
24739
|
+
def initialize(cveid=nil, vulname=nil, pocid=nil, eventtype=nil, sourceip=nil, city=nil, eventcount=nil, containerid=nil, containername=nil, imageid=nil, imagename=nil, status=nil, sourceport=nil, eventid=nil, hostname=nil, hostip=nil, publicip=nil, podname=nil, description=nil, officialsolution=nil, networkpayload=nil, pid=nil, mainclass=nil, stacktrace=nil, serveraccount=nil, serverport=nil, serverexe=nil, serverarg=nil, quuid=nil, containernetstatus=nil, containernetsubstatus=nil, containerisolateoperationsrc=nil, containerstatus=nil, jndiurl=nil, raspdetail=nil)
|
24706
24740
|
@CVEID = cveid
|
24707
24741
|
@VulName = vulname
|
24708
24742
|
@PocID = pocid
|
@@ -24737,6 +24771,7 @@ module TencentCloud
|
|
24737
24771
|
@ContainerIsolateOperationSrc = containerisolateoperationsrc
|
24738
24772
|
@ContainerStatus = containerstatus
|
24739
24773
|
@JNDIUrl = jndiurl
|
24774
|
+
@RaspDetail = raspdetail
|
24740
24775
|
end
|
24741
24776
|
|
24742
24777
|
def deserialize(params)
|
@@ -24774,6 +24809,14 @@ module TencentCloud
|
|
24774
24809
|
@ContainerIsolateOperationSrc = params['ContainerIsolateOperationSrc']
|
24775
24810
|
@ContainerStatus = params['ContainerStatus']
|
24776
24811
|
@JNDIUrl = params['JNDIUrl']
|
24812
|
+
unless params['RaspDetail'].nil?
|
24813
|
+
@RaspDetail = []
|
24814
|
+
params['RaspDetail'].each do |i|
|
24815
|
+
raspinfo_tmp = RaspInfo.new
|
24816
|
+
raspinfo_tmp.deserialize(i)
|
24817
|
+
@RaspDetail << raspinfo_tmp
|
24818
|
+
end
|
24819
|
+
end
|
24777
24820
|
end
|
24778
24821
|
end
|
24779
24822
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-tcss
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.441
|
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
|
+
date: 2022-11-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|