tencentcloud-sdk-tcss 1.0.228 → 1.0.232
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/v20201101/models.rb +24 -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: bb4347dde34d2761cc754990fc4c02cedf05273a
|
4
|
+
data.tar.gz: 0a006ec648fb25e604ed2410ba2e3cb53f6d610a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ca24a4fee1e11a3c388215f7c061603b15a1d3181db07117f96c50a491b0611a981008b9b4d9c87aa4b6bb5f3232f81622dfcdbdaf06e2bc64aec245867d5310
|
7
|
+
data.tar.gz: da254389a005457261439101f2439c5dccf64563c53dd4fecdf1d4b3bd946ceca3026ee0998a4826f5e16728ee962bbd397c05c67a5d678f399b600e9b011a4c
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.232
|
data/lib/v20201101/models.rb
CHANGED
@@ -9587,12 +9587,18 @@ module TencentCloud
|
|
9587
9587
|
# CONTAINER_NOT_FOUND_DEAL_RECOVER:恢复时,容器不存在
|
9588
9588
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
9589
9589
|
# @type SubStatus: String
|
9590
|
+
# @param HostIP: 内网ip
|
9591
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9592
|
+
# @type HostIP: String
|
9593
|
+
# @param ClientIP: 外网ip
|
9594
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9595
|
+
# @type ClientIP: String
|
9590
9596
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
9591
9597
|
# @type RequestId: String
|
9592
9598
|
|
9593
|
-
attr_accessor :ImageId, :ImageName, :CreateTime, :Size, :FilePath, :ModifyTime, :VirusName, :RiskLevel, :ContainerName, :ContainerId, :HostName, :HostId, :ProcessName, :ProcessPath, :ProcessMd5, :ProcessId, :ProcessArgv, :ProcessChan, :ProcessAccountGroup, :ProcessStartAccount, :ProcessFileAuthority, :SourceType, :PodName, :Tags, :HarmDescribe, :SuggestScheme, :Mark, :FileName, :FileMd5, :EventType, :Status, :SubStatus, :RequestId
|
9599
|
+
attr_accessor :ImageId, :ImageName, :CreateTime, :Size, :FilePath, :ModifyTime, :VirusName, :RiskLevel, :ContainerName, :ContainerId, :HostName, :HostId, :ProcessName, :ProcessPath, :ProcessMd5, :ProcessId, :ProcessArgv, :ProcessChan, :ProcessAccountGroup, :ProcessStartAccount, :ProcessFileAuthority, :SourceType, :PodName, :Tags, :HarmDescribe, :SuggestScheme, :Mark, :FileName, :FileMd5, :EventType, :Status, :SubStatus, :HostIP, :ClientIP, :RequestId
|
9594
9600
|
|
9595
|
-
def initialize(imageid=nil, imagename=nil, createtime=nil, size=nil, filepath=nil, modifytime=nil, virusname=nil, risklevel=nil, containername=nil, containerid=nil, hostname=nil, hostid=nil, processname=nil, processpath=nil, processmd5=nil, processid=nil, processargv=nil, processchan=nil, processaccountgroup=nil, processstartaccount=nil, processfileauthority=nil, sourcetype=nil, podname=nil, tags=nil, harmdescribe=nil, suggestscheme=nil, mark=nil, filename=nil, filemd5=nil, eventtype=nil, status=nil, substatus=nil, requestid=nil)
|
9601
|
+
def initialize(imageid=nil, imagename=nil, createtime=nil, size=nil, filepath=nil, modifytime=nil, virusname=nil, risklevel=nil, containername=nil, containerid=nil, hostname=nil, hostid=nil, processname=nil, processpath=nil, processmd5=nil, processid=nil, processargv=nil, processchan=nil, processaccountgroup=nil, processstartaccount=nil, processfileauthority=nil, sourcetype=nil, podname=nil, tags=nil, harmdescribe=nil, suggestscheme=nil, mark=nil, filename=nil, filemd5=nil, eventtype=nil, status=nil, substatus=nil, hostip=nil, clientip=nil, requestid=nil)
|
9596
9602
|
@ImageId = imageid
|
9597
9603
|
@ImageName = imagename
|
9598
9604
|
@CreateTime = createtime
|
@@ -9625,6 +9631,8 @@ module TencentCloud
|
|
9625
9631
|
@EventType = eventtype
|
9626
9632
|
@Status = status
|
9627
9633
|
@SubStatus = substatus
|
9634
|
+
@HostIP = hostip
|
9635
|
+
@ClientIP = clientip
|
9628
9636
|
@RequestId = requestid
|
9629
9637
|
end
|
9630
9638
|
|
@@ -9661,6 +9669,8 @@ module TencentCloud
|
|
9661
9669
|
@EventType = params['EventType']
|
9662
9670
|
@Status = params['Status']
|
9663
9671
|
@SubStatus = params['SubStatus']
|
9672
|
+
@HostIP = params['HostIP']
|
9673
|
+
@ClientIP = params['ClientIP']
|
9664
9674
|
@RequestId = params['RequestId']
|
9665
9675
|
end
|
9666
9676
|
end
|
@@ -12745,10 +12755,16 @@ module TencentCloud
|
|
12745
12755
|
# @type EventCount: Integer
|
12746
12756
|
# @param LatestFoundTime: 最近生成时间
|
12747
12757
|
# @type LatestFoundTime: String
|
12758
|
+
# @param HostIP: 内网ip
|
12759
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
12760
|
+
# @type HostIP: String
|
12761
|
+
# @param ClientIP: 外网ip
|
12762
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
12763
|
+
# @type ClientIP: String
|
12748
12764
|
|
12749
|
-
attr_accessor :EventId, :FoundTime, :ContainerId, :ContainerName, :ImageId, :ImageName, :NodeName, :PodName, :Status, :EventName, :EventType, :EventCount, :LatestFoundTime
|
12765
|
+
attr_accessor :EventId, :FoundTime, :ContainerId, :ContainerName, :ImageId, :ImageName, :NodeName, :PodName, :Status, :EventName, :EventType, :EventCount, :LatestFoundTime, :HostIP, :ClientIP
|
12750
12766
|
|
12751
|
-
def initialize(eventid=nil, foundtime=nil, containerid=nil, containername=nil, imageid=nil, imagename=nil, nodename=nil, podname=nil, status=nil, eventname=nil, eventtype=nil, eventcount=nil, latestfoundtime=nil)
|
12767
|
+
def initialize(eventid=nil, foundtime=nil, containerid=nil, containername=nil, imageid=nil, imagename=nil, nodename=nil, podname=nil, status=nil, eventname=nil, eventtype=nil, eventcount=nil, latestfoundtime=nil, hostip=nil, clientip=nil)
|
12752
12768
|
@EventId = eventid
|
12753
12769
|
@FoundTime = foundtime
|
12754
12770
|
@ContainerId = containerid
|
@@ -12762,6 +12778,8 @@ module TencentCloud
|
|
12762
12778
|
@EventType = eventtype
|
12763
12779
|
@EventCount = eventcount
|
12764
12780
|
@LatestFoundTime = latestfoundtime
|
12781
|
+
@HostIP = hostip
|
12782
|
+
@ClientIP = clientip
|
12765
12783
|
end
|
12766
12784
|
|
12767
12785
|
def deserialize(params)
|
@@ -12778,6 +12796,8 @@ module TencentCloud
|
|
12778
12796
|
@EventType = params['EventType']
|
12779
12797
|
@EventCount = params['EventCount']
|
12780
12798
|
@LatestFoundTime = params['LatestFoundTime']
|
12799
|
+
@HostIP = params['HostIP']
|
12800
|
+
@ClientIP = params['ClientIP']
|
12781
12801
|
end
|
12782
12802
|
end
|
12783
12803
|
|
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: 1.0.
|
4
|
+
version: 1.0.232
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-12-
|
11
|
+
date: 2021-12-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|