tencentcloud-sdk-python-postgres 3.0.1475__tar.gz → 3.0.1490__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 (18) hide show
  1. tencentcloud_sdk_python_postgres-3.0.1490/PKG-INFO +46 -0
  2. {tencentcloud-sdk-python-postgres-3.0.1475 → tencentcloud_sdk_python_postgres-3.0.1490}/setup.py +1 -1
  3. {tencentcloud-sdk-python-postgres-3.0.1475 → tencentcloud_sdk_python_postgres-3.0.1490}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-postgres-3.0.1475 → tencentcloud_sdk_python_postgres-3.0.1490}/tencentcloud/postgres/v20170312/errorcodes.py +12 -0
  5. {tencentcloud-sdk-python-postgres-3.0.1475 → tencentcloud_sdk_python_postgres-3.0.1490}/tencentcloud/postgres/v20170312/models.py +834 -79
  6. {tencentcloud-sdk-python-postgres-3.0.1475 → tencentcloud_sdk_python_postgres-3.0.1490}/tencentcloud/postgres/v20170312/postgres_client.py +92 -0
  7. tencentcloud_sdk_python_postgres-3.0.1490/tencentcloud_sdk_python_postgres.egg-info/PKG-INFO +46 -0
  8. tencentcloud_sdk_python_postgres-3.0.1490/tencentcloud_sdk_python_postgres.egg-info/requires.txt +1 -0
  9. tencentcloud-sdk-python-postgres-3.0.1475/PKG-INFO +0 -45
  10. tencentcloud-sdk-python-postgres-3.0.1475/tencentcloud_sdk_python_postgres.egg-info/PKG-INFO +0 -45
  11. tencentcloud-sdk-python-postgres-3.0.1475/tencentcloud_sdk_python_postgres.egg-info/requires.txt +0 -1
  12. {tencentcloud-sdk-python-postgres-3.0.1475 → tencentcloud_sdk_python_postgres-3.0.1490}/README.rst +0 -0
  13. {tencentcloud-sdk-python-postgres-3.0.1475 → tencentcloud_sdk_python_postgres-3.0.1490}/setup.cfg +0 -0
  14. {tencentcloud-sdk-python-postgres-3.0.1475 → tencentcloud_sdk_python_postgres-3.0.1490}/tencentcloud/postgres/__init__.py +0 -0
  15. {tencentcloud-sdk-python-postgres-3.0.1475 → tencentcloud_sdk_python_postgres-3.0.1490}/tencentcloud/postgres/v20170312/__init__.py +0 -0
  16. {tencentcloud-sdk-python-postgres-3.0.1475 → tencentcloud_sdk_python_postgres-3.0.1490}/tencentcloud_sdk_python_postgres.egg-info/SOURCES.txt +0 -0
  17. {tencentcloud-sdk-python-postgres-3.0.1475 → tencentcloud_sdk_python_postgres-3.0.1490}/tencentcloud_sdk_python_postgres.egg-info/dependency_links.txt +0 -0
  18. {tencentcloud-sdk-python-postgres-3.0.1475 → tencentcloud_sdk_python_postgres-3.0.1490}/tencentcloud_sdk_python_postgres.egg-info/top_level.txt +0 -0
@@ -0,0 +1,46 @@
1
+ Metadata-Version: 2.1
2
+ Name: tencentcloud-sdk-python-postgres
3
+ Version: 3.0.1490
4
+ Summary: Tencent Cloud Postgres SDK for Python
5
+ Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
+ Author: Tencent Cloud
7
+ Maintainer-email: tencentcloudapi@tencent.com
8
+ License: Apache License 2.0
9
+ Platform: any
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: Apache Software License
13
+ Classifier: Programming Language :: Python
14
+ Classifier: Programming Language :: Python :: 2.7
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.6
17
+ Classifier: Programming Language :: Python :: 3.7
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.0.1490
19
+
20
+ ============================
21
+ Tencent Cloud SDK for Python
22
+ ============================
23
+
24
+ Tencent Cloud Python Postgres SDK is the official software development kit, which allows Python developers to write software that makes use of Tencent Cloud services like CVM and CBS.
25
+ The SDK works on Python versions:
26
+
27
+ * 2.7 and greater, including 3.x
28
+
29
+ Quick Start
30
+ -----------
31
+
32
+ First, install the library:
33
+
34
+ .. code-block:: sh
35
+
36
+ $ pip install tencentcloud-sdk-python-common
37
+ $ pip install tencentcloud-sdk-python-postgres
38
+
39
+ or download source code from github and install:
40
+
41
+ .. code-block:: sh
42
+
43
+ $ git clone https://github.com/tencentcloud/tencentcloud-sdk-python.git
44
+ $ cd tencentcloud-sdk-python
45
+ $ python package.py --components common postgres
46
+
@@ -8,7 +8,7 @@ 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.1475,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.0.1490,<4.0.0"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Postgres SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1475'
17
+ __version__ = '3.0.1490'
@@ -53,6 +53,12 @@ FAILEDOPERATION_CAMSIGANDAUTHERROR = 'FailedOperation.CamSigAndAuthError'
53
53
  # 获取项目信息失败,请稍后重试。如果持续不成功,请联系客服进行处理。
54
54
  FAILEDOPERATION_CDBCGWCONNECTERROR = 'FailedOperation.CdbCgwConnectError'
55
55
 
56
+ # 检查数据库账号状态错误:账号已开启CAM验证,不支持当前操作。
57
+ FAILEDOPERATION_CHECKACCOUNTCAMCLOSEERROR = 'FailedOperation.CheckAccountCAMCloseError'
58
+
59
+ # 检查数据库账号状态错误:账号未开启CAM验证,不支持当前操作。
60
+ FAILEDOPERATION_CHECKACCOUNTCAMOPENERROR = 'FailedOperation.CheckAccountCAMOpenError'
61
+
56
62
  # 不支持新增基础网络。
57
63
  FAILEDOPERATION_CREATEBASICNETWORKDENIEDERROR = 'FailedOperation.CreateBasicNetworkDeniedError'
58
64
 
@@ -437,6 +443,9 @@ INVALIDPARAMETERVALUE_SPECNOTRECOGNIZEDERROR = 'InvalidParameterValue.SpecNotRec
437
443
  # 解析参数出错。
438
444
  INVALIDPARAMETERVALUE_STRUCTPARSEFAILED = 'InvalidParameterValue.StructParseFailed'
439
445
 
446
+ # 传入地域不支持使用本接口功能。
447
+ INVALIDPARAMETERVALUE_UNSUPPORTEDREGIONERROR = 'InvalidParameterValue.UnsupportedRegionError'
448
+
440
449
  # PID参数输入错误。
441
450
  INVALIDPID = 'InvalidPid'
442
451
 
@@ -503,6 +512,9 @@ OPERATIONDENIED_TRADEPERMISSIONERROR = 'OperationDenied.TradePermissionError'
503
512
  # 用户未进行实名认证,请先进行实名认证才可购买。
504
513
  OPERATIONDENIED_USERNOTAUTHENTICATEDERROR = 'OperationDenied.UserNotAuthenticatedError'
505
514
 
515
+ # 用户不在白名单内。
516
+ OPERATIONDENIED_USERNOTINWHITELISTERROR = 'OperationDenied.UserNotInWhiteListError'
517
+
506
518
  # 您没有权限操作该VPC网络。
507
519
  OPERATIONDENIED_VPCDENIEDERROR = 'OperationDenied.VpcDeniedError'
508
520