tencentcloud-sdk-python-intl-en 3.0.1089__py2.py3-none-any.whl → 3.0.1091__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/ams/v20201229/models.py +2 -2
- tencentcloud/autoscaling/v20180419/autoscaling_client.py +2 -2
- tencentcloud/autoscaling/v20180419/models.py +350 -209
- tencentcloud/billing/v20180709/models.py +109 -74
- tencentcloud/ccc/v20200210/ccc_client.py +25 -0
- tencentcloud/ccc/v20200210/errorcodes.py +8 -8
- tencentcloud/ccc/v20200210/models.py +756 -0
- tencentcloud/config/__init__.py +0 -0
- tencentcloud/config/v20220802/__init__.py +0 -0
- tencentcloud/config/v20220802/config_client.py +141 -0
- tencentcloud/config/v20220802/errorcodes.py +27 -0
- tencentcloud/config/v20220802/models.py +2362 -0
- tencentcloud/domain/v20180808/models.py +2 -2
- tencentcloud/dts/v20211206/dts_client.py +575 -0
- tencentcloud/dts/v20211206/errorcodes.py +9 -0
- tencentcloud/dts/v20211206/models.py +8552 -3594
- tencentcloud/gaap/v20180529/models.py +2 -2
- tencentcloud/intlpartnersmgt/v20220928/models.py +2 -0
- tencentcloud/mdp/v20200527/models.py +119 -4
- tencentcloud/redis/v20180412/errorcodes.py +3 -0
- tencentcloud/redis/v20180412/models.py +3150 -701
- tencentcloud/redis/v20180412/redis_client.py +273 -43
- tencentcloud/ssl/v20191205/errorcodes.py +21 -0
- tencentcloud/ssl/v20191205/models.py +62 -62
- tencentcloud/tcr/v20190924/errorcodes.py +3 -0
- tencentcloud/teo/v20220901/models.py +8 -4
- {tencentcloud_sdk_python_intl_en-3.0.1089.dist-info → tencentcloud_sdk_python_intl_en-3.0.1091.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1089.dist-info → tencentcloud_sdk_python_intl_en-3.0.1091.dist-info}/RECORD +31 -26
- {tencentcloud_sdk_python_intl_en-3.0.1089.dist-info → tencentcloud_sdk_python_intl_en-3.0.1091.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1089.dist-info → tencentcloud_sdk_python_intl_en-3.0.1091.dist-info}/top_level.txt +0 -0
|
@@ -44,6 +44,9 @@ FAILEDOPERATION_STARTJOBFAILED = 'FailedOperation.StartJobFailed'
|
|
|
44
44
|
# This operation cannot be performed due to a status conflict.
|
|
45
45
|
FAILEDOPERATION_STATUSINCONFLICT = 'FailedOperation.StatusInConflict'
|
|
46
46
|
|
|
47
|
+
#
|
|
48
|
+
FAILEDOPERATION_USERNOTAUTHED = 'FailedOperation.UserNotAuthed'
|
|
49
|
+
|
|
47
50
|
# An internal error occurred.
|
|
48
51
|
INTERNALERROR = 'InternalError'
|
|
49
52
|
|
|
@@ -62,6 +65,9 @@ INTERNALERROR_DATABASEERROR = 'InternalError.DatabaseError'
|
|
|
62
65
|
# Migration tasks are in conflict.
|
|
63
66
|
INTERNALERROR_DUPLICATEJOB = 'InternalError.DuplicateJob'
|
|
64
67
|
|
|
68
|
+
# HTTP request error.
|
|
69
|
+
INTERNALERROR_EXECHTTPREQUESTERROR = 'InternalError.ExecHttpRequestError'
|
|
70
|
+
|
|
65
71
|
# An internal error occurred.
|
|
66
72
|
INTERNALERROR_INTERNALERRORERROR = 'InternalError.InternalErrorError'
|
|
67
73
|
|
|
@@ -137,6 +143,9 @@ OPERATIONDENIED_JOBOPERATIONDENIEDERROR = 'OperationDenied.JobOperationDeniedErr
|
|
|
137
143
|
# The account balance is insufficient.
|
|
138
144
|
OPERATIONDENIED_NOTENOUGHMONEYERROR = 'OperationDenied.NotEnoughMoneyError'
|
|
139
145
|
|
|
146
|
+
# This operation cannot be performed.
|
|
147
|
+
OPERATIONDENIED_OPERATIONDENIED = 'OperationDenied.OperationDenied'
|
|
148
|
+
|
|
140
149
|
# The operation was denied.
|
|
141
150
|
OPERATIONDENIED_OPERATIONDENIEDERROR = 'OperationDenied.OperationDeniedError'
|
|
142
151
|
|