tencentcloud-sdk-python-intl-en 3.0.1094__py2.py3-none-any.whl → 3.0.1096__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.
Potentially problematic release.
This version of tencentcloud-sdk-python-intl-en might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/asr/__init__.py +0 -0
- tencentcloud/asr/v20190614/__init__.py +0 -0
- tencentcloud/asr/v20190614/asr_client.py +87 -0
- tencentcloud/asr/v20190614/errorcodes.py +66 -0
- tencentcloud/asr/v20190614/models.py +1293 -0
- tencentcloud/dts/v20180330/dts_client.py +0 -23
- tencentcloud/dts/v20180330/errorcodes.py +71 -14
- tencentcloud/dts/v20180330/models.py +57 -232
- tencentcloud/dts/v20211206/dts_client.py +1 -1
- tencentcloud/mps/v20190612/errorcodes.py +2 -173
- tencentcloud/mps/v20190612/models.py +939 -145
- tencentcloud/mps/v20190612/mps_client.py +25 -0
- tencentcloud/ocr/v20181119/models.py +45 -0
- {tencentcloud_sdk_python_intl_en-3.0.1094.dist-info → tencentcloud_sdk_python_intl_en-3.0.1096.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1094.dist-info → tencentcloud_sdk_python_intl_en-3.0.1096.dist-info}/RECORD +18 -13
- {tencentcloud_sdk_python_intl_en-3.0.1094.dist-info → tencentcloud_sdk_python_intl_en-3.0.1096.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1094.dist-info → tencentcloud_sdk_python_intl_en-3.0.1096.dist-info}/top_level.txt +0 -0
|
@@ -244,29 +244,6 @@ class DtsClient(AbstractClient):
|
|
|
244
244
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
245
245
|
|
|
246
246
|
|
|
247
|
-
def DescribeRegionConf(self, request):
|
|
248
|
-
"""This API is used to query the purchasable subscription instance regions.
|
|
249
|
-
|
|
250
|
-
:param request: Request instance for DescribeRegionConf.
|
|
251
|
-
:type request: :class:`tencentcloud.dts.v20180330.models.DescribeRegionConfRequest`
|
|
252
|
-
:rtype: :class:`tencentcloud.dts.v20180330.models.DescribeRegionConfResponse`
|
|
253
|
-
|
|
254
|
-
"""
|
|
255
|
-
try:
|
|
256
|
-
params = request._serialize()
|
|
257
|
-
headers = request.headers
|
|
258
|
-
body = self.call("DescribeRegionConf", params, headers=headers)
|
|
259
|
-
response = json.loads(body)
|
|
260
|
-
model = models.DescribeRegionConfResponse()
|
|
261
|
-
model._deserialize(response["Response"])
|
|
262
|
-
return model
|
|
263
|
-
except Exception as e:
|
|
264
|
-
if isinstance(e, TencentCloudSDKException):
|
|
265
|
-
raise
|
|
266
|
-
else:
|
|
267
|
-
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
268
|
-
|
|
269
|
-
|
|
270
247
|
def DescribeSubscribeConf(self, request):
|
|
271
248
|
"""This API is used to query the subscription instance configuration.
|
|
272
249
|
|
|
@@ -14,28 +14,40 @@
|
|
|
14
14
|
# limitations under the License.
|
|
15
15
|
|
|
16
16
|
|
|
17
|
+
# Authentication failed.
|
|
18
|
+
AUTHFAILURE_AUTHFAILUREERROR = 'AuthFailure.AuthFailureError'
|
|
19
|
+
|
|
17
20
|
# The current user is not allowed to perform this operation as the authentication failed.
|
|
18
21
|
AUTHFAILURE_UNAUTHORIZEDOPERATIONERROR = 'AuthFailure.UnauthorizedOperationError'
|
|
19
22
|
|
|
23
|
+
# The operation failed.
|
|
24
|
+
FAILEDOPERATION_FAILEDOPERATIONERROR = 'FailedOperation.FailedOperationError'
|
|
25
|
+
|
|
20
26
|
# This operation is prohibited.
|
|
21
27
|
FAILEDOPERATION_NOTALLOWOPERATION = 'FailedOperation.NotAllowOperation'
|
|
22
28
|
|
|
29
|
+
#
|
|
30
|
+
FAILEDOPERATION_PROXYERROR = 'FailedOperation.ProxyError'
|
|
31
|
+
|
|
23
32
|
# Failed to start the task.
|
|
24
33
|
FAILEDOPERATION_STARTJOBFAILED = 'FailedOperation.StartJobFailed'
|
|
25
34
|
|
|
26
|
-
# This operation cannot be performed due to status conflict.
|
|
35
|
+
# This operation cannot be performed due to a status conflict.
|
|
27
36
|
FAILEDOPERATION_STATUSINCONFLICT = 'FailedOperation.StatusInConflict'
|
|
28
37
|
|
|
38
|
+
#
|
|
39
|
+
FAILEDOPERATION_STATUSINCONFLICTERROR = 'FailedOperation.StatusInConflictError'
|
|
40
|
+
|
|
29
41
|
# An internal error occurred.
|
|
30
42
|
INTERNALERROR = 'InternalError'
|
|
31
43
|
|
|
32
44
|
# Failed to create the async task.
|
|
33
45
|
INTERNALERROR_ADDTASKERROR = 'InternalError.AddTaskError'
|
|
34
46
|
|
|
35
|
-
#
|
|
47
|
+
# An internal scheduling system error occurred.
|
|
36
48
|
INTERNALERROR_CELERYERROR = 'InternalError.CeleryError'
|
|
37
49
|
|
|
38
|
-
# CGW system error.
|
|
50
|
+
# A CGW system error occurred.
|
|
39
51
|
INTERNALERROR_CGWSYSTEMERROR = 'InternalError.CgwSystemError'
|
|
40
52
|
|
|
41
53
|
# Failed to access the database on the DTS platform.
|
|
@@ -44,19 +56,31 @@ INTERNALERROR_DATABASEERROR = 'InternalError.DatabaseError'
|
|
|
44
56
|
# Migration tasks are in conflict.
|
|
45
57
|
INTERNALERROR_DUPLICATEJOB = 'InternalError.DuplicateJob'
|
|
46
58
|
|
|
59
|
+
# An internal error occurred.
|
|
60
|
+
INTERNALERROR_INTERNALERRORERROR = 'InternalError.InternalErrorError'
|
|
61
|
+
|
|
62
|
+
# An HTTP access request error occurred.
|
|
63
|
+
INTERNALERROR_INTERNALHTTPSERVERERROR = 'InternalError.InternalHttpServerError'
|
|
64
|
+
|
|
65
|
+
# An error occurred while accessing the internal component.
|
|
66
|
+
INTERNALERROR_INTERNALINNERCOMMONERROR = 'InternalError.InternalInnerCommonError'
|
|
67
|
+
|
|
68
|
+
# Failed to call the billing service.
|
|
69
|
+
INTERNALERROR_INTERNALTRADEERROR = 'InternalError.InternalTradeError'
|
|
70
|
+
|
|
47
71
|
# Locks are in conflict.
|
|
48
72
|
INTERNALERROR_LOCKERROR = 'InternalError.LockError'
|
|
49
73
|
|
|
50
|
-
#
|
|
74
|
+
# A communication protocol error occurred.
|
|
51
75
|
INTERNALERROR_PROTOCOLERROR = 'InternalError.ProtocolError'
|
|
52
76
|
|
|
53
|
-
#
|
|
77
|
+
# An internal error occurred.
|
|
54
78
|
INTERNALERROR_UNDEFINEDERROR = 'InternalError.UndefinedError'
|
|
55
79
|
|
|
56
|
-
#
|
|
80
|
+
# An unknown internal error occurred.
|
|
57
81
|
INTERNALERROR_UNKNOWNERROR = 'InternalError.UnknownError'
|
|
58
82
|
|
|
59
|
-
#
|
|
83
|
+
# The parameter is incorrect.
|
|
60
84
|
INVALIDPARAMETER = 'InvalidParameter'
|
|
61
85
|
|
|
62
86
|
# Parameter value error.
|
|
@@ -65,41 +89,74 @@ INVALIDPARAMETER_BIZINVALIDPARAMETERVALUEERROR = 'InvalidParameter.BizInvalidPar
|
|
|
65
89
|
# The instance does not exist.
|
|
66
90
|
INVALIDPARAMETER_INSTANCENOTFOUND = 'InvalidParameter.InstanceNotFound'
|
|
67
91
|
|
|
68
|
-
#
|
|
92
|
+
#
|
|
93
|
+
INVALIDPARAMETER_INVALIDIPADDRESS = 'InvalidParameter.InvalidIpAddress'
|
|
94
|
+
|
|
95
|
+
# The parameter is invalid.
|
|
96
|
+
INVALIDPARAMETER_INVALIDPARAMETERERROR = 'InvalidParameter.InvalidParameterError'
|
|
97
|
+
|
|
98
|
+
#
|
|
99
|
+
INVALIDPARAMETERVALUE_BIZINVALIDPARAMETERVALUEERROR = 'InvalidParameterValue.BizInvalidParameterValueError'
|
|
100
|
+
|
|
101
|
+
# A data conversion error occurred.
|
|
102
|
+
INVALIDPARAMETERVALUE_DATACONVERTERROR = 'InvalidParameterValue.DataConvertError'
|
|
103
|
+
|
|
104
|
+
# The parameter value is incorrect.
|
|
69
105
|
INVALIDPARAMETERVALUE_INVALIDPARAMETERVALUE = 'InvalidParameterValue.InvalidParameterValue'
|
|
70
106
|
|
|
107
|
+
# The parameter is invalid.
|
|
108
|
+
INVALIDPARAMETERVALUE_INVALIDPARAMETERVALUEERROR = 'InvalidParameterValue.InvalidParameterValueError'
|
|
109
|
+
|
|
71
110
|
# The number of idle migration tasks exceeds the limit.
|
|
72
111
|
LIMITEXCEEDED_MAXUNUSEDJOBS = 'LimitExceeded.MaxUnusedJobs'
|
|
73
112
|
|
|
74
|
-
#
|
|
113
|
+
# The operation was denied.
|
|
75
114
|
OPERATIONDENIED = 'OperationDenied'
|
|
76
115
|
|
|
77
116
|
# The operation was denied as the condition was not met.
|
|
78
117
|
OPERATIONDENIED_BIZOPERATIONDENIEDERROR = 'OperationDenied.BizOperationDeniedError'
|
|
79
118
|
|
|
80
|
-
#
|
|
119
|
+
# The task operation failed.
|
|
81
120
|
OPERATIONDENIED_JOBOPERATIONDENIEDERROR = 'OperationDenied.JobOperationDeniedError'
|
|
82
121
|
|
|
83
122
|
# DTS does not support the current migration type.
|
|
84
123
|
OPERATIONDENIED_MIGRATESERVICESUPPORTERROR = 'OperationDenied.MigrateServiceSupportError'
|
|
85
124
|
|
|
125
|
+
# The account balance is insufficient.
|
|
126
|
+
OPERATIONDENIED_NOTENOUGHMONEYERROR = 'OperationDenied.NotEnoughMoneyError'
|
|
127
|
+
|
|
86
128
|
# This operation cannot be performed.
|
|
87
129
|
OPERATIONDENIED_OPERATIONDENIED = 'OperationDenied.OperationDenied'
|
|
88
130
|
|
|
131
|
+
# The operation was denied.
|
|
132
|
+
OPERATIONDENIED_OPERATIONDENIEDERROR = 'OperationDenied.OperationDeniedError'
|
|
133
|
+
|
|
134
|
+
# The number of requests exceeds the limit.
|
|
135
|
+
REQUESTLIMITEXCEEDED_REQUESTLIMITEXCEEDEDERROR = 'RequestLimitExceeded.RequestLimitExceededError'
|
|
136
|
+
|
|
89
137
|
# The resource does not exist.
|
|
90
138
|
RESOURCENOTFOUND = 'ResourceNotFound'
|
|
91
139
|
|
|
92
|
-
#
|
|
140
|
+
# The resource was not found.
|
|
93
141
|
RESOURCENOTFOUND_BIZRESOURCENOTFOUNDERROR = 'ResourceNotFound.BizResourceNotFoundError'
|
|
94
142
|
|
|
95
143
|
# The migration task does not exist.
|
|
96
144
|
RESOURCENOTFOUND_JOBNOTEXIST = 'ResourceNotFound.JobNotExist'
|
|
97
145
|
|
|
98
|
-
# The instance
|
|
146
|
+
# The instance was not found.
|
|
99
147
|
RESOURCENOTFOUND_RESOURCENOTFOUND = 'ResourceNotFound.ResourceNotFound'
|
|
100
148
|
|
|
101
|
-
#
|
|
149
|
+
# The resource was not found.
|
|
150
|
+
RESOURCENOTFOUND_RESOURCENOTFOUNDERROR = 'ResourceNotFound.ResourceNotFoundError'
|
|
151
|
+
|
|
152
|
+
# Authentication failed as there were no required permissions.
|
|
102
153
|
UNAUTHORIZEDOPERATION_NOTENOUGHPRIVILEGES = 'UnauthorizedOperation.NotEnoughPrivileges'
|
|
103
154
|
|
|
104
|
-
#
|
|
155
|
+
# The operation is unauthorized.
|
|
156
|
+
UNAUTHORIZEDOPERATION_UNAUTHORIZEDOPERATIONERROR = 'UnauthorizedOperation.UnauthorizedOperationError'
|
|
157
|
+
|
|
158
|
+
# The operation is not supported.
|
|
105
159
|
UNSUPPORTEDOPERATION = 'UnsupportedOperation'
|
|
160
|
+
|
|
161
|
+
# The intranet user did not specify the required tags when creating the migration task. The **department**, **product**, and **owner** tags must be specified.
|
|
162
|
+
UNSUPPORTEDOPERATION_INTRANETUSERNOTTAGGEDERROR = 'UnsupportedOperation.IntraNetUserNotTaggedError'
|