tencentcloud-sdk-csip 3.0.1173 → 3.0.1187

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20221121/models.rb +92 -8
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b625dbf3effc1b2b1f59917eaa1cd039006699d1
4
- data.tar.gz: 0f0d7e2008e7beff58fc7d7ec60321e3bc02b83d
3
+ metadata.gz: 78c5eaff9d80163d110889c26b4fde37aed0cf6d
4
+ data.tar.gz: 3b081b2badd4c212fc94ecf100559b5e16f07838
5
5
  SHA512:
6
- metadata.gz: 31a550193d4ee9d4ce625d01e77010ea2a814e2fbfdbfa2412977d43a7b765c3316909e322e0aeb5631ba0a472ac3b4a8a7499e79e4375220e7ffdc0898cdbb9
7
- data.tar.gz: 400e6cc363b2e559432b8132e6d30ebb52a5f7c7b5c5f960981be41dd067b1320464ff31d3f3ecaeb84611c27ec515322fd0fd492e998287b85c4102fa3c9adc
6
+ metadata.gz: 2dae9949e8209d84ce1ba815bae33e5cf8c23396a8bbaca61c8dc3decd9ad54fc0de7abacfa1be1b892412b7835f0f27c5529e92dc2aa31d82e919f370a45625
7
+ data.tar.gz: c8283b2cf3e8ad2cf0f1a05b80ec943720a32740a68f6d348360420e320dac293f73db2b4548ef6af7d3f7e05aff8409f769cf51482b7320b5538a9a9de3213a
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1173
1
+ 3.0.1187
@@ -1626,10 +1626,12 @@ module TencentCloud
1626
1626
  # @type RiskRuleId: String
1627
1627
  # @param Classify: 处置分类
1628
1628
  # @type Classify: String
1629
+ # @param StandardTerms: 等保合规
1630
+ # @type StandardTerms: Array
1629
1631
 
1630
- attr_accessor :AppId, :Provider, :ProviderName, :CloudAccountName, :CloudAccountId, :InstanceName, :InstanceId, :CreateTime, :UpdateTime, :RiskStatus, :RiskTitle, :CheckType, :Severity, :RiskRuleId, :Classify
1632
+ attr_accessor :AppId, :Provider, :ProviderName, :CloudAccountName, :CloudAccountId, :InstanceName, :InstanceId, :CreateTime, :UpdateTime, :RiskStatus, :RiskTitle, :CheckType, :Severity, :RiskRuleId, :Classify, :StandardTerms
1631
1633
 
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)
1634
+ 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, standardterms=nil)
1633
1635
  @AppId = appid
1634
1636
  @Provider = provider
1635
1637
  @ProviderName = providername
@@ -1645,6 +1647,7 @@ module TencentCloud
1645
1647
  @Severity = severity
1646
1648
  @RiskRuleId = riskruleid
1647
1649
  @Classify = classify
1650
+ @StandardTerms = standardterms
1648
1651
  end
1649
1652
 
1650
1653
  def deserialize(params)
@@ -1663,6 +1666,14 @@ module TencentCloud
1663
1666
  @Severity = params['Severity']
1664
1667
  @RiskRuleId = params['RiskRuleId']
1665
1668
  @Classify = params['Classify']
1669
+ unless params['StandardTerms'].nil?
1670
+ @StandardTerms = []
1671
+ params['StandardTerms'].each do |i|
1672
+ standardterm_tmp = StandardTerm.new
1673
+ standardterm_tmp.deserialize(i)
1674
+ @StandardTerms << standardterm_tmp
1675
+ end
1676
+ end
1666
1677
  end
1667
1678
  end
1668
1679
 
@@ -2971,10 +2982,12 @@ module TencentCloud
2971
2982
  # @type EventType: String
2972
2983
  # @param Classify: 处置分类
2973
2984
  # @type Classify: String
2985
+ # @param StandardTerms: cspm规范条款
2986
+ # @type StandardTerms: Array
2974
2987
 
2975
- attr_accessor :RiskRuleId, :RiskTitle, :CheckType, :Severity, :RiskDesc, :CreateTime, :UpdateTime, :Provider, :RiskStatus, :AssetCount, :RiskCount, :AssetType, :EventType, :Classify
2988
+ attr_accessor :RiskRuleId, :RiskTitle, :CheckType, :Severity, :RiskDesc, :CreateTime, :UpdateTime, :Provider, :RiskStatus, :AssetCount, :RiskCount, :AssetType, :EventType, :Classify, :StandardTerms
2976
2989
 
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)
2990
+ 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, standardterms=nil)
2978
2991
  @RiskRuleId = riskruleid
2979
2992
  @RiskTitle = risktitle
2980
2993
  @CheckType = checktype
@@ -2989,6 +3002,7 @@ module TencentCloud
2989
3002
  @AssetType = assettype
2990
3003
  @EventType = eventtype
2991
3004
  @Classify = classify
3005
+ @StandardTerms = standardterms
2992
3006
  end
2993
3007
 
2994
3008
  def deserialize(params)
@@ -3006,6 +3020,14 @@ module TencentCloud
3006
3020
  @AssetType = params['AssetType']
3007
3021
  @EventType = params['EventType']
3008
3022
  @Classify = params['Classify']
3023
+ unless params['StandardTerms'].nil?
3024
+ @StandardTerms = []
3025
+ params['StandardTerms'].each do |i|
3026
+ standardterm_tmp = StandardTerm.new
3027
+ standardterm_tmp.deserialize(i)
3028
+ @StandardTerms << standardterm_tmp
3029
+ end
3030
+ end
3009
3031
  end
3010
3032
  end
3011
3033
 
@@ -4478,14 +4500,17 @@ module TencentCloud
4478
4500
  # @type TotalCount: Integer
4479
4501
  # @param AssetRiskList: 资产视角下风险列表
4480
4502
  # @type AssetRiskList: Array
4503
+ # @param StandardNameList: 等保规范名称集合
4504
+ # @type StandardNameList: Array
4481
4505
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4482
4506
  # @type RequestId: String
4483
4507
 
4484
- attr_accessor :TotalCount, :AssetRiskList, :RequestId
4508
+ attr_accessor :TotalCount, :AssetRiskList, :StandardNameList, :RequestId
4485
4509
 
4486
- def initialize(totalcount=nil, assetrisklist=nil, requestid=nil)
4510
+ def initialize(totalcount=nil, assetrisklist=nil, standardnamelist=nil, requestid=nil)
4487
4511
  @TotalCount = totalcount
4488
4512
  @AssetRiskList = assetrisklist
4513
+ @StandardNameList = standardnamelist
4489
4514
  @RequestId = requestid
4490
4515
  end
4491
4516
 
@@ -4499,6 +4524,14 @@ module TencentCloud
4499
4524
  @AssetRiskList << assetriskitem_tmp
4500
4525
  end
4501
4526
  end
4527
+ unless params['StandardNameList'].nil?
4528
+ @StandardNameList = []
4529
+ params['StandardNameList'].each do |i|
4530
+ standarditem_tmp = StandardItem.new
4531
+ standarditem_tmp.deserialize(i)
4532
+ @StandardNameList << standarditem_tmp
4533
+ end
4534
+ end
4502
4535
  @RequestId = params['RequestId']
4503
4536
  end
4504
4537
  end
@@ -5091,14 +5124,17 @@ module TencentCloud
5091
5124
  # @type TotalCount: Integer
5092
5125
  # @param CheckViewRiskList: 检查视角下风险列表
5093
5126
  # @type CheckViewRiskList: Array
5127
+ # @param StandardNameList: 检查视角下cspm规范标签列表
5128
+ # @type StandardNameList: Array
5094
5129
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5095
5130
  # @type RequestId: String
5096
5131
 
5097
- attr_accessor :TotalCount, :CheckViewRiskList, :RequestId
5132
+ attr_accessor :TotalCount, :CheckViewRiskList, :StandardNameList, :RequestId
5098
5133
 
5099
- def initialize(totalcount=nil, checkviewrisklist=nil, requestid=nil)
5134
+ def initialize(totalcount=nil, checkviewrisklist=nil, standardnamelist=nil, requestid=nil)
5100
5135
  @TotalCount = totalcount
5101
5136
  @CheckViewRiskList = checkviewrisklist
5137
+ @StandardNameList = standardnamelist
5102
5138
  @RequestId = requestid
5103
5139
  end
5104
5140
 
@@ -5112,6 +5148,14 @@ module TencentCloud
5112
5148
  @CheckViewRiskList << checkviewriskitem_tmp
5113
5149
  end
5114
5150
  end
5151
+ unless params['StandardNameList'].nil?
5152
+ @StandardNameList = []
5153
+ params['StandardNameList'].each do |i|
5154
+ standarditem_tmp = StandardItem.new
5155
+ standarditem_tmp.deserialize(i)
5156
+ @StandardNameList << standarditem_tmp
5157
+ end
5158
+ end
5115
5159
  @RequestId = params['RequestId']
5116
5160
  end
5117
5161
  end
@@ -12008,6 +12052,46 @@ module TencentCloud
12008
12052
  end
12009
12053
  end
12010
12054
 
12055
+ # CSPM规范
12056
+ class StandardItem < TencentCloud::Common::AbstractModel
12057
+ # @param ID: 规范ID
12058
+ # @type ID: Integer
12059
+ # @param Name: 规范名称
12060
+ # @type Name: String
12061
+
12062
+ attr_accessor :ID, :Name
12063
+
12064
+ def initialize(id=nil, name=nil)
12065
+ @ID = id
12066
+ @Name = name
12067
+ end
12068
+
12069
+ def deserialize(params)
12070
+ @ID = params['ID']
12071
+ @Name = params['Name']
12072
+ end
12073
+ end
12074
+
12075
+ # CSPM条款
12076
+ class StandardTerm < TencentCloud::Common::AbstractModel
12077
+ # @param Tag: 标签
12078
+ # @type Tag: String
12079
+ # @param Terms: 条款
12080
+ # @type Terms: Array
12081
+
12082
+ attr_accessor :Tag, :Terms
12083
+
12084
+ def initialize(tag=nil, terms=nil)
12085
+ @Tag = tag
12086
+ @Terms = terms
12087
+ end
12088
+
12089
+ def deserialize(params)
12090
+ @Tag = params['Tag']
12091
+ @Terms = params['Terms']
12092
+ end
12093
+ end
12094
+
12011
12095
  # 用户行为分析 统计条件
12012
12096
  class StatisticalFilter < TencentCloud::Common::AbstractModel
12013
12097
  # @param OperatorType: 0:不基于统计检测
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.1173
4
+ version: 3.0.1187
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-24 00:00:00.000000000 Z
11
+ date: 2025-12-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common