tencentcloud-sdk-python-intl-en 3.0.1143__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/organization/v20210331/errorcodes.py +48 -0
- tencentcloud/organization/v20210331/models.py +4952 -2950
- tencentcloud/organization/v20210331/organization_client.py +299 -0
- tencentcloud/ssl/v20191205/errorcodes.py +10 -7
- tencentcloud/ssl/v20191205/models.py +2142 -643
- tencentcloud/ssl/v20191205/ssl_client.py +6 -6
- tencentcloud/teo/v20220901/models.py +2 -4
- tencentcloud/trtc/v20190722/models.py +20 -4
- {tencentcloud_sdk_python_intl_en-3.0.1143.dist-info → tencentcloud_sdk_python_intl_en-3.0.1145.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1143.dist-info → tencentcloud_sdk_python_intl_en-3.0.1145.dist-info}/RECORD +18 -18
- {tencentcloud_sdk_python_intl_en-3.0.1143.dist-info → tencentcloud_sdk_python_intl_en-3.0.1145.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1143.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")
|
|
@@ -14,6 +14,9 @@
|
|
|
14
14
|
# limitations under the License.
|
|
15
15
|
|
|
16
16
|
|
|
17
|
+
# Operation failed.
|
|
18
|
+
FAILEDOPERATION = 'FailedOperation'
|
|
19
|
+
|
|
17
20
|
# The application already exists.
|
|
18
21
|
FAILEDOPERATION_APPLYEXIST = 'FailedOperation.ApplyExist'
|
|
19
22
|
|
|
@@ -77,6 +80,9 @@ FAILEDOPERATION_DISABLEQUITSELFCREATEDORGANIZATION = 'FailedOperation.DisableQui
|
|
|
77
80
|
# There are shared resources with other organization members or from other organization members.
|
|
78
81
|
FAILEDOPERATION_EXISTOTHERORGANIZATIONMEMBERSHARED = 'FailedOperation.ExistOtherOrganizationMemberShared'
|
|
79
82
|
|
|
83
|
+
# There are shared members not in the organization.
|
|
84
|
+
FAILEDOPERATION_EXISTSHAREMEMBERNOTINORGANIZATION = 'FailedOperation.ExistShareMemberNotInOrganization'
|
|
85
|
+
|
|
80
86
|
# Errors occurred when account's regional attributes are obtained.
|
|
81
87
|
FAILEDOPERATION_GETACCOUNTREGION = 'FailedOperation.GetAccountRegion'
|
|
82
88
|
|
|
@@ -95,6 +101,9 @@ FAILEDOPERATION_GROUPTYPEUSERTYPENOTMATCH = 'FailedOperation.GroupTypeUserTypeNo
|
|
|
95
101
|
# Members of the CIC user group exceed the limit.
|
|
96
102
|
FAILEDOPERATION_GROUPUSERCOUNTOVERUPPERLIMIT = 'FailedOperation.GroupUserCountOverUpperLimit'
|
|
97
103
|
|
|
104
|
+
# The shared unit has different shared resource types.
|
|
105
|
+
FAILEDOPERATION_HASDIFFERENTRESOURCETYPE = 'FailedOperation.HasDifferentResourceType'
|
|
106
|
+
|
|
98
107
|
# The CIC service has been activated.
|
|
99
108
|
FAILEDOPERATION_IDENTITYCENTERALREADYOPEN = 'FailedOperation.IdentityCenterAlreadyOpen'
|
|
100
109
|
|
|
@@ -239,6 +248,9 @@ FAILEDOPERATION_QUITESHAREUNIT = 'FailedOperation.QuiteShareUnit'
|
|
|
239
248
|
# The invitation has already been sent before.
|
|
240
249
|
FAILEDOPERATION_RESENTINVITATION = 'FailedOperation.ReSentInvitation'
|
|
241
250
|
|
|
251
|
+
# Resources exceed the maximum upper limit.
|
|
252
|
+
FAILEDOPERATION_RESOURCEOVERLIMIT = 'FailedOperation.ResourceOverLimit'
|
|
253
|
+
|
|
242
254
|
# The permission authorization already exists.
|
|
243
255
|
FAILEDOPERATION_ROLECONFIGURATIONAUTHORIZATIONALREADYEXIST = 'FailedOperation.RoleConfigurationAuthorizationAlreadyExist'
|
|
244
256
|
|
|
@@ -266,12 +278,27 @@ FAILEDOPERATION_SSOSTATUSENABLENOTCLEARIDENTITYPROVIDER = 'FailedOperation.SSoSt
|
|
|
266
278
|
# Failed to generate the SCIM key.
|
|
267
279
|
FAILEDOPERATION_SCIMCREDENTIALGENERATEERROR = 'FailedOperation.ScimCredentialGenerateError'
|
|
268
280
|
|
|
281
|
+
# The shared region does not exist.
|
|
282
|
+
FAILEDOPERATION_SHAREAREANOTEXIST = 'FailedOperation.ShareAreaNotExist'
|
|
283
|
+
|
|
284
|
+
# The shared member does not exist.
|
|
285
|
+
FAILEDOPERATION_SHAREMEMBERNOTEXIST = 'FailedOperation.ShareMemberNotExist'
|
|
286
|
+
|
|
269
287
|
# The member is using a shared resource.
|
|
270
288
|
FAILEDOPERATION_SHARERESOURCEMEMBERINUSE = 'FailedOperation.ShareResourceMemberInUse'
|
|
271
289
|
|
|
290
|
+
# The shared resource does not exist.
|
|
291
|
+
FAILEDOPERATION_SHARERESOURCENOTEXIST = 'FailedOperation.ShareResourceNotExist'
|
|
292
|
+
|
|
293
|
+
# The shared resource type does not exist.
|
|
294
|
+
FAILEDOPERATION_SHARERESOURCETYPENOTEXIST = 'FailedOperation.ShareResourceTypeNotExist'
|
|
295
|
+
|
|
272
296
|
# Shared unit is not empty.
|
|
273
297
|
FAILEDOPERATION_SHAREUNITNOTEMPTY = 'FailedOperation.ShareUnitNotEmpty'
|
|
274
298
|
|
|
299
|
+
# The shared unit does not exist.
|
|
300
|
+
FAILEDOPERATION_SHAREUNITNOTEXIST = 'FailedOperation.ShareUnitNotExist'
|
|
301
|
+
|
|
275
302
|
# The UIN does not belong to the organization.
|
|
276
303
|
FAILEDOPERATION_SOMEUINSNOTINORGANIZATION = 'FailedOperation.SomeUinsNotInOrganization'
|
|
277
304
|
|
|
@@ -479,6 +506,18 @@ LIMITEXCEEDED_REMOVEUSERFROMGROUPLIMITEXCEEDED = 'LimitExceeded.RemoveUserFromGr
|
|
|
479
506
|
# The number of SCIM keys exceeds the limit.
|
|
480
507
|
LIMITEXCEEDED_SCIMCREDENTIALLIMITEXCEEDED = 'LimitExceeded.ScimCredentialLimitExceeded'
|
|
481
508
|
|
|
509
|
+
# The number of shared members for this operation exceeds the upper limit.
|
|
510
|
+
LIMITEXCEEDED_SHAREUNITMEMBEROVERLIMIT = 'LimitExceeded.ShareUnitMemberOverLimit'
|
|
511
|
+
|
|
512
|
+
# The number of shared resources for this operation exceeds the upper limit.
|
|
513
|
+
LIMITEXCEEDED_SHAREUNITRESOURCEOVERLIMIT = 'LimitExceeded.ShareUnitResourceOverLimit'
|
|
514
|
+
|
|
515
|
+
# Operation denied.
|
|
516
|
+
OPERATIONDENIED = 'OperationDenied'
|
|
517
|
+
|
|
518
|
+
# The resource does not exist.
|
|
519
|
+
RESOURCENOTFOUND = 'ResourceNotFound'
|
|
520
|
+
|
|
482
521
|
# The authorizable member identity does not exist.
|
|
483
522
|
RESOURCENOTFOUND_MEMBERIDENTITYNOTEXIST = 'ResourceNotFound.MemberIdentityNotExist'
|
|
484
523
|
|
|
@@ -542,6 +581,9 @@ RESOURCENOTFOUND_USERPROVISIONINGTASKNOTFOUND = 'ResourceNotFound.UserProvisioni
|
|
|
542
581
|
# The X509 certificate does not exist.
|
|
543
582
|
RESOURCENOTFOUND_X509CERTIFICATENOTFOUND = 'ResourceNotFound.X509CertificateNotFound'
|
|
544
583
|
|
|
584
|
+
# Resources are unavailable.
|
|
585
|
+
RESOURCEUNAVAILABLE = 'ResourceUnavailable'
|
|
586
|
+
|
|
545
587
|
# The operation is not supported.
|
|
546
588
|
UNSUPPORTEDOPERATION = 'UnsupportedOperation'
|
|
547
589
|
|
|
@@ -614,6 +656,9 @@ UNSUPPORTEDOPERATION_MEMBERNOPAYMENT = 'UnsupportedOperation.MemberNoPayment'
|
|
|
614
656
|
# The member does not support voluntary exit.
|
|
615
657
|
UNSUPPORTEDOPERATION_MEMBERNOTALLOWQUIT = 'UnsupportedOperation.MemberNotAllowQuit'
|
|
616
658
|
|
|
659
|
+
# The member does not support the operation.
|
|
660
|
+
UNSUPPORTEDOPERATION_MEMBERUNSUPPORTEDOPERATION = 'UnsupportedOperation.MemberUnsupportedOperation'
|
|
661
|
+
|
|
617
662
|
# There is an ongoing order.
|
|
618
663
|
UNSUPPORTEDOPERATION_ORDERINPROGRESSEXISTED = 'UnsupportedOperation.OrderInProgressExisted'
|
|
619
664
|
|
|
@@ -628,3 +673,6 @@ UNSUPPORTEDOPERATION_PAYEREXISTACCOUNTLEVELDISCOUNTINHERIT = 'UnsupportedOperati
|
|
|
628
673
|
|
|
629
674
|
# Pay-on-behalf is not supported for second-level reseller customers exist.
|
|
630
675
|
UNSUPPORTEDOPERATION_SECONDARYDISTRIBUTORSUBCLIENTEXISTED = 'UnsupportedOperation.SecondaryDistributorSubClientExisted'
|
|
676
|
+
|
|
677
|
+
# Sharing with other organizational members is not supported.
|
|
678
|
+
UNSUPPORTEDOPERATION_SHARINGTOOTHERORGANIZATIONMEMBER = 'UnsupportedOperation.SharingToOtherOrganizationMember'
|