tencentcloud-sdk-tcss 1.0.284 → 1.0.287
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 +19 -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: 3c4784771931c96977dbd0363316a75dac7bf995
|
4
|
+
data.tar.gz: 189f205fc862c5977df12e90e9e7729b8fda2250
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ff32fbf9a66779e6bda13a17cf6f50ea80df8d2e27424d8e154a3c15f4fde983e2c9fb600e643a6fecf9ec822249b3b5293f2ea5469774511847063fe71e759e
|
7
|
+
data.tar.gz: 4ed147864f205e124c8520fef6d1e86939048d91fa693c8ca1edbbf0b750f68469cd7ff5eb0a6037c7cfd99cd4387a05d60093ad57920d4c650a21865af63189
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.287
|
data/lib/v20201101/models.rb
CHANGED
@@ -1646,10 +1646,16 @@ module TencentCloud
|
|
1646
1646
|
# @type LastCheckTime: String
|
1647
1647
|
# @param PeriodRule: 定时检测规则。
|
1648
1648
|
# @type PeriodRule: :class:`Tencentcloud::Tcss.v20201101.models.CompliancePeriodTaskRule`
|
1649
|
+
# @param OpenPolicyItemCount: 已开启的检查项总数
|
1650
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1651
|
+
# @type OpenPolicyItemCount: Integer
|
1652
|
+
# @param IgnoredPolicyItemCount: 已忽略的检查项总数
|
1653
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1654
|
+
# @type IgnoredPolicyItemCount: Integer
|
1649
1655
|
|
1650
|
-
attr_accessor :AssetType, :IsCustomerFirstCheck, :CheckStatus, :CheckProgress, :PassedPolicyItemCount, :FailedPolicyItemCount, :FailedCriticalPolicyItemCount, :FailedHighRiskPolicyItemCount, :FailedMediumRiskPolicyItemCount, :FailedLowRiskPolicyItemCount, :NoticePolicyItemCount, :PassedAssetCount, :FailedAssetCount, :AssetPassedRate, :ScanFailedAssetCount, :CheckCostTime, :LastCheckTime, :PeriodRule
|
1656
|
+
attr_accessor :AssetType, :IsCustomerFirstCheck, :CheckStatus, :CheckProgress, :PassedPolicyItemCount, :FailedPolicyItemCount, :FailedCriticalPolicyItemCount, :FailedHighRiskPolicyItemCount, :FailedMediumRiskPolicyItemCount, :FailedLowRiskPolicyItemCount, :NoticePolicyItemCount, :PassedAssetCount, :FailedAssetCount, :AssetPassedRate, :ScanFailedAssetCount, :CheckCostTime, :LastCheckTime, :PeriodRule, :OpenPolicyItemCount, :IgnoredPolicyItemCount
|
1651
1657
|
|
1652
|
-
def initialize(assettype=nil, iscustomerfirstcheck=nil, checkstatus=nil, checkprogress=nil, passedpolicyitemcount=nil, failedpolicyitemcount=nil, failedcriticalpolicyitemcount=nil, failedhighriskpolicyitemcount=nil, failedmediumriskpolicyitemcount=nil, failedlowriskpolicyitemcount=nil, noticepolicyitemcount=nil, passedassetcount=nil, failedassetcount=nil, assetpassedrate=nil, scanfailedassetcount=nil, checkcosttime=nil, lastchecktime=nil, periodrule=nil)
|
1658
|
+
def initialize(assettype=nil, iscustomerfirstcheck=nil, checkstatus=nil, checkprogress=nil, passedpolicyitemcount=nil, failedpolicyitemcount=nil, failedcriticalpolicyitemcount=nil, failedhighriskpolicyitemcount=nil, failedmediumriskpolicyitemcount=nil, failedlowriskpolicyitemcount=nil, noticepolicyitemcount=nil, passedassetcount=nil, failedassetcount=nil, assetpassedrate=nil, scanfailedassetcount=nil, checkcosttime=nil, lastchecktime=nil, periodrule=nil, openpolicyitemcount=nil, ignoredpolicyitemcount=nil)
|
1653
1659
|
@AssetType = assettype
|
1654
1660
|
@IsCustomerFirstCheck = iscustomerfirstcheck
|
1655
1661
|
@CheckStatus = checkstatus
|
@@ -1668,6 +1674,8 @@ module TencentCloud
|
|
1668
1674
|
@CheckCostTime = checkcosttime
|
1669
1675
|
@LastCheckTime = lastchecktime
|
1670
1676
|
@PeriodRule = periodrule
|
1677
|
+
@OpenPolicyItemCount = openpolicyitemcount
|
1678
|
+
@IgnoredPolicyItemCount = ignoredpolicyitemcount
|
1671
1679
|
end
|
1672
1680
|
|
1673
1681
|
def deserialize(params)
|
@@ -1692,6 +1700,8 @@ module TencentCloud
|
|
1692
1700
|
@PeriodRule = CompliancePeriodTaskRule.new
|
1693
1701
|
@PeriodRule.deserialize(params['PeriodRule'])
|
1694
1702
|
end
|
1703
|
+
@OpenPolicyItemCount = params['OpenPolicyItemCount']
|
1704
|
+
@IgnoredPolicyItemCount = params['IgnoredPolicyItemCount']
|
1695
1705
|
end
|
1696
1706
|
end
|
1697
1707
|
|
@@ -1922,17 +1932,22 @@ module TencentCloud
|
|
1922
1932
|
# @type Frequency: Integer
|
1923
1933
|
# @param ExecutionTime: 在这天的什么时间执行,格式为:HH:mm:SS。
|
1924
1934
|
# @type ExecutionTime: String
|
1935
|
+
# @param Enable: 是否开启
|
1936
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1937
|
+
# @type Enable: Boolean
|
1925
1938
|
|
1926
|
-
attr_accessor :Frequency, :ExecutionTime
|
1939
|
+
attr_accessor :Frequency, :ExecutionTime, :Enable
|
1927
1940
|
|
1928
|
-
def initialize(frequency=nil, executiontime=nil)
|
1941
|
+
def initialize(frequency=nil, executiontime=nil, enable=nil)
|
1929
1942
|
@Frequency = frequency
|
1930
1943
|
@ExecutionTime = executiontime
|
1944
|
+
@Enable = enable
|
1931
1945
|
end
|
1932
1946
|
|
1933
1947
|
def deserialize(params)
|
1934
1948
|
@Frequency = params['Frequency']
|
1935
1949
|
@ExecutionTime = params['ExecutionTime']
|
1950
|
+
@Enable = params['Enable']
|
1936
1951
|
end
|
1937
1952
|
end
|
1938
1953
|
|
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.287
|
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-03-
|
11
|
+
date: 2022-03-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|