tencentcloud-sdk-python-postgres 3.0.1490__tar.gz → 3.1.4__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_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.4}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.4}/setup.py +2 -1
- {tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.4}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.4}/tencentcloud/postgres/v20170312/errorcodes.py +6 -0
- tencentcloud_sdk_python_postgres-3.1.4/tencentcloud/postgres/v20170312/postgres_client_async.py +1908 -0
- {tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.4}/tencentcloud_sdk_python_postgres.egg-info/PKG-INFO +2 -2
- {tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.4}/tencentcloud_sdk_python_postgres.egg-info/SOURCES.txt +1 -0
- tencentcloud_sdk_python_postgres-3.1.4/tencentcloud_sdk_python_postgres.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_postgres-3.0.1490/tencentcloud_sdk_python_postgres.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.4}/README.rst +0 -0
- {tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.4}/setup.cfg +0 -0
- {tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.4}/tencentcloud/postgres/__init__.py +0 -0
- {tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.4}/tencentcloud/postgres/v20170312/__init__.py +0 -0
- {tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.4}/tencentcloud/postgres/v20170312/models.py +0 -0
- {tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.4}/tencentcloud/postgres/v20170312/postgres_client.py +0 -0
- {tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.4}/tencentcloud_sdk_python_postgres.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.4}/tencentcloud_sdk_python_postgres.egg-info/top_level.txt +0 -0
{tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.4}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-postgres
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.1.4
|
|
4
4
|
Summary: Tencent Cloud Postgres 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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.4
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
{tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.4}/setup.py
RENAMED
|
@@ -8,7 +8,8 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-postgres',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.4,<4.0.0"],
|
|
12
|
+
|
|
12
13
|
version=tencentcloud.__version__,
|
|
13
14
|
description='Tencent Cloud Postgres SDK for Python',
|
|
14
15
|
long_description=open('README.rst').read(),
|
|
@@ -257,6 +257,9 @@ INTERNALERROR_DFWERROR = 'InternalError.DfwError'
|
|
|
257
257
|
# 流程创建失败。
|
|
258
258
|
INTERNALERROR_FLOWERROR = 'InternalError.FlowError'
|
|
259
259
|
|
|
260
|
+
# 服务异常,请稍后重试。
|
|
261
|
+
INTERNALERROR_HTTPERROR = 'InternalError.HttpError'
|
|
262
|
+
|
|
260
263
|
# 管控系统元数据访问异常,请联系客服处理。
|
|
261
264
|
INTERNALERROR_INSTANCEDATAERROR = 'InternalError.InstanceDataError'
|
|
262
265
|
|
|
@@ -554,6 +557,9 @@ UNKNOWNERROR = 'UnknownError'
|
|
|
554
557
|
# 未知参数错误。
|
|
555
558
|
UNKNOWNPARAMETER = 'UnknownParameter'
|
|
556
559
|
|
|
560
|
+
# 服务异常,请稍后重试。
|
|
561
|
+
UNKNOWNPARAMETER_HTTPERROR = 'UnknownParameter.HttpError'
|
|
562
|
+
|
|
557
563
|
# 操作不支持。
|
|
558
564
|
UNSUPPORTEDOPERATION = 'UnsupportedOperation'
|
|
559
565
|
|