tencentcloud-sdk-python-intl-en 3.0.1085__py2.py3-none-any.whl → 3.0.1087__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/car/v20220110/models.py +2 -2
- tencentcloud/cbs/v20170312/models.py +2 -2
- tencentcloud/cdc/__init__.py +0 -0
- tencentcloud/cdc/v20201214/__init__.py +0 -0
- tencentcloud/cdc/v20201214/cdc_client.py +486 -0
- tencentcloud/cdc/v20201214/errorcodes.py +78 -0
- tencentcloud/cdc/v20201214/models.py +6084 -0
- tencentcloud/ciam/v20210420/errorcodes.py +2 -2
- tencentcloud/ciam/v20210420/models.py +2 -2
- tencentcloud/ckafka/v20190819/models.py +2 -2
- tencentcloud/cloudaudit/v20190319/errorcodes.py +3 -0
- tencentcloud/cloudaudit/v20190319/models.py +2 -2
- tencentcloud/cls/v20201016/models.py +177 -0
- tencentcloud/cmq/v20190304/models.py +74 -74
- tencentcloud/cvm/v20170312/errorcodes.py +6 -0
- tencentcloud/dnspod/v20210323/errorcodes.py +9 -0
- tencentcloud/dnspod/v20210323/models.py +2 -2
- tencentcloud/eb/v20210416/models.py +47 -2
- tencentcloud/ecm/v20190719/models.py +2 -2
- tencentcloud/es/v20180416/models.py +2 -2
- tencentcloud/gme/v20180711/errorcodes.py +1 -1
- tencentcloud/gme/v20180711/models.py +2 -2
- tencentcloud/omics/v20221128/models.py +4 -0
- tencentcloud/organization/v20210331/errorcodes.py +96 -0
- tencentcloud/organization/v20210331/models.py +2110 -269
- tencentcloud/organization/v20210331/organization_client.py +417 -3
- tencentcloud/privatedns/v20201028/models.py +159 -35
- tencentcloud/privatedns/v20201028/privatedns_client.py +1 -1
- tencentcloud/sms/v20210111/errorcodes.py +4 -1
- tencentcloud/sqlserver/v20180328/errorcodes.py +3 -0
- tencentcloud/sqlserver/v20180328/models.py +2370 -1230
- tencentcloud/sqlserver/v20180328/sqlserver_client.py +96 -4
- tencentcloud/tat/v20201028/errorcodes.py +12 -0
- tencentcloud/tat/v20201028/models.py +38 -38
- tencentcloud/tchd/v20230306/models.py +2 -2
- tencentcloud/tdmq/v20200217/models.py +2 -2
- tencentcloud/tem/v20210701/models.py +2 -2
- tencentcloud/tiw/v20190919/errorcodes.py +3 -0
- tencentcloud/tiw/v20190919/models.py +102 -102
- tencentcloud/tke/v20180525/errorcodes.py +2 -2
- tencentcloud/vm/v20201229/errorcodes.py +14 -14
- tencentcloud/vm/v20201229/models.py +17 -2
- tencentcloud/vm/v20210922/models.py +2 -2
- tencentcloud/vod/v20180717/models.py +128 -11
- tencentcloud/waf/v20180125/errorcodes.py +3 -0
- tencentcloud/waf/v20180125/models.py +1680 -720
- tencentcloud/waf/v20180125/waf_client.py +83 -45
- tencentcloud/wedata/v20210820/models.py +6 -6
- {tencentcloud_sdk_python_intl_en-3.0.1085.dist-info → tencentcloud_sdk_python_intl_en-3.0.1087.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1085.dist-info → tencentcloud_sdk_python_intl_en-3.0.1087.dist-info}/RECORD +53 -48
- {tencentcloud_sdk_python_intl_en-3.0.1085.dist-info → tencentcloud_sdk_python_intl_en-3.0.1087.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1085.dist-info → tencentcloud_sdk_python_intl_en-3.0.1087.dist-info}/top_level.txt +0 -0
|
@@ -74,6 +74,51 @@ class CheckRuleRequest(AbstractModel):
|
|
|
74
74
|
|
|
75
75
|
"""
|
|
76
76
|
|
|
77
|
+
def __init__(self):
|
|
78
|
+
r"""
|
|
79
|
+
:param _Event:
|
|
80
|
+
:type Event: str
|
|
81
|
+
:param _EventPattern:
|
|
82
|
+
:type EventPattern: str
|
|
83
|
+
"""
|
|
84
|
+
self._Event = None
|
|
85
|
+
self._EventPattern = None
|
|
86
|
+
|
|
87
|
+
@property
|
|
88
|
+
def Event(self):
|
|
89
|
+
"""
|
|
90
|
+
:rtype: str
|
|
91
|
+
"""
|
|
92
|
+
return self._Event
|
|
93
|
+
|
|
94
|
+
@Event.setter
|
|
95
|
+
def Event(self, Event):
|
|
96
|
+
self._Event = Event
|
|
97
|
+
|
|
98
|
+
@property
|
|
99
|
+
def EventPattern(self):
|
|
100
|
+
"""
|
|
101
|
+
:rtype: str
|
|
102
|
+
"""
|
|
103
|
+
return self._EventPattern
|
|
104
|
+
|
|
105
|
+
@EventPattern.setter
|
|
106
|
+
def EventPattern(self, EventPattern):
|
|
107
|
+
self._EventPattern = EventPattern
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
def _deserialize(self, params):
|
|
111
|
+
self._Event = params.get("Event")
|
|
112
|
+
self._EventPattern = params.get("EventPattern")
|
|
113
|
+
memeber_set = set(params.keys())
|
|
114
|
+
for name, value in vars(self).items():
|
|
115
|
+
property_name = name[1:]
|
|
116
|
+
if property_name in memeber_set:
|
|
117
|
+
memeber_set.remove(property_name)
|
|
118
|
+
if len(memeber_set) > 0:
|
|
119
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
120
|
+
|
|
121
|
+
|
|
77
122
|
|
|
78
123
|
class CheckRuleResponse(AbstractModel):
|
|
79
124
|
"""CheckRule response structure.
|
|
@@ -82,14 +127,14 @@ class CheckRuleResponse(AbstractModel):
|
|
|
82
127
|
|
|
83
128
|
def __init__(self):
|
|
84
129
|
r"""
|
|
85
|
-
:param _RequestId: The unique request ID,
|
|
130
|
+
: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.
|
|
86
131
|
:type RequestId: str
|
|
87
132
|
"""
|
|
88
133
|
self._RequestId = None
|
|
89
134
|
|
|
90
135
|
@property
|
|
91
136
|
def RequestId(self):
|
|
92
|
-
"""The unique request ID,
|
|
137
|
+
"""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.
|
|
93
138
|
:rtype: str
|
|
94
139
|
"""
|
|
95
140
|
return self._RequestId
|
|
@@ -6737,7 +6737,7 @@ class DescribeInstancesResponse(AbstractModel):
|
|
|
6737
6737
|
:param _InstanceSet: List of the returned instance information.
|
|
6738
6738
|
Note: this field may return null, indicating that no valid values can be obtained.
|
|
6739
6739
|
:type InstanceSet: list of Instance
|
|
6740
|
-
:param _RequestId: The unique request ID,
|
|
6740
|
+
: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.
|
|
6741
6741
|
:type RequestId: str
|
|
6742
6742
|
"""
|
|
6743
6743
|
self._TotalCount = None
|
|
@@ -6769,7 +6769,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
6769
6769
|
|
|
6770
6770
|
@property
|
|
6771
6771
|
def RequestId(self):
|
|
6772
|
-
"""The unique request ID,
|
|
6772
|
+
"""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.
|
|
6773
6773
|
:rtype: str
|
|
6774
6774
|
"""
|
|
6775
6775
|
return self._RequestId
|
|
@@ -1413,14 +1413,14 @@ class DeleteIndexResponse(AbstractModel):
|
|
|
1413
1413
|
|
|
1414
1414
|
def __init__(self):
|
|
1415
1415
|
r"""
|
|
1416
|
-
:param _RequestId: The unique request ID,
|
|
1416
|
+
: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.
|
|
1417
1417
|
:type RequestId: str
|
|
1418
1418
|
"""
|
|
1419
1419
|
self._RequestId = None
|
|
1420
1420
|
|
|
1421
1421
|
@property
|
|
1422
1422
|
def RequestId(self):
|
|
1423
|
-
"""The unique request ID,
|
|
1423
|
+
"""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.
|
|
1424
1424
|
:rtype: str
|
|
1425
1425
|
"""
|
|
1426
1426
|
return self._RequestId
|
|
@@ -38,7 +38,7 @@ INVALIDPARAMETER_TAGKEY = 'InvalidParameter.TagKey'
|
|
|
38
38
|
# Incorrect query time range.
|
|
39
39
|
INVALIDPARAMETER_TIMERANGEERROR = 'InvalidParameter.TimeRangeError'
|
|
40
40
|
|
|
41
|
-
# Invalid BizId.
|
|
41
|
+
# Invalid BizId.(SDKAppid)
|
|
42
42
|
INVALIDPARAMETERVALUE_INVALIDBIZID = 'InvalidParameterValue.InvalidBizId'
|
|
43
43
|
|
|
44
44
|
# Invalid RecordMode.
|
|
@@ -2301,7 +2301,7 @@ class StartRecordResponse(AbstractModel):
|
|
|
2301
2301
|
r"""
|
|
2302
2302
|
:param _TaskId: Task ID.
|
|
2303
2303
|
:type TaskId: int
|
|
2304
|
-
:param _RequestId: The unique request ID,
|
|
2304
|
+
: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.
|
|
2305
2305
|
:type RequestId: str
|
|
2306
2306
|
"""
|
|
2307
2307
|
self._TaskId = None
|
|
@@ -2320,7 +2320,7 @@ class StartRecordResponse(AbstractModel):
|
|
|
2320
2320
|
|
|
2321
2321
|
@property
|
|
2322
2322
|
def RequestId(self):
|
|
2323
|
-
"""The unique request ID,
|
|
2323
|
+
"""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.
|
|
2324
2324
|
:rtype: str
|
|
2325
2325
|
"""
|
|
2326
2326
|
return self._RequestId
|
|
@@ -161,6 +161,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
161
161
|
|
|
162
162
|
@property
|
|
163
163
|
def GitInfo(self):
|
|
164
|
+
warnings.warn("parameter `GitInfo` is deprecated", DeprecationWarning)
|
|
165
|
+
|
|
164
166
|
"""Git information
|
|
165
167
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
166
168
|
:rtype: str
|
|
@@ -169,6 +171,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
169
171
|
|
|
170
172
|
@GitInfo.setter
|
|
171
173
|
def GitInfo(self, GitInfo):
|
|
174
|
+
warnings.warn("parameter `GitInfo` is deprecated", DeprecationWarning)
|
|
175
|
+
|
|
172
176
|
self._GitInfo = GitInfo
|
|
173
177
|
|
|
174
178
|
|
|
@@ -26,6 +26,9 @@ FAILEDOPERATION_AUTHINFONOTSAME = 'FailedOperation.AuthInfoNotSame'
|
|
|
26
26
|
# The user has not completed enterprise identity verification.
|
|
27
27
|
FAILEDOPERATION_AUTHNOTENTERPRISE = 'FailedOperation.AuthNotEnterprise'
|
|
28
28
|
|
|
29
|
+
# Member permission change record exists.
|
|
30
|
+
FAILEDOPERATION_CHANGEPERMISSIONRECORDEXIST = 'FailedOperation.ChangePermissionRecordExist'
|
|
31
|
+
|
|
29
32
|
# Permission configurations created for a directory exceed the upper limit.
|
|
30
33
|
FAILEDOPERATION_CONFIGURATIONOVERUPPERLIMIT = 'FailedOperation.ConfigurationOverUpperLimit'
|
|
31
34
|
|
|
@@ -62,6 +65,9 @@ FAILEDOPERATION_DECODEMETADATADOCUMENTFAILED = 'FailedOperation.DecodeMetadataDo
|
|
|
62
65
|
# The user group still contains users and does not allow deleting users.
|
|
63
66
|
FAILEDOPERATION_DELETEGROUPNOTALLOWEXISTUSER = 'FailedOperation.DeleteGroupNotAllowExistUser'
|
|
64
67
|
|
|
68
|
+
# Exception occurred when deleting the authorization policy.
|
|
69
|
+
FAILEDOPERATION_DELETEPOLICY = 'FailedOperation.DeletePolicy'
|
|
70
|
+
|
|
65
71
|
# An error occurred in the query of the organization service usage status.
|
|
66
72
|
FAILEDOPERATION_DESCRIBEORGSERVICEUSAGESTATUSERR = 'FailedOperation.DescribeOrgServiceUsageStatusErr'
|
|
67
73
|
|
|
@@ -77,9 +83,15 @@ FAILEDOPERATION_GETACCOUNTREGION = 'FailedOperation.GetAccountRegion'
|
|
|
77
83
|
# An error occurred while querying the identity information.
|
|
78
84
|
FAILEDOPERATION_GETAUTHINFO = 'FailedOperation.GetAuthInfo'
|
|
79
85
|
|
|
86
|
+
# Failed to query the policy.
|
|
87
|
+
FAILEDOPERATION_GETPOLICYDETAIL = 'FailedOperation.GetPolicyDetail'
|
|
88
|
+
|
|
80
89
|
# User groups created exceed the upper limit.
|
|
81
90
|
FAILEDOPERATION_GROUPOVERUPPERLIMIT = 'FailedOperation.GroupOverUpperLimit'
|
|
82
91
|
|
|
92
|
+
# User group type and user type do not match.
|
|
93
|
+
FAILEDOPERATION_GROUPTYPEUSERTYPENOTMATCH = 'FailedOperation.GroupTypeUserTypeNotMatch'
|
|
94
|
+
|
|
83
95
|
# Members of the CIC user group exceed the limit.
|
|
84
96
|
FAILEDOPERATION_GROUPUSERCOUNTOVERUPPERLIMIT = 'FailedOperation.GroupUserCountOverUpperLimit'
|
|
85
97
|
|
|
@@ -107,12 +119,27 @@ FAILEDOPERATION_IMPORTFILEILLEGAL = 'FailedOperation.ImportFileIllegal'
|
|
|
107
119
|
# The invitation already exists.
|
|
108
120
|
FAILEDOPERATION_INVITATIONEXIST = 'FailedOperation.InvitationExist'
|
|
109
121
|
|
|
122
|
+
# Manually created user groups cannot be deleted.
|
|
123
|
+
FAILEDOPERATION_MANUALGROUPNOTDELETE = 'FailedOperation.ManualGroupNotDelete'
|
|
124
|
+
|
|
125
|
+
# Manually created user groups cannot be updated.
|
|
126
|
+
FAILEDOPERATION_MANUALGROUPNOTUPDATE = 'FailedOperation.ManualGroupNotUpdate'
|
|
127
|
+
|
|
128
|
+
# Manually created users cannot be deleted.
|
|
129
|
+
FAILEDOPERATION_MANUALUSERNOTDELETE = 'FailedOperation.ManualUserNotDelete'
|
|
130
|
+
|
|
131
|
+
# Manually created users cannot be updated.
|
|
132
|
+
FAILEDOPERATION_MANUALUSERNOTUPDATE = 'FailedOperation.ManualUserNotUpdate'
|
|
133
|
+
|
|
110
134
|
# The member has a payer and cannot be deleted.
|
|
111
135
|
FAILEDOPERATION_MEMBEREXISTDELEGATEPAYERNOTALLOWDELETE = 'FailedOperation.MemberExistDelegatePayerNotAllowDelete'
|
|
112
136
|
|
|
113
137
|
# The member already belongs to another organization.
|
|
114
138
|
FAILEDOPERATION_MEMBEREXISTINOTHERORGANIZATION = 'FailedOperation.MemberExistInOtherOrganization'
|
|
115
139
|
|
|
140
|
+
# Member authorization is in use.
|
|
141
|
+
FAILEDOPERATION_MEMBERIDENTITYAUTHUSED = 'FailedOperation.MemberIdentityAuthUsed'
|
|
142
|
+
|
|
116
143
|
# The member is a payer and cannot be deleted.
|
|
117
144
|
FAILEDOPERATION_MEMBERISDELEGATEPAYERNOTALLOWDELETE = 'FailedOperation.MemberIsDelegatePayerNotAllowDelete'
|
|
118
145
|
|
|
@@ -146,6 +173,18 @@ FAILEDOPERATION_ORGANIZATIONAUTHMANAGENOTALLOWDELETE = 'FailedOperation.Organiza
|
|
|
146
173
|
# Real-name authentication relationship already exists.
|
|
147
174
|
FAILEDOPERATION_ORGANIZATIONAUTHRELATIONEXIST = 'FailedOperation.OrganizationAuthRelationExist'
|
|
148
175
|
|
|
176
|
+
# The organization already exists.
|
|
177
|
+
FAILEDOPERATION_ORGANIZATIONEXISTALREADY = 'FailedOperation.OrganizationExistAlready'
|
|
178
|
+
|
|
179
|
+
# Organization identity is in use.
|
|
180
|
+
FAILEDOPERATION_ORGANIZATIONIDENTITYINUSED = 'FailedOperation.OrganizationIdentityInUsed'
|
|
181
|
+
|
|
182
|
+
# Organization identity name is in use.
|
|
183
|
+
FAILEDOPERATION_ORGANIZATIONIDENTITYNAMEUSED = 'FailedOperation.OrganizationIdentityNameUsed'
|
|
184
|
+
|
|
185
|
+
# Organization identity policy is invalid.
|
|
186
|
+
FAILEDOPERATION_ORGANIZATIONIDENTITYPOLICYERROR = 'FailedOperation.OrganizationIdentityPolicyError'
|
|
187
|
+
|
|
149
188
|
# Member already exists.
|
|
150
189
|
FAILEDOPERATION_ORGANIZATIONMEMBEREXIST = 'FailedOperation.OrganizationMemberExist'
|
|
151
190
|
|
|
@@ -167,12 +206,18 @@ FAILEDOPERATION_ORGANIZATIONNODENOTEMPTY = 'FailedOperation.OrganizationNodeNotE
|
|
|
167
206
|
# The organization node does not exist.
|
|
168
207
|
FAILEDOPERATION_ORGANIZATIONNODENOTEXIST = 'FailedOperation.OrganizationNodeNotExist'
|
|
169
208
|
|
|
209
|
+
# There are members in this organization.
|
|
210
|
+
FAILEDOPERATION_ORGANIZATIONNOTEMPTY = 'FailedOperation.OrganizationNotEmpty'
|
|
211
|
+
|
|
170
212
|
# The organization permission is invalid.
|
|
171
213
|
FAILEDOPERATION_ORGANIZATIONPERMISSIONILLEGAL = 'FailedOperation.OrganizationPermissionIllegal'
|
|
172
214
|
|
|
173
215
|
# The organization policy is invalid.
|
|
174
216
|
FAILEDOPERATION_ORGANIZATIONPOLICYILLEGAL = 'FailedOperation.OrganizationPolicyIllegal'
|
|
175
217
|
|
|
218
|
+
# Group policy is not disabled.
|
|
219
|
+
FAILEDOPERATION_ORGANIZATIONPOLICYISNOTDISABLED = 'FailedOperation.OrganizationPolicyIsNotDisabled'
|
|
220
|
+
|
|
176
221
|
# Organization service delegation is in use.
|
|
177
222
|
FAILEDOPERATION_ORGANIZATIONSERVICEASSIGNISUSE = 'FailedOperation.OrganizationServiceAssignIsUse'
|
|
178
223
|
|
|
@@ -182,9 +227,15 @@ FAILEDOPERATION_PARTNERMANAGEMENTERR = 'FailedOperation.PartnerManagementErr'
|
|
|
182
227
|
# The payer is invalid.
|
|
183
228
|
FAILEDOPERATION_PAYUINILLEGAL = 'FailedOperation.PayUinIllegal'
|
|
184
229
|
|
|
230
|
+
# Failed to exit the shared unit.
|
|
231
|
+
FAILEDOPERATION_QUITSHAREUINT = 'FailedOperation.QuitShareUint'
|
|
232
|
+
|
|
185
233
|
# Failed to leave the shared unit.
|
|
186
234
|
FAILEDOPERATION_QUITSHAREUINTERROR = 'FailedOperation.QuitShareUintError'
|
|
187
235
|
|
|
236
|
+
# Failed to exit the shared unit.
|
|
237
|
+
FAILEDOPERATION_QUITESHAREUNIT = 'FailedOperation.QuiteShareUnit'
|
|
238
|
+
|
|
188
239
|
# The invitation has already been sent before.
|
|
189
240
|
FAILEDOPERATION_RESENTINVITATION = 'FailedOperation.ReSentInvitation'
|
|
190
241
|
|
|
@@ -212,9 +263,15 @@ FAILEDOPERATION_SAMLSERVICEPROVIDERCREATEFAILED = 'FailedOperation.SAMLServicePr
|
|
|
212
263
|
# The SAML identity provider information cannot be cleared when SSO is enabled.
|
|
213
264
|
FAILEDOPERATION_SSOSTATUSENABLENOTCLEARIDENTITYPROVIDER = 'FailedOperation.SSoStatusEnableNotClearIdentityProvider'
|
|
214
265
|
|
|
266
|
+
# Failed to generate the SCIM key.
|
|
267
|
+
FAILEDOPERATION_SCIMCREDENTIALGENERATEERROR = 'FailedOperation.ScimCredentialGenerateError'
|
|
268
|
+
|
|
215
269
|
# The member is using a shared resource.
|
|
216
270
|
FAILEDOPERATION_SHARERESOURCEMEMBERINUSE = 'FailedOperation.ShareResourceMemberInUse'
|
|
217
271
|
|
|
272
|
+
# Shared unit is not empty.
|
|
273
|
+
FAILEDOPERATION_SHAREUNITNOTEMPTY = 'FailedOperation.ShareUnitNotEmpty'
|
|
274
|
+
|
|
218
275
|
# The UIN does not belong to the organization.
|
|
219
276
|
FAILEDOPERATION_SOMEUINSNOTINORGANIZATION = 'FailedOperation.SomeUinsNotInOrganization'
|
|
220
277
|
|
|
@@ -287,6 +344,9 @@ INTERNALERROR = 'InternalError'
|
|
|
287
344
|
# The parameter is incorrect.
|
|
288
345
|
INVALIDPARAMETER = 'InvalidParameter'
|
|
289
346
|
|
|
347
|
+
# The member in pay-on-behalf mode is not allowed to exit the organization voluntarily.
|
|
348
|
+
INVALIDPARAMETER_ALLOWQUITILLEGAL = 'InvalidParameter.AllowQuitIllegal'
|
|
349
|
+
|
|
290
350
|
# The permission configuration cannot be bound to this policy.
|
|
291
351
|
INVALIDPARAMETER_BINDPOLICYNAMENOTALLOWED = 'InvalidParameter.BindPolicyNameNotAllowed'
|
|
292
352
|
|
|
@@ -335,6 +395,9 @@ INVALIDPARAMETER_POLICYNAMEALREADYEXISTS = 'InvalidParameter.PolicyNameAlreadyEx
|
|
|
335
395
|
# The policy name exceeds the length limit.
|
|
336
396
|
INVALIDPARAMETER_POLICYNAMESIZEOVERUPPERLIMIT = 'InvalidParameter.PolicyNameSizeOverUpperLimit'
|
|
337
397
|
|
|
398
|
+
# Errors occurred when the policy type is modified. Only custom policies can be modified.
|
|
399
|
+
INVALIDPARAMETER_POLICYTYPEERROR = 'InvalidParameter.PolicyTypeError'
|
|
400
|
+
|
|
338
401
|
# The permission configuration does not exist.
|
|
339
402
|
INVALIDPARAMETER_ROLECONFIGURATIONNOTEXIST = 'InvalidParameter.RoleConfigurationNotExist'
|
|
340
403
|
|
|
@@ -344,12 +407,21 @@ INVALIDPARAMETER_ROLEPOLICYALREADYEXIST = 'InvalidParameter.RolePolicyAlreadyExi
|
|
|
344
407
|
# The policy does not exist.
|
|
345
408
|
INVALIDPARAMETER_ROLEPOLICYNOTEXIST = 'InvalidParameter.RolePolicyNotExist'
|
|
346
409
|
|
|
410
|
+
# SCIM key does not exist.
|
|
411
|
+
INVALIDPARAMETER_SCIMCREDENTIALNOTFOUND = 'InvalidParameter.ScimCredentialNotFound'
|
|
412
|
+
|
|
413
|
+
# SCIM synchronization status error
|
|
414
|
+
INVALIDPARAMETER_SCIMSYNCSTATUSERROR = 'InvalidParameter.ScimSyncStatusError'
|
|
415
|
+
|
|
347
416
|
# Tag value error.
|
|
348
417
|
INVALIDPARAMETER_TAGERROR = 'InvalidParameter.TagError'
|
|
349
418
|
|
|
350
419
|
# The user still exists in the user group.
|
|
351
420
|
INVALIDPARAMETER_USERALREADYEXISTSGROUP = 'InvalidParameter.UserAlreadyExistsGroup'
|
|
352
421
|
|
|
422
|
+
# SCIM key status error
|
|
423
|
+
INVALIDPARAMETER_USERSCIMCREDENTIALSTATUSERROR = 'InvalidParameter.UserScimCredentialStatusError'
|
|
424
|
+
|
|
353
425
|
# The username already exists.
|
|
354
426
|
INVALIDPARAMETER_USERNAMEALREADYEXISTS = 'InvalidParameter.UsernameAlreadyExists'
|
|
355
427
|
|
|
@@ -386,6 +458,9 @@ LIMITEXCEEDED_CREATEUSERLIMITEXCEEDED = 'LimitExceeded.CreateUserLimitExceeded'
|
|
|
386
458
|
# Requests for creating user synchronization tasks exceed the limit.
|
|
387
459
|
LIMITEXCEEDED_CREATEUSERSYNCPROVISIONINGLIMITEXCEEDED = 'LimitExceeded.CreateUserSyncProvisioningLimitExceeded'
|
|
388
460
|
|
|
461
|
+
# The number of organization identities exceeds limit.
|
|
462
|
+
LIMITEXCEEDED_IDENTITYEXCEEDLIMIT = 'LimitExceeded.IdentityExceedLimit'
|
|
463
|
+
|
|
389
464
|
# Invitation limit exceeded.
|
|
390
465
|
LIMITEXCEEDED_INVITATIONOVERLIMIT = 'LimitExceeded.InvitationOverLimit'
|
|
391
466
|
|
|
@@ -401,6 +476,9 @@ LIMITEXCEEDED_ORGANIZATIONMEMBEROVERLIMIT = 'LimitExceeded.OrganizationMemberOve
|
|
|
401
476
|
# Requests for removing users from the user group exceed the limit.
|
|
402
477
|
LIMITEXCEEDED_REMOVEUSERFROMGROUPLIMITEXCEEDED = 'LimitExceeded.RemoveUserFromGroupLimitExceeded'
|
|
403
478
|
|
|
479
|
+
# The number of SCIM keys exceeds the limit.
|
|
480
|
+
LIMITEXCEEDED_SCIMCREDENTIALLIMITEXCEEDED = 'LimitExceeded.ScimCredentialLimitExceeded'
|
|
481
|
+
|
|
404
482
|
# The authorizable member identity does not exist.
|
|
405
483
|
RESOURCENOTFOUND_MEMBERIDENTITYNOTEXIST = 'ResourceNotFound.MemberIdentityNotExist'
|
|
406
484
|
|
|
@@ -413,6 +491,9 @@ RESOURCENOTFOUND_MEMBERPOLICYNOTEXIST = 'ResourceNotFound.MemberPolicyNotExist'
|
|
|
413
491
|
# The authentication subject does not exist.
|
|
414
492
|
RESOURCENOTFOUND_ORGANIZATIONAUTHRELATIONNOTEXIST = 'ResourceNotFound.OrganizationAuthRelationNotExist'
|
|
415
493
|
|
|
494
|
+
# Organization identity does not exist.
|
|
495
|
+
RESOURCENOTFOUND_ORGANIZATIONIDENTITYNOTEXIST = 'ResourceNotFound.OrganizationIdentityNotExist'
|
|
496
|
+
|
|
416
497
|
# The organization member does not exist.
|
|
417
498
|
RESOURCENOTFOUND_ORGANIZATIONMEMBERNOTEXIST = 'ResourceNotFound.OrganizationMemberNotExist'
|
|
418
499
|
|
|
@@ -428,6 +509,9 @@ RESOURCENOTFOUND_ORGANIZATIONSERVICEASSIGNNOTEXIST = 'ResourceNotFound.Organizat
|
|
|
428
509
|
# The organization service does not exist.
|
|
429
510
|
RESOURCENOTFOUND_ORGANIZATIONSERVICENOTEXIST = 'ResourceNotFound.OrganizationServiceNotExist'
|
|
430
511
|
|
|
512
|
+
# Policy does not exist.
|
|
513
|
+
RESOURCENOTFOUND_POLICYNOTEXIST = 'ResourceNotFound.PolicyNotExist'
|
|
514
|
+
|
|
431
515
|
# The permission authorization record does not exist.
|
|
432
516
|
RESOURCENOTFOUND_ROLECONFIGURATIONAUTHORIZATIONNOTFOUND = 'ResourceNotFound.RoleConfigurationAuthorizationNotFound'
|
|
433
517
|
|
|
@@ -476,9 +560,18 @@ UNSUPPORTEDOPERATION_ADDDISCOUNTINHERITNOTALLOW = 'UnsupportedOperation.AddDisco
|
|
|
476
560
|
# The resellers of the administrator and the member do not match.
|
|
477
561
|
UNSUPPORTEDOPERATION_AGENTNOTSAME = 'UnsupportedOperation.AgentNotSame'
|
|
478
562
|
|
|
563
|
+
# The created member is not allowed to create an organization.
|
|
564
|
+
UNSUPPORTEDOPERATION_CREATEMEMBERNOTALLOWCREATEORGANIZATION = 'UnsupportedOperation.CreateMemberNotAllowCreateOrganization'
|
|
565
|
+
|
|
479
566
|
# The created member cannot be removed from the organization.
|
|
480
567
|
UNSUPPORTEDOPERATION_CREATEMEMBERNOTALLOWDELETE = 'UnsupportedOperation.CreateMemberNotAllowDelete'
|
|
481
568
|
|
|
569
|
+
# The created member is not allowed to exit.
|
|
570
|
+
UNSUPPORTEDOPERATION_CREATEMEMBERNOTALLOWQUIT = 'UnsupportedOperation.CreateMemberNotAllowQuit'
|
|
571
|
+
|
|
572
|
+
# Deleting the payment relationship is not allowed.
|
|
573
|
+
UNSUPPORTEDOPERATION_DELETEDELEGATEPAYERNOTALLOW = 'UnsupportedOperation.DeleteDelegatePayerNotAllow'
|
|
574
|
+
|
|
482
575
|
# Payment-on-behalf is not supported for this member or payer as it is a reseller.
|
|
483
576
|
UNSUPPORTEDOPERATION_EXISTEDAGENT = 'UnsupportedOperation.ExistedAgent'
|
|
484
577
|
|
|
@@ -518,6 +611,9 @@ UNSUPPORTEDOPERATION_MEMBERISNOTCLIENT = 'UnsupportedOperation.MemberIsNotClient
|
|
|
518
611
|
# No credit card is bound to the member.
|
|
519
612
|
UNSUPPORTEDOPERATION_MEMBERNOPAYMENT = 'UnsupportedOperation.MemberNoPayment'
|
|
520
613
|
|
|
614
|
+
# The member does not support voluntary exit.
|
|
615
|
+
UNSUPPORTEDOPERATION_MEMBERNOTALLOWQUIT = 'UnsupportedOperation.MemberNotAllowQuit'
|
|
616
|
+
|
|
521
617
|
# There is an ongoing order.
|
|
522
618
|
UNSUPPORTEDOPERATION_ORDERINPROGRESSEXISTED = 'UnsupportedOperation.OrderInProgressExisted'
|
|
523
619
|
|