tencentcloud-sdk-python-csip 3.1.124__tar.gz → 3.1.125__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.124 → tencentcloud_sdk_python_csip-3.1.125}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_csip-3.1.124 → tencentcloud_sdk_python_csip-3.1.125}/setup.py +1 -1
  3. {tencentcloud_sdk_python_csip-3.1.124 → tencentcloud_sdk_python_csip-3.1.125}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_csip-3.1.124 → tencentcloud_sdk_python_csip-3.1.125}/tencentcloud/csip/v20221121/models.py +15 -0
  5. {tencentcloud_sdk_python_csip-3.1.124 → tencentcloud_sdk_python_csip-3.1.125}/tencentcloud_sdk_python_csip.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_csip-3.1.125/tencentcloud_sdk_python_csip.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_csip-3.1.124/tencentcloud_sdk_python_csip.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_csip-3.1.124 → tencentcloud_sdk_python_csip-3.1.125}/README.rst +0 -0
  9. {tencentcloud_sdk_python_csip-3.1.124 → tencentcloud_sdk_python_csip-3.1.125}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_csip-3.1.124 → tencentcloud_sdk_python_csip-3.1.125}/tencentcloud/csip/__init__.py +0 -0
  11. {tencentcloud_sdk_python_csip-3.1.124 → tencentcloud_sdk_python_csip-3.1.125}/tencentcloud/csip/v20221121/__init__.py +0 -0
  12. {tencentcloud_sdk_python_csip-3.1.124 → tencentcloud_sdk_python_csip-3.1.125}/tencentcloud/csip/v20221121/csip_client.py +0 -0
  13. {tencentcloud_sdk_python_csip-3.1.124 → tencentcloud_sdk_python_csip-3.1.125}/tencentcloud/csip/v20221121/csip_client_async.py +0 -0
  14. {tencentcloud_sdk_python_csip-3.1.124 → tencentcloud_sdk_python_csip-3.1.125}/tencentcloud/csip/v20221121/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_csip-3.1.124 → tencentcloud_sdk_python_csip-3.1.125}/tencentcloud_sdk_python_csip.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_csip-3.1.124 → tencentcloud_sdk_python_csip-3.1.125}/tencentcloud_sdk_python_csip.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_csip-3.1.124 → tencentcloud_sdk_python_csip-3.1.125}/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.124
3
+ Version: 3.1.125
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.124
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.125
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.124,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.125,<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.124'
17
+ __version__ = '3.1.125'
@@ -67514,6 +67514,8 @@ class RiskDetailItem(AbstractModel):
67514
67514
  :type AppID: int
67515
67515
  :param _AssetType: <p>资产类型</p>
67516
67516
  :type AssetType: str
67517
+ :param _Reason: <p>风险忽略原因</p>
67518
+ :type Reason: str
67517
67519
  """
67518
67520
  self._CreateTime = None
67519
67521
  self._UpdateTime = None
@@ -67530,6 +67532,7 @@ class RiskDetailItem(AbstractModel):
67530
67532
  self._CheckStatus = None
67531
67533
  self._AppID = None
67532
67534
  self._AssetType = None
67535
+ self._Reason = None
67533
67536
 
67534
67537
  @property
67535
67538
  def CreateTime(self):
@@ -67696,6 +67699,17 @@ class RiskDetailItem(AbstractModel):
67696
67699
  def AssetType(self, AssetType):
67697
67700
  self._AssetType = AssetType
67698
67701
 
67702
+ @property
67703
+ def Reason(self):
67704
+ r"""<p>风险忽略原因</p>
67705
+ :rtype: str
67706
+ """
67707
+ return self._Reason
67708
+
67709
+ @Reason.setter
67710
+ def Reason(self, Reason):
67711
+ self._Reason = Reason
67712
+
67699
67713
 
67700
67714
  def _deserialize(self, params):
67701
67715
  self._CreateTime = params.get("CreateTime")
@@ -67713,6 +67727,7 @@ class RiskDetailItem(AbstractModel):
67713
67727
  self._CheckStatus = params.get("CheckStatus")
67714
67728
  self._AppID = params.get("AppID")
67715
67729
  self._AssetType = params.get("AssetType")
67730
+ self._Reason = params.get("Reason")
67716
67731
  memeber_set = set(params.keys())
67717
67732
  for name, value in vars(self).items():
67718
67733
  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.124
3
+ Version: 3.1.125
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.124
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.125
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.125
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.124