tencentcloud-sdk-python-cfw 3.1.74__tar.gz → 3.1.83__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_cfw-3.1.74 → tencentcloud_sdk_python_cfw-3.1.83}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_cfw-3.1.74 → tencentcloud_sdk_python_cfw-3.1.83}/setup.py +1 -1
- {tencentcloud_sdk_python_cfw-3.1.74 → tencentcloud_sdk_python_cfw-3.1.83}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_cfw-3.1.74 → tencentcloud_sdk_python_cfw-3.1.83}/tencentcloud/cfw/v20190904/cfw_client.py +23 -0
- {tencentcloud_sdk_python_cfw-3.1.74 → tencentcloud_sdk_python_cfw-3.1.83}/tencentcloud/cfw/v20190904/cfw_client_async.py +18 -0
- {tencentcloud_sdk_python_cfw-3.1.74 → tencentcloud_sdk_python_cfw-3.1.83}/tencentcloud/cfw/v20190904/models.py +1326 -257
- {tencentcloud_sdk_python_cfw-3.1.74 → tencentcloud_sdk_python_cfw-3.1.83}/tencentcloud_sdk_python_cfw.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_cfw-3.1.83/tencentcloud_sdk_python_cfw.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_cfw-3.1.74/tencentcloud_sdk_python_cfw.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_cfw-3.1.74 → tencentcloud_sdk_python_cfw-3.1.83}/README.rst +0 -0
- {tencentcloud_sdk_python_cfw-3.1.74 → tencentcloud_sdk_python_cfw-3.1.83}/setup.cfg +0 -0
- {tencentcloud_sdk_python_cfw-3.1.74 → tencentcloud_sdk_python_cfw-3.1.83}/tencentcloud/cfw/__init__.py +0 -0
- {tencentcloud_sdk_python_cfw-3.1.74 → tencentcloud_sdk_python_cfw-3.1.83}/tencentcloud/cfw/v20190904/__init__.py +0 -0
- {tencentcloud_sdk_python_cfw-3.1.74 → tencentcloud_sdk_python_cfw-3.1.83}/tencentcloud/cfw/v20190904/errorcodes.py +0 -0
- {tencentcloud_sdk_python_cfw-3.1.74 → tencentcloud_sdk_python_cfw-3.1.83}/tencentcloud_sdk_python_cfw.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_cfw-3.1.74 → tencentcloud_sdk_python_cfw-3.1.83}/tencentcloud_sdk_python_cfw.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_cfw-3.1.74 → tencentcloud_sdk_python_cfw-3.1.83}/tencentcloud_sdk_python_cfw.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cfw
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.83
|
|
4
4
|
Summary: Tencent Cloud Cfw 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.83
|
|
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-cfw',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.83,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Cfw SDK for Python',
|
|
@@ -1293,6 +1293,29 @@ class CfwClient(AbstractClient):
|
|
|
1293
1293
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1294
1294
|
|
|
1295
1295
|
|
|
1296
|
+
def DescribeNDRAssetIdentificationList(self, request):
|
|
1297
|
+
r"""DescribeNDRAssetIdentificationList - 获取NDR资产识别结果列表
|
|
1298
|
+
|
|
1299
|
+
:param request: Request instance for DescribeNDRAssetIdentificationList.
|
|
1300
|
+
:type request: :class:`tencentcloud.cfw.v20190904.models.DescribeNDRAssetIdentificationListRequest`
|
|
1301
|
+
:rtype: :class:`tencentcloud.cfw.v20190904.models.DescribeNDRAssetIdentificationListResponse`
|
|
1302
|
+
|
|
1303
|
+
"""
|
|
1304
|
+
try:
|
|
1305
|
+
params = request._serialize()
|
|
1306
|
+
headers = request.headers
|
|
1307
|
+
body = self.call("DescribeNDRAssetIdentificationList", params, headers=headers)
|
|
1308
|
+
response = json.loads(body)
|
|
1309
|
+
model = models.DescribeNDRAssetIdentificationListResponse()
|
|
1310
|
+
model._deserialize(response["Response"])
|
|
1311
|
+
return model
|
|
1312
|
+
except Exception as e:
|
|
1313
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1314
|
+
raise
|
|
1315
|
+
else:
|
|
1316
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1317
|
+
|
|
1318
|
+
|
|
1296
1319
|
def DescribeNatAcRule(self, request):
|
|
1297
1320
|
r"""查询NAT访问控制列表
|
|
1298
1321
|
|
|
@@ -1017,6 +1017,24 @@ class CfwClient(AbstractClient):
|
|
|
1017
1017
|
|
|
1018
1018
|
return await self.call_and_deserialize(**kwargs)
|
|
1019
1019
|
|
|
1020
|
+
async def DescribeNDRAssetIdentificationList(
|
|
1021
|
+
self,
|
|
1022
|
+
request: models.DescribeNDRAssetIdentificationListRequest,
|
|
1023
|
+
opts: Dict = None,
|
|
1024
|
+
) -> models.DescribeNDRAssetIdentificationListResponse:
|
|
1025
|
+
"""
|
|
1026
|
+
DescribeNDRAssetIdentificationList - 获取NDR资产识别结果列表
|
|
1027
|
+
"""
|
|
1028
|
+
|
|
1029
|
+
kwargs = {}
|
|
1030
|
+
kwargs["action"] = "DescribeNDRAssetIdentificationList"
|
|
1031
|
+
kwargs["params"] = request._serialize()
|
|
1032
|
+
kwargs["resp_cls"] = models.DescribeNDRAssetIdentificationListResponse
|
|
1033
|
+
kwargs["headers"] = request.headers
|
|
1034
|
+
kwargs["opts"] = opts or {}
|
|
1035
|
+
|
|
1036
|
+
return await self.call_and_deserialize(**kwargs)
|
|
1037
|
+
|
|
1020
1038
|
async def DescribeNatAcRule(
|
|
1021
1039
|
self,
|
|
1022
1040
|
request: models.DescribeNatAcRuleRequest,
|