tencentcloud-sdk-python-postgres 3.1.134__tar.gz → 3.1.152__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.1.134 → tencentcloud_sdk_python_postgres-3.1.152}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_postgres-3.1.134 → tencentcloud_sdk_python_postgres-3.1.152}/setup.py +1 -1
  3. {tencentcloud_sdk_python_postgres-3.1.134 → tencentcloud_sdk_python_postgres-3.1.152}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_postgres-3.1.134 → tencentcloud_sdk_python_postgres-3.1.152}/tencentcloud/postgres/v20170312/errorcodes.py +6 -0
  5. {tencentcloud_sdk_python_postgres-3.1.134 → tencentcloud_sdk_python_postgres-3.1.152}/tencentcloud/postgres/v20170312/models.py +1745 -135
  6. {tencentcloud_sdk_python_postgres-3.1.134 → tencentcloud_sdk_python_postgres-3.1.152}/tencentcloud/postgres/v20170312/postgres_client.py +161 -0
  7. {tencentcloud_sdk_python_postgres-3.1.134 → tencentcloud_sdk_python_postgres-3.1.152}/tencentcloud/postgres/v20170312/postgres_client_async.py +126 -0
  8. {tencentcloud_sdk_python_postgres-3.1.134 → tencentcloud_sdk_python_postgres-3.1.152}/tencentcloud_sdk_python_postgres.egg-info/PKG-INFO +2 -2
  9. tencentcloud_sdk_python_postgres-3.1.152/tencentcloud_sdk_python_postgres.egg-info/requires.txt +1 -0
  10. tencentcloud_sdk_python_postgres-3.1.134/tencentcloud_sdk_python_postgres.egg-info/requires.txt +0 -1
  11. {tencentcloud_sdk_python_postgres-3.1.134 → tencentcloud_sdk_python_postgres-3.1.152}/README.rst +0 -0
  12. {tencentcloud_sdk_python_postgres-3.1.134 → tencentcloud_sdk_python_postgres-3.1.152}/setup.cfg +0 -0
  13. {tencentcloud_sdk_python_postgres-3.1.134 → tencentcloud_sdk_python_postgres-3.1.152}/tencentcloud/postgres/__init__.py +0 -0
  14. {tencentcloud_sdk_python_postgres-3.1.134 → tencentcloud_sdk_python_postgres-3.1.152}/tencentcloud/postgres/v20170312/__init__.py +0 -0
  15. {tencentcloud_sdk_python_postgres-3.1.134 → tencentcloud_sdk_python_postgres-3.1.152}/tencentcloud_sdk_python_postgres.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_postgres-3.1.134 → tencentcloud_sdk_python_postgres-3.1.152}/tencentcloud_sdk_python_postgres.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_postgres-3.1.134 → tencentcloud_sdk_python_postgres-3.1.152}/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.1.134
3
+ Version: 3.1.152
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.1.134
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.152
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-postgres',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.134,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.152,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Postgres SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.134'
17
+ __version__ = '3.1.152'
@@ -125,6 +125,9 @@ FAILEDOPERATION_MASTERINSTANCEQUERYERROR = 'FailedOperation.MasterInstanceQueryE
125
125
  # 修改只读组配置失败。
126
126
  FAILEDOPERATION_MODIFYROGROUPERROR = 'FailedOperation.ModifyROGroupError'
127
127
 
128
+ # 实例配置变更失败,请稍后重试。如果持续不成功,请联系客服进行处理。
129
+ FAILEDOPERATION_MODIFYRESOURCEERROR = 'FailedOperation.ModifyResourceError'
130
+
128
131
  # 不符合资源所拥有的网络数量要求。
129
132
  FAILEDOPERATION_NETWORKNUMLIMITERROR = 'FailedOperation.NetworkNumLimitError'
130
133
 
@@ -338,6 +341,9 @@ INVALIDPARAMETERVALUE_ACCOUNTNOTEXISTERROR = 'InvalidParameterValue.AccountNotEx
338
341
  # 当前实例所要扩容的规格目前不售卖。
339
342
  INVALIDPARAMETERVALUE_BADSPEC = 'InvalidParameterValue.BadSpec'
340
343
 
344
+ # 参数值无效
345
+ INVALIDPARAMETERVALUE_BIZINVALIDPARAMETERVALUEERROR = 'InvalidParameterValue.BizInvalidParameterValueError'
346
+
341
347
  # 数据库字符集错误。
342
348
  INVALIDPARAMETERVALUE_CHARSETNOTFOUNDERROR = 'InvalidParameterValue.CharsetNotFoundError'
343
349