tencentcloud-sdk-python-waf 3.1.11__tar.gz → 3.1.44__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_waf-3.1.11 → tencentcloud_sdk_python_waf-3.1.44}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_waf-3.1.11 → tencentcloud_sdk_python_waf-3.1.44}/setup.py +1 -1
- {tencentcloud_sdk_python_waf-3.1.11 → tencentcloud_sdk_python_waf-3.1.44}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_waf-3.1.11 → tencentcloud_sdk_python_waf-3.1.44}/tencentcloud/waf/v20180125/errorcodes.py +3 -0
- {tencentcloud_sdk_python_waf-3.1.11 → tencentcloud_sdk_python_waf-3.1.44}/tencentcloud/waf/v20180125/models.py +1813 -79
- {tencentcloud_sdk_python_waf-3.1.11 → tencentcloud_sdk_python_waf-3.1.44}/tencentcloud/waf/v20180125/waf_client.py +69 -0
- {tencentcloud_sdk_python_waf-3.1.11 → tencentcloud_sdk_python_waf-3.1.44}/tencentcloud/waf/v20180125/waf_client_async.py +54 -0
- {tencentcloud_sdk_python_waf-3.1.11 → tencentcloud_sdk_python_waf-3.1.44}/tencentcloud_sdk_python_waf.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_waf-3.1.44/tencentcloud_sdk_python_waf.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_waf-3.1.11/tencentcloud_sdk_python_waf.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_waf-3.1.11 → tencentcloud_sdk_python_waf-3.1.44}/README.rst +0 -0
- {tencentcloud_sdk_python_waf-3.1.11 → tencentcloud_sdk_python_waf-3.1.44}/setup.cfg +0 -0
- {tencentcloud_sdk_python_waf-3.1.11 → tencentcloud_sdk_python_waf-3.1.44}/tencentcloud/waf/__init__.py +0 -0
- {tencentcloud_sdk_python_waf-3.1.11 → tencentcloud_sdk_python_waf-3.1.44}/tencentcloud/waf/v20180125/__init__.py +0 -0
- {tencentcloud_sdk_python_waf-3.1.11 → tencentcloud_sdk_python_waf-3.1.44}/tencentcloud_sdk_python_waf.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_waf-3.1.11 → tencentcloud_sdk_python_waf-3.1.44}/tencentcloud_sdk_python_waf.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_waf-3.1.11 → tencentcloud_sdk_python_waf-3.1.44}/tencentcloud_sdk_python_waf.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-waf
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.44
|
|
4
4
|
Summary: Tencent Cloud Waf 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.44
|
|
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-waf',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.44,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Waf SDK for Python',
|
|
@@ -107,6 +107,9 @@ INTERNALERROR_SEARCHFAILED = 'InternalError.SearchFailed'
|
|
|
107
107
|
# InternalError.ServerBusy
|
|
108
108
|
INTERNALERROR_SERVERBUSY = 'InternalError.ServerBusy'
|
|
109
109
|
|
|
110
|
+
# 查询资产中心发生内部错误
|
|
111
|
+
INTERNALERROR_SSACALLFAILED = 'InternalError.SsaCallFailed'
|
|
112
|
+
|
|
110
113
|
# InternalError.Unknown
|
|
111
114
|
INTERNALERROR_UNKNOWN = 'InternalError.Unknown'
|
|
112
115
|
|