tencentcloud-sdk-python 3.0.1375__py2.py3-none-any.whl → 3.0.1377__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/apm/v20210622/models.py +30 -0
- tencentcloud/asr/v20190614/models.py +15 -0
- tencentcloud/bh/v20230418/models.py +317 -2
- tencentcloud/cat/v20180409/cat_client.py +23 -0
- tencentcloud/cat/v20180409/models.py +161 -0
- tencentcloud/cdb/v20170320/cdb_client.py +0 -25
- tencentcloud/cdb/v20170320/models.py +0 -113
- tencentcloud/cfs/v20190719/models.py +19 -0
- tencentcloud/cfw/v20190904/models.py +17 -2
- tencentcloud/dsgc/v20190723/models.py +15 -0
- tencentcloud/ess/v20201111/ess_client.py +28 -1
- tencentcloud/ess/v20201111/models.py +186 -4
- tencentcloud/essbasic/v20210526/essbasic_client.py +27 -0
- tencentcloud/essbasic/v20210526/models.py +220 -4
- tencentcloud/gaap/v20180529/errorcodes.py +0 -33
- tencentcloud/gaap/v20180529/gaap_client.py +0 -75
- tencentcloud/gaap/v20180529/models.py +0 -653
- tencentcloud/hunyuan/v20230901/hunyuan_client.py +25 -0
- tencentcloud/hunyuan/v20230901/models.py +330 -8
- tencentcloud/iai/v20180301/models.py +44 -34
- tencentcloud/keewidb/v20220308/models.py +4 -0
- tencentcloud/lighthouse/v20200324/models.py +4 -4
- tencentcloud/mongodb/v20190725/models.py +4 -0
- tencentcloud/partners/v20180321/models.py +266 -0
- tencentcloud/partners/v20180321/partners_client.py +23 -0
- tencentcloud/postgres/v20170312/models.py +2 -8
- tencentcloud/redis/v20180412/models.py +48 -0
- tencentcloud/tcbr/v20220217/models.py +162 -0
- tencentcloud/tdmq/v20200217/models.py +6 -6
- tencentcloud/teo/v20220901/errorcodes.py +12 -0
- tencentcloud/teo/v20220901/models.py +4 -4
- tencentcloud/thpc/v20230321/errorcodes.py +6 -0
- tencentcloud/thpc/v20230321/models.py +4 -4
- tencentcloud/vpc/v20170312/models.py +36 -38
- tencentcloud/vpc/v20170312/vpc_client.py +1 -1
- tencentcloud/waf/v20180125/errorcodes.py +12 -0
- tencentcloud/waf/v20180125/models.py +291 -29
- tencentcloud/wedata/v20210820/models.py +2717 -0
- tencentcloud/wedata/v20210820/wedata_client.py +184 -0
- {tencentcloud_sdk_python-3.0.1375.dist-info → tencentcloud_sdk_python-3.0.1377.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1375.dist-info → tencentcloud_sdk_python-3.0.1377.dist-info}/RECORD +45 -45
- {tencentcloud_sdk_python-3.0.1375.dist-info → tencentcloud_sdk_python-3.0.1377.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1375.dist-info → tencentcloud_sdk_python-3.0.1377.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1375.dist-info → tencentcloud_sdk_python-3.0.1377.dist-info}/top_level.txt +0 -0
@@ -2944,9 +2944,9 @@ class Component(AbstractModel):
|
|
2944
2944
|
1. 页码编号是从<font color="red">1</font>开始编号的。
|
2945
2945
|
2. <font color="red">页面编号不能超过PDF文件的页码总数</font>。如果指定的页码超过了PDF文件的页码总数,在填写和签署时会出现错误,导致无法正常进行操作。
|
2946
2946
|
:type ComponentPage: int
|
2947
|
-
:param _ComponentPosX:
|
2947
|
+
:param _ComponentPosX: **在绝对定位方式下**,可以指定控件横向位置的位置,单位为pt(点)。
|
2948
2948
|
:type ComponentPosX: float
|
2949
|
-
:param _ComponentPosY:
|
2949
|
+
:param _ComponentPosY: **在绝对定位方式下**,可以指定控件纵向位置的位置,单位为pt(点)。
|
2950
2950
|
:type ComponentPosY: float
|
2951
2951
|
:param _FileIndex: <font color="red">【暂未使用】</font>控件所属文件的序号(取值为:0-N)。 目前单文件的情况下,值一直为0
|
2952
2952
|
:type FileIndex: int
|
@@ -3286,7 +3286,7 @@ ChildrenComponent结构体定义:
|
|
3286
3286
|
|
3287
3287
|
@property
|
3288
3288
|
def ComponentPosX(self):
|
3289
|
-
"""
|
3289
|
+
"""**在绝对定位方式下**,可以指定控件横向位置的位置,单位为pt(点)。
|
3290
3290
|
:rtype: float
|
3291
3291
|
"""
|
3292
3292
|
return self._ComponentPosX
|
@@ -3297,7 +3297,7 @@ ChildrenComponent结构体定义:
|
|
3297
3297
|
|
3298
3298
|
@property
|
3299
3299
|
def ComponentPosY(self):
|
3300
|
-
"""
|
3300
|
+
"""**在绝对定位方式下**,可以指定控件纵向位置的位置,单位为pt(点)。
|
3301
3301
|
:rtype: float
|
3302
3302
|
"""
|
3303
3303
|
return self._ComponentPosY
|
@@ -12294,6 +12294,8 @@ UserId必须是传入合同(FlowId)中的签署人。
|
|
12294
12294
|
您可以通过查询合同接口(DescribeFlowInfo)查询此参数。
|
12295
12295
|
若传了此参数,则可以不传 UserId, Name, Mobile等参数
|
12296
12296
|
:type RecipientIds: list of str
|
12297
|
+
:param _FlowGroupId: 合同组Id,传入此参数则可以不传FlowIds
|
12298
|
+
:type FlowGroupId: str
|
12297
12299
|
"""
|
12298
12300
|
self._Operator = None
|
12299
12301
|
self._FlowIds = None
|
@@ -12302,6 +12304,7 @@ UserId必须是传入合同(FlowId)中的签署人。
|
|
12302
12304
|
self._Name = None
|
12303
12305
|
self._Mobile = None
|
12304
12306
|
self._RecipientIds = None
|
12307
|
+
self._FlowGroupId = None
|
12305
12308
|
|
12306
12309
|
@property
|
12307
12310
|
def Operator(self):
|
@@ -12397,6 +12400,17 @@ UserId必须是传入合同(FlowId)中的签署人。
|
|
12397
12400
|
def RecipientIds(self, RecipientIds):
|
12398
12401
|
self._RecipientIds = RecipientIds
|
12399
12402
|
|
12403
|
+
@property
|
12404
|
+
def FlowGroupId(self):
|
12405
|
+
"""合同组Id,传入此参数则可以不传FlowIds
|
12406
|
+
:rtype: str
|
12407
|
+
"""
|
12408
|
+
return self._FlowGroupId
|
12409
|
+
|
12410
|
+
@FlowGroupId.setter
|
12411
|
+
def FlowGroupId(self, FlowGroupId):
|
12412
|
+
self._FlowGroupId = FlowGroupId
|
12413
|
+
|
12400
12414
|
|
12401
12415
|
def _deserialize(self, params):
|
12402
12416
|
if params.get("Operator") is not None:
|
@@ -12410,6 +12424,7 @@ UserId必须是传入合同(FlowId)中的签署人。
|
|
12410
12424
|
self._Name = params.get("Name")
|
12411
12425
|
self._Mobile = params.get("Mobile")
|
12412
12426
|
self._RecipientIds = params.get("RecipientIds")
|
12427
|
+
self._FlowGroupId = params.get("FlowGroupId")
|
12413
12428
|
memeber_set = set(params.keys())
|
12414
12429
|
for name, value in vars(self).items():
|
12415
12430
|
property_name = name[1:]
|
@@ -13237,6 +13252,173 @@ class CreatePersonAuthCertificateImageResponse(AbstractModel):
|
|
13237
13252
|
self._RequestId = params.get("RequestId")
|
13238
13253
|
|
13239
13254
|
|
13255
|
+
class CreatePrepareFlowGroupRequest(AbstractModel):
|
13256
|
+
"""CreatePrepareFlowGroup请求参数结构体
|
13257
|
+
|
13258
|
+
"""
|
13259
|
+
|
13260
|
+
def __init__(self):
|
13261
|
+
r"""
|
13262
|
+
:param _Operator: 执行本接口操作的员工信息。
|
13263
|
+
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
13264
|
+
:type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
13265
|
+
:param _FlowGroupName: 合同(流程)组名称(可自定义此名称),长度不能超过200,只能由中文、字母、数字和下划线组成。
|
13266
|
+
:type FlowGroupName: str
|
13267
|
+
:param _FlowGroupInfos: 合同(流程)组的子合同信息,支持2-50个子合同
|
13268
|
+
:type FlowGroupInfos: list of FlowGroupInfo
|
13269
|
+
:param _ResourceType: 资源类型,取值有: <ul><li> **1**:模板</li> <li> **2**:文件</li></ul>
|
13270
|
+
:type ResourceType: int
|
13271
|
+
:param _Agent: 代理企业和员工的信息。
|
13272
|
+
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
13273
|
+
:type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
|
13274
|
+
"""
|
13275
|
+
self._Operator = None
|
13276
|
+
self._FlowGroupName = None
|
13277
|
+
self._FlowGroupInfos = None
|
13278
|
+
self._ResourceType = None
|
13279
|
+
self._Agent = None
|
13280
|
+
|
13281
|
+
@property
|
13282
|
+
def Operator(self):
|
13283
|
+
"""执行本接口操作的员工信息。
|
13284
|
+
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
13285
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
13286
|
+
"""
|
13287
|
+
return self._Operator
|
13288
|
+
|
13289
|
+
@Operator.setter
|
13290
|
+
def Operator(self, Operator):
|
13291
|
+
self._Operator = Operator
|
13292
|
+
|
13293
|
+
@property
|
13294
|
+
def FlowGroupName(self):
|
13295
|
+
"""合同(流程)组名称(可自定义此名称),长度不能超过200,只能由中文、字母、数字和下划线组成。
|
13296
|
+
:rtype: str
|
13297
|
+
"""
|
13298
|
+
return self._FlowGroupName
|
13299
|
+
|
13300
|
+
@FlowGroupName.setter
|
13301
|
+
def FlowGroupName(self, FlowGroupName):
|
13302
|
+
self._FlowGroupName = FlowGroupName
|
13303
|
+
|
13304
|
+
@property
|
13305
|
+
def FlowGroupInfos(self):
|
13306
|
+
"""合同(流程)组的子合同信息,支持2-50个子合同
|
13307
|
+
:rtype: list of FlowGroupInfo
|
13308
|
+
"""
|
13309
|
+
return self._FlowGroupInfos
|
13310
|
+
|
13311
|
+
@FlowGroupInfos.setter
|
13312
|
+
def FlowGroupInfos(self, FlowGroupInfos):
|
13313
|
+
self._FlowGroupInfos = FlowGroupInfos
|
13314
|
+
|
13315
|
+
@property
|
13316
|
+
def ResourceType(self):
|
13317
|
+
"""资源类型,取值有: <ul><li> **1**:模板</li> <li> **2**:文件</li></ul>
|
13318
|
+
:rtype: int
|
13319
|
+
"""
|
13320
|
+
return self._ResourceType
|
13321
|
+
|
13322
|
+
@ResourceType.setter
|
13323
|
+
def ResourceType(self, ResourceType):
|
13324
|
+
self._ResourceType = ResourceType
|
13325
|
+
|
13326
|
+
@property
|
13327
|
+
def Agent(self):
|
13328
|
+
"""代理企业和员工的信息。
|
13329
|
+
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
13330
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.Agent`
|
13331
|
+
"""
|
13332
|
+
return self._Agent
|
13333
|
+
|
13334
|
+
@Agent.setter
|
13335
|
+
def Agent(self, Agent):
|
13336
|
+
self._Agent = Agent
|
13337
|
+
|
13338
|
+
|
13339
|
+
def _deserialize(self, params):
|
13340
|
+
if params.get("Operator") is not None:
|
13341
|
+
self._Operator = UserInfo()
|
13342
|
+
self._Operator._deserialize(params.get("Operator"))
|
13343
|
+
self._FlowGroupName = params.get("FlowGroupName")
|
13344
|
+
if params.get("FlowGroupInfos") is not None:
|
13345
|
+
self._FlowGroupInfos = []
|
13346
|
+
for item in params.get("FlowGroupInfos"):
|
13347
|
+
obj = FlowGroupInfo()
|
13348
|
+
obj._deserialize(item)
|
13349
|
+
self._FlowGroupInfos.append(obj)
|
13350
|
+
self._ResourceType = params.get("ResourceType")
|
13351
|
+
if params.get("Agent") is not None:
|
13352
|
+
self._Agent = Agent()
|
13353
|
+
self._Agent._deserialize(params.get("Agent"))
|
13354
|
+
memeber_set = set(params.keys())
|
13355
|
+
for name, value in vars(self).items():
|
13356
|
+
property_name = name[1:]
|
13357
|
+
if property_name in memeber_set:
|
13358
|
+
memeber_set.remove(property_name)
|
13359
|
+
if len(memeber_set) > 0:
|
13360
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
13361
|
+
|
13362
|
+
|
13363
|
+
|
13364
|
+
class CreatePrepareFlowGroupResponse(AbstractModel):
|
13365
|
+
"""CreatePrepareFlowGroup返回参数结构体
|
13366
|
+
|
13367
|
+
"""
|
13368
|
+
|
13369
|
+
def __init__(self):
|
13370
|
+
r"""
|
13371
|
+
:param _FlowGroupId: 合同(流程)组的合同组Id
|
13372
|
+
:type FlowGroupId: str
|
13373
|
+
:param _PrepareUrl: 嵌入式合同组发起链接
|
13374
|
+
:type PrepareUrl: str
|
13375
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13376
|
+
:type RequestId: str
|
13377
|
+
"""
|
13378
|
+
self._FlowGroupId = None
|
13379
|
+
self._PrepareUrl = None
|
13380
|
+
self._RequestId = None
|
13381
|
+
|
13382
|
+
@property
|
13383
|
+
def FlowGroupId(self):
|
13384
|
+
"""合同(流程)组的合同组Id
|
13385
|
+
:rtype: str
|
13386
|
+
"""
|
13387
|
+
return self._FlowGroupId
|
13388
|
+
|
13389
|
+
@FlowGroupId.setter
|
13390
|
+
def FlowGroupId(self, FlowGroupId):
|
13391
|
+
self._FlowGroupId = FlowGroupId
|
13392
|
+
|
13393
|
+
@property
|
13394
|
+
def PrepareUrl(self):
|
13395
|
+
"""嵌入式合同组发起链接
|
13396
|
+
:rtype: str
|
13397
|
+
"""
|
13398
|
+
return self._PrepareUrl
|
13399
|
+
|
13400
|
+
@PrepareUrl.setter
|
13401
|
+
def PrepareUrl(self, PrepareUrl):
|
13402
|
+
self._PrepareUrl = PrepareUrl
|
13403
|
+
|
13404
|
+
@property
|
13405
|
+
def RequestId(self):
|
13406
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13407
|
+
:rtype: str
|
13408
|
+
"""
|
13409
|
+
return self._RequestId
|
13410
|
+
|
13411
|
+
@RequestId.setter
|
13412
|
+
def RequestId(self, RequestId):
|
13413
|
+
self._RequestId = RequestId
|
13414
|
+
|
13415
|
+
|
13416
|
+
def _deserialize(self, params):
|
13417
|
+
self._FlowGroupId = params.get("FlowGroupId")
|
13418
|
+
self._PrepareUrl = params.get("PrepareUrl")
|
13419
|
+
self._RequestId = params.get("RequestId")
|
13420
|
+
|
13421
|
+
|
13240
13422
|
class CreatePrepareFlowRequest(AbstractModel):
|
13241
13423
|
"""CreatePrepareFlow请求参数结构体
|
13242
13424
|
|
@@ -931,6 +931,33 @@ class EssbasicClient(AbstractClient):
|
|
931
931
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
932
932
|
|
933
933
|
|
934
|
+
def ChannelCreatePrepareFlowGroup(self, request):
|
935
|
+
"""接口(ChannelCreatePrepareFlowGroup)用于创建嵌入式合同组签署流程。
|
936
|
+
|
937
|
+
- 该接口当前仅支持文件发起
|
938
|
+
- 该接口能力和ChannelCreateFlowGroupByFiles,~~ChannelCreateFlowGroupByTemplates~~保持一致。
|
939
|
+
- 返回的FlowGroupId 为临时id,只有在页面内成功发起后FlowGroupId才会有效。
|
940
|
+
|
941
|
+
:param request: Request instance for ChannelCreatePrepareFlowGroup.
|
942
|
+
:type request: :class:`tencentcloud.essbasic.v20210526.models.ChannelCreatePrepareFlowGroupRequest`
|
943
|
+
:rtype: :class:`tencentcloud.essbasic.v20210526.models.ChannelCreatePrepareFlowGroupResponse`
|
944
|
+
|
945
|
+
"""
|
946
|
+
try:
|
947
|
+
params = request._serialize()
|
948
|
+
headers = request.headers
|
949
|
+
body = self.call("ChannelCreatePrepareFlowGroup", params, headers=headers)
|
950
|
+
response = json.loads(body)
|
951
|
+
model = models.ChannelCreatePrepareFlowGroupResponse()
|
952
|
+
model._deserialize(response["Response"])
|
953
|
+
return model
|
954
|
+
except Exception as e:
|
955
|
+
if isinstance(e, TencentCloudSDKException):
|
956
|
+
raise
|
957
|
+
else:
|
958
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
959
|
+
|
960
|
+
|
934
961
|
def ChannelCreatePreparedPersonalEsign(self, request):
|
935
962
|
"""本接口(ChannelCreatePreparedPersonalEsign)用于创建导入个人印章(处方单场景专用,使用此接口请与客户经理确认)。
|
936
963
|
|
@@ -1089,6 +1089,10 @@ class BaseFlowInfo(AbstractModel):
|
|
1089
1089
|
:param _FlowDisplayType: 在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li><li> <b>3</b> :文书</li></ul>效果如下:
|
1090
1090
|
|
1091
1091
|
:type FlowDisplayType: int
|
1092
|
+
:param _FileIds: 签署文件资源Id列表,目前仅支持单个文件
|
1093
|
+
:type FileIds: list of str
|
1094
|
+
:param _Approvers: 合同签署人信息
|
1095
|
+
:type Approvers: list of CommonFlowApprover
|
1092
1096
|
"""
|
1093
1097
|
self._FlowName = None
|
1094
1098
|
self._Deadline = None
|
@@ -1103,6 +1107,8 @@ class BaseFlowInfo(AbstractModel):
|
|
1103
1107
|
self._NeedCreateReview = None
|
1104
1108
|
self._Components = None
|
1105
1109
|
self._FlowDisplayType = None
|
1110
|
+
self._FileIds = None
|
1111
|
+
self._Approvers = None
|
1106
1112
|
|
1107
1113
|
@property
|
1108
1114
|
def FlowName(self):
|
@@ -1266,6 +1272,28 @@ class BaseFlowInfo(AbstractModel):
|
|
1266
1272
|
def FlowDisplayType(self, FlowDisplayType):
|
1267
1273
|
self._FlowDisplayType = FlowDisplayType
|
1268
1274
|
|
1275
|
+
@property
|
1276
|
+
def FileIds(self):
|
1277
|
+
"""签署文件资源Id列表,目前仅支持单个文件
|
1278
|
+
:rtype: list of str
|
1279
|
+
"""
|
1280
|
+
return self._FileIds
|
1281
|
+
|
1282
|
+
@FileIds.setter
|
1283
|
+
def FileIds(self, FileIds):
|
1284
|
+
self._FileIds = FileIds
|
1285
|
+
|
1286
|
+
@property
|
1287
|
+
def Approvers(self):
|
1288
|
+
"""合同签署人信息
|
1289
|
+
:rtype: list of CommonFlowApprover
|
1290
|
+
"""
|
1291
|
+
return self._Approvers
|
1292
|
+
|
1293
|
+
@Approvers.setter
|
1294
|
+
def Approvers(self, Approvers):
|
1295
|
+
self._Approvers = Approvers
|
1296
|
+
|
1269
1297
|
|
1270
1298
|
def _deserialize(self, params):
|
1271
1299
|
self._FlowName = params.get("FlowName")
|
@@ -1296,6 +1324,13 @@ class BaseFlowInfo(AbstractModel):
|
|
1296
1324
|
obj._deserialize(item)
|
1297
1325
|
self._Components.append(obj)
|
1298
1326
|
self._FlowDisplayType = params.get("FlowDisplayType")
|
1327
|
+
self._FileIds = params.get("FileIds")
|
1328
|
+
if params.get("Approvers") is not None:
|
1329
|
+
self._Approvers = []
|
1330
|
+
for item in params.get("Approvers"):
|
1331
|
+
obj = CommonFlowApprover()
|
1332
|
+
obj._deserialize(item)
|
1333
|
+
self._Approvers.append(obj)
|
1299
1334
|
memeber_set = set(params.keys())
|
1300
1335
|
for name, value in vars(self).items():
|
1301
1336
|
property_name = name[1:]
|
@@ -6263,12 +6298,15 @@ class ChannelCreateOrganizationBatchSignUrlRequest(AbstractModel):
|
|
6263
6298
|
:type Name: str
|
6264
6299
|
:param _Mobile: 员工手机号,必须与姓名一起使用。 如果OpenId为空,则此字段不能为空。同时,姓名和手机号码必须与传入合同(FlowId)中的签署人信息一致。
|
6265
6300
|
:type Mobile: str
|
6301
|
+
:param _FlowGroupId: 合同组Id,传入此参数则可以不传FlowIds
|
6302
|
+
:type FlowGroupId: str
|
6266
6303
|
"""
|
6267
6304
|
self._Agent = None
|
6268
6305
|
self._FlowIds = None
|
6269
6306
|
self._OpenId = None
|
6270
6307
|
self._Name = None
|
6271
6308
|
self._Mobile = None
|
6309
|
+
self._FlowGroupId = None
|
6272
6310
|
|
6273
6311
|
@property
|
6274
6312
|
def Agent(self):
|
@@ -6333,6 +6371,17 @@ class ChannelCreateOrganizationBatchSignUrlRequest(AbstractModel):
|
|
6333
6371
|
def Mobile(self, Mobile):
|
6334
6372
|
self._Mobile = Mobile
|
6335
6373
|
|
6374
|
+
@property
|
6375
|
+
def FlowGroupId(self):
|
6376
|
+
"""合同组Id,传入此参数则可以不传FlowIds
|
6377
|
+
:rtype: str
|
6378
|
+
"""
|
6379
|
+
return self._FlowGroupId
|
6380
|
+
|
6381
|
+
@FlowGroupId.setter
|
6382
|
+
def FlowGroupId(self, FlowGroupId):
|
6383
|
+
self._FlowGroupId = FlowGroupId
|
6384
|
+
|
6336
6385
|
|
6337
6386
|
def _deserialize(self, params):
|
6338
6387
|
if params.get("Agent") is not None:
|
@@ -6342,6 +6391,7 @@ class ChannelCreateOrganizationBatchSignUrlRequest(AbstractModel):
|
|
6342
6391
|
self._OpenId = params.get("OpenId")
|
6343
6392
|
self._Name = params.get("Name")
|
6344
6393
|
self._Mobile = params.get("Mobile")
|
6394
|
+
self._FlowGroupId = params.get("FlowGroupId")
|
6345
6395
|
memeber_set = set(params.keys())
|
6346
6396
|
for name, value in vars(self).items():
|
6347
6397
|
property_name = name[1:]
|
@@ -6520,6 +6570,172 @@ class ChannelCreateOrganizationModifyQrCodeResponse(AbstractModel):
|
|
6520
6570
|
self._RequestId = params.get("RequestId")
|
6521
6571
|
|
6522
6572
|
|
6573
|
+
class ChannelCreatePrepareFlowGroupRequest(AbstractModel):
|
6574
|
+
"""ChannelCreatePrepareFlowGroup请求参数结构体
|
6575
|
+
|
6576
|
+
"""
|
6577
|
+
|
6578
|
+
def __init__(self):
|
6579
|
+
r"""
|
6580
|
+
:param _BaseFlowInfos: 合同组中每个合同签署流程的信息,合同组中最少包含2个合同,不能超过50个合同。
|
6581
|
+
:type BaseFlowInfos: list of BaseFlowInfo
|
6582
|
+
:param _FlowGroupName: 合同组的名称(可自定义此名称),长度不能超过200,只能由中文、字母、数字和下划线组成。
|
6583
|
+
:type FlowGroupName: str
|
6584
|
+
:param _ResourceType: 资源类型,取值有: <ul><li> **1**:模板</li> <li> **2**:文件</li></ul>
|
6585
|
+
:type ResourceType: int
|
6586
|
+
:param _Agent: 合同的发起企业和发起人信息,<a href="https://qcloudimg.tencent-cloud.cn/raw/b69f8aad306c40b7b78d096e39b2edbb.png" target="_blank">点击查看合同发起企业和人展示的位置</a>
|
6587
|
+
|
6588
|
+
此接口下面信息必填。
|
6589
|
+
<ul>
|
6590
|
+
<li>渠道应用标识: <a href="https://qcloudimg.tencent-cloud.cn/raw/a71872de3d540d55451e3e73a2ad1a6e.png" target="_blank">Agent.AppId</a></li>
|
6591
|
+
<li>第三方平台子客企业标识: Agent.ProxyOrganizationOpenId(合同的发起企业)</li>
|
6592
|
+
<li>第三方平台子客企业中的员工标识: Agent.ProxyOperator.OpenId (合同的发起人)</li>
|
6593
|
+
</ul>
|
6594
|
+
|
6595
|
+
合同的发起企业和发起人必需已经完成实名,并加入企业
|
6596
|
+
:type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
|
6597
|
+
"""
|
6598
|
+
self._BaseFlowInfos = None
|
6599
|
+
self._FlowGroupName = None
|
6600
|
+
self._ResourceType = None
|
6601
|
+
self._Agent = None
|
6602
|
+
|
6603
|
+
@property
|
6604
|
+
def BaseFlowInfos(self):
|
6605
|
+
"""合同组中每个合同签署流程的信息,合同组中最少包含2个合同,不能超过50个合同。
|
6606
|
+
:rtype: list of BaseFlowInfo
|
6607
|
+
"""
|
6608
|
+
return self._BaseFlowInfos
|
6609
|
+
|
6610
|
+
@BaseFlowInfos.setter
|
6611
|
+
def BaseFlowInfos(self, BaseFlowInfos):
|
6612
|
+
self._BaseFlowInfos = BaseFlowInfos
|
6613
|
+
|
6614
|
+
@property
|
6615
|
+
def FlowGroupName(self):
|
6616
|
+
"""合同组的名称(可自定义此名称),长度不能超过200,只能由中文、字母、数字和下划线组成。
|
6617
|
+
:rtype: str
|
6618
|
+
"""
|
6619
|
+
return self._FlowGroupName
|
6620
|
+
|
6621
|
+
@FlowGroupName.setter
|
6622
|
+
def FlowGroupName(self, FlowGroupName):
|
6623
|
+
self._FlowGroupName = FlowGroupName
|
6624
|
+
|
6625
|
+
@property
|
6626
|
+
def ResourceType(self):
|
6627
|
+
"""资源类型,取值有: <ul><li> **1**:模板</li> <li> **2**:文件</li></ul>
|
6628
|
+
:rtype: int
|
6629
|
+
"""
|
6630
|
+
return self._ResourceType
|
6631
|
+
|
6632
|
+
@ResourceType.setter
|
6633
|
+
def ResourceType(self, ResourceType):
|
6634
|
+
self._ResourceType = ResourceType
|
6635
|
+
|
6636
|
+
@property
|
6637
|
+
def Agent(self):
|
6638
|
+
"""合同的发起企业和发起人信息,<a href="https://qcloudimg.tencent-cloud.cn/raw/b69f8aad306c40b7b78d096e39b2edbb.png" target="_blank">点击查看合同发起企业和人展示的位置</a>
|
6639
|
+
|
6640
|
+
此接口下面信息必填。
|
6641
|
+
<ul>
|
6642
|
+
<li>渠道应用标识: <a href="https://qcloudimg.tencent-cloud.cn/raw/a71872de3d540d55451e3e73a2ad1a6e.png" target="_blank">Agent.AppId</a></li>
|
6643
|
+
<li>第三方平台子客企业标识: Agent.ProxyOrganizationOpenId(合同的发起企业)</li>
|
6644
|
+
<li>第三方平台子客企业中的员工标识: Agent.ProxyOperator.OpenId (合同的发起人)</li>
|
6645
|
+
</ul>
|
6646
|
+
|
6647
|
+
合同的发起企业和发起人必需已经完成实名,并加入企业
|
6648
|
+
:rtype: :class:`tencentcloud.essbasic.v20210526.models.Agent`
|
6649
|
+
"""
|
6650
|
+
return self._Agent
|
6651
|
+
|
6652
|
+
@Agent.setter
|
6653
|
+
def Agent(self, Agent):
|
6654
|
+
self._Agent = Agent
|
6655
|
+
|
6656
|
+
|
6657
|
+
def _deserialize(self, params):
|
6658
|
+
if params.get("BaseFlowInfos") is not None:
|
6659
|
+
self._BaseFlowInfos = []
|
6660
|
+
for item in params.get("BaseFlowInfos"):
|
6661
|
+
obj = BaseFlowInfo()
|
6662
|
+
obj._deserialize(item)
|
6663
|
+
self._BaseFlowInfos.append(obj)
|
6664
|
+
self._FlowGroupName = params.get("FlowGroupName")
|
6665
|
+
self._ResourceType = params.get("ResourceType")
|
6666
|
+
if params.get("Agent") is not None:
|
6667
|
+
self._Agent = Agent()
|
6668
|
+
self._Agent._deserialize(params.get("Agent"))
|
6669
|
+
memeber_set = set(params.keys())
|
6670
|
+
for name, value in vars(self).items():
|
6671
|
+
property_name = name[1:]
|
6672
|
+
if property_name in memeber_set:
|
6673
|
+
memeber_set.remove(property_name)
|
6674
|
+
if len(memeber_set) > 0:
|
6675
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
6676
|
+
|
6677
|
+
|
6678
|
+
|
6679
|
+
class ChannelCreatePrepareFlowGroupResponse(AbstractModel):
|
6680
|
+
"""ChannelCreatePrepareFlowGroup返回参数结构体
|
6681
|
+
|
6682
|
+
"""
|
6683
|
+
|
6684
|
+
def __init__(self):
|
6685
|
+
r"""
|
6686
|
+
:param _FlowGroupId: 合同组ID,为32位字符串。
|
6687
|
+
建议开发者妥善保存此合同组ID,以便于顺利进行后续操作。
|
6688
|
+
:type FlowGroupId: str
|
6689
|
+
:param _PrepareUrl: 嵌入式发起链接
|
6690
|
+
:type PrepareUrl: str
|
6691
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6692
|
+
:type RequestId: str
|
6693
|
+
"""
|
6694
|
+
self._FlowGroupId = None
|
6695
|
+
self._PrepareUrl = None
|
6696
|
+
self._RequestId = None
|
6697
|
+
|
6698
|
+
@property
|
6699
|
+
def FlowGroupId(self):
|
6700
|
+
"""合同组ID,为32位字符串。
|
6701
|
+
建议开发者妥善保存此合同组ID,以便于顺利进行后续操作。
|
6702
|
+
:rtype: str
|
6703
|
+
"""
|
6704
|
+
return self._FlowGroupId
|
6705
|
+
|
6706
|
+
@FlowGroupId.setter
|
6707
|
+
def FlowGroupId(self, FlowGroupId):
|
6708
|
+
self._FlowGroupId = FlowGroupId
|
6709
|
+
|
6710
|
+
@property
|
6711
|
+
def PrepareUrl(self):
|
6712
|
+
"""嵌入式发起链接
|
6713
|
+
:rtype: str
|
6714
|
+
"""
|
6715
|
+
return self._PrepareUrl
|
6716
|
+
|
6717
|
+
@PrepareUrl.setter
|
6718
|
+
def PrepareUrl(self, PrepareUrl):
|
6719
|
+
self._PrepareUrl = PrepareUrl
|
6720
|
+
|
6721
|
+
@property
|
6722
|
+
def RequestId(self):
|
6723
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6724
|
+
:rtype: str
|
6725
|
+
"""
|
6726
|
+
return self._RequestId
|
6727
|
+
|
6728
|
+
@RequestId.setter
|
6729
|
+
def RequestId(self, RequestId):
|
6730
|
+
self._RequestId = RequestId
|
6731
|
+
|
6732
|
+
|
6733
|
+
def _deserialize(self, params):
|
6734
|
+
self._FlowGroupId = params.get("FlowGroupId")
|
6735
|
+
self._PrepareUrl = params.get("PrepareUrl")
|
6736
|
+
self._RequestId = params.get("RequestId")
|
6737
|
+
|
6738
|
+
|
6523
6739
|
class ChannelCreatePrepareFlowRequest(AbstractModel):
|
6524
6740
|
"""ChannelCreatePrepareFlow请求参数结构体
|
6525
6741
|
|
@@ -12338,9 +12554,9 @@ class Component(AbstractModel):
|
|
12338
12554
|
1. 页码编号是从<font color="red">1</font>开始编号的。
|
12339
12555
|
2. <font color="red">页面编号不能超过PDF文件的页码总数</font>。如果指定的页码超过了PDF文件的页码总数,在填写和签署时会出现错误,导致无法正常进行操作。
|
12340
12556
|
:type ComponentPage: int
|
12341
|
-
:param _ComponentPosX:
|
12557
|
+
:param _ComponentPosX: **在绝对定位方式下**,可以指定控件横向位置的位置,单位为pt(点)。
|
12342
12558
|
:type ComponentPosX: float
|
12343
|
-
:param _ComponentPosY:
|
12559
|
+
:param _ComponentPosY: **在绝对定位方式下**,可以指定控件纵向位置的位置,单位为pt(点)。
|
12344
12560
|
:type ComponentPosY: float
|
12345
12561
|
:param _ComponentExtra: **在所有的定位方式下**,控件的扩展参数,为<font color="red">JSON格式</font>,不同类型的控件会有部分非通用参数。
|
12346
12562
|
|
@@ -12732,7 +12948,7 @@ ChildrenComponent结构体定义:
|
|
12732
12948
|
|
12733
12949
|
@property
|
12734
12950
|
def ComponentPosX(self):
|
12735
|
-
"""
|
12951
|
+
"""**在绝对定位方式下**,可以指定控件横向位置的位置,单位为pt(点)。
|
12736
12952
|
:rtype: float
|
12737
12953
|
"""
|
12738
12954
|
return self._ComponentPosX
|
@@ -12743,7 +12959,7 @@ ChildrenComponent结构体定义:
|
|
12743
12959
|
|
12744
12960
|
@property
|
12745
12961
|
def ComponentPosY(self):
|
12746
|
-
"""
|
12962
|
+
"""**在绝对定位方式下**,可以指定控件纵向位置的位置,单位为pt(点)。
|
12747
12963
|
:rtype: float
|
12748
12964
|
"""
|
12749
12965
|
return self._ComponentPosY
|
@@ -23,9 +23,6 @@ AUTHFAILURE_NOTENTERPRISEAUTHORIZATION = 'AuthFailure.NotEnterpriseAuthorization
|
|
23
23
|
# 子账户未授权操作。
|
24
24
|
AUTHFAILURE_UNAUTHORIZEDOPERATION = 'AuthFailure.UnauthorizedOperation'
|
25
25
|
|
26
|
-
# DryRun 操作,代表请求将会是成功的,只是多传了 DryRun 参数。
|
27
|
-
DRYRUNOPERATION = 'DryRunOperation'
|
28
|
-
|
29
26
|
# 操作失败。
|
30
27
|
FAILEDOPERATION = 'FailedOperation'
|
31
28
|
|
@@ -41,15 +38,9 @@ FAILEDOPERATION_ACTIONOPERATETOOQUICKLY = 'FailedOperation.ActionOperateTooQuick
|
|
41
38
|
# 该批通道归属于不同的通道组,无法批量操作。
|
42
39
|
FAILEDOPERATION_BELONGDIFFERENTGROUP = 'FailedOperation.BelongDifferentGroup'
|
43
40
|
|
44
|
-
# 中国电信加速token过期。
|
45
|
-
FAILEDOPERATION_CTCCTOKENEXPIRED = 'FailedOperation.CTCCTokenExpired'
|
46
|
-
|
47
41
|
# 证书正在使用中,无法操作。
|
48
42
|
FAILEDOPERATION_CERTIFICATEISUSING = 'FailedOperation.CertificateIsUsing'
|
49
43
|
|
50
|
-
# 相同加速间隔时间过短。
|
51
|
-
FAILEDOPERATION_CREATEQOSEXCEEDLIMIT = 'FailedOperation.CreateQosExceedLimit'
|
52
|
-
|
53
44
|
# 通道组中存在通道,无法删除。
|
54
45
|
FAILEDOPERATION_DELETEPROXYGROUPPROXYREMAINED = 'FailedOperation.DeleteProxyGroupProxyRemained'
|
55
46
|
|
@@ -65,9 +56,6 @@ FAILEDOPERATION_DUPLICATEDREQUEST = 'FailedOperation.DuplicatedRequest'
|
|
65
56
|
# 通道组状态为非运行状态,无法操作。
|
66
57
|
FAILEDOPERATION_GROUPSTATUSNOTINRUNING = 'FailedOperation.GroupStatusNotInRuning'
|
67
58
|
|
68
|
-
# 加速目标IP与绑定的通道IP不匹配。
|
69
|
-
FAILEDOPERATION_IPUNMATCHED = 'FailedOperation.IPUnmatched'
|
70
|
-
|
71
59
|
# 通道状态为非运行状态,无法操作。
|
72
60
|
FAILEDOPERATION_INSTANCESTATUSNOTINRUNING = 'FailedOperation.InstanceStatusNotInRuning'
|
73
61
|
|
@@ -95,9 +83,6 @@ FAILEDOPERATION_LISTENERSTATUSERROR = 'FailedOperation.ListenerStatusError'
|
|
95
83
|
# 加速通道在升级中,暂不支持配置变更,请提工单申请。
|
96
84
|
FAILEDOPERATION_MIGRATION = 'FailedOperation.Migration'
|
97
85
|
|
98
|
-
# 该应用模版没有绑定通道。
|
99
|
-
FAILEDOPERATION_NORESOURCEBOUND = 'FailedOperation.NoResourceBound'
|
100
|
-
|
101
86
|
# 该通道为非标通道,限制所有写操作。
|
102
87
|
FAILEDOPERATION_NONSTANDARDPROXY = 'FailedOperation.NonStandardProxy'
|
103
88
|
|
@@ -146,18 +131,12 @@ FAILEDOPERATION_REALSERVERALREADYBOUND = 'FailedOperation.RealServerAlreadyBound
|
|
146
131
|
# 源站不归属于该项目。
|
147
132
|
FAILEDOPERATION_REALSERVERNOTINPROJECT = 'FailedOperation.RealServerNotInProject'
|
148
133
|
|
149
|
-
# 请求运营商超时。
|
150
|
-
FAILEDOPERATION_REQUESTVENDORTIMEOUT = 'FailedOperation.RequestVendorTimeout'
|
151
|
-
|
152
134
|
# 该资源不可访问。
|
153
135
|
FAILEDOPERATION_RESOURCECANNOTACCESS = 'FailedOperation.ResourceCanNotAccess'
|
154
136
|
|
155
137
|
# 资源已经被操作过。
|
156
138
|
FAILEDOPERATION_RESOURCEHADBEENDONE = 'FailedOperation.ResourceHadBeenDone'
|
157
139
|
|
158
|
-
# 应用ID填写有误,请检查应用ID是否存在。
|
159
|
-
FAILEDOPERATION_RESOURCENOTFOUND = 'FailedOperation.ResourceNotFound'
|
160
|
-
|
161
140
|
# 资源升级中。
|
162
141
|
FAILEDOPERATION_RESOURCEUPGRADING = 'FailedOperation.ResourceUpgrading'
|
163
142
|
|
@@ -167,9 +146,6 @@ FAILEDOPERATION_RULEALREADYEXISTED = 'FailedOperation.RuleAlreadyExisted'
|
|
167
146
|
# 签名校验错误。
|
168
147
|
FAILEDOPERATION_SECRETVALIDATEFAILED = 'FailedOperation.SecretValidateFailed'
|
169
148
|
|
170
|
-
# Session不存在或已经被取消。
|
171
|
-
FAILEDOPERATION_SESSIONNOTEXIST = 'FailedOperation.SessionNotExist'
|
172
|
-
|
173
149
|
# 标签资源绑定失败。
|
174
150
|
FAILEDOPERATION_TAGRESOURCESFAILED = 'FailedOperation.TagResourcesFailed'
|
175
151
|
|
@@ -185,15 +161,6 @@ FAILEDOPERATION_USERNOTCONFIRMPROTOCOL = 'FailedOperation.UserNotConfirmProtocol
|
|
185
161
|
# 该功能为白名单功能,如有需要请联系腾讯云助手。
|
186
162
|
FAILEDOPERATION_USERNOTINWHITELIST = 'FailedOperation.UserNotInWhitelist'
|
187
163
|
|
188
|
-
# 该用户不在运营商网络可加速范围内。
|
189
|
-
FAILEDOPERATION_USEROUTOFCOVERAGE = 'FailedOperation.UserOutOfCoverage'
|
190
|
-
|
191
|
-
# 运营商返回结果错误。
|
192
|
-
FAILEDOPERATION_VENDORRETURNERROR = 'FailedOperation.VendorReturnError'
|
193
|
-
|
194
|
-
# 运营商服务器临时错误。
|
195
|
-
FAILEDOPERATION_VENDORSERVERERROR = 'FailedOperation.VendorServerError'
|
196
|
-
|
197
164
|
# 内部错误。
|
198
165
|
INTERNALERROR = 'InternalError'
|
199
166
|
|