tencentcloud-sdk-csip 3.0.1196 → 3.0.1204

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 +33 -7
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 437b9cd6c926fee96d7d30de1d338e335856de4b
4
- data.tar.gz: a298a05418e8f9cf1cbecd72dbd59f98f1fa4d77
3
+ metadata.gz: 8387b0c78ce9e9510f1ab5c91bf9bbd3396f3ddc
4
+ data.tar.gz: 127a1fe66fba916d9ce2e65ef7d7ca7d08550556
5
5
  SHA512:
6
- metadata.gz: 198009bd855ce40fa84caf08078ea338db56a407862ecc5fc6b63d6f58e2f365ebef5d4144adcb2ffb96452b9ed8e12478fe6610b1705f45cde949ff5979771a
7
- data.tar.gz: 307198ff0be082570348b407f25377c9beaa13a4a4f798cf29bbf6d02a30eb945499d94af5b3864c881e8e692842589a915658aeaf0d922c6599da51afae4710
6
+ metadata.gz: 6b7c6fc880e19699c7038d75049195af13cba6aafe727de7e76969290cf505306bdda76b10a91e59ac15b1bd4f5a6113126a89885cf898e76d7acb5621d1385f
7
+ data.tar.gz: 4f236480588a34e6a5fb56e1c9299e201808602c1a660cb166d81d4513dfdbf1f3f0de68d1f570aea050764c0959d00b4065cfa0ad23c99e3cb06af2310a60dd
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1196
1
+ 3.0.1204
@@ -1638,7 +1638,7 @@ module TencentCloud
1638
1638
  end
1639
1639
  end
1640
1640
 
1641
- # 资产视角风险项
1641
+ # 资产视角风险信息
1642
1642
  class AssetRiskItem < TencentCloud::Common::AbstractModel
1643
1643
  # @param AppId: 租户ID
1644
1644
  # @type AppId: Integer
@@ -1672,10 +1672,12 @@ module TencentCloud
1672
1672
  # @type Classify: String
1673
1673
  # @param StandardTerms: 等保合规
1674
1674
  # @type StandardTerms: Array
1675
+ # @param AssetType: 资产类型
1676
+ # @type AssetType: String
1675
1677
 
1676
- attr_accessor :AppId, :Provider, :ProviderName, :CloudAccountName, :CloudAccountId, :InstanceName, :InstanceId, :CreateTime, :UpdateTime, :RiskStatus, :RiskTitle, :CheckType, :Severity, :RiskRuleId, :Classify, :StandardTerms
1678
+ attr_accessor :AppId, :Provider, :ProviderName, :CloudAccountName, :CloudAccountId, :InstanceName, :InstanceId, :CreateTime, :UpdateTime, :RiskStatus, :RiskTitle, :CheckType, :Severity, :RiskRuleId, :Classify, :StandardTerms, :AssetType
1677
1679
 
1678
- 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)
1680
+ 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, assettype=nil)
1679
1681
  @AppId = appid
1680
1682
  @Provider = provider
1681
1683
  @ProviderName = providername
@@ -1692,6 +1694,7 @@ module TencentCloud
1692
1694
  @RiskRuleId = riskruleid
1693
1695
  @Classify = classify
1694
1696
  @StandardTerms = standardterms
1697
+ @AssetType = assettype
1695
1698
  end
1696
1699
 
1697
1700
  def deserialize(params)
@@ -1718,6 +1721,7 @@ module TencentCloud
1718
1721
  @StandardTerms << standardterm_tmp
1719
1722
  end
1720
1723
  end
1724
+ @AssetType = params['AssetType']
1721
1725
  end
1722
1726
  end
1723
1727
 
@@ -4546,15 +4550,18 @@ module TencentCloud
4546
4550
  # @type AssetRiskList: Array
4547
4551
  # @param StandardNameList: 等保规范名称集合
4548
4552
  # @type StandardNameList: Array
4553
+ # @param AssetTypeList: 资产类型集合
4554
+ # @type AssetTypeList: Array
4549
4555
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4550
4556
  # @type RequestId: String
4551
4557
 
4552
- attr_accessor :TotalCount, :AssetRiskList, :StandardNameList, :RequestId
4558
+ attr_accessor :TotalCount, :AssetRiskList, :StandardNameList, :AssetTypeList, :RequestId
4553
4559
 
4554
- def initialize(totalcount=nil, assetrisklist=nil, standardnamelist=nil, requestid=nil)
4560
+ def initialize(totalcount=nil, assetrisklist=nil, standardnamelist=nil, assettypelist=nil, requestid=nil)
4555
4561
  @TotalCount = totalcount
4556
4562
  @AssetRiskList = assetrisklist
4557
4563
  @StandardNameList = standardnamelist
4564
+ @AssetTypeList = assettypelist
4558
4565
  @RequestId = requestid
4559
4566
  end
4560
4567
 
@@ -4576,6 +4583,14 @@ module TencentCloud
4576
4583
  @StandardNameList << standarditem_tmp
4577
4584
  end
4578
4585
  end
4586
+ unless params['AssetTypeList'].nil?
4587
+ @AssetTypeList = []
4588
+ params['AssetTypeList'].each do |i|
4589
+ attributeoptionset_tmp = AttributeOptionSet.new
4590
+ attributeoptionset_tmp.deserialize(i)
4591
+ @AssetTypeList << attributeoptionset_tmp
4592
+ end
4593
+ end
4579
4594
  @RequestId = params['RequestId']
4580
4595
  end
4581
4596
  end
@@ -5170,15 +5185,18 @@ module TencentCloud
5170
5185
  # @type CheckViewRiskList: Array
5171
5186
  # @param StandardNameList: 检查视角下cspm规范标签列表
5172
5187
  # @type StandardNameList: Array
5188
+ # @param AssetTypeList: 资产类型集合
5189
+ # @type AssetTypeList: Array
5173
5190
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5174
5191
  # @type RequestId: String
5175
5192
 
5176
- attr_accessor :TotalCount, :CheckViewRiskList, :StandardNameList, :RequestId
5193
+ attr_accessor :TotalCount, :CheckViewRiskList, :StandardNameList, :AssetTypeList, :RequestId
5177
5194
 
5178
- def initialize(totalcount=nil, checkviewrisklist=nil, standardnamelist=nil, requestid=nil)
5195
+ def initialize(totalcount=nil, checkviewrisklist=nil, standardnamelist=nil, assettypelist=nil, requestid=nil)
5179
5196
  @TotalCount = totalcount
5180
5197
  @CheckViewRiskList = checkviewrisklist
5181
5198
  @StandardNameList = standardnamelist
5199
+ @AssetTypeList = assettypelist
5182
5200
  @RequestId = requestid
5183
5201
  end
5184
5202
 
@@ -5200,6 +5218,14 @@ module TencentCloud
5200
5218
  @StandardNameList << standarditem_tmp
5201
5219
  end
5202
5220
  end
5221
+ unless params['AssetTypeList'].nil?
5222
+ @AssetTypeList = []
5223
+ params['AssetTypeList'].each do |i|
5224
+ attributeoptionset_tmp = AttributeOptionSet.new
5225
+ attributeoptionset_tmp.deserialize(i)
5226
+ @AssetTypeList << attributeoptionset_tmp
5227
+ end
5228
+ end
5203
5229
  @RequestId = params['RequestId']
5204
5230
  end
5205
5231
  end
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.1196
4
+ version: 3.0.1204
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-01-05 00:00:00.000000000 Z
11
+ date: 2026-01-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,9 +33,9 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - lib/tencentcloud-sdk-csip.rb
37
36
  - lib/v20221121/client.rb
38
37
  - lib/v20221121/models.rb
38
+ - lib/tencentcloud-sdk-csip.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: