tencentcloud-sdk-tcss 1.0.326 → 1.0.329
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 +16 -3
- 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: b1f0932cb5c1caa6c56d6f72cc5ea17e8964cbc0
|
4
|
+
data.tar.gz: ce1bdfae636235a74919bc7f2c49bf30313bbd6b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b36b3f1fb74d437572493a61e8fb6fbdaa6cd2af263002b5e380698870b9b725916132185400c10501b102b847e9fcd3bdc6a443ce94aa4a96c1843d0b031c4d
|
7
|
+
data.tar.gz: d629c60e94b196e530357a8ab1add6c490f2b4a4d0b652d7054fe209ac70c976c4b21485d7e1af2a56858d114631a477450620fd14a7ae646593f6c841a6be09
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.329
|
data/lib/v20201101/models.rb
CHANGED
@@ -10656,18 +10656,26 @@ module TencentCloud
|
|
10656
10656
|
# @param RiskIncrease: 待处理风险个数较昨日增长
|
10657
10657
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10658
10658
|
# @type RiskIncrease: Integer
|
10659
|
+
# @param IsolateIncrease: 隔离事件个数较昨日新增
|
10660
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10661
|
+
# @type IsolateIncrease: Integer
|
10662
|
+
# @param IsolateCnt: 隔离事件总数
|
10663
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10664
|
+
# @type IsolateCnt: Integer
|
10659
10665
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
10660
10666
|
# @type RequestId: String
|
10661
10667
|
|
10662
|
-
attr_accessor :TaskId, :RiskContainerCnt, :RiskCnt, :VirusDataBaseModifyTime, :RiskContainerIncrease, :RiskIncrease, :RequestId
|
10668
|
+
attr_accessor :TaskId, :RiskContainerCnt, :RiskCnt, :VirusDataBaseModifyTime, :RiskContainerIncrease, :RiskIncrease, :IsolateIncrease, :IsolateCnt, :RequestId
|
10663
10669
|
|
10664
|
-
def initialize(taskid=nil, riskcontainercnt=nil, riskcnt=nil, virusdatabasemodifytime=nil, riskcontainerincrease=nil, riskincrease=nil, requestid=nil)
|
10670
|
+
def initialize(taskid=nil, riskcontainercnt=nil, riskcnt=nil, virusdatabasemodifytime=nil, riskcontainerincrease=nil, riskincrease=nil, isolateincrease=nil, isolatecnt=nil, requestid=nil)
|
10665
10671
|
@TaskId = taskid
|
10666
10672
|
@RiskContainerCnt = riskcontainercnt
|
10667
10673
|
@RiskCnt = riskcnt
|
10668
10674
|
@VirusDataBaseModifyTime = virusdatabasemodifytime
|
10669
10675
|
@RiskContainerIncrease = riskcontainerincrease
|
10670
10676
|
@RiskIncrease = riskincrease
|
10677
|
+
@IsolateIncrease = isolateincrease
|
10678
|
+
@IsolateCnt = isolatecnt
|
10671
10679
|
@RequestId = requestid
|
10672
10680
|
end
|
10673
10681
|
|
@@ -10678,6 +10686,8 @@ module TencentCloud
|
|
10678
10686
|
@VirusDataBaseModifyTime = params['VirusDataBaseModifyTime']
|
10679
10687
|
@RiskContainerIncrease = params['RiskContainerIncrease']
|
10680
10688
|
@RiskIncrease = params['RiskIncrease']
|
10689
|
+
@IsolateIncrease = params['IsolateIncrease']
|
10690
|
+
@IsolateCnt = params['IsolateCnt']
|
10681
10691
|
@RequestId = params['RequestId']
|
10682
10692
|
end
|
10683
10693
|
end
|
@@ -10694,7 +10704,10 @@ module TencentCloud
|
|
10694
10704
|
# <li>ContainerName - String - 是否必填:否 - 容器名称</li>
|
10695
10705
|
# <li>ContainerId - String - 是否必填:否 - 容器id</li>
|
10696
10706
|
# <li>Hostname - String - 是否必填:否 - 主机名称</li>
|
10697
|
-
# <li>HostIp- String -
|
10707
|
+
# <li>HostIp- String - 是否必填:否 - 主机IP</li>
|
10708
|
+
# <li>ImageId- String - 是否必填:否 - 镜像ID</li>
|
10709
|
+
# <li>ImageName- String - 是否必填:否 - 镜像名称</li>
|
10710
|
+
# <li>Status- String - 是否必填:否 - 状态</li>
|
10698
10711
|
# @type Filters: Array
|
10699
10712
|
# @param By: 排序字段
|
10700
10713
|
# @type By: String
|
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.329
|
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-06-
|
11
|
+
date: 2022-06-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|