tencentcloud-sdk-python-csip 3.1.104__tar.gz → 3.1.109__tar.gz

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 (17) hide show
  1. {tencentcloud_sdk_python_csip-3.1.104 → tencentcloud_sdk_python_csip-3.1.109}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_csip-3.1.104 → tencentcloud_sdk_python_csip-3.1.109}/setup.py +1 -1
  3. {tencentcloud_sdk_python_csip-3.1.104 → tencentcloud_sdk_python_csip-3.1.109}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_csip-3.1.104 → tencentcloud_sdk_python_csip-3.1.109}/tencentcloud/csip/v20221121/models.py +95 -30
  5. {tencentcloud_sdk_python_csip-3.1.104 → tencentcloud_sdk_python_csip-3.1.109}/tencentcloud_sdk_python_csip.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_csip-3.1.109/tencentcloud_sdk_python_csip.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_csip-3.1.104/tencentcloud_sdk_python_csip.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_csip-3.1.104 → tencentcloud_sdk_python_csip-3.1.109}/README.rst +0 -0
  9. {tencentcloud_sdk_python_csip-3.1.104 → tencentcloud_sdk_python_csip-3.1.109}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_csip-3.1.104 → tencentcloud_sdk_python_csip-3.1.109}/tencentcloud/csip/__init__.py +0 -0
  11. {tencentcloud_sdk_python_csip-3.1.104 → tencentcloud_sdk_python_csip-3.1.109}/tencentcloud/csip/v20221121/__init__.py +0 -0
  12. {tencentcloud_sdk_python_csip-3.1.104 → tencentcloud_sdk_python_csip-3.1.109}/tencentcloud/csip/v20221121/csip_client.py +0 -0
  13. {tencentcloud_sdk_python_csip-3.1.104 → tencentcloud_sdk_python_csip-3.1.109}/tencentcloud/csip/v20221121/csip_client_async.py +0 -0
  14. {tencentcloud_sdk_python_csip-3.1.104 → tencentcloud_sdk_python_csip-3.1.109}/tencentcloud/csip/v20221121/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_csip-3.1.104 → tencentcloud_sdk_python_csip-3.1.109}/tencentcloud_sdk_python_csip.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_csip-3.1.104 → tencentcloud_sdk_python_csip-3.1.109}/tencentcloud_sdk_python_csip.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_csip-3.1.104 → tencentcloud_sdk_python_csip-3.1.109}/tencentcloud_sdk_python_csip.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-csip
3
- Version: 3.1.104
3
+ Version: 3.1.109
4
4
  Summary: Tencent Cloud Csip SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.104
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.109
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-csip',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.104,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.109,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Csip SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.104'
17
+ __version__ = '3.1.109'
@@ -5765,6 +5765,8 @@ class AssetRiskItem(AbstractModel):
5765
5765
  :type AssetType: str
5766
5766
  :param _AssetTypeIconURL: <p>资产类型图标</p>
5767
5767
  :type AssetTypeIconURL: str
5768
+ :param _AssetTypeName: <p>资产类型</p>
5769
+ :type AssetTypeName: str
5768
5770
  """
5769
5771
  self._AppId = None
5770
5772
  self._Provider = None
@@ -5784,6 +5786,7 @@ class AssetRiskItem(AbstractModel):
5784
5786
  self._StandardTerms = None
5785
5787
  self._AssetType = None
5786
5788
  self._AssetTypeIconURL = None
5789
+ self._AssetTypeName = None
5787
5790
 
5788
5791
  @property
5789
5792
  def AppId(self):
@@ -5983,6 +5986,17 @@ class AssetRiskItem(AbstractModel):
5983
5986
  def AssetTypeIconURL(self, AssetTypeIconURL):
5984
5987
  self._AssetTypeIconURL = AssetTypeIconURL
5985
5988
 
5989
+ @property
5990
+ def AssetTypeName(self):
5991
+ r"""<p>资产类型</p>
5992
+ :rtype: str
5993
+ """
5994
+ return self._AssetTypeName
5995
+
5996
+ @AssetTypeName.setter
5997
+ def AssetTypeName(self, AssetTypeName):
5998
+ self._AssetTypeName = AssetTypeName
5999
+
5986
6000
 
5987
6001
  def _deserialize(self, params):
5988
6002
  self._AppId = params.get("AppId")
@@ -6008,6 +6022,7 @@ class AssetRiskItem(AbstractModel):
6008
6022
  self._StandardTerms.append(obj)
6009
6023
  self._AssetType = params.get("AssetType")
6010
6024
  self._AssetTypeIconURL = params.get("AssetTypeIconURL")
6025
+ self._AssetTypeName = params.get("AssetTypeName")
6011
6026
  memeber_set = set(params.keys())
6012
6027
  for name, value in vars(self).items():
6013
6028
  property_name = name[1:]
@@ -24630,15 +24645,15 @@ class DescribeCheckViewRisksRequest(AbstractModel):
24630
24645
  r"""
24631
24646
  :param _MemberId: <p>集团账号的成员id</p>
24632
24647
  :type MemberId: list of str
24633
- :param _Filters: 过滤内容
24648
+ :param _Filters: <p>过滤内容</p>
24634
24649
  :type Filters: list of Filters
24635
- :param _Limit: 分页大小
24650
+ :param _Limit: <p>分页大小</p>
24636
24651
  :type Limit: int
24637
- :param _Offset: 偏移量
24652
+ :param _Offset: <p>偏移量</p>
24638
24653
  :type Offset: int
24639
- :param _Order: 排序类型
24654
+ :param _Order: <p>排序类型</p>
24640
24655
  :type Order: str
24641
- :param _By: 排序字段
24656
+ :param _By: <p>排序字段</p>
24642
24657
  :type By: str
24643
24658
  """
24644
24659
  self._MemberId = None
@@ -24661,7 +24676,7 @@ class DescribeCheckViewRisksRequest(AbstractModel):
24661
24676
 
24662
24677
  @property
24663
24678
  def Filters(self):
24664
- r"""过滤内容
24679
+ r"""<p>过滤内容</p>
24665
24680
  :rtype: list of Filters
24666
24681
  """
24667
24682
  return self._Filters
@@ -24672,7 +24687,7 @@ class DescribeCheckViewRisksRequest(AbstractModel):
24672
24687
 
24673
24688
  @property
24674
24689
  def Limit(self):
24675
- r"""分页大小
24690
+ r"""<p>分页大小</p>
24676
24691
  :rtype: int
24677
24692
  """
24678
24693
  return self._Limit
@@ -24683,7 +24698,7 @@ class DescribeCheckViewRisksRequest(AbstractModel):
24683
24698
 
24684
24699
  @property
24685
24700
  def Offset(self):
24686
- r"""偏移量
24701
+ r"""<p>偏移量</p>
24687
24702
  :rtype: int
24688
24703
  """
24689
24704
  return self._Offset
@@ -24694,7 +24709,7 @@ class DescribeCheckViewRisksRequest(AbstractModel):
24694
24709
 
24695
24710
  @property
24696
24711
  def Order(self):
24697
- r"""排序类型
24712
+ r"""<p>排序类型</p>
24698
24713
  :rtype: str
24699
24714
  """
24700
24715
  return self._Order
@@ -24705,7 +24720,7 @@ class DescribeCheckViewRisksRequest(AbstractModel):
24705
24720
 
24706
24721
  @property
24707
24722
  def By(self):
24708
- r"""排序字段
24723
+ r"""<p>排序字段</p>
24709
24724
  :rtype: str
24710
24725
  """
24711
24726
  return self._By
@@ -24744,14 +24759,16 @@ class DescribeCheckViewRisksResponse(AbstractModel):
24744
24759
 
24745
24760
  def __init__(self):
24746
24761
  r"""
24747
- :param _TotalCount: 检查视角下风险数量
24762
+ :param _TotalCount: <p>检查视角下风险数量</p>
24748
24763
  :type TotalCount: int
24749
- :param _CheckViewRiskList: 检查视角下风险列表
24764
+ :param _CheckViewRiskList: <p>检查视角下风险列表</p>
24750
24765
  :type CheckViewRiskList: list of CheckViewRiskItem
24751
- :param _StandardNameList: 检查视角下cspm规范标签列表
24766
+ :param _StandardNameList: <p>检查视角下cspm规范标签列表</p>
24752
24767
  :type StandardNameList: list of StandardItem
24753
- :param _AssetTypeList: 资产类型集合
24768
+ :param _AssetTypeList: <p>资产类型集合</p>
24754
24769
  :type AssetTypeList: list of AttributeOptionSet
24770
+ :param _ProviderList: <p>云厂商类型集合</p>
24771
+ :type ProviderList: list of AttributeOptionSet
24755
24772
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
24756
24773
  :type RequestId: str
24757
24774
  """
@@ -24759,11 +24776,12 @@ class DescribeCheckViewRisksResponse(AbstractModel):
24759
24776
  self._CheckViewRiskList = None
24760
24777
  self._StandardNameList = None
24761
24778
  self._AssetTypeList = None
24779
+ self._ProviderList = None
24762
24780
  self._RequestId = None
24763
24781
 
24764
24782
  @property
24765
24783
  def TotalCount(self):
24766
- r"""检查视角下风险数量
24784
+ r"""<p>检查视角下风险数量</p>
24767
24785
  :rtype: int
24768
24786
  """
24769
24787
  return self._TotalCount
@@ -24774,7 +24792,7 @@ class DescribeCheckViewRisksResponse(AbstractModel):
24774
24792
 
24775
24793
  @property
24776
24794
  def CheckViewRiskList(self):
24777
- r"""检查视角下风险列表
24795
+ r"""<p>检查视角下风险列表</p>
24778
24796
  :rtype: list of CheckViewRiskItem
24779
24797
  """
24780
24798
  return self._CheckViewRiskList
@@ -24785,7 +24803,7 @@ class DescribeCheckViewRisksResponse(AbstractModel):
24785
24803
 
24786
24804
  @property
24787
24805
  def StandardNameList(self):
24788
- r"""检查视角下cspm规范标签列表
24806
+ r"""<p>检查视角下cspm规范标签列表</p>
24789
24807
  :rtype: list of StandardItem
24790
24808
  """
24791
24809
  return self._StandardNameList
@@ -24796,7 +24814,7 @@ class DescribeCheckViewRisksResponse(AbstractModel):
24796
24814
 
24797
24815
  @property
24798
24816
  def AssetTypeList(self):
24799
- r"""资产类型集合
24817
+ r"""<p>资产类型集合</p>
24800
24818
  :rtype: list of AttributeOptionSet
24801
24819
  """
24802
24820
  return self._AssetTypeList
@@ -24805,6 +24823,17 @@ class DescribeCheckViewRisksResponse(AbstractModel):
24805
24823
  def AssetTypeList(self, AssetTypeList):
24806
24824
  self._AssetTypeList = AssetTypeList
24807
24825
 
24826
+ @property
24827
+ def ProviderList(self):
24828
+ r"""<p>云厂商类型集合</p>
24829
+ :rtype: list of AttributeOptionSet
24830
+ """
24831
+ return self._ProviderList
24832
+
24833
+ @ProviderList.setter
24834
+ def ProviderList(self, ProviderList):
24835
+ self._ProviderList = ProviderList
24836
+
24808
24837
  @property
24809
24838
  def RequestId(self):
24810
24839
  r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -24837,6 +24866,12 @@ class DescribeCheckViewRisksResponse(AbstractModel):
24837
24866
  obj = AttributeOptionSet()
24838
24867
  obj._deserialize(item)
24839
24868
  self._AssetTypeList.append(obj)
24869
+ if params.get("ProviderList") is not None:
24870
+ self._ProviderList = []
24871
+ for item in params.get("ProviderList"):
24872
+ obj = AttributeOptionSet()
24873
+ obj._deserialize(item)
24874
+ self._ProviderList.append(obj)
24840
24875
  self._RequestId = params.get("RequestId")
24841
24876
 
24842
24877
 
@@ -40612,14 +40647,14 @@ class DescribeRiskRuleDetailRequest(AbstractModel):
40612
40647
 
40613
40648
  def __init__(self):
40614
40649
  r"""
40615
- :param _RiskRuleId: 风险规则ID
40650
+ :param _RiskRuleId: <p>风险规则ID</p>
40616
40651
  :type RiskRuleId: str
40617
40652
  """
40618
40653
  self._RiskRuleId = None
40619
40654
 
40620
40655
  @property
40621
40656
  def RiskRuleId(self):
40622
- r"""风险规则ID
40657
+ r"""<p>风险规则ID</p>
40623
40658
  :rtype: str
40624
40659
  """
40625
40660
  return self._RiskRuleId
@@ -40648,16 +40683,18 @@ class DescribeRiskRuleDetailResponse(AbstractModel):
40648
40683
 
40649
40684
  def __init__(self):
40650
40685
  r"""
40651
- :param _RiskRuleId: 风险规则ID
40686
+ :param _RiskRuleId: <p>风险规则ID</p>
40652
40687
  :type RiskRuleId: str
40653
- :param _Provider: 云厂商
40688
+ :param _Provider: <p>云厂商</p>
40654
40689
  :type Provider: str
40655
- :param _RiskName: 风险名称
40690
+ :param _RiskName: <p>风险名称</p>
40656
40691
  :type RiskName: str
40657
- :param _RiskInfluence: 风险危害
40692
+ :param _RiskInfluence: <p>风险危害</p>
40658
40693
  :type RiskInfluence: str
40659
- :param _RiskFixAdvice: 修复指引
40694
+ :param _RiskFixAdvice: <p>修复指引</p>
40660
40695
  :type RiskFixAdvice: str
40696
+ :param _AssetType: <p>资产类型</p>
40697
+ :type AssetType: str
40661
40698
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
40662
40699
  :type RequestId: str
40663
40700
  """
@@ -40666,11 +40703,12 @@ class DescribeRiskRuleDetailResponse(AbstractModel):
40666
40703
  self._RiskName = None
40667
40704
  self._RiskInfluence = None
40668
40705
  self._RiskFixAdvice = None
40706
+ self._AssetType = None
40669
40707
  self._RequestId = None
40670
40708
 
40671
40709
  @property
40672
40710
  def RiskRuleId(self):
40673
- r"""风险规则ID
40711
+ r"""<p>风险规则ID</p>
40674
40712
  :rtype: str
40675
40713
  """
40676
40714
  return self._RiskRuleId
@@ -40681,7 +40719,7 @@ class DescribeRiskRuleDetailResponse(AbstractModel):
40681
40719
 
40682
40720
  @property
40683
40721
  def Provider(self):
40684
- r"""云厂商
40722
+ r"""<p>云厂商</p>
40685
40723
  :rtype: str
40686
40724
  """
40687
40725
  return self._Provider
@@ -40692,7 +40730,7 @@ class DescribeRiskRuleDetailResponse(AbstractModel):
40692
40730
 
40693
40731
  @property
40694
40732
  def RiskName(self):
40695
- r"""风险名称
40733
+ r"""<p>风险名称</p>
40696
40734
  :rtype: str
40697
40735
  """
40698
40736
  return self._RiskName
@@ -40703,7 +40741,7 @@ class DescribeRiskRuleDetailResponse(AbstractModel):
40703
40741
 
40704
40742
  @property
40705
40743
  def RiskInfluence(self):
40706
- r"""风险危害
40744
+ r"""<p>风险危害</p>
40707
40745
  :rtype: str
40708
40746
  """
40709
40747
  return self._RiskInfluence
@@ -40714,7 +40752,7 @@ class DescribeRiskRuleDetailResponse(AbstractModel):
40714
40752
 
40715
40753
  @property
40716
40754
  def RiskFixAdvice(self):
40717
- r"""修复指引
40755
+ r"""<p>修复指引</p>
40718
40756
  :rtype: str
40719
40757
  """
40720
40758
  return self._RiskFixAdvice
@@ -40723,6 +40761,17 @@ class DescribeRiskRuleDetailResponse(AbstractModel):
40723
40761
  def RiskFixAdvice(self, RiskFixAdvice):
40724
40762
  self._RiskFixAdvice = RiskFixAdvice
40725
40763
 
40764
+ @property
40765
+ def AssetType(self):
40766
+ r"""<p>资产类型</p>
40767
+ :rtype: str
40768
+ """
40769
+ return self._AssetType
40770
+
40771
+ @AssetType.setter
40772
+ def AssetType(self, AssetType):
40773
+ self._AssetType = AssetType
40774
+
40726
40775
  @property
40727
40776
  def RequestId(self):
40728
40777
  r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -40741,6 +40790,7 @@ class DescribeRiskRuleDetailResponse(AbstractModel):
40741
40790
  self._RiskName = params.get("RiskName")
40742
40791
  self._RiskInfluence = params.get("RiskInfluence")
40743
40792
  self._RiskFixAdvice = params.get("RiskFixAdvice")
40793
+ self._AssetType = params.get("AssetType")
40744
40794
  self._RequestId = params.get("RequestId")
40745
40795
 
40746
40796
 
@@ -61113,6 +61163,8 @@ class RiskDetailItem(AbstractModel):
61113
61163
  :type CheckStatus: str
61114
61164
  :param _AppID: <p>用户AppID</p>
61115
61165
  :type AppID: int
61166
+ :param _AssetType: <p>资产类型</p>
61167
+ :type AssetType: str
61116
61168
  """
61117
61169
  self._CreateTime = None
61118
61170
  self._UpdateTime = None
@@ -61128,6 +61180,7 @@ class RiskDetailItem(AbstractModel):
61128
61180
  self._RiskRuleId = None
61129
61181
  self._CheckStatus = None
61130
61182
  self._AppID = None
61183
+ self._AssetType = None
61131
61184
 
61132
61185
  @property
61133
61186
  def CreateTime(self):
@@ -61283,6 +61336,17 @@ class RiskDetailItem(AbstractModel):
61283
61336
  def AppID(self, AppID):
61284
61337
  self._AppID = AppID
61285
61338
 
61339
+ @property
61340
+ def AssetType(self):
61341
+ r"""<p>资产类型</p>
61342
+ :rtype: str
61343
+ """
61344
+ return self._AssetType
61345
+
61346
+ @AssetType.setter
61347
+ def AssetType(self, AssetType):
61348
+ self._AssetType = AssetType
61349
+
61286
61350
 
61287
61351
  def _deserialize(self, params):
61288
61352
  self._CreateTime = params.get("CreateTime")
@@ -61299,6 +61363,7 @@ class RiskDetailItem(AbstractModel):
61299
61363
  self._RiskRuleId = params.get("RiskRuleId")
61300
61364
  self._CheckStatus = params.get("CheckStatus")
61301
61365
  self._AppID = params.get("AppID")
61366
+ self._AssetType = params.get("AssetType")
61302
61367
  memeber_set = set(params.keys())
61303
61368
  for name, value in vars(self).items():
61304
61369
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-csip
3
- Version: 3.1.104
3
+ Version: 3.1.109
4
4
  Summary: Tencent Cloud Csip SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.104
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.109
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.109
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.104