tencentcloud-sdk-python-intl-en 3.0.1144__py2.py3-none-any.whl → 3.0.1145__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/intlpartnersmgt/v20220928/errorcodes.py +6 -0
- tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py +46 -35
- tencentcloud/intlpartnersmgt/v20220928/models.py +424 -637
- tencentcloud/ocr/v20181119/errorcodes.py +3 -3
- tencentcloud/ocr/v20181119/models.py +15 -0
- tencentcloud/ssl/v20191205/errorcodes.py +10 -7
- tencentcloud/ssl/v20191205/models.py +2142 -643
- tencentcloud/ssl/v20191205/ssl_client.py +6 -6
- tencentcloud/trtc/v20190722/models.py +20 -4
- {tencentcloud_sdk_python_intl_en-3.0.1144.dist-info → tencentcloud_sdk_python_intl_en-3.0.1145.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1144.dist-info → tencentcloud_sdk_python_intl_en-3.0.1145.dist-info}/RECORD +14 -14
- {tencentcloud_sdk_python_intl_en-3.0.1144.dist-info → tencentcloud_sdk_python_intl_en-3.0.1145.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1144.dist-info → tencentcloud_sdk_python_intl_en-3.0.1145.dist-info}/top_level.txt +0 -0
|
@@ -71,7 +71,7 @@ FAILEDOPERATION_NOMASIDCARD = 'FailedOperation.NoMASIDCard'
|
|
|
71
71
|
# Not a passport.
|
|
72
72
|
FAILEDOPERATION_NOPASSPORT = 'FailedOperation.NoPassport'
|
|
73
73
|
|
|
74
|
-
# OCR failed.
|
|
74
|
+
# OCR failed. This error may be caused by unstable network connections,service anomalies or other issues.
|
|
75
75
|
FAILEDOPERATION_OCRFAILED = 'FailedOperation.OcrFailed'
|
|
76
76
|
|
|
77
77
|
# Unknown error.
|
|
@@ -80,7 +80,7 @@ FAILEDOPERATION_UNKNOWERROR = 'FailedOperation.UnKnowError'
|
|
|
80
80
|
# The service is not activated.
|
|
81
81
|
FAILEDOPERATION_UNOPENERROR = 'FailedOperation.UnOpenError'
|
|
82
82
|
|
|
83
|
-
#
|
|
83
|
+
# Warning service error.
|
|
84
84
|
FAILEDOPERATION_WARNINGSERVICEFAILED = 'FailedOperation.WarningServiceFailed'
|
|
85
85
|
|
|
86
86
|
# Config is not in valid JSON format.
|
|
@@ -104,5 +104,5 @@ RESOURCEUNAVAILABLE_RESOURCEPACKAGERUNOUT = 'ResourceUnavailable.ResourcePackage
|
|
|
104
104
|
# Exceptional billing status.
|
|
105
105
|
RESOURCESSOLDOUT_CHARGESTATUSEXCEPTION = 'ResourcesSoldOut.ChargeStatusException'
|
|
106
106
|
|
|
107
|
-
#
|
|
107
|
+
# Unrecognized argument.
|
|
108
108
|
UNKNOWNPARAMETER = 'UnknownParameter'
|
|
@@ -11957,6 +11957,8 @@ class RecognizeThaiPinkCardResponse(AbstractModel):
|
|
|
11957
11957
|
:type ThaiName: str
|
|
11958
11958
|
:param _EnName: Name in English
|
|
11959
11959
|
:type EnName: str
|
|
11960
|
+
:param _ThaiSurName: Surname in Thai
|
|
11961
|
+
:type ThaiSurName: str
|
|
11960
11962
|
:param _ThaiDOB: Date of birth in Thai
|
|
11961
11963
|
:type ThaiDOB: str
|
|
11962
11964
|
:param _EnDOB: Date of birth in English
|
|
@@ -11989,6 +11991,7 @@ class RecognizeThaiPinkCardResponse(AbstractModel):
|
|
|
11989
11991
|
self._IDNumber = None
|
|
11990
11992
|
self._ThaiName = None
|
|
11991
11993
|
self._EnName = None
|
|
11994
|
+
self._ThaiSurName = None
|
|
11992
11995
|
self._ThaiDOB = None
|
|
11993
11996
|
self._EnDOB = None
|
|
11994
11997
|
self._PhotoNumber = None
|
|
@@ -12047,6 +12050,17 @@ class RecognizeThaiPinkCardResponse(AbstractModel):
|
|
|
12047
12050
|
def EnName(self, EnName):
|
|
12048
12051
|
self._EnName = EnName
|
|
12049
12052
|
|
|
12053
|
+
@property
|
|
12054
|
+
def ThaiSurName(self):
|
|
12055
|
+
"""Surname in Thai
|
|
12056
|
+
:rtype: str
|
|
12057
|
+
"""
|
|
12058
|
+
return self._ThaiSurName
|
|
12059
|
+
|
|
12060
|
+
@ThaiSurName.setter
|
|
12061
|
+
def ThaiSurName(self, ThaiSurName):
|
|
12062
|
+
self._ThaiSurName = ThaiSurName
|
|
12063
|
+
|
|
12050
12064
|
@property
|
|
12051
12065
|
def ThaiDOB(self):
|
|
12052
12066
|
"""Date of birth in Thai
|
|
@@ -12197,6 +12211,7 @@ class RecognizeThaiPinkCardResponse(AbstractModel):
|
|
|
12197
12211
|
self._IDNumber = params.get("IDNumber")
|
|
12198
12212
|
self._ThaiName = params.get("ThaiName")
|
|
12199
12213
|
self._EnName = params.get("EnName")
|
|
12214
|
+
self._ThaiSurName = params.get("ThaiSurName")
|
|
12200
12215
|
self._ThaiDOB = params.get("ThaiDOB")
|
|
12201
12216
|
self._EnDOB = params.get("EnDOB")
|
|
12202
12217
|
self._PhotoNumber = params.get("PhotoNumber")
|
|
@@ -26,7 +26,7 @@ FAILEDOPERATION = 'FailedOperation'
|
|
|
26
26
|
# You do not have permission to perform this operation.
|
|
27
27
|
FAILEDOPERATION_AUTHERROR = 'FailedOperation.AuthError'
|
|
28
28
|
|
|
29
|
-
#
|
|
29
|
+
# Cannot be deleted when there are unbound cloud resources.
|
|
30
30
|
FAILEDOPERATION_BOUNDRESOURCES = 'FailedOperation.BoundResources'
|
|
31
31
|
|
|
32
32
|
# A CAM authentication error occurred.
|
|
@@ -44,7 +44,7 @@ FAILEDOPERATION_CANNOTBEDELETEDWITHINHOUR = 'FailedOperation.CannotBeDeletedWith
|
|
|
44
44
|
# Failed to get order information. Try again later.
|
|
45
45
|
FAILEDOPERATION_CANNOTGETORDER = 'FailedOperation.CannotGetOrder'
|
|
46
46
|
|
|
47
|
-
#
|
|
47
|
+
# Note: the uploaded certificate content does not conform to the standard format of ca certificates. please check whether the certificate type is incorrect.
|
|
48
48
|
FAILEDOPERATION_CERTIFICATECAERROR = 'FailedOperation.CertificateCaError'
|
|
49
49
|
|
|
50
50
|
# This operation can be performed only when the record status is Complete.
|
|
@@ -86,7 +86,7 @@ FAILEDOPERATION_CERTIFICATEHOSTRESOURCETYPEINVALID = 'FailedOperation.Certificat
|
|
|
86
86
|
# The certificate is invalid.
|
|
87
87
|
FAILEDOPERATION_CERTIFICATEINVALID = 'FailedOperation.CertificateInvalid'
|
|
88
88
|
|
|
89
|
-
#
|
|
89
|
+
# Note: the certificate content and private key do not match. please check (pay attention to whether there are extra spaces).
|
|
90
90
|
FAILEDOPERATION_CERTIFICATEMATCHERROR = 'FailedOperation.CertificateMatchError'
|
|
91
91
|
|
|
92
92
|
# The certificate and the private key do not match.
|
|
@@ -104,13 +104,13 @@ FAILEDOPERATION_CERTIFICATENOTFOUND = 'FailedOperation.CertificateNotFound'
|
|
|
104
104
|
# The certificate does not exist, or the review cannot be canceled.
|
|
105
105
|
FAILEDOPERATION_CERTIFICATENOTFOUNDORCANTCANCEL = 'FailedOperation.CertificateNotFoundOrCantCancel'
|
|
106
106
|
|
|
107
|
-
#
|
|
107
|
+
# Parsing failed. check if the certificate meets the standard and pay attention to whether there are extra spaces.
|
|
108
108
|
FAILEDOPERATION_CERTIFICATEPARSEERROR = 'FailedOperation.CertificateParseError'
|
|
109
109
|
|
|
110
110
|
# You cannot re-submit a review application for a certificate in this status.
|
|
111
111
|
FAILEDOPERATION_CERTIFICATESTATUSNOTALLOWRESUBMIT = 'FailedOperation.CertificateStatusNotAllowResubmit'
|
|
112
112
|
|
|
113
|
-
#
|
|
113
|
+
# The cert associated with the cloud resource query task id is invalid.
|
|
114
114
|
FAILEDOPERATION_CERTIFICATESYNCTASKIDINVALID = 'FailedOperation.CertificateSyncTaskIdInvalid'
|
|
115
115
|
|
|
116
116
|
# The confirmation letter file cannot exceed 1.4 MB.
|
|
@@ -119,7 +119,7 @@ FAILEDOPERATION_CONFIRMLETTERTOOLARGE = 'FailedOperation.ConfirmLetterTooLarge'
|
|
|
119
119
|
# The confirmation letter file cannot be smaller than 1 KB.
|
|
120
120
|
FAILEDOPERATION_CONFIRMLETTERTOOSMALL = 'FailedOperation.ConfirmLetterTooSmall'
|
|
121
121
|
|
|
122
|
-
#
|
|
122
|
+
# Cannot be deleted when the free cert application time has not exceeded 1 hour.
|
|
123
123
|
FAILEDOPERATION_DELETEFAILEDTIMENOTUP = 'FailedOperation.DeleteFailedTimeNotUp'
|
|
124
124
|
|
|
125
125
|
# The certificate is associated with a Tencent Cloud resource and cannot be deleted.
|
|
@@ -170,7 +170,7 @@ FAILEDOPERATION_PACKAGEEXPIRED = 'FailedOperation.PackageExpired'
|
|
|
170
170
|
# The benefit package does not exist.
|
|
171
171
|
FAILEDOPERATION_PACKAGENOTFOUND = 'FailedOperation.PackageNotFound'
|
|
172
172
|
|
|
173
|
-
#
|
|
173
|
+
# Cannot perform deletion when the renewed cert has not been issued.
|
|
174
174
|
FAILEDOPERATION_RENEWNOTISSUED = 'FailedOperation.RenewNotIssued'
|
|
175
175
|
|
|
176
176
|
# The role does not exist. Please authorize the role first.
|
|
@@ -212,6 +212,9 @@ INVALIDPARAMETER_WITHDETAILREASON = 'InvalidParameter.WithDetailReason'
|
|
|
212
212
|
# Invalid parameter value.
|
|
213
213
|
INVALIDPARAMETERVALUE = 'InvalidParameterValue'
|
|
214
214
|
|
|
215
|
+
# Intermediate certificate inconsistent.
|
|
216
|
+
INVALIDPARAMETERVALUE_INTERMEDIATECERTNOTSAME = 'InvalidParameterValue.IntermediateCertNotSame'
|
|
217
|
+
|
|
215
218
|
# The API rate limit is reached.
|
|
216
219
|
LIMITEXCEEDED_RATELIMITEXCEEDED = 'LimitExceeded.RateLimitExceeded'
|
|
217
220
|
|