tencentcloud-sdk-python 3.0.1376__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/cdb/v20170320/cdb_client.py +0 -25
- tencentcloud/cdb/v20170320/models.py +0 -113
- tencentcloud/cfw/v20190904/models.py +17 -2
- tencentcloud/dsgc/v20190723/models.py +15 -0
- tencentcloud/ess/v20201111/ess_client.py +27 -0
- 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/models.py +20 -8
- tencentcloud/iai/v20180301/models.py +44 -34
- tencentcloud/keewidb/v20220308/models.py +4 -0
- tencentcloud/lighthouse/v20200324/models.py +4 -4
- tencentcloud/postgres/v20170312/models.py +0 -6
- tencentcloud/redis/v20180412/models.py +48 -0
- tencentcloud/tcbr/v20220217/models.py +162 -0
- tencentcloud/tdmq/v20200217/models.py +6 -6
- tencentcloud/thpc/v20230321/models.py +2 -2
- tencentcloud/vpc/v20170312/models.py +20 -20
- tencentcloud/waf/v20180125/errorcodes.py +12 -0
- tencentcloud/waf/v20180125/models.py +246 -29
- tencentcloud/wedata/v20210820/models.py +2692 -154
- tencentcloud/wedata/v20210820/wedata_client.py +161 -0
- {tencentcloud_sdk_python-3.0.1376.dist-info → tencentcloud_sdk_python-3.0.1377.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1376.dist-info → tencentcloud_sdk_python-3.0.1377.dist-info}/RECORD +34 -34
- {tencentcloud_sdk_python-3.0.1376.dist-info → tencentcloud_sdk_python-3.0.1377.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1376.dist-info → tencentcloud_sdk_python-3.0.1377.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1376.dist-info → tencentcloud_sdk_python-3.0.1377.dist-info}/top_level.txt +0 -0
@@ -9139,10 +9139,13 @@ class DescribeEnterpriseSGRuleProgressResponse(AbstractModel):
|
|
9139
9139
|
r"""
|
9140
9140
|
:param _Progress: 0-100,代表下发进度百分比
|
9141
9141
|
:type Progress: int
|
9142
|
+
:param _UserStopped: 是否用户中止 用户中止返回true
|
9143
|
+
:type UserStopped: bool
|
9142
9144
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
9143
9145
|
:type RequestId: str
|
9144
9146
|
"""
|
9145
9147
|
self._Progress = None
|
9148
|
+
self._UserStopped = None
|
9146
9149
|
self._RequestId = None
|
9147
9150
|
|
9148
9151
|
@property
|
@@ -9156,6 +9159,17 @@ class DescribeEnterpriseSGRuleProgressResponse(AbstractModel):
|
|
9156
9159
|
def Progress(self, Progress):
|
9157
9160
|
self._Progress = Progress
|
9158
9161
|
|
9162
|
+
@property
|
9163
|
+
def UserStopped(self):
|
9164
|
+
"""是否用户中止 用户中止返回true
|
9165
|
+
:rtype: bool
|
9166
|
+
"""
|
9167
|
+
return self._UserStopped
|
9168
|
+
|
9169
|
+
@UserStopped.setter
|
9170
|
+
def UserStopped(self, UserStopped):
|
9171
|
+
self._UserStopped = UserStopped
|
9172
|
+
|
9159
9173
|
@property
|
9160
9174
|
def RequestId(self):
|
9161
9175
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -9170,6 +9184,7 @@ class DescribeEnterpriseSGRuleProgressResponse(AbstractModel):
|
|
9170
9184
|
|
9171
9185
|
def _deserialize(self, params):
|
9172
9186
|
self._Progress = params.get("Progress")
|
9187
|
+
self._UserStopped = params.get("UserStopped")
|
9173
9188
|
self._RequestId = params.get("RequestId")
|
9174
9189
|
|
9175
9190
|
|
@@ -23951,7 +23966,7 @@ drop:拒绝
|
|
23951
23966
|
:type Description: str
|
23952
23967
|
:param _OrderIndex: 规则顺序,-1表示最低,1表示最高,请勿和外层Type冲突(和外层的Type配合使用,当中间插入时,指定添加位置)
|
23953
23968
|
:type OrderIndex: str
|
23954
|
-
:param _Protocol: 协议;TCP/UDP/ICMP/ANY
|
23969
|
+
:param _Protocol: 协议;TCP/UDP/ICMP/ICMPv6/ANY
|
23955
23970
|
:type Protocol: str
|
23956
23971
|
:param _Port: 访问控制策略的端口。取值:
|
23957
23972
|
-1/-1:全部端口
|
@@ -24074,7 +24089,7 @@ drop:拒绝
|
|
24074
24089
|
|
24075
24090
|
@property
|
24076
24091
|
def Protocol(self):
|
24077
|
-
"""协议;TCP/UDP/ICMP/ANY
|
24092
|
+
"""协议;TCP/UDP/ICMP/ICMPv6/ANY
|
24078
24093
|
:rtype: str
|
24079
24094
|
"""
|
24080
24095
|
return self._Protocol
|
@@ -22167,6 +22167,8 @@ class DspaDiscoveryTask(AbstractModel):
|
|
22167
22167
|
|
22168
22168
|
def __init__(self):
|
22169
22169
|
r"""
|
22170
|
+
:param _TaskId: 任务ID
|
22171
|
+
:type TaskId: int
|
22170
22172
|
:param _Name: 任务名称
|
22171
22173
|
:type Name: str
|
22172
22174
|
:param _Description: 任务描述
|
@@ -22191,6 +22193,7 @@ class DspaDiscoveryTask(AbstractModel):
|
|
22191
22193
|
注意:此字段可能返回 null,表示取不到有效值。
|
22192
22194
|
:type ComplianceUpdate: bool
|
22193
22195
|
"""
|
22196
|
+
self._TaskId = None
|
22194
22197
|
self._Name = None
|
22195
22198
|
self._Description = None
|
22196
22199
|
self._Period = None
|
@@ -22202,6 +22205,17 @@ class DspaDiscoveryTask(AbstractModel):
|
|
22202
22205
|
self._TimingStartTime = None
|
22203
22206
|
self._ComplianceUpdate = None
|
22204
22207
|
|
22208
|
+
@property
|
22209
|
+
def TaskId(self):
|
22210
|
+
"""任务ID
|
22211
|
+
:rtype: int
|
22212
|
+
"""
|
22213
|
+
return self._TaskId
|
22214
|
+
|
22215
|
+
@TaskId.setter
|
22216
|
+
def TaskId(self, TaskId):
|
22217
|
+
self._TaskId = TaskId
|
22218
|
+
|
22205
22219
|
@property
|
22206
22220
|
def Name(self):
|
22207
22221
|
"""任务名称
|
@@ -22317,6 +22331,7 @@ class DspaDiscoveryTask(AbstractModel):
|
|
22317
22331
|
|
22318
22332
|
|
22319
22333
|
def _deserialize(self, params):
|
22334
|
+
self._TaskId = params.get("TaskId")
|
22320
22335
|
self._Name = params.get("Name")
|
22321
22336
|
self._Description = params.get("Description")
|
22322
22337
|
self._Period = params.get("Period")
|
@@ -1686,6 +1686,33 @@ class EssClient(AbstractClient):
|
|
1686
1686
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1687
1687
|
|
1688
1688
|
|
1689
|
+
def CreatePrepareFlowGroup(self, request):
|
1690
|
+
"""接口(CreatePrepareFlowGroup)用于创建嵌入式合同组签署流程。
|
1691
|
+
|
1692
|
+
- 该接口当前仅支持文件发起
|
1693
|
+
- 该接口能力和CreateFlowGroupByFiles,~~CreateFlowGroupByTemplates~~保持一致。
|
1694
|
+
- 返回的FlowGroupId 为临时id,只有在页面内成功发起后FlowGroupId才会有效。
|
1695
|
+
|
1696
|
+
:param request: Request instance for CreatePrepareFlowGroup.
|
1697
|
+
:type request: :class:`tencentcloud.ess.v20201111.models.CreatePrepareFlowGroupRequest`
|
1698
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.CreatePrepareFlowGroupResponse`
|
1699
|
+
|
1700
|
+
"""
|
1701
|
+
try:
|
1702
|
+
params = request._serialize()
|
1703
|
+
headers = request.headers
|
1704
|
+
body = self.call("CreatePrepareFlowGroup", params, headers=headers)
|
1705
|
+
response = json.loads(body)
|
1706
|
+
model = models.CreatePrepareFlowGroupResponse()
|
1707
|
+
model._deserialize(response["Response"])
|
1708
|
+
return model
|
1709
|
+
except Exception as e:
|
1710
|
+
if isinstance(e, TencentCloudSDKException):
|
1711
|
+
raise
|
1712
|
+
else:
|
1713
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1714
|
+
|
1715
|
+
|
1689
1716
|
def CreatePreparedPersonalEsign(self, request):
|
1690
1717
|
"""本接口(CreatePreparedPersonalEsign)用于创建导入个人印章(处方单场景专用,使用此接口请与客户经理确认)。
|
1691
1718
|
|
@@ -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
|
|