tencentcloud-sdk-python-postgres 3.1.4__py2.py3-none-any.whl → 3.1.84__py2.py3-none-any.whl
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/__init__.py +1 -1
- tencentcloud/postgres/v20170312/errorcodes.py +6 -0
- tencentcloud/postgres/v20170312/models.py +719 -540
- {tencentcloud_sdk_python_postgres-3.1.4.dist-info → tencentcloud_sdk_python_postgres-3.1.84.dist-info}/METADATA +2 -2
- tencentcloud_sdk_python_postgres-3.1.84.dist-info/RECORD +11 -0
- {tencentcloud_sdk_python_postgres-3.1.4.dist-info → tencentcloud_sdk_python_postgres-3.1.84.dist-info}/WHEEL +1 -1
- tencentcloud_sdk_python_postgres-3.1.4.dist-info/RECORD +0 -11
- {tencentcloud_sdk_python_postgres-3.1.4.dist-info → tencentcloud_sdk_python_postgres-3.1.84.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -269,6 +269,9 @@ INTERNALERROR_INTERNALHTTPSERVERERROR = 'InternalError.InternalHttpServerError'
|
|
|
269
269
|
# Json数据解析失败,请联系客服进行处理。
|
|
270
270
|
INTERNALERROR_JSONPARSEERROR = 'InternalError.JsonParseError'
|
|
271
271
|
|
|
272
|
+
# 查询实例不存在
|
|
273
|
+
INTERNALERROR_LISTINSTANCESERROR = 'InternalError.ListInstancesError'
|
|
274
|
+
|
|
272
275
|
# 后台数据解析失败,请联系客服进行处理。
|
|
273
276
|
INTERNALERROR_MARSHALERROR = 'InternalError.MarshalError'
|
|
274
277
|
|
|
@@ -467,6 +470,9 @@ OPERATIONDENIED_CAMDENIEDERROR = 'OperationDenied.CamDeniedError'
|
|
|
467
470
|
# 目标实例状态检查不通过。
|
|
468
471
|
OPERATIONDENIED_DTSINSTANCESTATUSERROR = 'OperationDenied.DTSInstanceStatusError'
|
|
469
472
|
|
|
473
|
+
# 禁止删除运行中的备份
|
|
474
|
+
OPERATIONDENIED_DELETERUNNINGBACKUPTASKERR = 'OperationDenied.DeleteRunningBackupTaskErr'
|
|
475
|
+
|
|
470
476
|
# 您没有权限操作当前资源。
|
|
471
477
|
OPERATIONDENIED_INSTANCEACCESSDENIEDERROR = 'OperationDenied.InstanceAccessDeniedError'
|
|
472
478
|
|