tencentcloud-sdk-python-postgres 3.0.1490__tar.gz → 3.1.49__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_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.49}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.49}/setup.py +2 -1
  3. {tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.49}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.49}/tencentcloud/postgres/v20170312/errorcodes.py +6 -0
  5. {tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.49}/tencentcloud/postgres/v20170312/models.py +120 -180
  6. tencentcloud_sdk_python_postgres-3.1.49/tencentcloud/postgres/v20170312/postgres_client_async.py +1908 -0
  7. {tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.49}/tencentcloud_sdk_python_postgres.egg-info/PKG-INFO +2 -2
  8. {tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.49}/tencentcloud_sdk_python_postgres.egg-info/SOURCES.txt +1 -0
  9. tencentcloud_sdk_python_postgres-3.1.49/tencentcloud_sdk_python_postgres.egg-info/requires.txt +1 -0
  10. tencentcloud_sdk_python_postgres-3.0.1490/tencentcloud_sdk_python_postgres.egg-info/requires.txt +0 -1
  11. {tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.49}/README.rst +0 -0
  12. {tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.49}/setup.cfg +0 -0
  13. {tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.49}/tencentcloud/postgres/__init__.py +0 -0
  14. {tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.49}/tencentcloud/postgres/v20170312/__init__.py +0 -0
  15. {tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.49}/tencentcloud/postgres/v20170312/postgres_client.py +0 -0
  16. {tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.49}/tencentcloud_sdk_python_postgres.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_postgres-3.0.1490 → tencentcloud_sdk_python_postgres-3.1.49}/tencentcloud_sdk_python_postgres.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-postgres
3
- Version: 3.0.1490
3
+ Version: 3.1.49
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.0.1490
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.49
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -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.0.1490,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.49,<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(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1490'
17
+ __version__ = '3.1.49'
@@ -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