tencentcloud-sdk-python-intl-en 3.0.1094__py2.py3-none-any.whl → 3.0.1095__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/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/ocr/v20181119/models.py +45 -0
- {tencentcloud_sdk_python_intl_en-3.0.1094.dist-info → tencentcloud_sdk_python_intl_en-3.0.1095.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1094.dist-info → tencentcloud_sdk_python_intl_en-3.0.1095.dist-info}/RECORD +10 -10
- {tencentcloud_sdk_python_intl_en-3.0.1094.dist-info → tencentcloud_sdk_python_intl_en-3.0.1095.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1094.dist-info → tencentcloud_sdk_python_intl_en-3.0.1095.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -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'
|
|
@@ -140,7 +140,7 @@ class ActivateSubscribeResponse(AbstractModel):
|
|
|
140
140
|
r"""
|
|
141
141
|
:param _AsyncRequestId: Data subscription configuration task ID.
|
|
142
142
|
:type AsyncRequestId: str
|
|
143
|
-
:param _RequestId: The unique request ID,
|
|
143
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
144
144
|
:type RequestId: str
|
|
145
145
|
"""
|
|
146
146
|
self._AsyncRequestId = None
|
|
@@ -159,7 +159,7 @@ class ActivateSubscribeResponse(AbstractModel):
|
|
|
159
159
|
|
|
160
160
|
@property
|
|
161
161
|
def RequestId(self):
|
|
162
|
-
"""The unique request ID,
|
|
162
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
163
163
|
:rtype: str
|
|
164
164
|
"""
|
|
165
165
|
return self._RequestId
|
|
@@ -232,14 +232,14 @@ class CompleteMigrateJobResponse(AbstractModel):
|
|
|
232
232
|
|
|
233
233
|
def __init__(self):
|
|
234
234
|
r"""
|
|
235
|
-
:param _RequestId: The unique request ID,
|
|
235
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
236
236
|
:type RequestId: str
|
|
237
237
|
"""
|
|
238
238
|
self._RequestId = None
|
|
239
239
|
|
|
240
240
|
@property
|
|
241
241
|
def RequestId(self):
|
|
242
|
-
"""The unique request ID,
|
|
242
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
243
243
|
:rtype: str
|
|
244
244
|
"""
|
|
245
245
|
return self._RequestId
|
|
@@ -362,14 +362,14 @@ class CreateMigrateCheckJobResponse(AbstractModel):
|
|
|
362
362
|
|
|
363
363
|
def __init__(self):
|
|
364
364
|
r"""
|
|
365
|
-
:param _RequestId: The unique request ID,
|
|
365
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
366
366
|
:type RequestId: str
|
|
367
367
|
"""
|
|
368
368
|
self._RequestId = None
|
|
369
369
|
|
|
370
370
|
@property
|
|
371
371
|
def RequestId(self):
|
|
372
|
-
"""The unique request ID,
|
|
372
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
373
373
|
:rtype: str
|
|
374
374
|
"""
|
|
375
375
|
return self._RequestId
|
|
@@ -617,7 +617,7 @@ class CreateMigrateJobResponse(AbstractModel):
|
|
|
617
617
|
r"""
|
|
618
618
|
:param _JobId: Data migration task ID
|
|
619
619
|
:type JobId: str
|
|
620
|
-
:param _RequestId: The unique request ID,
|
|
620
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
621
621
|
:type RequestId: str
|
|
622
622
|
"""
|
|
623
623
|
self._JobId = None
|
|
@@ -636,7 +636,7 @@ class CreateMigrateJobResponse(AbstractModel):
|
|
|
636
636
|
|
|
637
637
|
@property
|
|
638
638
|
def RequestId(self):
|
|
639
|
-
"""The unique request ID,
|
|
639
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
640
640
|
:rtype: str
|
|
641
641
|
"""
|
|
642
642
|
return self._RequestId
|
|
@@ -792,7 +792,7 @@ class CreateSubscribeResponse(AbstractModel):
|
|
|
792
792
|
:param _SubscribeIds: Data subscription instance ID array
|
|
793
793
|
Note: this field may return null, indicating that no valid values can be obtained.
|
|
794
794
|
:type SubscribeIds: list of str
|
|
795
|
-
:param _RequestId: The unique request ID,
|
|
795
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
796
796
|
:type RequestId: str
|
|
797
797
|
"""
|
|
798
798
|
self._SubscribeIds = None
|
|
@@ -812,7 +812,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
812
812
|
|
|
813
813
|
@property
|
|
814
814
|
def RequestId(self):
|
|
815
|
-
"""The unique request ID,
|
|
815
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
816
816
|
:rtype: str
|
|
817
817
|
"""
|
|
818
818
|
return self._RequestId
|
|
@@ -870,14 +870,14 @@ class DeleteMigrateJobResponse(AbstractModel):
|
|
|
870
870
|
|
|
871
871
|
def __init__(self):
|
|
872
872
|
r"""
|
|
873
|
-
:param _RequestId: The unique request ID,
|
|
873
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
874
874
|
:type RequestId: str
|
|
875
875
|
"""
|
|
876
876
|
self._RequestId = None
|
|
877
877
|
|
|
878
878
|
@property
|
|
879
879
|
def RequestId(self):
|
|
880
|
-
"""The unique request ID,
|
|
880
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
881
881
|
:rtype: str
|
|
882
882
|
"""
|
|
883
883
|
return self._RequestId
|
|
@@ -938,7 +938,7 @@ class DescribeAsyncRequestInfoResponse(AbstractModel):
|
|
|
938
938
|
:type Info: str
|
|
939
939
|
:param _Status: Task execution status. Valid values: success, failed, running
|
|
940
940
|
:type Status: str
|
|
941
|
-
:param _RequestId: The unique request ID,
|
|
941
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
942
942
|
:type RequestId: str
|
|
943
943
|
"""
|
|
944
944
|
self._Info = None
|
|
@@ -969,7 +969,7 @@ class DescribeAsyncRequestInfoResponse(AbstractModel):
|
|
|
969
969
|
|
|
970
970
|
@property
|
|
971
971
|
def RequestId(self):
|
|
972
|
-
"""The unique request ID,
|
|
972
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
973
973
|
:rtype: str
|
|
974
974
|
"""
|
|
975
975
|
return self._RequestId
|
|
@@ -1038,7 +1038,7 @@ class DescribeMigrateCheckJobResponse(AbstractModel):
|
|
|
1038
1038
|
:type Progress: str
|
|
1039
1039
|
:param _CheckFlag: Whether the check succeeds. 0: no; 1: yes; 3: not checked
|
|
1040
1040
|
:type CheckFlag: int
|
|
1041
|
-
:param _RequestId: The unique request ID,
|
|
1041
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1042
1042
|
:type RequestId: str
|
|
1043
1043
|
"""
|
|
1044
1044
|
self._Status = None
|
|
@@ -1105,7 +1105,7 @@ class DescribeMigrateCheckJobResponse(AbstractModel):
|
|
|
1105
1105
|
|
|
1106
1106
|
@property
|
|
1107
1107
|
def RequestId(self):
|
|
1108
|
-
"""The unique request ID,
|
|
1108
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1109
1109
|
:rtype: str
|
|
1110
1110
|
"""
|
|
1111
1111
|
return self._RequestId
|
|
@@ -1266,7 +1266,7 @@ class DescribeMigrateJobsResponse(AbstractModel):
|
|
|
1266
1266
|
:type TotalCount: int
|
|
1267
1267
|
:param _JobList: Array of task details
|
|
1268
1268
|
:type JobList: list of MigrateJobInfo
|
|
1269
|
-
:param _RequestId: The unique request ID,
|
|
1269
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1270
1270
|
:type RequestId: str
|
|
1271
1271
|
"""
|
|
1272
1272
|
self._TotalCount = None
|
|
@@ -1297,7 +1297,7 @@ class DescribeMigrateJobsResponse(AbstractModel):
|
|
|
1297
1297
|
|
|
1298
1298
|
@property
|
|
1299
1299
|
def RequestId(self):
|
|
1300
|
-
"""The unique request ID,
|
|
1300
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1301
1301
|
:rtype: str
|
|
1302
1302
|
"""
|
|
1303
1303
|
return self._RequestId
|
|
@@ -1318,75 +1318,6 @@ class DescribeMigrateJobsResponse(AbstractModel):
|
|
|
1318
1318
|
self._RequestId = params.get("RequestId")
|
|
1319
1319
|
|
|
1320
1320
|
|
|
1321
|
-
class DescribeRegionConfRequest(AbstractModel):
|
|
1322
|
-
"""DescribeRegionConf request structure.
|
|
1323
|
-
|
|
1324
|
-
"""
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
class DescribeRegionConfResponse(AbstractModel):
|
|
1328
|
-
"""DescribeRegionConf response structure.
|
|
1329
|
-
|
|
1330
|
-
"""
|
|
1331
|
-
|
|
1332
|
-
def __init__(self):
|
|
1333
|
-
r"""
|
|
1334
|
-
:param _TotalCount: Number of purchasable regions
|
|
1335
|
-
:type TotalCount: int
|
|
1336
|
-
:param _Items: Purchasable region details
|
|
1337
|
-
:type Items: list of SubscribeRegionConf
|
|
1338
|
-
:param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
1339
|
-
:type RequestId: str
|
|
1340
|
-
"""
|
|
1341
|
-
self._TotalCount = None
|
|
1342
|
-
self._Items = None
|
|
1343
|
-
self._RequestId = None
|
|
1344
|
-
|
|
1345
|
-
@property
|
|
1346
|
-
def TotalCount(self):
|
|
1347
|
-
"""Number of purchasable regions
|
|
1348
|
-
:rtype: int
|
|
1349
|
-
"""
|
|
1350
|
-
return self._TotalCount
|
|
1351
|
-
|
|
1352
|
-
@TotalCount.setter
|
|
1353
|
-
def TotalCount(self, TotalCount):
|
|
1354
|
-
self._TotalCount = TotalCount
|
|
1355
|
-
|
|
1356
|
-
@property
|
|
1357
|
-
def Items(self):
|
|
1358
|
-
"""Purchasable region details
|
|
1359
|
-
:rtype: list of SubscribeRegionConf
|
|
1360
|
-
"""
|
|
1361
|
-
return self._Items
|
|
1362
|
-
|
|
1363
|
-
@Items.setter
|
|
1364
|
-
def Items(self, Items):
|
|
1365
|
-
self._Items = Items
|
|
1366
|
-
|
|
1367
|
-
@property
|
|
1368
|
-
def RequestId(self):
|
|
1369
|
-
"""The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
1370
|
-
:rtype: str
|
|
1371
|
-
"""
|
|
1372
|
-
return self._RequestId
|
|
1373
|
-
|
|
1374
|
-
@RequestId.setter
|
|
1375
|
-
def RequestId(self, RequestId):
|
|
1376
|
-
self._RequestId = RequestId
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
def _deserialize(self, params):
|
|
1380
|
-
self._TotalCount = params.get("TotalCount")
|
|
1381
|
-
if params.get("Items") is not None:
|
|
1382
|
-
self._Items = []
|
|
1383
|
-
for item in params.get("Items"):
|
|
1384
|
-
obj = SubscribeRegionConf()
|
|
1385
|
-
obj._deserialize(item)
|
|
1386
|
-
self._Items.append(obj)
|
|
1387
|
-
self._RequestId = params.get("RequestId")
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
1321
|
class DescribeSubscribeConfRequest(AbstractModel):
|
|
1391
1322
|
"""DescribeSubscribeConf request structure.
|
|
1392
1323
|
|
|
@@ -1489,7 +1420,7 @@ Note: this field may return `null`, indicating that no valid values can be obtai
|
|
|
1489
1420
|
:param _Errors: Error message.
|
|
1490
1421
|
Note: This field may return `null`, indicating that no valid values can be obtained.
|
|
1491
1422
|
:type Errors: list of SubsErr
|
|
1492
|
-
:param _RequestId: The unique request ID,
|
|
1423
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1493
1424
|
:type RequestId: str
|
|
1494
1425
|
"""
|
|
1495
1426
|
self._SubscribeId = None
|
|
@@ -1835,7 +1766,7 @@ Note: This field may return `null`, indicating that no valid values can be obtai
|
|
|
1835
1766
|
|
|
1836
1767
|
@property
|
|
1837
1768
|
def RequestId(self):
|
|
1838
|
-
"""The unique request ID,
|
|
1769
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1839
1770
|
:rtype: str
|
|
1840
1771
|
"""
|
|
1841
1772
|
return self._RequestId
|
|
@@ -2124,7 +2055,7 @@ class DescribeSubscribesResponse(AbstractModel):
|
|
|
2124
2055
|
:type TotalCount: int
|
|
2125
2056
|
:param _Items: Information list of data subscription instances
|
|
2126
2057
|
:type Items: list of SubscribeInfo
|
|
2127
|
-
:param _RequestId: The unique request ID,
|
|
2058
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2128
2059
|
:type RequestId: str
|
|
2129
2060
|
"""
|
|
2130
2061
|
self._TotalCount = None
|
|
@@ -2155,7 +2086,7 @@ class DescribeSubscribesResponse(AbstractModel):
|
|
|
2155
2086
|
|
|
2156
2087
|
@property
|
|
2157
2088
|
def RequestId(self):
|
|
2158
|
-
"""The unique request ID,
|
|
2089
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2159
2090
|
:rtype: str
|
|
2160
2091
|
"""
|
|
2161
2092
|
return self._RequestId
|
|
@@ -2183,10 +2114,10 @@ class DstInfo(AbstractModel):
|
|
|
2183
2114
|
|
|
2184
2115
|
def __init__(self):
|
|
2185
2116
|
r"""
|
|
2186
|
-
:param _InstanceId: Target instance ID, such as cdb-jd92ijd8
|
|
2187
|
-
:type InstanceId: str
|
|
2188
2117
|
:param _Region: Target instance region, such as ap-guangzhou
|
|
2189
2118
|
:type Region: str
|
|
2119
|
+
:param _InstanceId: Target instance ID, such as cdb-jd92ijd8
|
|
2120
|
+
:type InstanceId: str
|
|
2190
2121
|
:param _Ip: Target instance VIP, which has been disused and does not need to be entered
|
|
2191
2122
|
:type Ip: str
|
|
2192
2123
|
:param _Port: Target instance Vport, which has been disused and does not need to be entered
|
|
@@ -2198,25 +2129,14 @@ class DstInfo(AbstractModel):
|
|
|
2198
2129
|
:param _Password: Target database password
|
|
2199
2130
|
:type Password: str
|
|
2200
2131
|
"""
|
|
2201
|
-
self._InstanceId = None
|
|
2202
2132
|
self._Region = None
|
|
2133
|
+
self._InstanceId = None
|
|
2203
2134
|
self._Ip = None
|
|
2204
2135
|
self._Port = None
|
|
2205
2136
|
self._ReadOnly = None
|
|
2206
2137
|
self._User = None
|
|
2207
2138
|
self._Password = None
|
|
2208
2139
|
|
|
2209
|
-
@property
|
|
2210
|
-
def InstanceId(self):
|
|
2211
|
-
"""Target instance ID, such as cdb-jd92ijd8
|
|
2212
|
-
:rtype: str
|
|
2213
|
-
"""
|
|
2214
|
-
return self._InstanceId
|
|
2215
|
-
|
|
2216
|
-
@InstanceId.setter
|
|
2217
|
-
def InstanceId(self, InstanceId):
|
|
2218
|
-
self._InstanceId = InstanceId
|
|
2219
|
-
|
|
2220
2140
|
@property
|
|
2221
2141
|
def Region(self):
|
|
2222
2142
|
"""Target instance region, such as ap-guangzhou
|
|
@@ -2228,6 +2148,17 @@ class DstInfo(AbstractModel):
|
|
|
2228
2148
|
def Region(self, Region):
|
|
2229
2149
|
self._Region = Region
|
|
2230
2150
|
|
|
2151
|
+
@property
|
|
2152
|
+
def InstanceId(self):
|
|
2153
|
+
"""Target instance ID, such as cdb-jd92ijd8
|
|
2154
|
+
:rtype: str
|
|
2155
|
+
"""
|
|
2156
|
+
return self._InstanceId
|
|
2157
|
+
|
|
2158
|
+
@InstanceId.setter
|
|
2159
|
+
def InstanceId(self, InstanceId):
|
|
2160
|
+
self._InstanceId = InstanceId
|
|
2161
|
+
|
|
2231
2162
|
@property
|
|
2232
2163
|
def Ip(self):
|
|
2233
2164
|
"""Target instance VIP, which has been disused and does not need to be entered
|
|
@@ -2285,8 +2216,8 @@ class DstInfo(AbstractModel):
|
|
|
2285
2216
|
|
|
2286
2217
|
|
|
2287
2218
|
def _deserialize(self, params):
|
|
2288
|
-
self._InstanceId = params.get("InstanceId")
|
|
2289
2219
|
self._Region = params.get("Region")
|
|
2220
|
+
self._InstanceId = params.get("InstanceId")
|
|
2290
2221
|
self._Ip = params.get("Ip")
|
|
2291
2222
|
self._Port = params.get("Port")
|
|
2292
2223
|
self._ReadOnly = params.get("ReadOnly")
|
|
@@ -2396,14 +2327,14 @@ class IsolateSubscribeResponse(AbstractModel):
|
|
|
2396
2327
|
|
|
2397
2328
|
def __init__(self):
|
|
2398
2329
|
r"""
|
|
2399
|
-
:param _RequestId: The unique request ID,
|
|
2330
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2400
2331
|
:type RequestId: str
|
|
2401
2332
|
"""
|
|
2402
2333
|
self._RequestId = None
|
|
2403
2334
|
|
|
2404
2335
|
@property
|
|
2405
2336
|
def RequestId(self):
|
|
2406
|
-
"""The unique request ID,
|
|
2337
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2407
2338
|
:rtype: str
|
|
2408
2339
|
"""
|
|
2409
2340
|
return self._RequestId
|
|
@@ -3340,14 +3271,14 @@ class ModifyMigrateJobResponse(AbstractModel):
|
|
|
3340
3271
|
|
|
3341
3272
|
def __init__(self):
|
|
3342
3273
|
r"""
|
|
3343
|
-
:param _RequestId: The unique request ID,
|
|
3274
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
3344
3275
|
:type RequestId: str
|
|
3345
3276
|
"""
|
|
3346
3277
|
self._RequestId = None
|
|
3347
3278
|
|
|
3348
3279
|
@property
|
|
3349
3280
|
def RequestId(self):
|
|
3350
|
-
"""The unique request ID,
|
|
3281
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
3351
3282
|
:rtype: str
|
|
3352
3283
|
"""
|
|
3353
3284
|
return self._RequestId
|
|
@@ -3419,14 +3350,14 @@ class ModifySubscribeConsumeTimeResponse(AbstractModel):
|
|
|
3419
3350
|
|
|
3420
3351
|
def __init__(self):
|
|
3421
3352
|
r"""
|
|
3422
|
-
:param _RequestId: The unique request ID,
|
|
3353
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
3423
3354
|
:type RequestId: str
|
|
3424
3355
|
"""
|
|
3425
3356
|
self._RequestId = None
|
|
3426
3357
|
|
|
3427
3358
|
@property
|
|
3428
3359
|
def RequestId(self):
|
|
3429
|
-
"""The unique request ID,
|
|
3360
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
3430
3361
|
:rtype: str
|
|
3431
3362
|
"""
|
|
3432
3363
|
return self._RequestId
|
|
@@ -3498,14 +3429,14 @@ class ModifySubscribeNameResponse(AbstractModel):
|
|
|
3498
3429
|
|
|
3499
3430
|
def __init__(self):
|
|
3500
3431
|
r"""
|
|
3501
|
-
:param _RequestId: The unique request ID,
|
|
3432
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
3502
3433
|
:type RequestId: str
|
|
3503
3434
|
"""
|
|
3504
3435
|
self._RequestId = None
|
|
3505
3436
|
|
|
3506
3437
|
@property
|
|
3507
3438
|
def RequestId(self):
|
|
3508
|
-
"""The unique request ID,
|
|
3439
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
3509
3440
|
:rtype: str
|
|
3510
3441
|
"""
|
|
3511
3442
|
return self._RequestId
|
|
@@ -3599,7 +3530,7 @@ class ModifySubscribeObjectsResponse(AbstractModel):
|
|
|
3599
3530
|
r"""
|
|
3600
3531
|
:param _AsyncRequestId: Async task ID
|
|
3601
3532
|
:type AsyncRequestId: str
|
|
3602
|
-
:param _RequestId: The unique request ID,
|
|
3533
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
3603
3534
|
:type RequestId: str
|
|
3604
3535
|
"""
|
|
3605
3536
|
self._AsyncRequestId = None
|
|
@@ -3618,7 +3549,7 @@ class ModifySubscribeObjectsResponse(AbstractModel):
|
|
|
3618
3549
|
|
|
3619
3550
|
@property
|
|
3620
3551
|
def RequestId(self):
|
|
3621
|
-
"""The unique request ID,
|
|
3552
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
3622
3553
|
:rtype: str
|
|
3623
3554
|
"""
|
|
3624
3555
|
return self._RequestId
|
|
@@ -3721,14 +3652,14 @@ class ModifySubscribeVipVportResponse(AbstractModel):
|
|
|
3721
3652
|
|
|
3722
3653
|
def __init__(self):
|
|
3723
3654
|
r"""
|
|
3724
|
-
:param _RequestId: The unique request ID,
|
|
3655
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
3725
3656
|
:type RequestId: str
|
|
3726
3657
|
"""
|
|
3727
3658
|
self._RequestId = None
|
|
3728
3659
|
|
|
3729
3660
|
@property
|
|
3730
3661
|
def RequestId(self):
|
|
3731
|
-
"""The unique request ID,
|
|
3662
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
3732
3663
|
:rtype: str
|
|
3733
3664
|
"""
|
|
3734
3665
|
return self._RequestId
|
|
@@ -3785,14 +3716,14 @@ class OfflineIsolatedSubscribeResponse(AbstractModel):
|
|
|
3785
3716
|
|
|
3786
3717
|
def __init__(self):
|
|
3787
3718
|
r"""
|
|
3788
|
-
:param _RequestId: The unique request ID,
|
|
3719
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
3789
3720
|
:type RequestId: str
|
|
3790
3721
|
"""
|
|
3791
3722
|
self._RequestId = None
|
|
3792
3723
|
|
|
3793
3724
|
@property
|
|
3794
3725
|
def RequestId(self):
|
|
3795
|
-
"""The unique request ID,
|
|
3726
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
3796
3727
|
:rtype: str
|
|
3797
3728
|
"""
|
|
3798
3729
|
return self._RequestId
|
|
@@ -3849,14 +3780,14 @@ class ResetSubscribeResponse(AbstractModel):
|
|
|
3849
3780
|
|
|
3850
3781
|
def __init__(self):
|
|
3851
3782
|
r"""
|
|
3852
|
-
:param _RequestId: The unique request ID,
|
|
3783
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
3853
3784
|
:type RequestId: str
|
|
3854
3785
|
"""
|
|
3855
3786
|
self._RequestId = None
|
|
3856
3787
|
|
|
3857
3788
|
@property
|
|
3858
3789
|
def RequestId(self):
|
|
3859
|
-
"""The unique request ID,
|
|
3790
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
3860
3791
|
:rtype: str
|
|
3861
3792
|
"""
|
|
3862
3793
|
return self._RequestId
|
|
@@ -4176,14 +4107,14 @@ class StartMigrateJobResponse(AbstractModel):
|
|
|
4176
4107
|
|
|
4177
4108
|
def __init__(self):
|
|
4178
4109
|
r"""
|
|
4179
|
-
:param _RequestId: The unique request ID,
|
|
4110
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
4180
4111
|
:type RequestId: str
|
|
4181
4112
|
"""
|
|
4182
4113
|
self._RequestId = None
|
|
4183
4114
|
|
|
4184
4115
|
@property
|
|
4185
4116
|
def RequestId(self):
|
|
4186
|
-
"""The unique request ID,
|
|
4117
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
4187
4118
|
:rtype: str
|
|
4188
4119
|
"""
|
|
4189
4120
|
return self._RequestId
|
|
@@ -4240,14 +4171,14 @@ class StopMigrateJobResponse(AbstractModel):
|
|
|
4240
4171
|
|
|
4241
4172
|
def __init__(self):
|
|
4242
4173
|
r"""
|
|
4243
|
-
:param _RequestId: The unique request ID,
|
|
4174
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
4244
4175
|
:type RequestId: str
|
|
4245
4176
|
"""
|
|
4246
4177
|
self._RequestId = None
|
|
4247
4178
|
|
|
4248
4179
|
@property
|
|
4249
4180
|
def RequestId(self):
|
|
4250
|
-
"""The unique request ID,
|
|
4181
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
4251
4182
|
:rtype: str
|
|
4252
4183
|
"""
|
|
4253
4184
|
return self._RequestId
|
|
@@ -4763,112 +4694,6 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
4763
4694
|
|
|
4764
4695
|
|
|
4765
4696
|
|
|
4766
|
-
class SubscribeRegionConf(AbstractModel):
|
|
4767
|
-
"""Sale information of data subscription region
|
|
4768
|
-
|
|
4769
|
-
"""
|
|
4770
|
-
|
|
4771
|
-
def __init__(self):
|
|
4772
|
-
r"""
|
|
4773
|
-
:param _RegionName: Region name, such as Guangzhou
|
|
4774
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
4775
|
-
:type RegionName: str
|
|
4776
|
-
:param _Region: Region ID, such as ap-guangzhou
|
|
4777
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
4778
|
-
:type Region: str
|
|
4779
|
-
:param _Area: Region name, such as South China
|
|
4780
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
4781
|
-
:type Area: str
|
|
4782
|
-
:param _IsDefaultRegion: Whether it is the default region. 0: no, 1: yes
|
|
4783
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
4784
|
-
:type IsDefaultRegion: int
|
|
4785
|
-
:param _Status: Purchasable status of current region. 1: normal, 2: beta test, 3: not purchasable
|
|
4786
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
4787
|
-
:type Status: int
|
|
4788
|
-
"""
|
|
4789
|
-
self._RegionName = None
|
|
4790
|
-
self._Region = None
|
|
4791
|
-
self._Area = None
|
|
4792
|
-
self._IsDefaultRegion = None
|
|
4793
|
-
self._Status = None
|
|
4794
|
-
|
|
4795
|
-
@property
|
|
4796
|
-
def RegionName(self):
|
|
4797
|
-
"""Region name, such as Guangzhou
|
|
4798
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
4799
|
-
:rtype: str
|
|
4800
|
-
"""
|
|
4801
|
-
return self._RegionName
|
|
4802
|
-
|
|
4803
|
-
@RegionName.setter
|
|
4804
|
-
def RegionName(self, RegionName):
|
|
4805
|
-
self._RegionName = RegionName
|
|
4806
|
-
|
|
4807
|
-
@property
|
|
4808
|
-
def Region(self):
|
|
4809
|
-
"""Region ID, such as ap-guangzhou
|
|
4810
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
4811
|
-
:rtype: str
|
|
4812
|
-
"""
|
|
4813
|
-
return self._Region
|
|
4814
|
-
|
|
4815
|
-
@Region.setter
|
|
4816
|
-
def Region(self, Region):
|
|
4817
|
-
self._Region = Region
|
|
4818
|
-
|
|
4819
|
-
@property
|
|
4820
|
-
def Area(self):
|
|
4821
|
-
"""Region name, such as South China
|
|
4822
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
4823
|
-
:rtype: str
|
|
4824
|
-
"""
|
|
4825
|
-
return self._Area
|
|
4826
|
-
|
|
4827
|
-
@Area.setter
|
|
4828
|
-
def Area(self, Area):
|
|
4829
|
-
self._Area = Area
|
|
4830
|
-
|
|
4831
|
-
@property
|
|
4832
|
-
def IsDefaultRegion(self):
|
|
4833
|
-
"""Whether it is the default region. 0: no, 1: yes
|
|
4834
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
4835
|
-
:rtype: int
|
|
4836
|
-
"""
|
|
4837
|
-
return self._IsDefaultRegion
|
|
4838
|
-
|
|
4839
|
-
@IsDefaultRegion.setter
|
|
4840
|
-
def IsDefaultRegion(self, IsDefaultRegion):
|
|
4841
|
-
self._IsDefaultRegion = IsDefaultRegion
|
|
4842
|
-
|
|
4843
|
-
@property
|
|
4844
|
-
def Status(self):
|
|
4845
|
-
"""Purchasable status of current region. 1: normal, 2: beta test, 3: not purchasable
|
|
4846
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
4847
|
-
:rtype: int
|
|
4848
|
-
"""
|
|
4849
|
-
return self._Status
|
|
4850
|
-
|
|
4851
|
-
@Status.setter
|
|
4852
|
-
def Status(self, Status):
|
|
4853
|
-
self._Status = Status
|
|
4854
|
-
|
|
4855
|
-
|
|
4856
|
-
def _deserialize(self, params):
|
|
4857
|
-
self._RegionName = params.get("RegionName")
|
|
4858
|
-
self._Region = params.get("Region")
|
|
4859
|
-
self._Area = params.get("Area")
|
|
4860
|
-
self._IsDefaultRegion = params.get("IsDefaultRegion")
|
|
4861
|
-
self._Status = params.get("Status")
|
|
4862
|
-
memeber_set = set(params.keys())
|
|
4863
|
-
for name, value in vars(self).items():
|
|
4864
|
-
property_name = name[1:]
|
|
4865
|
-
if property_name in memeber_set:
|
|
4866
|
-
memeber_set.remove(property_name)
|
|
4867
|
-
if len(memeber_set) > 0:
|
|
4868
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
4869
|
-
|
|
4870
|
-
|
|
4871
|
-
|
|
4872
4697
|
class TagFilter(AbstractModel):
|
|
4873
4698
|
"""Tag filtering
|
|
4874
4699
|
|
|
@@ -29,7 +29,7 @@ class DtsClient(AbstractClient):
|
|
|
29
29
|
def CompleteMigrateJob(self, request):
|
|
30
30
|
"""This API is used to complete a data migration task.
|
|
31
31
|
For tasks in incremental migration mode, you need to call this API before migration gets ready for completion to stop migrating incremental data.
|
|
32
|
-
If the task status queried through the `DescribeMigrationJobs` API is ready (`Status` = `readyComplete), you can call this API to complete the migration task.
|
|
32
|
+
If the task status queried through the `DescribeMigrationJobs` API is ready (`Status` = `readyComplete`), you can call this API to complete the migration task.
|
|
33
33
|
|
|
34
34
|
:param request: Request instance for CompleteMigrateJob.
|
|
35
35
|
:type request: :class:`tencentcloud.dts.v20211206.models.CompleteMigrateJobRequest`
|
|
@@ -3713,17 +3713,23 @@ class MLIDCardOCRRequest(AbstractModel):
|
|
|
3713
3713
|
Supported image formats: PNG, JPG, and JPEG. GIF is currently not supported.
|
|
3714
3714
|
Supported image size: The downloaded image after Base64 encoding can be up to 7 MB. The download time of the image cannot exceed 3s.
|
|
3715
3715
|
:type ImageBase64: str
|
|
3716
|
+
:param _BackImageBase64: Base64 value of the image on the back of the card. Supported image formats: PNG, JPG, JPEG, GIF format is not supported yet. Supported image size: The downloaded image cannot exceed 7M after Base64 encoding. The image download takes no more than 3 seconds. One of ImageUrl and ImageBase64 of the image must be provided. If both are provided, only ImageUrl will be used.
|
|
3717
|
+
:type BackImageBase64: str
|
|
3716
3718
|
:param _ImageUrl: The URL of an image. (This field is not available outside the Chinese mainland.)
|
|
3717
3719
|
Supported image formats: PNG, JPG, and JPEG. GIF is currently not supported.
|
|
3718
3720
|
Supported image size: The downloaded image after Base64 encoding can be up to 7 MB. The download time of the image cannot exceed 3s.
|
|
3719
3721
|
We recommend that you store the image in Tencent Cloud for higher download speed and stability.
|
|
3720
3722
|
For a non-Tencent Cloud URL, the download speed and stability may be low.
|
|
3721
3723
|
:type ImageUrl: str
|
|
3724
|
+
:param _BackImageUrl: The URL address of the image on the back of the card. Supported image formats: PNG, JPG, JPEG, GIF format is not supported yet. Supported image size: The downloaded image does not exceed 7M after Base64 encoding. The image download takes no more than 3 seconds. Storing images in Tencent Cloud URLs can ensure higher download speed and stability. It is recommended that images be stored in Tencent Cloud. The URL speed and stability of non-Tencent cloud storage may be affected to a certain extent.
|
|
3725
|
+
:type BackImageUrl: str
|
|
3722
3726
|
:param _RetImage: Whether to return an image. Default value: `false`.
|
|
3723
3727
|
:type RetImage: bool
|
|
3724
3728
|
"""
|
|
3725
3729
|
self._ImageBase64 = None
|
|
3730
|
+
self._BackImageBase64 = None
|
|
3726
3731
|
self._ImageUrl = None
|
|
3732
|
+
self._BackImageUrl = None
|
|
3727
3733
|
self._RetImage = None
|
|
3728
3734
|
|
|
3729
3735
|
@property
|
|
@@ -3739,6 +3745,17 @@ Supported image size: The downloaded image after Base64 encoding can be up to 7
|
|
|
3739
3745
|
def ImageBase64(self, ImageBase64):
|
|
3740
3746
|
self._ImageBase64 = ImageBase64
|
|
3741
3747
|
|
|
3748
|
+
@property
|
|
3749
|
+
def BackImageBase64(self):
|
|
3750
|
+
"""Base64 value of the image on the back of the card. Supported image formats: PNG, JPG, JPEG, GIF format is not supported yet. Supported image size: The downloaded image cannot exceed 7M after Base64 encoding. The image download takes no more than 3 seconds. One of ImageUrl and ImageBase64 of the image must be provided. If both are provided, only ImageUrl will be used.
|
|
3751
|
+
:rtype: str
|
|
3752
|
+
"""
|
|
3753
|
+
return self._BackImageBase64
|
|
3754
|
+
|
|
3755
|
+
@BackImageBase64.setter
|
|
3756
|
+
def BackImageBase64(self, BackImageBase64):
|
|
3757
|
+
self._BackImageBase64 = BackImageBase64
|
|
3758
|
+
|
|
3742
3759
|
@property
|
|
3743
3760
|
def ImageUrl(self):
|
|
3744
3761
|
"""The URL of an image. (This field is not available outside the Chinese mainland.)
|
|
@@ -3754,6 +3771,17 @@ For a non-Tencent Cloud URL, the download speed and stability may be low.
|
|
|
3754
3771
|
def ImageUrl(self, ImageUrl):
|
|
3755
3772
|
self._ImageUrl = ImageUrl
|
|
3756
3773
|
|
|
3774
|
+
@property
|
|
3775
|
+
def BackImageUrl(self):
|
|
3776
|
+
"""The URL address of the image on the back of the card. Supported image formats: PNG, JPG, JPEG, GIF format is not supported yet. Supported image size: The downloaded image does not exceed 7M after Base64 encoding. The image download takes no more than 3 seconds. Storing images in Tencent Cloud URLs can ensure higher download speed and stability. It is recommended that images be stored in Tencent Cloud. The URL speed and stability of non-Tencent cloud storage may be affected to a certain extent.
|
|
3777
|
+
:rtype: str
|
|
3778
|
+
"""
|
|
3779
|
+
return self._BackImageUrl
|
|
3780
|
+
|
|
3781
|
+
@BackImageUrl.setter
|
|
3782
|
+
def BackImageUrl(self, BackImageUrl):
|
|
3783
|
+
self._BackImageUrl = BackImageUrl
|
|
3784
|
+
|
|
3757
3785
|
@property
|
|
3758
3786
|
def RetImage(self):
|
|
3759
3787
|
"""Whether to return an image. Default value: `false`.
|
|
@@ -3768,7 +3796,9 @@ For a non-Tencent Cloud URL, the download speed and stability may be low.
|
|
|
3768
3796
|
|
|
3769
3797
|
def _deserialize(self, params):
|
|
3770
3798
|
self._ImageBase64 = params.get("ImageBase64")
|
|
3799
|
+
self._BackImageBase64 = params.get("BackImageBase64")
|
|
3771
3800
|
self._ImageUrl = params.get("ImageUrl")
|
|
3801
|
+
self._BackImageUrl = params.get("BackImageUrl")
|
|
3772
3802
|
self._RetImage = params.get("RetImage")
|
|
3773
3803
|
memeber_set = set(params.keys())
|
|
3774
3804
|
for name, value in vars(self).items():
|
|
@@ -3822,6 +3852,8 @@ MyKid Kid card
|
|
|
3822
3852
|
:type Type: str
|
|
3823
3853
|
:param _Birthday: Date of birth. This field is available only for work permits (i-Kad) and ID cards (MyKad).
|
|
3824
3854
|
:type Birthday: str
|
|
3855
|
+
:param _MyKadNumber: Number on the back of Malaysia ID card
|
|
3856
|
+
:type MyKadNumber: str
|
|
3825
3857
|
:param _WarnCardInfos: Card Warning Information
|
|
3826
3858
|
|
|
3827
3859
|
-9101 Alarm for covered certificate,
|
|
@@ -3844,6 +3876,7 @@ MyKid Kid card
|
|
|
3844
3876
|
self._AdvancedInfo = None
|
|
3845
3877
|
self._Type = None
|
|
3846
3878
|
self._Birthday = None
|
|
3879
|
+
self._MyKadNumber = None
|
|
3847
3880
|
self._WarnCardInfos = None
|
|
3848
3881
|
self._RequestId = None
|
|
3849
3882
|
|
|
@@ -3967,6 +4000,17 @@ MyKid Kid card
|
|
|
3967
4000
|
def Birthday(self, Birthday):
|
|
3968
4001
|
self._Birthday = Birthday
|
|
3969
4002
|
|
|
4003
|
+
@property
|
|
4004
|
+
def MyKadNumber(self):
|
|
4005
|
+
"""Number on the back of Malaysia ID card
|
|
4006
|
+
:rtype: str
|
|
4007
|
+
"""
|
|
4008
|
+
return self._MyKadNumber
|
|
4009
|
+
|
|
4010
|
+
@MyKadNumber.setter
|
|
4011
|
+
def MyKadNumber(self, MyKadNumber):
|
|
4012
|
+
self._MyKadNumber = MyKadNumber
|
|
4013
|
+
|
|
3970
4014
|
@property
|
|
3971
4015
|
def WarnCardInfos(self):
|
|
3972
4016
|
"""Card Warning Information
|
|
@@ -4008,6 +4052,7 @@ MyKid Kid card
|
|
|
4008
4052
|
self._AdvancedInfo = params.get("AdvancedInfo")
|
|
4009
4053
|
self._Type = params.get("Type")
|
|
4010
4054
|
self._Birthday = params.get("Birthday")
|
|
4055
|
+
self._MyKadNumber = params.get("MyKadNumber")
|
|
4011
4056
|
self._WarnCardInfos = params.get("WarnCardInfos")
|
|
4012
4057
|
self._RequestId = params.get("RequestId")
|
|
4013
4058
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=8p_90dvEWtWf3OrLA4FxXtZbasZ1Xt6Jj70mOMrce3E,630
|
|
2
2
|
tencentcloud/advisor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
tencentcloud/advisor/v20200721/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
tencentcloud/advisor/v20200721/advisor_client.py,sha256=b5pLP_oF5HZHo4xbn-hI4dkpnirhcHB2rNDWvGf4q1Y,2919
|
|
@@ -233,11 +233,11 @@ tencentcloud/domain/v20180808/errorcodes.py,sha256=X-SvWJpBjEiFEwk2FxjdirGDP_jqu
|
|
|
233
233
|
tencentcloud/domain/v20180808/models.py,sha256=HrD5bt7Cz4zP6TaXb2n0h1naXftB1-gQ2WUqn_fEBSU,153617
|
|
234
234
|
tencentcloud/dts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
235
235
|
tencentcloud/dts/v20180330/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
236
|
-
tencentcloud/dts/v20180330/dts_client.py,sha256=
|
|
237
|
-
tencentcloud/dts/v20180330/errorcodes.py,sha256=
|
|
238
|
-
tencentcloud/dts/v20180330/models.py,sha256=
|
|
236
|
+
tencentcloud/dts/v20180330/dts_client.py,sha256=4MNOjlVHJlgL43_WRTqN58J83CC0-SYmPBdeaTsWsc8,23332
|
|
237
|
+
tencentcloud/dts/v20180330/errorcodes.py,sha256=E_saA3BXBzv2XQnM7dluG1gZINM5ZZ7z_kfEYDFMHAY,6069
|
|
238
|
+
tencentcloud/dts/v20180330/models.py,sha256=gsGqZdObrsU0b9L61c628jihy1JgRwYwXMfCah3p0rw,156619
|
|
239
239
|
tencentcloud/dts/v20211206/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
240
|
-
tencentcloud/dts/v20211206/dts_client.py,sha256=
|
|
240
|
+
tencentcloud/dts/v20211206/dts_client.py,sha256=4KCGr9Tsa3i86pS1oMHq9hZm2cks5s00_RaKGm020wA,73505
|
|
241
241
|
tencentcloud/dts/v20211206/errorcodes.py,sha256=y1Rb1IChTWXlNcCk9V36fUVdiTu6aX0KJweKe-ePx14,7970
|
|
242
242
|
tencentcloud/dts/v20211206/models.py,sha256=D0U_EkOtV0eSe7126DeND1pVrgl-yHlAt_VRa9jkUEI,678016
|
|
243
243
|
tencentcloud/eb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -393,7 +393,7 @@ tencentcloud/msp/v20180319/msp_client.py,sha256=XkSbJuPDAeY7elyJ5ByR2wNL0HiFO6Xa
|
|
|
393
393
|
tencentcloud/ocr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
394
394
|
tencentcloud/ocr/v20181119/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
395
395
|
tencentcloud/ocr/v20181119/errorcodes.py,sha256=4bl4FoPZOHDUIks9THo8XOHYqWBU_oFslKTHUZe011w,3852
|
|
396
|
-
tencentcloud/ocr/v20181119/models.py,sha256=
|
|
396
|
+
tencentcloud/ocr/v20181119/models.py,sha256=F6pL5PF8hwK9BbFBfWK7uEG1gQXonn4tpriOtN-Y32M,516176
|
|
397
397
|
tencentcloud/ocr/v20181119/ocr_client.py,sha256=6md0GYyWPbbna3K1H7YHJ7djXy71m2NovSh9HIMBvhs,43894
|
|
398
398
|
tencentcloud/omics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
399
399
|
tencentcloud/omics/v20221128/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -604,7 +604,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
604
604
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
605
605
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
606
606
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=GA7Fo5GmpEJ2kufV2upw-ZpMZxznsPZ3NKDKDDAI4Ao,67384
|
|
607
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
608
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
609
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
610
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
607
|
+
tencentcloud_sdk_python_intl_en-3.0.1095.dist-info/METADATA,sha256=QDkp9J8ZlnwBt5KyjVVPNsgmA1o-Zl74VFMKC01AX9g,1628
|
|
608
|
+
tencentcloud_sdk_python_intl_en-3.0.1095.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
609
|
+
tencentcloud_sdk_python_intl_en-3.0.1095.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
610
|
+
tencentcloud_sdk_python_intl_en-3.0.1095.dist-info/RECORD,,
|
|
File without changes
|