tencentcloud-sdk-python 3.0.1236__py2.py3-none-any.whl → 3.0.1238__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/apigateway/v20180808/apigateway_client.py +23 -0
- tencentcloud/apigateway/v20180808/models.py +31 -0
- tencentcloud/emr/v20190103/emr_client.py +46 -0
- tencentcloud/emr/v20190103/models.py +452 -0
- tencentcloud/ess/v20201111/ess_client.py +1 -1
- tencentcloud/ess/v20201111/models.py +26 -0
- tencentcloud/essbasic/v20210526/models.py +27 -0
- tencentcloud/faceid/v20180301/models.py +16 -0
- tencentcloud/hunyuan/v20230901/models.py +1 -0
- tencentcloud/organization/v20210331/errorcodes.py +54 -0
- tencentcloud/organization/v20210331/models.py +483 -3
- tencentcloud/organization/v20210331/organization_client.py +46 -0
- tencentcloud/postgres/v20170312/models.py +356 -13
- tencentcloud/postgres/v20170312/postgres_client.py +46 -0
- tencentcloud/sms/v20190711/models.py +3 -3
- tencentcloud/sms/v20210111/models.py +9 -8
- tencentcloud/teo/v20220901/models.py +11 -7
- tencentcloud/vod/v20180717/vod_client.py +9 -1
- {tencentcloud_sdk_python-3.0.1236.dist-info → tencentcloud_sdk_python-3.0.1238.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1236.dist-info → tencentcloud_sdk_python-3.0.1238.dist-info}/RECORD +24 -24
- {tencentcloud_sdk_python-3.0.1236.dist-info → tencentcloud_sdk_python-3.0.1238.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1236.dist-info → tencentcloud_sdk_python-3.0.1238.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1236.dist-info → tencentcloud_sdk_python-3.0.1238.dist-info}/top_level.txt +0 -0
@@ -3341,6 +3341,8 @@ class CreateBatchQuickSignUrlRequest(AbstractModel):
|
|
3341
3341
|
注:
|
3342
3342
|
`不指定该值时,默认为签署方自行选择。`
|
3343
3343
|
:type SignTypeSelector: int
|
3344
|
+
:param _FlowBatchUrlInfo: 批量签署合同相关信息,指定合同和签署方的信息,用于补充动态签署人。
|
3345
|
+
:type FlowBatchUrlInfo: :class:`tencentcloud.ess.v20201111.models.FlowBatchUrlInfo`
|
3344
3346
|
"""
|
3345
3347
|
self._FlowApproverInfo = None
|
3346
3348
|
self._Agent = None
|
@@ -3351,6 +3353,7 @@ class CreateBatchQuickSignUrlRequest(AbstractModel):
|
|
3351
3353
|
self._SignatureTypes = None
|
3352
3354
|
self._ApproverSignTypes = None
|
3353
3355
|
self._SignTypeSelector = None
|
3356
|
+
self._FlowBatchUrlInfo = None
|
3354
3357
|
|
3355
3358
|
@property
|
3356
3359
|
def FlowApproverInfo(self):
|
@@ -3424,6 +3427,14 @@ class CreateBatchQuickSignUrlRequest(AbstractModel):
|
|
3424
3427
|
def SignTypeSelector(self, SignTypeSelector):
|
3425
3428
|
self._SignTypeSelector = SignTypeSelector
|
3426
3429
|
|
3430
|
+
@property
|
3431
|
+
def FlowBatchUrlInfo(self):
|
3432
|
+
return self._FlowBatchUrlInfo
|
3433
|
+
|
3434
|
+
@FlowBatchUrlInfo.setter
|
3435
|
+
def FlowBatchUrlInfo(self, FlowBatchUrlInfo):
|
3436
|
+
self._FlowBatchUrlInfo = FlowBatchUrlInfo
|
3437
|
+
|
3427
3438
|
|
3428
3439
|
def _deserialize(self, params):
|
3429
3440
|
if params.get("FlowApproverInfo") is not None:
|
@@ -3441,6 +3452,9 @@ class CreateBatchQuickSignUrlRequest(AbstractModel):
|
|
3441
3452
|
self._SignatureTypes = params.get("SignatureTypes")
|
3442
3453
|
self._ApproverSignTypes = params.get("ApproverSignTypes")
|
3443
3454
|
self._SignTypeSelector = params.get("SignTypeSelector")
|
3455
|
+
if params.get("FlowBatchUrlInfo") is not None:
|
3456
|
+
self._FlowBatchUrlInfo = FlowBatchUrlInfo()
|
3457
|
+
self._FlowBatchUrlInfo._deserialize(params.get("FlowBatchUrlInfo"))
|
3444
3458
|
memeber_set = set(params.keys())
|
3445
3459
|
for name, value in vars(self).items():
|
3446
3460
|
property_name = name[1:]
|
@@ -9162,6 +9176,8 @@ class CreatePrepareFlowRequest(AbstractModel):
|
|
9162
9176
|
:param _InitiatorComponents: 模板或者合同中的填写控件列表,列表中可支持下列多种填写控件,控件的详细定义参考开发者中心的Component结构体
|
9163
9177
|
|
9164
9178
|
:type InitiatorComponents: list of Component
|
9179
|
+
:param _FlowDisplayType: 在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li></ul>效果如下:
|
9180
|
+
:type FlowDisplayType: int
|
9165
9181
|
"""
|
9166
9182
|
self._Operator = None
|
9167
9183
|
self._ResourceId = None
|
@@ -9182,6 +9198,7 @@ class CreatePrepareFlowRequest(AbstractModel):
|
|
9182
9198
|
self._FlowId = None
|
9183
9199
|
self._Agent = None
|
9184
9200
|
self._InitiatorComponents = None
|
9201
|
+
self._FlowDisplayType = None
|
9185
9202
|
|
9186
9203
|
@property
|
9187
9204
|
def Operator(self):
|
@@ -9335,6 +9352,14 @@ class CreatePrepareFlowRequest(AbstractModel):
|
|
9335
9352
|
def InitiatorComponents(self, InitiatorComponents):
|
9336
9353
|
self._InitiatorComponents = InitiatorComponents
|
9337
9354
|
|
9355
|
+
@property
|
9356
|
+
def FlowDisplayType(self):
|
9357
|
+
return self._FlowDisplayType
|
9358
|
+
|
9359
|
+
@FlowDisplayType.setter
|
9360
|
+
def FlowDisplayType(self, FlowDisplayType):
|
9361
|
+
self._FlowDisplayType = FlowDisplayType
|
9362
|
+
|
9338
9363
|
|
9339
9364
|
def _deserialize(self, params):
|
9340
9365
|
if params.get("Operator") is not None:
|
@@ -9376,6 +9401,7 @@ class CreatePrepareFlowRequest(AbstractModel):
|
|
9376
9401
|
obj = Component()
|
9377
9402
|
obj._deserialize(item)
|
9378
9403
|
self._InitiatorComponents.append(obj)
|
9404
|
+
self._FlowDisplayType = params.get("FlowDisplayType")
|
9379
9405
|
memeber_set = set(params.keys())
|
9380
9406
|
for name, value in vars(self).items():
|
9381
9407
|
property_name = name[1:]
|
@@ -771,6 +771,9 @@ class BaseFlowInfo(AbstractModel):
|
|
771
771
|
:type NeedCreateReview: bool
|
772
772
|
:param _Components: 填写控件:文件发起使用
|
773
773
|
:type Components: list of Component
|
774
|
+
:param _FlowDisplayType: 在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li></ul>效果如下:
|
775
|
+
|
776
|
+
:type FlowDisplayType: int
|
774
777
|
"""
|
775
778
|
self._FlowName = None
|
776
779
|
self._Deadline = None
|
@@ -784,6 +787,7 @@ class BaseFlowInfo(AbstractModel):
|
|
784
787
|
self._CcInfos = None
|
785
788
|
self._NeedCreateReview = None
|
786
789
|
self._Components = None
|
790
|
+
self._FlowDisplayType = None
|
787
791
|
|
788
792
|
@property
|
789
793
|
def FlowName(self):
|
@@ -881,6 +885,14 @@ class BaseFlowInfo(AbstractModel):
|
|
881
885
|
def Components(self, Components):
|
882
886
|
self._Components = Components
|
883
887
|
|
888
|
+
@property
|
889
|
+
def FlowDisplayType(self):
|
890
|
+
return self._FlowDisplayType
|
891
|
+
|
892
|
+
@FlowDisplayType.setter
|
893
|
+
def FlowDisplayType(self, FlowDisplayType):
|
894
|
+
self._FlowDisplayType = FlowDisplayType
|
895
|
+
|
884
896
|
|
885
897
|
def _deserialize(self, params):
|
886
898
|
self._FlowName = params.get("FlowName")
|
@@ -910,6 +922,7 @@ class BaseFlowInfo(AbstractModel):
|
|
910
922
|
obj = Component()
|
911
923
|
obj._deserialize(item)
|
912
924
|
self._Components.append(obj)
|
925
|
+
self._FlowDisplayType = params.get("FlowDisplayType")
|
913
926
|
memeber_set = set(params.keys())
|
914
927
|
for name, value in vars(self).items():
|
915
928
|
property_name = name[1:]
|
@@ -1912,6 +1925,8 @@ class ChannelCreateBatchQuickSignUrlRequest(AbstractModel):
|
|
1912
1925
|
注:
|
1913
1926
|
`不指定该值时,默认为签署方自行选择。`
|
1914
1927
|
:type SignTypeSelector: int
|
1928
|
+
:param _FlowBatchUrlInfo: 批量签署合同相关信息,指定合同和签署方的信息,用于补充动态签署人。
|
1929
|
+
:type FlowBatchUrlInfo: :class:`tencentcloud.essbasic.v20210526.models.FlowBatchUrlInfo`
|
1915
1930
|
"""
|
1916
1931
|
self._FlowApproverInfo = None
|
1917
1932
|
self._Agent = None
|
@@ -1921,6 +1936,7 @@ class ChannelCreateBatchQuickSignUrlRequest(AbstractModel):
|
|
1921
1936
|
self._SignatureTypes = None
|
1922
1937
|
self._ApproverSignTypes = None
|
1923
1938
|
self._SignTypeSelector = None
|
1939
|
+
self._FlowBatchUrlInfo = None
|
1924
1940
|
|
1925
1941
|
@property
|
1926
1942
|
def FlowApproverInfo(self):
|
@@ -1986,6 +2002,14 @@ class ChannelCreateBatchQuickSignUrlRequest(AbstractModel):
|
|
1986
2002
|
def SignTypeSelector(self, SignTypeSelector):
|
1987
2003
|
self._SignTypeSelector = SignTypeSelector
|
1988
2004
|
|
2005
|
+
@property
|
2006
|
+
def FlowBatchUrlInfo(self):
|
2007
|
+
return self._FlowBatchUrlInfo
|
2008
|
+
|
2009
|
+
@FlowBatchUrlInfo.setter
|
2010
|
+
def FlowBatchUrlInfo(self, FlowBatchUrlInfo):
|
2011
|
+
self._FlowBatchUrlInfo = FlowBatchUrlInfo
|
2012
|
+
|
1989
2013
|
|
1990
2014
|
def _deserialize(self, params):
|
1991
2015
|
if params.get("FlowApproverInfo") is not None:
|
@@ -2000,6 +2024,9 @@ class ChannelCreateBatchQuickSignUrlRequest(AbstractModel):
|
|
2000
2024
|
self._SignatureTypes = params.get("SignatureTypes")
|
2001
2025
|
self._ApproverSignTypes = params.get("ApproverSignTypes")
|
2002
2026
|
self._SignTypeSelector = params.get("SignTypeSelector")
|
2027
|
+
if params.get("FlowBatchUrlInfo") is not None:
|
2028
|
+
self._FlowBatchUrlInfo = FlowBatchUrlInfo()
|
2029
|
+
self._FlowBatchUrlInfo._deserialize(params.get("FlowBatchUrlInfo"))
|
2003
2030
|
memeber_set = set(params.keys())
|
2004
2031
|
for name, value in vars(self).items():
|
2005
2032
|
property_name = name[1:]
|
@@ -7924,10 +7924,17 @@ class RuleIdConfig(AbstractModel):
|
|
7924
7924
|
:type IntentionType: int
|
7925
7925
|
:param _MouthOpenRecognition: 用户语音回答过程中是否开启张嘴识别检测,默认不开启,仅在意愿核身问答模式中使用。
|
7926
7926
|
:type MouthOpenRecognition: bool
|
7927
|
+
:param _Speed: 意愿核身语音播报速度,配置后问答模式和点头模式的语音播报环节都会生效,默认值为0:
|
7928
|
+
0:智能语速(根据播报文案的长度自动调整语音播报速度)
|
7929
|
+
1:固定1倍速
|
7930
|
+
2:固定1.2倍速
|
7931
|
+
3:固定1.5倍速
|
7932
|
+
:type Speed: int
|
7927
7933
|
"""
|
7928
7934
|
self._IntentionRecognition = None
|
7929
7935
|
self._IntentionType = None
|
7930
7936
|
self._MouthOpenRecognition = None
|
7937
|
+
self._Speed = None
|
7931
7938
|
|
7932
7939
|
@property
|
7933
7940
|
def IntentionRecognition(self):
|
@@ -7953,11 +7960,20 @@ class RuleIdConfig(AbstractModel):
|
|
7953
7960
|
def MouthOpenRecognition(self, MouthOpenRecognition):
|
7954
7961
|
self._MouthOpenRecognition = MouthOpenRecognition
|
7955
7962
|
|
7963
|
+
@property
|
7964
|
+
def Speed(self):
|
7965
|
+
return self._Speed
|
7966
|
+
|
7967
|
+
@Speed.setter
|
7968
|
+
def Speed(self, Speed):
|
7969
|
+
self._Speed = Speed
|
7970
|
+
|
7956
7971
|
|
7957
7972
|
def _deserialize(self, params):
|
7958
7973
|
self._IntentionRecognition = params.get("IntentionRecognition")
|
7959
7974
|
self._IntentionType = params.get("IntentionType")
|
7960
7975
|
self._MouthOpenRecognition = params.get("MouthOpenRecognition")
|
7976
|
+
self._Speed = params.get("Speed")
|
7961
7977
|
memeber_set = set(params.keys())
|
7962
7978
|
for name, value in vars(self).items():
|
7963
7979
|
property_name = name[1:]
|
@@ -154,6 +154,7 @@ class ChatCompletionsRequest(AbstractModel):
|
|
154
154
|
:param _EnableSpeedSearch: 是否开启极速版搜索,默认false,不开启;在开启且命中搜索时,会启用极速版搜索,流式输出首字返回更快。
|
155
155
|
:type EnableSpeedSearch: bool
|
156
156
|
:param _EnableMultimedia: 图文并茂开关。
|
157
|
+
详细介绍请阅读 [图文并茂](https://cloud.tencent.com/document/product/1729/111178) 中的说明。
|
157
158
|
说明:
|
158
159
|
1. 该参数仅在功能增强(如搜索)开关开启(EnableEnhancement=true)时生效。
|
159
160
|
2. hunyuan-lite 无图文并茂能力,该参数对 hunyuan-lite 版本不生效。
|
@@ -20,6 +20,9 @@ FAILEDOPERATION = 'FailedOperation'
|
|
20
20
|
# 该账号已被注册。
|
21
21
|
FAILEDOPERATION_ACCOUNTALREADYREGISTER = 'FailedOperation.AccountAlreadyRegister'
|
22
22
|
|
23
|
+
# 申请已存在。
|
24
|
+
FAILEDOPERATION_APPLYEXIST = 'FailedOperation.ApplyExist'
|
25
|
+
|
23
26
|
# 用户未实名。
|
24
27
|
FAILEDOPERATION_AUTHINFOEMPTY = 'FailedOperation.AuthInfoEmpty'
|
25
28
|
|
@@ -95,9 +98,15 @@ FAILEDOPERATION_EMAILALREADYUSED = 'FailedOperation.EmailAlreadyUsed'
|
|
95
98
|
# 邮箱绑定已经失效。
|
96
99
|
FAILEDOPERATION_EMAILBINDRECORDINVALID = 'FailedOperation.EmailBindRecordInvalid'
|
97
100
|
|
101
|
+
# 存在共享资源给其他组织成员或被其他组织成员共享资源。
|
102
|
+
FAILEDOPERATION_EXISTOTHERORGANIZATIONMEMBERSHARED = 'FailedOperation.ExistOtherOrganizationMemberShared'
|
103
|
+
|
98
104
|
# 存在不在组织内的共享成员。
|
99
105
|
FAILEDOPERATION_EXISTSHAREMEMBERNOTINORGANIZATION = 'FailedOperation.ExistShareMemberNotInOrganization'
|
100
106
|
|
107
|
+
# 获取账号地域属性错误。
|
108
|
+
FAILEDOPERATION_GETACCOUNTREGION = 'FailedOperation.GetAccountRegion'
|
109
|
+
|
101
110
|
# 查询实名信息出错。
|
102
111
|
FAILEDOPERATION_GETAUTHINFO = 'FailedOperation.GetAuthInfo'
|
103
112
|
|
@@ -131,6 +140,12 @@ FAILEDOPERATION_IDENTITYCENTERNOTORGANIZATIONMANAGER = 'FailedOperation.Identity
|
|
131
140
|
# 用户没有开通集团账号,无法开通CIC服务
|
132
141
|
FAILEDOPERATION_IDENTITYCENTERORGANIZATIONNOTOPEN = 'FailedOperation.IdentityCenterOrganizationNotOpen'
|
133
142
|
|
143
|
+
# 上传文件不合法。
|
144
|
+
FAILEDOPERATION_IMPORTFILEILLEGAL = 'FailedOperation.ImportFileIllegal'
|
145
|
+
|
146
|
+
# 邀请已存在。
|
147
|
+
FAILEDOPERATION_INVITATIONEXIST = 'FailedOperation.InvitationExist'
|
148
|
+
|
134
149
|
# 邮箱绑定失败。
|
135
150
|
FAILEDOPERATION_MEMBERBINDEMAILERROR = 'FailedOperation.MemberBindEmailError'
|
136
151
|
|
@@ -143,6 +158,9 @@ FAILEDOPERATION_MEMBEREMAILEXIST = 'FailedOperation.MemberEmailExist'
|
|
143
158
|
# 成员存在代付者,不允许删除。
|
144
159
|
FAILEDOPERATION_MEMBEREXISTDELEGATEPAYERNOTALLOWDELETE = 'FailedOperation.MemberExistDelegatePayerNotAllowDelete'
|
145
160
|
|
161
|
+
# 成员已存其他组织中。
|
162
|
+
FAILEDOPERATION_MEMBEREXISTINOTHERORGANIZATION = 'FailedOperation.MemberExistInOtherOrganization'
|
163
|
+
|
146
164
|
# 成员授权在使用。
|
147
165
|
FAILEDOPERATION_MEMBERIDENTITYAUTHUSED = 'FailedOperation.MemberIdentityAuthUsed'
|
148
166
|
|
@@ -164,6 +182,9 @@ FAILEDOPERATION_METADATACOSPARSINGFAILED = 'FailedOperation.MetadataCosParsingFa
|
|
164
182
|
# 企业组织单元成员不为空。
|
165
183
|
FAILEDOPERATION_NODENOTEMPTY = 'FailedOperation.NodeNotEmpty'
|
166
184
|
|
185
|
+
# 只能邀请同一个站点内的账号。
|
186
|
+
FAILEDOPERATION_NOTSAMEREGION = 'FailedOperation.NotSameRegion'
|
187
|
+
|
167
188
|
# 操作计费侧成员权限错误。
|
168
189
|
FAILEDOPERATION_OPERATEBILLINGPERMISSIONERR = 'FailedOperation.OperateBillingPermissionErr'
|
169
190
|
|
@@ -173,6 +194,9 @@ FAILEDOPERATION_OPERATEPOLICY = 'FailedOperation.OperatePolicy'
|
|
173
194
|
# 成员是主体管理账号,不允许退出组织。
|
174
195
|
FAILEDOPERATION_ORGANIZATIONAUTHMANAGENOTALLOWDELETE = 'FailedOperation.OrganizationAuthManageNotAllowDelete'
|
175
196
|
|
197
|
+
# 实名认证关系已经存在。
|
198
|
+
FAILEDOPERATION_ORGANIZATIONAUTHRELATIONEXIST = 'FailedOperation.OrganizationAuthRelationExist'
|
199
|
+
|
176
200
|
# 解绑最后一个策略失败。
|
177
201
|
FAILEDOPERATION_ORGANIZATIONDETACHLASTPOLICYERROR = 'FailedOperation.OrganizationDetachLastPolicyError'
|
178
202
|
|
@@ -191,6 +215,9 @@ FAILEDOPERATION_ORGANIZATIONIDENTITYNAMEUSED = 'FailedOperation.OrganizationIden
|
|
191
215
|
# 组织身份策略不合法。
|
192
216
|
FAILEDOPERATION_ORGANIZATIONIDENTITYPOLICYERROR = 'FailedOperation.OrganizationIdentityPolicyError'
|
193
217
|
|
218
|
+
# 成员已存在。
|
219
|
+
FAILEDOPERATION_ORGANIZATIONMEMBEREXIST = 'FailedOperation.OrganizationMemberExist'
|
220
|
+
|
194
221
|
# 成员名已存在。
|
195
222
|
FAILEDOPERATION_ORGANIZATIONMEMBERNAMEUSED = 'FailedOperation.OrganizationMemberNameUsed'
|
196
223
|
|
@@ -254,6 +281,9 @@ FAILEDOPERATION_QUITSHAREUINTERROR = 'FailedOperation.QuitShareUintError'
|
|
254
281
|
# 退出共享单元失败。
|
255
282
|
FAILEDOPERATION_QUITESHAREUNIT = 'FailedOperation.QuiteShareUnit'
|
256
283
|
|
284
|
+
# 重复发送邀请。
|
285
|
+
FAILEDOPERATION_RESENTINVITATION = 'FailedOperation.ReSentInvitation'
|
286
|
+
|
257
287
|
# 资源超过最大上限。
|
258
288
|
FAILEDOPERATION_RESOURCEOVERLIMIT = 'FailedOperation.ResourceOverLimit'
|
259
289
|
|
@@ -332,6 +362,9 @@ FAILEDOPERATION_SYNCHRONIZEDUSERNOTUPDATE = 'FailedOperation.SynchronizedUserNot
|
|
332
362
|
# 权限配置绑定系统策略超过上限
|
333
363
|
FAILEDOPERATION_SYSTEMPOLICYOVERUPPERLIMIT = 'FailedOperation.SystemPolicyOverUpperLimit'
|
334
364
|
|
365
|
+
# 打标签异常。
|
366
|
+
FAILEDOPERATION_TAGRESOURCESERROR = 'FailedOperation.TagResourcesError'
|
367
|
+
|
335
368
|
# 上传数据文件失败。
|
336
369
|
FAILEDOPERATION_UPLOADMETADATAFAILED = 'FailedOperation.UploadMetadataFailed'
|
337
370
|
|
@@ -494,6 +527,9 @@ INVALIDPARAMETER_POLICYNAMEEXISTED = 'InvalidParameter.PolicyNameExisted'
|
|
494
527
|
# 策略名称长度超限。
|
495
528
|
INVALIDPARAMETER_POLICYNAMESIZEOVERUPPERLIMIT = 'InvalidParameter.PolicyNameSizeOverUpperLimit'
|
496
529
|
|
530
|
+
# 修改策略类型错误,只允许修改自定义策略
|
531
|
+
INVALIDPARAMETER_POLICYTYPEERROR = 'InvalidParameter.PolicyTypeError'
|
532
|
+
|
497
533
|
# 策略文档的principal字段不合法。
|
498
534
|
INVALIDPARAMETER_PRINCIPALERROR = 'InvalidParameter.PrincipalError'
|
499
535
|
|
@@ -542,6 +578,9 @@ INVALIDPARAMETER_ROLEPOLICYNOTEXIST = 'InvalidParameter.RolePolicyNotExist'
|
|
542
578
|
# 策略文档的Statement字段不合法。
|
543
579
|
INVALIDPARAMETER_STATEMENTERROR = 'InvalidParameter.StatementError'
|
544
580
|
|
581
|
+
# 标签值错误。
|
582
|
+
INVALIDPARAMETER_TAGERROR = 'InvalidParameter.TagError'
|
583
|
+
|
545
584
|
# 当前业务不支持标签操作。
|
546
585
|
INVALIDPARAMETER_UNSUPPORTEDSERVICE = 'InvalidParameter.UnsupportedService'
|
547
586
|
|
@@ -596,6 +635,9 @@ LIMITEXCEEDED_EMAILBINDOVERLIMIT = 'LimitExceeded.EmailBindOverLimit'
|
|
596
635
|
# 组织身份超过最大限制。
|
597
636
|
LIMITEXCEEDED_IDENTITYEXCEEDLIMIT = 'LimitExceeded.IdentityExceedLimit'
|
598
637
|
|
638
|
+
# 邀请超过上限。
|
639
|
+
LIMITEXCEEDED_INVITATIONOVERLIMIT = 'LimitExceeded.InvitationOverLimit'
|
640
|
+
|
599
641
|
# 企业组织单元层级太多。
|
600
642
|
LIMITEXCEEDED_NODEDEPTHEXCEEDLIMIT = 'LimitExceeded.NodeDepthExceedLimit'
|
601
643
|
|
@@ -749,12 +791,18 @@ UNSUPPORTEDOPERATION = 'UnsupportedOperation'
|
|
749
791
|
# 代付者财务状态异常,不支持代付费。
|
750
792
|
UNSUPPORTEDOPERATION_ABNORMALFINANCIALSTATUSOFADMIN = 'UnsupportedOperation.AbnormalFinancialStatusOfAdmin'
|
751
793
|
|
794
|
+
# 成员财务状态异常,不支持代付费。
|
795
|
+
UNSUPPORTEDOPERATION_ABNORMALFINANCIALSTATUSOFMEMBER = 'UnsupportedOperation.AbnormalFinancialStatusOfMember'
|
796
|
+
|
752
797
|
# 不允许添加代付关系。
|
753
798
|
UNSUPPORTEDOPERATION_ADDDELEGATEPAYERNOTALLOW = 'UnsupportedOperation.AddDelegatePayerNotAllow'
|
754
799
|
|
755
800
|
# 不允许添加优惠继承关系。
|
756
801
|
UNSUPPORTEDOPERATION_ADDDISCOUNTINHERITNOTALLOW = 'UnsupportedOperation.AddDiscountInheritNotAllow'
|
757
802
|
|
803
|
+
# 管理员和成员的经销商不一致。
|
804
|
+
UNSUPPORTEDOPERATION_AGENTNOTSAME = 'UnsupportedOperation.AgentNotSame'
|
805
|
+
|
758
806
|
# 创建的成员不允许创建组织。
|
759
807
|
UNSUPPORTEDOPERATION_CREATEMEMBERNOTALLOWCREATEORGANIZATION = 'UnsupportedOperation.CreateMemberNotAllowCreateOrganization'
|
760
808
|
|
@@ -803,9 +851,15 @@ UNSUPPORTEDOPERATION_MEMBEREXISTOPERATEPROCESSNOTALLOWDELETE = 'UnsupportedOpera
|
|
803
851
|
# 成员是集团服务委派管理员,不允许退出组织。
|
804
852
|
UNSUPPORTEDOPERATION_MEMBEREXISTSERVICENOTALLOWDELETE = 'UnsupportedOperation.MemberExistServiceNotAllowDelete'
|
805
853
|
|
854
|
+
# 成员存在代金劵,不支持代付费。
|
855
|
+
UNSUPPORTEDOPERATION_MEMBERHASVOUCHER = 'UnsupportedOperation.MemberHasVoucher'
|
856
|
+
|
806
857
|
# 账号是代理商或代客。
|
807
858
|
UNSUPPORTEDOPERATION_MEMBERISAGENT = 'UnsupportedOperation.MemberIsAgent'
|
808
859
|
|
860
|
+
# 成员不是经销子客。
|
861
|
+
UNSUPPORTEDOPERATION_MEMBERISNOTCLIENT = 'UnsupportedOperation.MemberIsNotClient'
|
862
|
+
|
809
863
|
# 成员没有绑卡。
|
810
864
|
UNSUPPORTEDOPERATION_MEMBERNOPAYMENT = 'UnsupportedOperation.MemberNoPayment'
|
811
865
|
|