tencentcloud-sdk-tcss 3.0.386 → 3.0.391
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 +43 -7
- 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: 118d113f014df4dbb1cae012adfc53b2230ee555
|
4
|
+
data.tar.gz: f4767d2f54766f47e45fb9d1af8fe42a436c8cc6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2a74ab3097d253552dc8b6fff2cd4f62bcaa796f02aa42c38203766e170b30db519800c24ac308958d377b0c9c2e2327694b754dc43d6d898464ff182bbc10d0
|
7
|
+
data.tar.gz: 50099dcdf8afe6c4b85faa6ac097f8a923b8e22e065b57d4604e4f8f619a94578d5267a8a5556a200ee3610d3c12dacb5420ae2e4bc41f1d5ea3e285c72aab60
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.391
|
data/lib/v20201101/models.rb
CHANGED
@@ -7479,18 +7479,30 @@ module TencentCloud
|
|
7479
7479
|
# @type IndependentClusterCount: Integer
|
7480
7480
|
# @param NoRiskClusterCount: 无风险的集群数量
|
7481
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
|
7482
7490
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
7483
7491
|
# @type RequestId: String
|
7484
7492
|
|
7485
|
-
attr_accessor :TotalCount, :RiskClusterCount, :UncheckClusterCount, :ManagedClusterCount, :IndependentClusterCount, :NoRiskClusterCount, :RequestId
|
7493
|
+
attr_accessor :TotalCount, :RiskClusterCount, :UncheckClusterCount, :ManagedClusterCount, :IndependentClusterCount, :NoRiskClusterCount, :CheckedClusterCount, :AutoCheckClusterCount, :ManualCheckClusterCount, :FailedClusterCount, :RequestId
|
7486
7494
|
|
7487
|
-
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)
|
7488
7496
|
@TotalCount = totalcount
|
7489
7497
|
@RiskClusterCount = riskclustercount
|
7490
7498
|
@UncheckClusterCount = uncheckclustercount
|
7491
7499
|
@ManagedClusterCount = managedclustercount
|
7492
7500
|
@IndependentClusterCount = independentclustercount
|
7493
7501
|
@NoRiskClusterCount = noriskclustercount
|
7502
|
+
@CheckedClusterCount = checkedclustercount
|
7503
|
+
@AutoCheckClusterCount = autocheckclustercount
|
7504
|
+
@ManualCheckClusterCount = manualcheckclustercount
|
7505
|
+
@FailedClusterCount = failedclustercount
|
7494
7506
|
@RequestId = requestid
|
7495
7507
|
end
|
7496
7508
|
|
@@ -7501,6 +7513,10 @@ module TencentCloud
|
|
7501
7513
|
@ManagedClusterCount = params['ManagedClusterCount']
|
7502
7514
|
@IndependentClusterCount = params['IndependentClusterCount']
|
7503
7515
|
@NoRiskClusterCount = params['NoRiskClusterCount']
|
7516
|
+
@CheckedClusterCount = params['CheckedClusterCount']
|
7517
|
+
@AutoCheckClusterCount = params['AutoCheckClusterCount']
|
7518
|
+
@ManualCheckClusterCount = params['ManualCheckClusterCount']
|
7519
|
+
@FailedClusterCount = params['FailedClusterCount']
|
7504
7520
|
@RequestId = params['RequestId']
|
7505
7521
|
end
|
7506
7522
|
end
|
@@ -12662,23 +12678,43 @@ module TencentCloud
|
|
12662
12678
|
class ModifyEscapeEventStatusRequest < TencentCloud::Common::AbstractModel
|
12663
12679
|
# @param EventIdSet: 处理事件ids
|
12664
12680
|
# @type EventIdSet: Array
|
12665
|
-
# @param Status: 标记事件的状态:
|
12681
|
+
# @param Status: 标记事件的状态:
|
12682
|
+
# EVENT_UNDEAL:未处理(取消忽略),
|
12683
|
+
# EVENT_DEALED:已处理,
|
12684
|
+
# EVENT_IGNORE:忽略,
|
12685
|
+
# EVENT_DELETE:已删除
|
12686
|
+
# EVENT_ADD_WHITE:加白
|
12666
12687
|
# @type Status: String
|
12667
12688
|
# @param Remark: 备注
|
12668
12689
|
# @type Remark: String
|
12669
|
-
|
12670
|
-
|
12671
|
-
|
12672
|
-
|
12690
|
+
# @param ImageIDs: 加白镜像ID数组
|
12691
|
+
# @type ImageIDs: Array
|
12692
|
+
# @param EventType: 加白事件类型
|
12693
|
+
# ESCAPE_CGROUPS:利用cgroup机制逃逸
|
12694
|
+
# ESCAPE_TAMPER_SENSITIVE_FILE:篡改敏感文件逃逸
|
12695
|
+
# ESCAPE_DOCKER_API:访问Docker API接口逃逸
|
12696
|
+
# ESCAPE_VUL_OCCURRED:逃逸漏洞利用
|
12697
|
+
# MOUNT_SENSITIVE_PTAH:敏感路径挂载
|
12698
|
+
# PRIVILEGE_CONTAINER_START:特权容器
|
12699
|
+
# PRIVILEGE:程序提权逃逸
|
12700
|
+
# @type EventType: Array
|
12701
|
+
|
12702
|
+
attr_accessor :EventIdSet, :Status, :Remark, :ImageIDs, :EventType
|
12703
|
+
|
12704
|
+
def initialize(eventidset=nil, status=nil, remark=nil, imageids=nil, eventtype=nil)
|
12673
12705
|
@EventIdSet = eventidset
|
12674
12706
|
@Status = status
|
12675
12707
|
@Remark = remark
|
12708
|
+
@ImageIDs = imageids
|
12709
|
+
@EventType = eventtype
|
12676
12710
|
end
|
12677
12711
|
|
12678
12712
|
def deserialize(params)
|
12679
12713
|
@EventIdSet = params['EventIdSet']
|
12680
12714
|
@Status = params['Status']
|
12681
12715
|
@Remark = params['Remark']
|
12716
|
+
@ImageIDs = params['ImageIDs']
|
12717
|
+
@EventType = params['EventType']
|
12682
12718
|
end
|
12683
12719
|
end
|
12684
12720
|
|
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.391
|
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-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|