tencentcloud-sdk-python-intl-en 3.0.1143__py2.py3-none-any.whl → 3.0.1144__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/organization/v20210331/errorcodes.py +48 -0
- tencentcloud/organization/v20210331/models.py +4952 -2950
- tencentcloud/organization/v20210331/organization_client.py +299 -0
- tencentcloud/teo/v20220901/models.py +2 -4
- {tencentcloud_sdk_python_intl_en-3.0.1143.dist-info → tencentcloud_sdk_python_intl_en-3.0.1144.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1143.dist-info → tencentcloud_sdk_python_intl_en-3.0.1144.dist-info}/RECORD +9 -9
- {tencentcloud_sdk_python_intl_en-3.0.1143.dist-info → tencentcloud_sdk_python_intl_en-3.0.1144.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1143.dist-info → tencentcloud_sdk_python_intl_en-3.0.1144.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -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'
|