tencentcloud-sdk-tcss 3.0.384 → 3.0.387
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 +65 -10
- 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: 2f3f6084afdfc3ff5a14ef44fedf460e49b449f8
|
4
|
+
data.tar.gz: 570f018a28c051eec19ff99fa152bd10ac933617
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5e52f42a3ef3427950bf1fa3b8374f0e4e3326e796efb13ff3e07dacb7892d758d1e63378baead8b25e19b84fbccaf36887ea80ed7693f0b8f5425f79ac296d5
|
7
|
+
data.tar.gz: 4711658d552d08f2f6f5bec44e45c9c5907af2cd8720578a79979f31f9655355f9eea2b8d75755c6ba6ba21f003391d3544d8fc3f7d5b8a87e34708e95d370b9
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.387
|
data/lib/v20201101/models.rb
CHANGED
@@ -6711,18 +6711,22 @@ module TencentCloud
|
|
6711
6711
|
class DescribeAssetImageVirusListExportResponse < TencentCloud::Common::AbstractModel
|
6712
6712
|
# @param DownloadUrl: excel文件下载地址
|
6713
6713
|
# @type DownloadUrl: String
|
6714
|
+
# @param JobId: 任务ID
|
6715
|
+
# @type JobId: String
|
6714
6716
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
6715
6717
|
# @type RequestId: String
|
6716
6718
|
|
6717
|
-
attr_accessor :DownloadUrl, :RequestId
|
6719
|
+
attr_accessor :DownloadUrl, :JobId, :RequestId
|
6718
6720
|
|
6719
|
-
def initialize(downloadurl=nil, requestid=nil)
|
6721
|
+
def initialize(downloadurl=nil, jobid=nil, requestid=nil)
|
6720
6722
|
@DownloadUrl = downloadurl
|
6723
|
+
@JobId = jobid
|
6721
6724
|
@RequestId = requestid
|
6722
6725
|
end
|
6723
6726
|
|
6724
6727
|
def deserialize(params)
|
6725
6728
|
@DownloadUrl = params['DownloadUrl']
|
6729
|
+
@JobId = params['JobId']
|
6726
6730
|
@RequestId = params['RequestId']
|
6727
6731
|
end
|
6728
6732
|
end
|
@@ -7475,18 +7479,30 @@ module TencentCloud
|
|
7475
7479
|
# @type IndependentClusterCount: Integer
|
7476
7480
|
# @param NoRiskClusterCount: 无风险的集群数量
|
7477
7481
|
# @type NoRiskClusterCount: Integer
|
7482
|
+
# @param CheckedClusterCount: 已经检查集群数
|
7483
|
+
# @type CheckedClusterCount: Integer
|
7484
|
+
# @param AutoCheckClusterCount: 自动检查集群数
|
7485
|
+
# @type AutoCheckClusterCount: Integer
|
7486
|
+
# @param ManualCheckClusterCount: 手动检查集群数
|
7487
|
+
# @type ManualCheckClusterCount: Integer
|
7488
|
+
# @param FailedClusterCount: 检查失败集群数
|
7489
|
+
# @type FailedClusterCount: Integer
|
7478
7490
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
7479
7491
|
# @type RequestId: String
|
7480
7492
|
|
7481
|
-
attr_accessor :TotalCount, :RiskClusterCount, :UncheckClusterCount, :ManagedClusterCount, :IndependentClusterCount, :NoRiskClusterCount, :RequestId
|
7493
|
+
attr_accessor :TotalCount, :RiskClusterCount, :UncheckClusterCount, :ManagedClusterCount, :IndependentClusterCount, :NoRiskClusterCount, :CheckedClusterCount, :AutoCheckClusterCount, :ManualCheckClusterCount, :FailedClusterCount, :RequestId
|
7482
7494
|
|
7483
|
-
def initialize(totalcount=nil, riskclustercount=nil, uncheckclustercount=nil, managedclustercount=nil, independentclustercount=nil, noriskclustercount=nil, requestid=nil)
|
7495
|
+
def initialize(totalcount=nil, riskclustercount=nil, uncheckclustercount=nil, managedclustercount=nil, independentclustercount=nil, noriskclustercount=nil, checkedclustercount=nil, autocheckclustercount=nil, manualcheckclustercount=nil, failedclustercount=nil, requestid=nil)
|
7484
7496
|
@TotalCount = totalcount
|
7485
7497
|
@RiskClusterCount = riskclustercount
|
7486
7498
|
@UncheckClusterCount = uncheckclustercount
|
7487
7499
|
@ManagedClusterCount = managedclustercount
|
7488
7500
|
@IndependentClusterCount = independentclustercount
|
7489
7501
|
@NoRiskClusterCount = noriskclustercount
|
7502
|
+
@CheckedClusterCount = checkedclustercount
|
7503
|
+
@AutoCheckClusterCount = autocheckclustercount
|
7504
|
+
@ManualCheckClusterCount = manualcheckclustercount
|
7505
|
+
@FailedClusterCount = failedclustercount
|
7490
7506
|
@RequestId = requestid
|
7491
7507
|
end
|
7492
7508
|
|
@@ -7497,6 +7513,10 @@ module TencentCloud
|
|
7497
7513
|
@ManagedClusterCount = params['ManagedClusterCount']
|
7498
7514
|
@IndependentClusterCount = params['IndependentClusterCount']
|
7499
7515
|
@NoRiskClusterCount = params['NoRiskClusterCount']
|
7516
|
+
@CheckedClusterCount = params['CheckedClusterCount']
|
7517
|
+
@AutoCheckClusterCount = params['AutoCheckClusterCount']
|
7518
|
+
@ManualCheckClusterCount = params['ManualCheckClusterCount']
|
7519
|
+
@FailedClusterCount = params['FailedClusterCount']
|
7500
7520
|
@RequestId = params['RequestId']
|
7501
7521
|
end
|
7502
7522
|
end
|
@@ -10262,12 +10282,20 @@ module TencentCloud
|
|
10262
10282
|
# @param ContainerIsolateOperationSrc: 容器隔离操作来源
|
10263
10283
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10264
10284
|
# @type ContainerIsolateOperationSrc: String
|
10285
|
+
# @param CheckPlatform: 检测平台
|
10286
|
+
# 1: 云查杀引擎
|
10287
|
+
# 2: tav
|
10288
|
+
# 3: binaryAi
|
10289
|
+
# 4: 异常行为
|
10290
|
+
# 5: 威胁情报
|
10291
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10292
|
+
# @type CheckPlatform: Array
|
10265
10293
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
10266
10294
|
# @type RequestId: String
|
10267
10295
|
|
10268
|
-
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, :PProcessStartUser, :PProcessUserGroup, :PProcessPath, :PProcessParam, :AncestorProcessStartUser, :AncestorProcessUserGroup, :AncestorProcessPath, :AncestorProcessParam, :OperationTime, :ContainerNetStatus, :ContainerNetSubStatus, :ContainerIsolateOperationSrc, :RequestId
|
10296
|
+
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, :PProcessStartUser, :PProcessUserGroup, :PProcessPath, :PProcessParam, :AncestorProcessStartUser, :AncestorProcessUserGroup, :AncestorProcessPath, :AncestorProcessParam, :OperationTime, :ContainerNetStatus, :ContainerNetSubStatus, :ContainerIsolateOperationSrc, :CheckPlatform, :RequestId
|
10269
10297
|
|
10270
|
-
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, pprocessstartuser=nil, pprocessusergroup=nil, pprocesspath=nil, pprocessparam=nil, ancestorprocessstartuser=nil, ancestorprocessusergroup=nil, ancestorprocesspath=nil, ancestorprocessparam=nil, operationtime=nil, containernetstatus=nil, containernetsubstatus=nil, containerisolateoperationsrc=nil, requestid=nil)
|
10298
|
+
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, pprocessstartuser=nil, pprocessusergroup=nil, pprocesspath=nil, pprocessparam=nil, ancestorprocessstartuser=nil, ancestorprocessusergroup=nil, ancestorprocesspath=nil, ancestorprocessparam=nil, operationtime=nil, containernetstatus=nil, containernetsubstatus=nil, containerisolateoperationsrc=nil, checkplatform=nil, requestid=nil)
|
10271
10299
|
@ImageId = imageid
|
10272
10300
|
@ImageName = imagename
|
10273
10301
|
@CreateTime = createtime
|
@@ -10314,6 +10342,7 @@ module TencentCloud
|
|
10314
10342
|
@ContainerNetStatus = containernetstatus
|
10315
10343
|
@ContainerNetSubStatus = containernetsubstatus
|
10316
10344
|
@ContainerIsolateOperationSrc = containerisolateoperationsrc
|
10345
|
+
@CheckPlatform = checkplatform
|
10317
10346
|
@RequestId = requestid
|
10318
10347
|
end
|
10319
10348
|
|
@@ -10364,6 +10393,7 @@ module TencentCloud
|
|
10364
10393
|
@ContainerNetStatus = params['ContainerNetStatus']
|
10365
10394
|
@ContainerNetSubStatus = params['ContainerNetSubStatus']
|
10366
10395
|
@ContainerIsolateOperationSrc = params['ContainerIsolateOperationSrc']
|
10396
|
+
@CheckPlatform = params['CheckPlatform']
|
10367
10397
|
@RequestId = params['RequestId']
|
10368
10398
|
end
|
10369
10399
|
end
|
@@ -11821,10 +11851,18 @@ module TencentCloud
|
|
11821
11851
|
# @param FileName: 文件名称
|
11822
11852
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
11823
11853
|
# @type FileName: String
|
11854
|
+
# @param CheckPlatform: 检测平台
|
11855
|
+
# 1: 云查杀引擎
|
11856
|
+
# 2: tav
|
11857
|
+
# 3: binaryAi
|
11858
|
+
# 4: 异常行为
|
11859
|
+
# 5: 威胁情报
|
11860
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11861
|
+
# @type CheckPlatform: Array
|
11824
11862
|
|
11825
|
-
attr_accessor :Path, :RiskLevel, :VirusName, :Tags, :Desc, :Solution, :Size, :FirstScanTime, :LatestScanTime, :Md5, :FileName
|
11863
|
+
attr_accessor :Path, :RiskLevel, :VirusName, :Tags, :Desc, :Solution, :Size, :FirstScanTime, :LatestScanTime, :Md5, :FileName, :CheckPlatform
|
11826
11864
|
|
11827
|
-
def initialize(path=nil, risklevel=nil, virusname=nil, tags=nil, desc=nil, solution=nil, size=nil, firstscantime=nil, latestscantime=nil, md5=nil, filename=nil)
|
11865
|
+
def initialize(path=nil, risklevel=nil, virusname=nil, tags=nil, desc=nil, solution=nil, size=nil, firstscantime=nil, latestscantime=nil, md5=nil, filename=nil, checkplatform=nil)
|
11828
11866
|
@Path = path
|
11829
11867
|
@RiskLevel = risklevel
|
11830
11868
|
@VirusName = virusname
|
@@ -11836,6 +11874,7 @@ module TencentCloud
|
|
11836
11874
|
@LatestScanTime = latestscantime
|
11837
11875
|
@Md5 = md5
|
11838
11876
|
@FileName = filename
|
11877
|
+
@CheckPlatform = checkplatform
|
11839
11878
|
end
|
11840
11879
|
|
11841
11880
|
def deserialize(params)
|
@@ -11850,6 +11889,7 @@ module TencentCloud
|
|
11850
11889
|
@LatestScanTime = params['LatestScanTime']
|
11851
11890
|
@Md5 = params['Md5']
|
11852
11891
|
@FileName = params['FileName']
|
11892
|
+
@CheckPlatform = params['CheckPlatform']
|
11853
11893
|
end
|
11854
11894
|
end
|
11855
11895
|
|
@@ -14629,10 +14669,21 @@ module TencentCloud
|
|
14629
14669
|
# @param MD5: md5值
|
14630
14670
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
14631
14671
|
# @type MD5: String
|
14672
|
+
# @param RiskLevel: 风险等级 RISK_CRITICAL, RISK_HIGH, RISK_MEDIUM, RISK_LOW, RISK_NOTICE。
|
14673
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
14674
|
+
# @type RiskLevel: String
|
14675
|
+
# @param CheckPlatform: 检测平台
|
14676
|
+
# 1: 云查杀引擎
|
14677
|
+
# 2: tav
|
14678
|
+
# 3: binaryAi
|
14679
|
+
# 4: 异常行为
|
14680
|
+
# 5: 威胁情报
|
14681
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
14682
|
+
# @type CheckPlatform: Array
|
14632
14683
|
|
14633
|
-
attr_accessor :FileName, :FilePath, :VirusName, :CreateTime, :ModifyTime, :ContainerName, :ContainerId, :ContainerStatus, :ImageName, :ImageId, :Status, :Id, :HarmDescribe, :SuggestScheme, :SubStatus, :ContainerNetStatus, :ContainerNetSubStatus, :ContainerIsolateOperationSrc, :MD5
|
14684
|
+
attr_accessor :FileName, :FilePath, :VirusName, :CreateTime, :ModifyTime, :ContainerName, :ContainerId, :ContainerStatus, :ImageName, :ImageId, :Status, :Id, :HarmDescribe, :SuggestScheme, :SubStatus, :ContainerNetStatus, :ContainerNetSubStatus, :ContainerIsolateOperationSrc, :MD5, :RiskLevel, :CheckPlatform
|
14634
14685
|
|
14635
|
-
def initialize(filename=nil, filepath=nil, virusname=nil, createtime=nil, modifytime=nil, containername=nil, containerid=nil, containerstatus=nil, imagename=nil, imageid=nil, status=nil, id=nil, harmdescribe=nil, suggestscheme=nil, substatus=nil, containernetstatus=nil, containernetsubstatus=nil, containerisolateoperationsrc=nil, md5=nil)
|
14686
|
+
def initialize(filename=nil, filepath=nil, virusname=nil, createtime=nil, modifytime=nil, containername=nil, containerid=nil, containerstatus=nil, imagename=nil, imageid=nil, status=nil, id=nil, harmdescribe=nil, suggestscheme=nil, substatus=nil, containernetstatus=nil, containernetsubstatus=nil, containerisolateoperationsrc=nil, md5=nil, risklevel=nil, checkplatform=nil)
|
14636
14687
|
@FileName = filename
|
14637
14688
|
@FilePath = filepath
|
14638
14689
|
@VirusName = virusname
|
@@ -14652,6 +14703,8 @@ module TencentCloud
|
|
14652
14703
|
@ContainerNetSubStatus = containernetsubstatus
|
14653
14704
|
@ContainerIsolateOperationSrc = containerisolateoperationsrc
|
14654
14705
|
@MD5 = md5
|
14706
|
+
@RiskLevel = risklevel
|
14707
|
+
@CheckPlatform = checkplatform
|
14655
14708
|
end
|
14656
14709
|
|
14657
14710
|
def deserialize(params)
|
@@ -14674,6 +14727,8 @@ module TencentCloud
|
|
14674
14727
|
@ContainerNetSubStatus = params['ContainerNetSubStatus']
|
14675
14728
|
@ContainerIsolateOperationSrc = params['ContainerIsolateOperationSrc']
|
14676
14729
|
@MD5 = params['MD5']
|
14730
|
+
@RiskLevel = params['RiskLevel']
|
14731
|
+
@CheckPlatform = params['CheckPlatform']
|
14677
14732
|
end
|
14678
14733
|
end
|
14679
14734
|
|
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.387
|
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-08-
|
11
|
+
date: 2022-08-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|