tencentcloud-sdk-python-postgres 3.0.930__tar.gz → 3.0.950__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 (15) hide show
  1. {tencentcloud-sdk-python-postgres-3.0.930 → tencentcloud-sdk-python-postgres-3.0.950}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-postgres-3.0.930 → tencentcloud-sdk-python-postgres-3.0.950}/setup.py +1 -0
  3. {tencentcloud-sdk-python-postgres-3.0.930 → tencentcloud-sdk-python-postgres-3.0.950}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-postgres-3.0.930 → tencentcloud-sdk-python-postgres-3.0.950}/tencentcloud/postgres/v20170312/errorcodes.py +12 -0
  5. {tencentcloud-sdk-python-postgres-3.0.930 → tencentcloud-sdk-python-postgres-3.0.950}/tencentcloud/postgres/v20170312/models.py +825 -339
  6. {tencentcloud-sdk-python-postgres-3.0.930 → tencentcloud-sdk-python-postgres-3.0.950}/tencentcloud/postgres/v20170312/postgres_client.py +164 -86
  7. {tencentcloud-sdk-python-postgres-3.0.930 → tencentcloud-sdk-python-postgres-3.0.950}/tencentcloud_sdk_python_postgres.egg-info/PKG-INFO +1 -1
  8. {tencentcloud-sdk-python-postgres-3.0.930 → tencentcloud-sdk-python-postgres-3.0.950}/tencentcloud_sdk_python_postgres.egg-info/SOURCES.txt +1 -0
  9. tencentcloud-sdk-python-postgres-3.0.950/tencentcloud_sdk_python_postgres.egg-info/requires.txt +1 -0
  10. {tencentcloud-sdk-python-postgres-3.0.930 → tencentcloud-sdk-python-postgres-3.0.950}/README.rst +0 -0
  11. {tencentcloud-sdk-python-postgres-3.0.930 → tencentcloud-sdk-python-postgres-3.0.950}/setup.cfg +0 -0
  12. {tencentcloud-sdk-python-postgres-3.0.930 → tencentcloud-sdk-python-postgres-3.0.950}/tencentcloud/postgres/__init__.py +0 -0
  13. {tencentcloud-sdk-python-postgres-3.0.930 → tencentcloud-sdk-python-postgres-3.0.950}/tencentcloud/postgres/v20170312/__init__.py +0 -0
  14. {tencentcloud-sdk-python-postgres-3.0.930 → tencentcloud-sdk-python-postgres-3.0.950}/tencentcloud_sdk_python_postgres.egg-info/dependency_links.txt +0 -0
  15. {tencentcloud-sdk-python-postgres-3.0.930 → tencentcloud-sdk-python-postgres-3.0.950}/tencentcloud_sdk_python_postgres.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-postgres
3
- Version: 3.0.930
3
+ Version: 3.0.950
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
@@ -8,6 +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.950"],
11
12
  version=tencentcloud.__version__,
12
13
  description='Tencent Cloud Postgres SDK for Python',
13
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.930'
17
+ __version__ = '3.0.950'
@@ -119,6 +119,9 @@ FAILEDOPERATION_MODIFYROGROUPERROR = 'FailedOperation.ModifyROGroupError'
119
119
  # 不符合资源所拥有的网络数量要求。
120
120
  FAILEDOPERATION_NETWORKNUMLIMITERROR = 'FailedOperation.NetworkNumLimitError'
121
121
 
122
+ # 实例无可用备机
123
+ FAILEDOPERATION_NOAVAILABLESTANDBY = 'FailedOperation.NoAvailableStandby'
124
+
122
125
  # 操作超过频率限制,请稍后重试。如果持续不成功,请联系客服进行处理。
123
126
  FAILEDOPERATION_OPERATEFREQUENCYLIMITEDERROR = 'FailedOperation.OperateFrequencyLimitedError'
124
127
 
@@ -287,6 +290,9 @@ INVALIDPARAMETER_INSTANCENAMEEXIST = 'InvalidParameter.InstanceNameExist'
287
290
  # 参数检查失败。
288
291
  INVALIDPARAMETER_PARAMETERCHECKERROR = 'InvalidParameter.ParameterCheckError'
289
292
 
293
+ # 参数不可全部不设置
294
+ INVALIDPARAMETER_PARAMETERSNOTSET = 'InvalidParameter.ParametersNotSet'
295
+
290
296
  # pid错误。
291
297
  INVALIDPARAMETER_TRADEACCESSDENIEDERROR = 'InvalidParameter.TradeAccessDeniedError'
292
298
 
@@ -401,6 +407,9 @@ INVALIDPARAMETERVALUE_PARAMETERHANDLEERROR = 'InvalidParameterValue.ParameterHan
401
407
  # 参数长度超过限制。
402
408
  INVALIDPARAMETERVALUE_PARAMETERLENGTHLIMITERROR = 'InvalidParameterValue.ParameterLengthLimitError'
403
409
 
410
+ # 参数超出可设置范围
411
+ INVALIDPARAMETERVALUE_PARAMETEROUTOFRANGE = 'InvalidParameterValue.ParameterOutOfRange'
412
+
404
413
  # 存在无效的参数值。
405
414
  INVALIDPARAMETERVALUE_PARAMETEROUTRANGEERROR = 'InvalidParameterValue.ParameterOutRangeError'
406
415
 
@@ -452,6 +461,9 @@ OPERATIONDENIED_INSTANCESTATUSLIMITERROR = 'OperationDenied.InstanceStatusLimitE
452
461
  # 实例状态限制当前操作。
453
462
  OPERATIONDENIED_INSTANCESTATUSLIMITOPERROR = 'OperationDenied.InstanceStatusLimitOpError'
454
463
 
464
+ # 实例类型错误
465
+ OPERATIONDENIED_INSTANCETYPEDENIED = 'OperationDenied.InstanceTypeDenied'
466
+
455
467
  # Serverless不支持当前可用区。
456
468
  OPERATIONDENIED_NOTSUPPORTZONEERROR = 'OperationDenied.NotSupportZoneError'
457
469