tencentcloud-sdk-python-csip 3.1.74__tar.gz → 3.1.79__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.
- {tencentcloud_sdk_python_csip-3.1.74 → tencentcloud_sdk_python_csip-3.1.79}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_csip-3.1.74 → tencentcloud_sdk_python_csip-3.1.79}/setup.py +1 -1
- {tencentcloud_sdk_python_csip-3.1.74 → tencentcloud_sdk_python_csip-3.1.79}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_csip-3.1.74 → tencentcloud_sdk_python_csip-3.1.79}/tencentcloud/csip/v20221121/models.py +15 -0
- {tencentcloud_sdk_python_csip-3.1.74 → tencentcloud_sdk_python_csip-3.1.79}/tencentcloud_sdk_python_csip.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_csip-3.1.79/tencentcloud_sdk_python_csip.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_csip-3.1.74/tencentcloud_sdk_python_csip.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_csip-3.1.74 → tencentcloud_sdk_python_csip-3.1.79}/README.rst +0 -0
- {tencentcloud_sdk_python_csip-3.1.74 → tencentcloud_sdk_python_csip-3.1.79}/setup.cfg +0 -0
- {tencentcloud_sdk_python_csip-3.1.74 → tencentcloud_sdk_python_csip-3.1.79}/tencentcloud/csip/__init__.py +0 -0
- {tencentcloud_sdk_python_csip-3.1.74 → tencentcloud_sdk_python_csip-3.1.79}/tencentcloud/csip/v20221121/__init__.py +0 -0
- {tencentcloud_sdk_python_csip-3.1.74 → tencentcloud_sdk_python_csip-3.1.79}/tencentcloud/csip/v20221121/csip_client.py +0 -0
- {tencentcloud_sdk_python_csip-3.1.74 → tencentcloud_sdk_python_csip-3.1.79}/tencentcloud/csip/v20221121/csip_client_async.py +0 -0
- {tencentcloud_sdk_python_csip-3.1.74 → tencentcloud_sdk_python_csip-3.1.79}/tencentcloud/csip/v20221121/errorcodes.py +0 -0
- {tencentcloud_sdk_python_csip-3.1.74 → tencentcloud_sdk_python_csip-3.1.79}/tencentcloud_sdk_python_csip.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_csip-3.1.74 → tencentcloud_sdk_python_csip-3.1.79}/tencentcloud_sdk_python_csip.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_csip-3.1.74 → tencentcloud_sdk_python_csip-3.1.79}/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.
|
|
3
|
+
Version: 3.1.79
|
|
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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.79
|
|
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.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.79,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Csip SDK for Python',
|
|
@@ -31629,6 +31629,8 @@ class RiskDetailItem(AbstractModel):
|
|
|
31629
31629
|
:type RiskRuleId: str
|
|
31630
31630
|
:param _CheckStatus: 风险验证状态
|
|
31631
31631
|
:type CheckStatus: str
|
|
31632
|
+
:param _AppID:
|
|
31633
|
+
:type AppID: int
|
|
31632
31634
|
"""
|
|
31633
31635
|
self._CreateTime = None
|
|
31634
31636
|
self._UpdateTime = None
|
|
@@ -31643,6 +31645,7 @@ class RiskDetailItem(AbstractModel):
|
|
|
31643
31645
|
self._RiskId = None
|
|
31644
31646
|
self._RiskRuleId = None
|
|
31645
31647
|
self._CheckStatus = None
|
|
31648
|
+
self._AppID = None
|
|
31646
31649
|
|
|
31647
31650
|
@property
|
|
31648
31651
|
def CreateTime(self):
|
|
@@ -31787,6 +31790,17 @@ class RiskDetailItem(AbstractModel):
|
|
|
31787
31790
|
def CheckStatus(self, CheckStatus):
|
|
31788
31791
|
self._CheckStatus = CheckStatus
|
|
31789
31792
|
|
|
31793
|
+
@property
|
|
31794
|
+
def AppID(self):
|
|
31795
|
+
r"""
|
|
31796
|
+
:rtype: int
|
|
31797
|
+
"""
|
|
31798
|
+
return self._AppID
|
|
31799
|
+
|
|
31800
|
+
@AppID.setter
|
|
31801
|
+
def AppID(self, AppID):
|
|
31802
|
+
self._AppID = AppID
|
|
31803
|
+
|
|
31790
31804
|
|
|
31791
31805
|
def _deserialize(self, params):
|
|
31792
31806
|
self._CreateTime = params.get("CreateTime")
|
|
@@ -31802,6 +31816,7 @@ class RiskDetailItem(AbstractModel):
|
|
|
31802
31816
|
self._RiskId = params.get("RiskId")
|
|
31803
31817
|
self._RiskRuleId = params.get("RiskRuleId")
|
|
31804
31818
|
self._CheckStatus = params.get("CheckStatus")
|
|
31819
|
+
self._AppID = params.get("AppID")
|
|
31805
31820
|
memeber_set = set(params.keys())
|
|
31806
31821
|
for name, value in vars(self).items():
|
|
31807
31822
|
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.
|
|
3
|
+
Version: 3.1.79
|
|
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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.79
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.79
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.74
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|