tencentcloud-sdk-csip 3.0.1158 → 3.0.1173
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/v20221121/client.rb +1 -1
- data/lib/v20221121/models.rb +36 -8
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b625dbf3effc1b2b1f59917eaa1cd039006699d1
|
|
4
|
+
data.tar.gz: 0f0d7e2008e7beff58fc7d7ec60321e3bc02b83d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 31a550193d4ee9d4ce625d01e77010ea2a814e2fbfdbfa2412977d43a7b765c3316909e322e0aeb5631ba0a472ac3b4a8a7499e79e4375220e7ffdc0898cdbb9
|
|
7
|
+
data.tar.gz: 400e6cc363b2e559432b8132e6d30ebb52a5f7c7b5c5f960981be41dd067b1320464ff31d3f3ecaeb84611c27ec515322fd0fd492e998287b85c4102fa3c9adc
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1173
|
data/lib/v20221121/client.rb
CHANGED
|
@@ -605,7 +605,7 @@ module TencentCloud
|
|
|
605
605
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
606
606
|
end
|
|
607
607
|
|
|
608
|
-
#
|
|
608
|
+
# 检查视角下云资源配置风险列表
|
|
609
609
|
|
|
610
610
|
# @param request: Request instance for DescribeCheckViewRisks.
|
|
611
611
|
# @type request: :class:`Tencentcloud::csip::V20221121::DescribeCheckViewRisksRequest`
|
data/lib/v20221121/models.rb
CHANGED
|
@@ -1624,10 +1624,12 @@ module TencentCloud
|
|
|
1624
1624
|
# @type Severity: String
|
|
1625
1625
|
# @param RiskRuleId: 风险规则ID
|
|
1626
1626
|
# @type RiskRuleId: String
|
|
1627
|
+
# @param Classify: 处置分类
|
|
1628
|
+
# @type Classify: String
|
|
1627
1629
|
|
|
1628
|
-
attr_accessor :AppId, :Provider, :ProviderName, :CloudAccountName, :CloudAccountId, :InstanceName, :InstanceId, :CreateTime, :UpdateTime, :RiskStatus, :RiskTitle, :CheckType, :Severity, :RiskRuleId
|
|
1630
|
+
attr_accessor :AppId, :Provider, :ProviderName, :CloudAccountName, :CloudAccountId, :InstanceName, :InstanceId, :CreateTime, :UpdateTime, :RiskStatus, :RiskTitle, :CheckType, :Severity, :RiskRuleId, :Classify
|
|
1629
1631
|
|
|
1630
|
-
def initialize(appid=nil, provider=nil, providername=nil, cloudaccountname=nil, cloudaccountid=nil, instancename=nil, instanceid=nil, createtime=nil, updatetime=nil, riskstatus=nil, risktitle=nil, checktype=nil, severity=nil, riskruleid=nil)
|
|
1632
|
+
def initialize(appid=nil, provider=nil, providername=nil, cloudaccountname=nil, cloudaccountid=nil, instancename=nil, instanceid=nil, createtime=nil, updatetime=nil, riskstatus=nil, risktitle=nil, checktype=nil, severity=nil, riskruleid=nil, classify=nil)
|
|
1631
1633
|
@AppId = appid
|
|
1632
1634
|
@Provider = provider
|
|
1633
1635
|
@ProviderName = providername
|
|
@@ -1642,6 +1644,7 @@ module TencentCloud
|
|
|
1642
1644
|
@CheckType = checktype
|
|
1643
1645
|
@Severity = severity
|
|
1644
1646
|
@RiskRuleId = riskruleid
|
|
1647
|
+
@Classify = classify
|
|
1645
1648
|
end
|
|
1646
1649
|
|
|
1647
1650
|
def deserialize(params)
|
|
@@ -1659,6 +1662,7 @@ module TencentCloud
|
|
|
1659
1662
|
@CheckType = params['CheckType']
|
|
1660
1663
|
@Severity = params['Severity']
|
|
1661
1664
|
@RiskRuleId = params['RiskRuleId']
|
|
1665
|
+
@Classify = params['Classify']
|
|
1662
1666
|
end
|
|
1663
1667
|
end
|
|
1664
1668
|
|
|
@@ -2965,10 +2969,12 @@ module TencentCloud
|
|
|
2965
2969
|
# @type AssetType: String
|
|
2966
2970
|
# @param EventType: 事件类型
|
|
2967
2971
|
# @type EventType: String
|
|
2972
|
+
# @param Classify: 处置分类
|
|
2973
|
+
# @type Classify: String
|
|
2968
2974
|
|
|
2969
|
-
attr_accessor :RiskRuleId, :RiskTitle, :CheckType, :Severity, :RiskDesc, :CreateTime, :UpdateTime, :Provider, :RiskStatus, :AssetCount, :RiskCount, :AssetType, :EventType
|
|
2975
|
+
attr_accessor :RiskRuleId, :RiskTitle, :CheckType, :Severity, :RiskDesc, :CreateTime, :UpdateTime, :Provider, :RiskStatus, :AssetCount, :RiskCount, :AssetType, :EventType, :Classify
|
|
2970
2976
|
|
|
2971
|
-
def initialize(riskruleid=nil, risktitle=nil, checktype=nil, severity=nil, riskdesc=nil, createtime=nil, updatetime=nil, provider=nil, riskstatus=nil, assetcount=nil, riskcount=nil, assettype=nil, eventtype=nil)
|
|
2977
|
+
def initialize(riskruleid=nil, risktitle=nil, checktype=nil, severity=nil, riskdesc=nil, createtime=nil, updatetime=nil, provider=nil, riskstatus=nil, assetcount=nil, riskcount=nil, assettype=nil, eventtype=nil, classify=nil)
|
|
2972
2978
|
@RiskRuleId = riskruleid
|
|
2973
2979
|
@RiskTitle = risktitle
|
|
2974
2980
|
@CheckType = checktype
|
|
@@ -2982,6 +2988,7 @@ module TencentCloud
|
|
|
2982
2988
|
@RiskCount = riskcount
|
|
2983
2989
|
@AssetType = assettype
|
|
2984
2990
|
@EventType = eventtype
|
|
2991
|
+
@Classify = classify
|
|
2985
2992
|
end
|
|
2986
2993
|
|
|
2987
2994
|
def deserialize(params)
|
|
@@ -2998,6 +3005,7 @@ module TencentCloud
|
|
|
2998
3005
|
@RiskCount = params['RiskCount']
|
|
2999
3006
|
@AssetType = params['AssetType']
|
|
3000
3007
|
@EventType = params['EventType']
|
|
3008
|
+
@Classify = params['Classify']
|
|
3001
3009
|
end
|
|
3002
3010
|
end
|
|
3003
3011
|
|
|
@@ -9583,10 +9591,18 @@ module TencentCloud
|
|
|
9583
9591
|
# @type PortDetectCount: Integer
|
|
9584
9592
|
# @param PortDetectResult: 端口开放结果
|
|
9585
9593
|
# @type PortDetectResult: String
|
|
9594
|
+
# @param Tag: 标签
|
|
9595
|
+
# @type Tag: String
|
|
9596
|
+
# @param Comment: 备注
|
|
9597
|
+
# @type Comment: String
|
|
9598
|
+
# @param ToGovernedRiskCount: 待治理风险数量
|
|
9599
|
+
# @type ToGovernedRiskCount: Integer
|
|
9600
|
+
# @param ToGovernedRiskContent: 待治理风险内容
|
|
9601
|
+
# @type ToGovernedRiskContent: String
|
|
9586
9602
|
|
|
9587
|
-
attr_accessor :Provider, :CloudAccountName, :CloudAccountId, :Domain, :Ip, :Port, :Status, :RiskType, :AclType, :AclList, :AssetId, :InstanceName, :AssetType, :PortServiceCount, :HighRiskPortServiceCount, :WebAppCount, :RiskWebAppCount, :WeakPasswordCount, :VulCount, :CreateTime, :UpdateTime, :AssetTypeName, :DisplayStatus, :DisplayRiskType, :ScanTaskStatus, :Uuid, :HasScan, :AppId, :AppIdStr, :ExposureID, :PortDetectCount, :PortDetectResult
|
|
9603
|
+
attr_accessor :Provider, :CloudAccountName, :CloudAccountId, :Domain, :Ip, :Port, :Status, :RiskType, :AclType, :AclList, :AssetId, :InstanceName, :AssetType, :PortServiceCount, :HighRiskPortServiceCount, :WebAppCount, :RiskWebAppCount, :WeakPasswordCount, :VulCount, :CreateTime, :UpdateTime, :AssetTypeName, :DisplayStatus, :DisplayRiskType, :ScanTaskStatus, :Uuid, :HasScan, :AppId, :AppIdStr, :ExposureID, :PortDetectCount, :PortDetectResult, :Tag, :Comment, :ToGovernedRiskCount, :ToGovernedRiskContent
|
|
9588
9604
|
|
|
9589
|
-
def initialize(provider=nil, cloudaccountname=nil, cloudaccountid=nil, domain=nil, ip=nil, port=nil, status=nil, risktype=nil, acltype=nil, acllist=nil, assetid=nil, instancename=nil, assettype=nil, portservicecount=nil, highriskportservicecount=nil, webappcount=nil, riskwebappcount=nil, weakpasswordcount=nil, vulcount=nil, createtime=nil, updatetime=nil, assettypename=nil, displaystatus=nil, displayrisktype=nil, scantaskstatus=nil, uuid=nil, hasscan=nil, appid=nil, appidstr=nil, exposureid=nil, portdetectcount=nil, portdetectresult=nil)
|
|
9605
|
+
def initialize(provider=nil, cloudaccountname=nil, cloudaccountid=nil, domain=nil, ip=nil, port=nil, status=nil, risktype=nil, acltype=nil, acllist=nil, assetid=nil, instancename=nil, assettype=nil, portservicecount=nil, highriskportservicecount=nil, webappcount=nil, riskwebappcount=nil, weakpasswordcount=nil, vulcount=nil, createtime=nil, updatetime=nil, assettypename=nil, displaystatus=nil, displayrisktype=nil, scantaskstatus=nil, uuid=nil, hasscan=nil, appid=nil, appidstr=nil, exposureid=nil, portdetectcount=nil, portdetectresult=nil, tag=nil, comment=nil, togovernedriskcount=nil, togovernedriskcontent=nil)
|
|
9590
9606
|
@Provider = provider
|
|
9591
9607
|
@CloudAccountName = cloudaccountname
|
|
9592
9608
|
@CloudAccountId = cloudaccountid
|
|
@@ -9619,6 +9635,10 @@ module TencentCloud
|
|
|
9619
9635
|
@ExposureID = exposureid
|
|
9620
9636
|
@PortDetectCount = portdetectcount
|
|
9621
9637
|
@PortDetectResult = portdetectresult
|
|
9638
|
+
@Tag = tag
|
|
9639
|
+
@Comment = comment
|
|
9640
|
+
@ToGovernedRiskCount = togovernedriskcount
|
|
9641
|
+
@ToGovernedRiskContent = togovernedriskcontent
|
|
9622
9642
|
end
|
|
9623
9643
|
|
|
9624
9644
|
def deserialize(params)
|
|
@@ -9654,6 +9674,10 @@ module TencentCloud
|
|
|
9654
9674
|
@ExposureID = params['ExposureID']
|
|
9655
9675
|
@PortDetectCount = params['PortDetectCount']
|
|
9656
9676
|
@PortDetectResult = params['PortDetectResult']
|
|
9677
|
+
@Tag = params['Tag']
|
|
9678
|
+
@Comment = params['Comment']
|
|
9679
|
+
@ToGovernedRiskCount = params['ToGovernedRiskCount']
|
|
9680
|
+
@ToGovernedRiskContent = params['ToGovernedRiskContent']
|
|
9657
9681
|
end
|
|
9658
9682
|
end
|
|
9659
9683
|
|
|
@@ -9811,10 +9835,12 @@ module TencentCloud
|
|
|
9811
9835
|
# @type Status: String
|
|
9812
9836
|
# @param EngineRegion: TSE的网关真实地域
|
|
9813
9837
|
# @type EngineRegion: String
|
|
9838
|
+
# @param WeakPasswordRisk: 弱口令风险
|
|
9839
|
+
# @type WeakPasswordRisk: Integer
|
|
9814
9840
|
|
|
9815
|
-
attr_accessor :AppId, :Uin, :AssetId, :AssetName, :AssetType, :PrivateIp, :PublicIp, :Region, :VpcId, :VpcName, :Tag, :OutboundPeakBandwidth, :InboundPeakBandwidth, :OutboundCumulativeFlow, :InboundCumulativeFlow, :NetworkAttack, :ExposedPort, :ExposedVUL, :ConfigureRisk, :CreateTime, :ScanTask, :LastScanTime, :Nick, :AddressIPV6, :IsCore, :RiskExposure, :IsNewAsset, :Status, :EngineRegion
|
|
9841
|
+
attr_accessor :AppId, :Uin, :AssetId, :AssetName, :AssetType, :PrivateIp, :PublicIp, :Region, :VpcId, :VpcName, :Tag, :OutboundPeakBandwidth, :InboundPeakBandwidth, :OutboundCumulativeFlow, :InboundCumulativeFlow, :NetworkAttack, :ExposedPort, :ExposedVUL, :ConfigureRisk, :CreateTime, :ScanTask, :LastScanTime, :Nick, :AddressIPV6, :IsCore, :RiskExposure, :IsNewAsset, :Status, :EngineRegion, :WeakPasswordRisk
|
|
9816
9842
|
|
|
9817
|
-
def initialize(appid=nil, uin=nil, assetid=nil, assetname=nil, assettype=nil, privateip=nil, publicip=nil, region=nil, vpcid=nil, vpcname=nil, tag=nil, outboundpeakbandwidth=nil, inboundpeakbandwidth=nil, outboundcumulativeflow=nil, inboundcumulativeflow=nil, networkattack=nil, exposedport=nil, exposedvul=nil, configurerisk=nil, createtime=nil, scantask=nil, lastscantime=nil, nick=nil, addressipv6=nil, iscore=nil, riskexposure=nil, isnewasset=nil, status=nil, engineregion=nil)
|
|
9843
|
+
def initialize(appid=nil, uin=nil, assetid=nil, assetname=nil, assettype=nil, privateip=nil, publicip=nil, region=nil, vpcid=nil, vpcname=nil, tag=nil, outboundpeakbandwidth=nil, inboundpeakbandwidth=nil, outboundcumulativeflow=nil, inboundcumulativeflow=nil, networkattack=nil, exposedport=nil, exposedvul=nil, configurerisk=nil, createtime=nil, scantask=nil, lastscantime=nil, nick=nil, addressipv6=nil, iscore=nil, riskexposure=nil, isnewasset=nil, status=nil, engineregion=nil, weakpasswordrisk=nil)
|
|
9818
9844
|
@AppId = appid
|
|
9819
9845
|
@Uin = uin
|
|
9820
9846
|
@AssetId = assetid
|
|
@@ -9844,6 +9870,7 @@ module TencentCloud
|
|
|
9844
9870
|
@IsNewAsset = isnewasset
|
|
9845
9871
|
@Status = status
|
|
9846
9872
|
@EngineRegion = engineregion
|
|
9873
|
+
@WeakPasswordRisk = weakpasswordrisk
|
|
9847
9874
|
end
|
|
9848
9875
|
|
|
9849
9876
|
def deserialize(params)
|
|
@@ -9883,6 +9910,7 @@ module TencentCloud
|
|
|
9883
9910
|
@IsNewAsset = params['IsNewAsset']
|
|
9884
9911
|
@Status = params['Status']
|
|
9885
9912
|
@EngineRegion = params['EngineRegion']
|
|
9913
|
+
@WeakPasswordRisk = params['WeakPasswordRisk']
|
|
9886
9914
|
end
|
|
9887
9915
|
end
|
|
9888
9916
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-csip
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1173
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-
|
|
11
|
+
date: 2025-11-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|
|
@@ -34,8 +34,8 @@ extensions: []
|
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
36
|
- lib/tencentcloud-sdk-csip.rb
|
|
37
|
-
- lib/v20221121/models.rb
|
|
38
37
|
- lib/v20221121/client.rb
|
|
38
|
+
- lib/v20221121/models.rb
|
|
39
39
|
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
|
41
41
|
licenses:
|