tencentcloud-sdk-python 3.0.1061__py2.py3-none-any.whl → 3.0.1062__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 might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/billing/v20180709/models.py +27 -0
- tencentcloud/cbs/v20170312/models.py +4 -4
- tencentcloud/cwp/v20180228/models.py +9 -15
- tencentcloud/dts/v20211206/models.py +1 -1
- tencentcloud/ess/v20201111/ess_client.py +60 -3
- tencentcloud/ess/v20201111/models.py +274 -24
- tencentcloud/essbasic/v20210526/essbasic_client.py +43 -4
- tencentcloud/essbasic/v20210526/models.py +268 -15
- tencentcloud/faceid/v20180301/models.py +2 -2
- tencentcloud/iss/v20230517/errorcodes.py +3 -0
- tencentcloud/iss/v20230517/models.py +20 -8
- tencentcloud/mongodb/v20190725/models.py +149 -0
- tencentcloud/sqlserver/v20180328/sqlserver_client.py +6 -6
- tencentcloud/tcb/v20180608/models.py +3 -3
- tencentcloud/vod/v20180717/models.py +117 -118
- tencentcloud/vod/v20180717/vod_client.py +2 -1
- tencentcloud/vpc/v20170312/models.py +24 -0
- {tencentcloud_sdk_python-3.0.1061.dist-info → tencentcloud_sdk_python-3.0.1062.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1061.dist-info → tencentcloud_sdk_python-3.0.1062.dist-info}/RECORD +23 -23
- {tencentcloud_sdk_python-3.0.1061.dist-info → tencentcloud_sdk_python-3.0.1062.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1061.dist-info → tencentcloud_sdk_python-3.0.1062.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1061.dist-info → tencentcloud_sdk_python-3.0.1062.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -283,6 +283,9 @@ class BillDetail(AbstractModel):
|
|
|
283
283
|
:param _BillMonth: 账单归属月
|
|
284
284
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
285
285
|
:type BillMonth: str
|
|
286
|
+
:param _Id: 账单记录ID
|
|
287
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
288
|
+
:type Id: str
|
|
286
289
|
"""
|
|
287
290
|
self._BusinessCodeName = None
|
|
288
291
|
self._ProductCodeName = None
|
|
@@ -314,6 +317,7 @@ class BillDetail(AbstractModel):
|
|
|
314
317
|
self._FormulaUrl = None
|
|
315
318
|
self._BillDay = None
|
|
316
319
|
self._BillMonth = None
|
|
320
|
+
self._Id = None
|
|
317
321
|
|
|
318
322
|
@property
|
|
319
323
|
def BusinessCodeName(self):
|
|
@@ -555,6 +559,14 @@ class BillDetail(AbstractModel):
|
|
|
555
559
|
def BillMonth(self, BillMonth):
|
|
556
560
|
self._BillMonth = BillMonth
|
|
557
561
|
|
|
562
|
+
@property
|
|
563
|
+
def Id(self):
|
|
564
|
+
return self._Id
|
|
565
|
+
|
|
566
|
+
@Id.setter
|
|
567
|
+
def Id(self, Id):
|
|
568
|
+
self._Id = Id
|
|
569
|
+
|
|
558
570
|
|
|
559
571
|
def _deserialize(self, params):
|
|
560
572
|
self._BusinessCodeName = params.get("BusinessCodeName")
|
|
@@ -599,6 +611,7 @@ class BillDetail(AbstractModel):
|
|
|
599
611
|
self._FormulaUrl = params.get("FormulaUrl")
|
|
600
612
|
self._BillDay = params.get("BillDay")
|
|
601
613
|
self._BillMonth = params.get("BillMonth")
|
|
614
|
+
self._Id = params.get("Id")
|
|
602
615
|
memeber_set = set(params.keys())
|
|
603
616
|
for name, value in vars(self).items():
|
|
604
617
|
property_name = name[1:]
|
|
@@ -8848,6 +8861,8 @@ cdn业务:
|
|
|
8848
8861
|
10227 视频直播带宽(国内)
|
|
8849
8862
|
100763 视频直播流量(海外)
|
|
8850
8863
|
100762 视频直播宽带(海外)
|
|
8864
|
+
|
|
8865
|
+
仅支持以上产品
|
|
8851
8866
|
:type ProductCode: str
|
|
8852
8867
|
:param _Domain: 查询域名 例如 www.qq.com
|
|
8853
8868
|
非CDN业务查询时传入空字符串,返回的值为空
|
|
@@ -8855,12 +8870,15 @@ cdn业务:
|
|
|
8855
8870
|
:param _InstanceID: 1、如果为空,则返回EIP或CLB所有实例的明细;
|
|
8856
8871
|
2、如果传入实例名,则返回该实例明细
|
|
8857
8872
|
:type InstanceID: str
|
|
8873
|
+
:param _PayerUin: 支付者的账号 ID(账号 ID 是用户在腾讯云的唯一账号标识),默认查询本账号账单,如集团管理账号需查询成员账号自付的账单,该字段需入参成员账号UIN
|
|
8874
|
+
:type PayerUin: str
|
|
8858
8875
|
"""
|
|
8859
8876
|
self._StartDate = None
|
|
8860
8877
|
self._EndDate = None
|
|
8861
8878
|
self._ProductCode = None
|
|
8862
8879
|
self._Domain = None
|
|
8863
8880
|
self._InstanceID = None
|
|
8881
|
+
self._PayerUin = None
|
|
8864
8882
|
|
|
8865
8883
|
@property
|
|
8866
8884
|
def StartDate(self):
|
|
@@ -8902,6 +8920,14 @@ cdn业务:
|
|
|
8902
8920
|
def InstanceID(self, InstanceID):
|
|
8903
8921
|
self._InstanceID = InstanceID
|
|
8904
8922
|
|
|
8923
|
+
@property
|
|
8924
|
+
def PayerUin(self):
|
|
8925
|
+
return self._PayerUin
|
|
8926
|
+
|
|
8927
|
+
@PayerUin.setter
|
|
8928
|
+
def PayerUin(self, PayerUin):
|
|
8929
|
+
self._PayerUin = PayerUin
|
|
8930
|
+
|
|
8905
8931
|
|
|
8906
8932
|
def _deserialize(self, params):
|
|
8907
8933
|
self._StartDate = params.get("StartDate")
|
|
@@ -8909,6 +8935,7 @@ cdn业务:
|
|
|
8909
8935
|
self._ProductCode = params.get("ProductCode")
|
|
8910
8936
|
self._Domain = params.get("Domain")
|
|
8911
8937
|
self._InstanceID = params.get("InstanceID")
|
|
8938
|
+
self._PayerUin = params.get("PayerUin")
|
|
8912
8939
|
memeber_set = set(params.keys())
|
|
8913
8940
|
for name, value in vars(self).items():
|
|
8914
8941
|
property_name = name[1:]
|
|
@@ -325,7 +325,7 @@ class AttachDisksRequest(AbstractModel):
|
|
|
325
325
|
:type DiskIds: list of str
|
|
326
326
|
:param _DeleteWithInstance: 可选参数,不传该参数则仅执行挂载操作。传入`True`时,会在挂载成功后将云硬盘设置为随云主机销毁模式,仅对按量计费云硬盘有效。
|
|
327
327
|
:type DeleteWithInstance: bool
|
|
328
|
-
:param _AttachMode: 可选参数,用于控制云盘挂载时使用的挂载模式,目前仅对黑石裸金属机型有效。取值范围:<br><li>PF
|
|
328
|
+
:param _AttachMode: 可选参数,用于控制云盘挂载时使用的挂载模式,目前仅对黑石裸金属机型有效。取值范围:<br><li>PF</li><br><li>VF</li>
|
|
329
329
|
:type AttachMode: str
|
|
330
330
|
"""
|
|
331
331
|
self._InstanceId = None
|
|
@@ -1319,9 +1319,9 @@ class CreateDisksRequest(AbstractModel):
|
|
|
1319
1319
|
r"""
|
|
1320
1320
|
:param _Placement: 实例所在的位置。通过该参数可以指定实例所属可用区,所属项目。若不指定项目,将在默认项目下进行创建。
|
|
1321
1321
|
:type Placement: :class:`tencentcloud.cbs.v20170312.models.Placement`
|
|
1322
|
-
:param _DiskChargeType: 云硬盘计费类型。<br><li>PREPAID
|
|
1322
|
+
:param _DiskChargeType: 云硬盘计费类型。<br><li>PREPAID:预付费,即包年包月</li><br><li>POSTPAID_BY_HOUR:按小时后付费</li><br><li>CDCPAID:独享集群付费<br>各类型价格请参考云硬盘[价格总览](/document/product/362/2413)。</li>
|
|
1323
1323
|
:type DiskChargeType: str
|
|
1324
|
-
:param _DiskType: 硬盘介质类型。取值范围:<br><li>CLOUD_BASIC
|
|
1324
|
+
:param _DiskType: 硬盘介质类型。取值范围:<br><li>CLOUD_BASIC:表示普通云硬盘</li><br><li>CLOUD_PREMIUM:表示高性能云硬盘</li><br><li>CLOUD_BSSD:表示通用型SSD云硬盘</li><br><li>CLOUD_SSD:表示SSD云硬盘</li><br><li>CLOUD_HSSD:表示增强型SSD云硬盘</li><br><li>CLOUD_TSSD:表示极速型SSD云硬盘。</li>
|
|
1325
1325
|
:type DiskType: str
|
|
1326
1326
|
:param _DiskName: 云盘显示名称。不传则默认为“未命名”。最大长度不能超60个字节。
|
|
1327
1327
|
:type DiskName: str
|
|
@@ -1333,7 +1333,7 @@ class CreateDisksRequest(AbstractModel):
|
|
|
1333
1333
|
:type DiskCount: int
|
|
1334
1334
|
:param _ThroughputPerformance: 可选参数。使用此参数可给云硬盘购买额外的性能。<br>当前仅支持极速型云盘(CLOUD_TSSD)和增强型SSD云硬盘(CLOUD_HSSD)
|
|
1335
1335
|
:type ThroughputPerformance: int
|
|
1336
|
-
:param _DiskSize: 云硬盘大小,单位为GB。<br><li>如果传入`SnapshotId`则可不传`DiskSize
|
|
1336
|
+
:param _DiskSize: 云硬盘大小,单位为GB。<br><li>如果传入`SnapshotId`则可不传`DiskSize`,此时新建云盘的大小为快照大小</li><br><li>如果传入`SnapshotId`同时传入`DiskSize`,则云盘大小必须大于或等于快照大小</li><br><li>云盘大小取值范围参见云硬盘[产品分类](/document/product/362/2353)的说明。</li>
|
|
1337
1337
|
:type DiskSize: int
|
|
1338
1338
|
:param _Shareable: 可选参数,默认为False。传入True时,云盘将创建为共享型云盘。
|
|
1339
1339
|
:type Shareable: bool
|
|
@@ -21982,15 +21982,9 @@ class DescribeAssetMachineListRequest(AbstractModel):
|
|
|
21982
21982
|
def __init__(self):
|
|
21983
21983
|
r"""
|
|
21984
21984
|
:param _Filters: 过滤条件。
|
|
21985
|
-
<li>MachineName
|
|
21986
|
-
|
|
21987
|
-
|
|
21988
|
-
|
|
21989
|
-
InstanceID 实例ID
|
|
21990
|
-
|
|
21991
|
-
|
|
21992
|
-
|
|
21993
|
-
IP 内网IP或公网IP</li>
|
|
21985
|
+
<li>MachineName 主机名称</li>
|
|
21986
|
+
<li>InstanceID 实例ID </li>
|
|
21987
|
+
<li>IP 内网IP或公网IP</li>
|
|
21994
21988
|
<li>OsType - String - 是否必填:否 - windows或linux</li>
|
|
21995
21989
|
<li>CpuLoad - Int - 是否必填:否 -
|
|
21996
21990
|
0: 未知 1: 低负载
|
|
@@ -23191,7 +23185,7 @@ jar: Jar包
|
|
|
23191
23185
|
initservice: 启动服务
|
|
23192
23186
|
planTask:计划任务
|
|
23193
23187
|
env:环境变量
|
|
23194
|
-
|
|
23188
|
+
coremodule:内核模块
|
|
23195
23189
|
:type Types: list of AssetKeyVal
|
|
23196
23190
|
:param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
23197
23191
|
:type RequestId: str
|
|
@@ -23797,8 +23791,8 @@ class DescribeAssetUserListRequest(AbstractModel):
|
|
|
23797
23791
|
<li>OsType - String - 是否必填:否 - windows或linux</li>
|
|
23798
23792
|
<li>Status - uint64 - 是否必填:否 - 账号状态:0-禁用;1-启用</li>
|
|
23799
23793
|
<li>UserType - uint64 - 是否必填:否 - 账号类型:0访客用户,1标准用户,2管理员用户 仅windows</li>
|
|
23800
|
-
<li>IsDomain - uint64 - 是否必填:否 - 是否域账号:0 不是,1是 仅windows
|
|
23801
|
-
<li>IsRoot - uint64 - 是否必填:否 - 是否Root权限:0 不是,1是 仅linux
|
|
23794
|
+
<li>IsDomain - uint64 - 是否必填:否 - 是否域账号:0 不是,1是 仅windows</li>
|
|
23795
|
+
<li>IsRoot - uint64 - 是否必填:否 - 是否Root权限:0 不是,1是 仅linux</li>
|
|
23802
23796
|
<li>IsSudo - uint64 - 是否必填:否 - 是否Sudo权限:0 不是,1是 仅linux</li>
|
|
23803
23797
|
<li>IsSshLogin - uint64 - 是否必填:否 - 是否ssh登录:0 不是,1是 仅linux</li>
|
|
23804
23798
|
<li>ShellLoginStatus - uint64 - 是否必填:否 - 是否shell登录性,0不是;1是 仅linux</li>
|
|
@@ -33777,7 +33771,7 @@ class DescribeFileTamperRulesRequest(AbstractModel):
|
|
|
33777
33771
|
r"""
|
|
33778
33772
|
:param _Filters: 过滤条件。
|
|
33779
33773
|
<li>RuleCategory- string- 规则类别 0=系统规则,1=用户规则</li>
|
|
33780
|
-
<li>Name- String -
|
|
33774
|
+
<li>Name- String - 规则名称</li>
|
|
33781
33775
|
:type Filters: list of Filters
|
|
33782
33776
|
:param _Offset: 偏移量,默认为0。
|
|
33783
33777
|
:type Offset: int
|
|
@@ -54621,7 +54615,7 @@ class ExportAssetCoreModuleListRequest(AbstractModel):
|
|
|
54621
54615
|
:type Quuid: str
|
|
54622
54616
|
:param _Filters: 过滤条件。
|
|
54623
54617
|
<li>Name- string - 是否必填:否 - 包名</li>
|
|
54624
|
-
<li>User- string - 是否必填:否 -
|
|
54618
|
+
<li>User- string - 是否必填:否 - 用户名</li>
|
|
54625
54619
|
:type Filters: list of AssetFilters
|
|
54626
54620
|
:param _Order: 排序方式,asc升序 或 desc降序
|
|
54627
54621
|
:type Order: str
|
|
@@ -55924,7 +55918,7 @@ class ExportAssetSystemPackageListRequest(AbstractModel):
|
|
|
55924
55918
|
<li>StartTime - String - 是否必填:否 - 安装开始时间</li>
|
|
55925
55919
|
<li>EndTime - String - 是否必填:否 - 安装开始时间</li>
|
|
55926
55920
|
<li>Type - int - 是否必填:否 - 安装包类型:
|
|
55927
|
-
1:
|
|
55921
|
+
1:rpm
|
|
55928
55922
|
2:dpkg
|
|
55929
55923
|
3:java
|
|
55930
55924
|
4:system</li>
|
|
@@ -730,7 +730,7 @@ class CompareOptions(AbstractModel):
|
|
|
730
730
|
|
|
731
731
|
def __init__(self):
|
|
732
732
|
r"""
|
|
733
|
-
:param _Method:
|
|
733
|
+
:param _Method: 对比方式:dataCheck(完整数据对比)、sampleDataCheck(抽样数据对比)、rowsCount(行数对比)
|
|
734
734
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
735
735
|
:type Method: str
|
|
736
736
|
:param _SampleRate: 抽样比例;范围0,100
|
|
@@ -563,6 +563,36 @@ class EssClient(AbstractClient):
|
|
|
563
563
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
564
564
|
|
|
565
565
|
|
|
566
|
+
def CreateFlowGroupSignReview(self, request):
|
|
567
|
+
"""提交合同组签署流程审批结果的适用场景包括:
|
|
568
|
+
|
|
569
|
+
1. 在使用[通过多文件创建合同组签署流程](https://qian.tencent.com/developers/companyApis/startFlows/CreateFlowGroupByFiles)或[通过多模板创建合同组签署流程](https://qian.tencent.com/developers/companyApis/startFlows/CreateFlowGroupByTemplates)创建合同组签署流程时,若指定了以下参数 为true,则可以调用此接口提交企业内部签署审批结果。即使是自动签署也需要进行审核通过才会进行签署。
|
|
570
|
+
- [FlowGroupInfo.NeedSignReview](https://qian.tencent.com/developers/companyApis/dataTypes/#flowgroupinfo)
|
|
571
|
+
- [ApproverInfo.ApproverNeedSignReview](https://qian.tencent.com/developers/companyApis/dataTypes/#approverinfo)
|
|
572
|
+
|
|
573
|
+
|
|
574
|
+
2. 同一合同组,同一签署人可以多次提交签署审批结果,签署时的最后一个“审批结果”有效。
|
|
575
|
+
|
|
576
|
+
:param request: Request instance for CreateFlowGroupSignReview.
|
|
577
|
+
:type request: :class:`tencentcloud.ess.v20201111.models.CreateFlowGroupSignReviewRequest`
|
|
578
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.CreateFlowGroupSignReviewResponse`
|
|
579
|
+
|
|
580
|
+
"""
|
|
581
|
+
try:
|
|
582
|
+
params = request._serialize()
|
|
583
|
+
headers = request.headers
|
|
584
|
+
body = self.call("CreateFlowGroupSignReview", params, headers=headers)
|
|
585
|
+
response = json.loads(body)
|
|
586
|
+
model = models.CreateFlowGroupSignReviewResponse()
|
|
587
|
+
model._deserialize(response["Response"])
|
|
588
|
+
return model
|
|
589
|
+
except Exception as e:
|
|
590
|
+
if isinstance(e, TencentCloudSDKException):
|
|
591
|
+
raise
|
|
592
|
+
else:
|
|
593
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
594
|
+
|
|
595
|
+
|
|
566
596
|
def CreateFlowReminds(self, request):
|
|
567
597
|
"""指定需要批量催办的签署流程ID,批量催办合同,最多100个。需要符合以下条件的合同才可被催办:
|
|
568
598
|
|
|
@@ -596,9 +626,36 @@ class EssClient(AbstractClient):
|
|
|
596
626
|
|
|
597
627
|
|
|
598
628
|
def CreateFlowSignReview(self, request):
|
|
599
|
-
"""
|
|
600
|
-
|
|
601
|
-
|
|
629
|
+
"""提交企业流程审批结果
|
|
630
|
+
**当前存在两种审核操作:**
|
|
631
|
+
<ul>
|
|
632
|
+
<li>签署审核
|
|
633
|
+
<ul>
|
|
634
|
+
<li>在通过接口<ul>
|
|
635
|
+
<li>CreateFlowByFiles</li>
|
|
636
|
+
<li>CreateFlow</li>
|
|
637
|
+
<li>CreateFlowGroupByTemplates</li>
|
|
638
|
+
<li>CreateFlowGroupByFiles</li>
|
|
639
|
+
<li>CreatePrepareFlow</li>
|
|
640
|
+
</ul>
|
|
641
|
+
发起签署流程时,通过指定NeedSignReview为true,则可以调用此接口,并指定operate=SignReview,以提交企业内部签署审批结果</li>
|
|
642
|
+
<li>在通过接口
|
|
643
|
+
<ul>
|
|
644
|
+
<li>CreateFlowByFiles</li>
|
|
645
|
+
<li>CreateFlow</li>
|
|
646
|
+
<li>CreateFlowGroupByTemplates</li>
|
|
647
|
+
<li>CreateFlowGroupByFiles</li>
|
|
648
|
+
</ul>
|
|
649
|
+
发起签署流程时,通过指定签署人ApproverNeedSignReview为true,则可以调用此接口,并指定operate=SignReview,并指定RecipientId,以提交企业内部签署审批结果</li>
|
|
650
|
+
</ul>
|
|
651
|
+
</li>
|
|
652
|
+
<li>发起审核
|
|
653
|
+
<ul>
|
|
654
|
+
<li>通过接口CreatePrepareFlow指定发起后需要审核,那么可以调用此接口,并指定operate=CreateReview,以提交企业内部审批结果。可以多次提交审批结果,但一旦审批通过,后续提交的结果将无效
|
|
655
|
+
</li>
|
|
656
|
+
</ul>
|
|
657
|
+
</li>
|
|
658
|
+
</ul>
|
|
602
659
|
|
|
603
660
|
:param request: Request instance for CreateFlowSignReview.
|
|
604
661
|
:type request: :class:`tencentcloud.ess.v20201111.models.CreateFlowSignReviewRequest`
|
|
@@ -4664,6 +4664,145 @@ class CreateFlowGroupByTemplatesResponse(AbstractModel):
|
|
|
4664
4664
|
self._RequestId = params.get("RequestId")
|
|
4665
4665
|
|
|
4666
4666
|
|
|
4667
|
+
class CreateFlowGroupSignReviewRequest(AbstractModel):
|
|
4668
|
+
"""CreateFlowGroupSignReview请求参数结构体
|
|
4669
|
+
|
|
4670
|
+
"""
|
|
4671
|
+
|
|
4672
|
+
def __init__(self):
|
|
4673
|
+
r"""
|
|
4674
|
+
:param _Operator: 执行本接口操作的员工信息。
|
|
4675
|
+
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
4676
|
+
:type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
|
4677
|
+
:param _FlowGroupId: 合同(流程)组的合同组Id,为32位字符串,通过接口[通过多文件创建合同组签署流程](https://qian.tencent.com/developers/companyApis/startFlows/CreateFlowGroupByFiles) 或[通过多模板创建合同组签署流程](https://qian.tencent.com/developers/companyApis/startFlows/CreateFlowGroupByTemplates)创建合同组签署流程时返回。
|
|
4678
|
+
:type FlowGroupId: str
|
|
4679
|
+
:param _ReviewType: 提交的审核结果,审核结果有下面三种情况
|
|
4680
|
+
<ul><li><b>PASS</b>: 审核通过,合同流程可以继续执行签署等操作</li>
|
|
4681
|
+
<li><b>REJECT</b>: 审核拒绝,合同流程不会变动</li>
|
|
4682
|
+
<li><b>SIGN_REJECT</b>:拒签,合同流程直接结束,合同状态变为**合同拒签**</li></ul>
|
|
4683
|
+
:type ReviewType: str
|
|
4684
|
+
:param _ApproverInfo: 需要进行签署审核的签署人的个人信息或企业信息,签署方的匹配方式按照以下规则:
|
|
4685
|
+
|
|
4686
|
+
个人:二选一(选择其中任意信息组合即可)
|
|
4687
|
+
<ul><li>姓名+证件类型+证件号</li>
|
|
4688
|
+
<li>姓名+手机号</li></ul>
|
|
4689
|
+
|
|
4690
|
+
企业:二选一 (选择其中任意信息组合即可)
|
|
4691
|
+
<ul><li>企业名+姓名+证件类型+证件号</li>
|
|
4692
|
+
<li>企业名+姓名+手机号</li></ul>
|
|
4693
|
+
:type ApproverInfo: :class:`tencentcloud.ess.v20201111.models.NeedReviewApproverInfo`
|
|
4694
|
+
:param _Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
|
4695
|
+
:type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
|
|
4696
|
+
:param _ReviewMessage: 审核不通过的原因,该字段的字符串长度不超过200个字符。
|
|
4697
|
+
|
|
4698
|
+
注:`当审核类型(ReviewType)为审核拒绝(REJECT)或拒签(SIGN_REJECT)时,审核结果原因字段必须填写`
|
|
4699
|
+
|
|
4700
|
+
:type ReviewMessage: str
|
|
4701
|
+
"""
|
|
4702
|
+
self._Operator = None
|
|
4703
|
+
self._FlowGroupId = None
|
|
4704
|
+
self._ReviewType = None
|
|
4705
|
+
self._ApproverInfo = None
|
|
4706
|
+
self._Agent = None
|
|
4707
|
+
self._ReviewMessage = None
|
|
4708
|
+
|
|
4709
|
+
@property
|
|
4710
|
+
def Operator(self):
|
|
4711
|
+
return self._Operator
|
|
4712
|
+
|
|
4713
|
+
@Operator.setter
|
|
4714
|
+
def Operator(self, Operator):
|
|
4715
|
+
self._Operator = Operator
|
|
4716
|
+
|
|
4717
|
+
@property
|
|
4718
|
+
def FlowGroupId(self):
|
|
4719
|
+
return self._FlowGroupId
|
|
4720
|
+
|
|
4721
|
+
@FlowGroupId.setter
|
|
4722
|
+
def FlowGroupId(self, FlowGroupId):
|
|
4723
|
+
self._FlowGroupId = FlowGroupId
|
|
4724
|
+
|
|
4725
|
+
@property
|
|
4726
|
+
def ReviewType(self):
|
|
4727
|
+
return self._ReviewType
|
|
4728
|
+
|
|
4729
|
+
@ReviewType.setter
|
|
4730
|
+
def ReviewType(self, ReviewType):
|
|
4731
|
+
self._ReviewType = ReviewType
|
|
4732
|
+
|
|
4733
|
+
@property
|
|
4734
|
+
def ApproverInfo(self):
|
|
4735
|
+
return self._ApproverInfo
|
|
4736
|
+
|
|
4737
|
+
@ApproverInfo.setter
|
|
4738
|
+
def ApproverInfo(self, ApproverInfo):
|
|
4739
|
+
self._ApproverInfo = ApproverInfo
|
|
4740
|
+
|
|
4741
|
+
@property
|
|
4742
|
+
def Agent(self):
|
|
4743
|
+
return self._Agent
|
|
4744
|
+
|
|
4745
|
+
@Agent.setter
|
|
4746
|
+
def Agent(self, Agent):
|
|
4747
|
+
self._Agent = Agent
|
|
4748
|
+
|
|
4749
|
+
@property
|
|
4750
|
+
def ReviewMessage(self):
|
|
4751
|
+
return self._ReviewMessage
|
|
4752
|
+
|
|
4753
|
+
@ReviewMessage.setter
|
|
4754
|
+
def ReviewMessage(self, ReviewMessage):
|
|
4755
|
+
self._ReviewMessage = ReviewMessage
|
|
4756
|
+
|
|
4757
|
+
|
|
4758
|
+
def _deserialize(self, params):
|
|
4759
|
+
if params.get("Operator") is not None:
|
|
4760
|
+
self._Operator = UserInfo()
|
|
4761
|
+
self._Operator._deserialize(params.get("Operator"))
|
|
4762
|
+
self._FlowGroupId = params.get("FlowGroupId")
|
|
4763
|
+
self._ReviewType = params.get("ReviewType")
|
|
4764
|
+
if params.get("ApproverInfo") is not None:
|
|
4765
|
+
self._ApproverInfo = NeedReviewApproverInfo()
|
|
4766
|
+
self._ApproverInfo._deserialize(params.get("ApproverInfo"))
|
|
4767
|
+
if params.get("Agent") is not None:
|
|
4768
|
+
self._Agent = Agent()
|
|
4769
|
+
self._Agent._deserialize(params.get("Agent"))
|
|
4770
|
+
self._ReviewMessage = params.get("ReviewMessage")
|
|
4771
|
+
memeber_set = set(params.keys())
|
|
4772
|
+
for name, value in vars(self).items():
|
|
4773
|
+
property_name = name[1:]
|
|
4774
|
+
if property_name in memeber_set:
|
|
4775
|
+
memeber_set.remove(property_name)
|
|
4776
|
+
if len(memeber_set) > 0:
|
|
4777
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
4778
|
+
|
|
4779
|
+
|
|
4780
|
+
|
|
4781
|
+
class CreateFlowGroupSignReviewResponse(AbstractModel):
|
|
4782
|
+
"""CreateFlowGroupSignReview返回参数结构体
|
|
4783
|
+
|
|
4784
|
+
"""
|
|
4785
|
+
|
|
4786
|
+
def __init__(self):
|
|
4787
|
+
r"""
|
|
4788
|
+
:param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4789
|
+
:type RequestId: str
|
|
4790
|
+
"""
|
|
4791
|
+
self._RequestId = None
|
|
4792
|
+
|
|
4793
|
+
@property
|
|
4794
|
+
def RequestId(self):
|
|
4795
|
+
return self._RequestId
|
|
4796
|
+
|
|
4797
|
+
@RequestId.setter
|
|
4798
|
+
def RequestId(self, RequestId):
|
|
4799
|
+
self._RequestId = RequestId
|
|
4800
|
+
|
|
4801
|
+
|
|
4802
|
+
def _deserialize(self, params):
|
|
4803
|
+
self._RequestId = params.get("RequestId")
|
|
4804
|
+
|
|
4805
|
+
|
|
4667
4806
|
class CreateFlowOption(AbstractModel):
|
|
4668
4807
|
"""创建合同个性化参数
|
|
4669
4808
|
|
|
@@ -5262,23 +5401,18 @@ class CreateFlowSignReviewRequest(AbstractModel):
|
|
|
5262
5401
|
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
5263
5402
|
:type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
|
5264
5403
|
:param _FlowId: 合同流程ID,为32位字符串。
|
|
5265
|
-
|
|
5266
|
-
|
|
5404
|
+
<ul><li>建议开发者妥善保存此流程ID,以便于顺利进行后续操作。</li>
|
|
5405
|
+
<li>可登录腾讯电子签控制台,在 "合同"->"合同中心" 中查看某个合同的FlowId(在页面中展示为合同ID)。</li></ul>
|
|
5267
5406
|
:type FlowId: str
|
|
5268
|
-
:param _ReviewType:
|
|
5269
|
-
<ul><li>PASS:
|
|
5270
|
-
<li>REJECT:
|
|
5407
|
+
:param _ReviewType: 企业内部审核结果
|
|
5408
|
+
<ul><li>PASS: 审核通过</li>
|
|
5409
|
+
<li>REJECT: 审核拒绝</li>
|
|
5410
|
+
<li>SIGN_REJECT:拒签(流程结束)</li></ul>
|
|
5271
5411
|
:type ReviewType: str
|
|
5272
|
-
:param _ReviewMessage: 审核结果原因,
|
|
5273
|
-
字符串长度不超过200
|
|
5274
|
-
当ReviewType 是拒绝(REJECT) 时此字段必填。
|
|
5275
|
-
|
|
5276
|
-
:type ReviewMessage: str
|
|
5277
5412
|
:param _Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
|
5278
5413
|
:type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
|
|
5279
|
-
:param _RecipientId:
|
|
5280
|
-
|
|
5281
|
-
如果签署审核节点是个人, 此参数必填。
|
|
5414
|
+
:param _RecipientId: 审核节点的签署人标志,用于指定当前审核的签署方
|
|
5415
|
+
<ul><li>**如果签署审核节点是个人, 此参数必填**。</li></ul>
|
|
5282
5416
|
:type RecipientId: str
|
|
5283
5417
|
:param _OperateType: 操作类型:(接口通过该字段区分不同的操作类型)
|
|
5284
5418
|
|
|
@@ -5287,14 +5421,21 @@ class CreateFlowSignReviewRequest(AbstractModel):
|
|
|
5287
5421
|
|
|
5288
5422
|
如果审核节点是个人,则操作类型只能为SignReview。
|
|
5289
5423
|
:type OperateType: str
|
|
5424
|
+
:param _ReviewMessage: 审核结果原因
|
|
5425
|
+
<ul><li>字符串长度不超过200</li>
|
|
5426
|
+
<li>当ReviewType 是拒绝(REJECT) 时此字段必填。</li>
|
|
5427
|
+
<li>当ReviewType 是拒绝(SIGN_REJECT) 时此字段必填。</li></ul>
|
|
5428
|
+
|
|
5429
|
+
|
|
5430
|
+
:type ReviewMessage: str
|
|
5290
5431
|
"""
|
|
5291
5432
|
self._Operator = None
|
|
5292
5433
|
self._FlowId = None
|
|
5293
5434
|
self._ReviewType = None
|
|
5294
|
-
self._ReviewMessage = None
|
|
5295
5435
|
self._Agent = None
|
|
5296
5436
|
self._RecipientId = None
|
|
5297
5437
|
self._OperateType = None
|
|
5438
|
+
self._ReviewMessage = None
|
|
5298
5439
|
|
|
5299
5440
|
@property
|
|
5300
5441
|
def Operator(self):
|
|
@@ -5320,14 +5461,6 @@ class CreateFlowSignReviewRequest(AbstractModel):
|
|
|
5320
5461
|
def ReviewType(self, ReviewType):
|
|
5321
5462
|
self._ReviewType = ReviewType
|
|
5322
5463
|
|
|
5323
|
-
@property
|
|
5324
|
-
def ReviewMessage(self):
|
|
5325
|
-
return self._ReviewMessage
|
|
5326
|
-
|
|
5327
|
-
@ReviewMessage.setter
|
|
5328
|
-
def ReviewMessage(self, ReviewMessage):
|
|
5329
|
-
self._ReviewMessage = ReviewMessage
|
|
5330
|
-
|
|
5331
5464
|
@property
|
|
5332
5465
|
def Agent(self):
|
|
5333
5466
|
return self._Agent
|
|
@@ -5352,6 +5485,14 @@ class CreateFlowSignReviewRequest(AbstractModel):
|
|
|
5352
5485
|
def OperateType(self, OperateType):
|
|
5353
5486
|
self._OperateType = OperateType
|
|
5354
5487
|
|
|
5488
|
+
@property
|
|
5489
|
+
def ReviewMessage(self):
|
|
5490
|
+
return self._ReviewMessage
|
|
5491
|
+
|
|
5492
|
+
@ReviewMessage.setter
|
|
5493
|
+
def ReviewMessage(self, ReviewMessage):
|
|
5494
|
+
self._ReviewMessage = ReviewMessage
|
|
5495
|
+
|
|
5355
5496
|
|
|
5356
5497
|
def _deserialize(self, params):
|
|
5357
5498
|
if params.get("Operator") is not None:
|
|
@@ -5359,12 +5500,12 @@ class CreateFlowSignReviewRequest(AbstractModel):
|
|
|
5359
5500
|
self._Operator._deserialize(params.get("Operator"))
|
|
5360
5501
|
self._FlowId = params.get("FlowId")
|
|
5361
5502
|
self._ReviewType = params.get("ReviewType")
|
|
5362
|
-
self._ReviewMessage = params.get("ReviewMessage")
|
|
5363
5503
|
if params.get("Agent") is not None:
|
|
5364
5504
|
self._Agent = Agent()
|
|
5365
5505
|
self._Agent._deserialize(params.get("Agent"))
|
|
5366
5506
|
self._RecipientId = params.get("RecipientId")
|
|
5367
5507
|
self._OperateType = params.get("OperateType")
|
|
5508
|
+
self._ReviewMessage = params.get("ReviewMessage")
|
|
5368
5509
|
memeber_set = set(params.keys())
|
|
5369
5510
|
for name, value in vars(self).items():
|
|
5370
5511
|
property_name = name[1:]
|
|
@@ -14566,7 +14707,8 @@ class FormField(AbstractModel):
|
|
|
14566
14707
|
}
|
|
14567
14708
|
```
|
|
14568
14709
|
|
|
14569
|
-
当控件的 ComponentType='ATTACHMENT'时,FormField.ComponentValue
|
|
14710
|
+
当控件的 ComponentType='ATTACHMENT'时,FormField.ComponentValue支持填入附件图片或者文件的资源ID列表,以逗号分隔,单个附件控件最多支持6个资源ID;
|
|
14711
|
+
支持的文件类型包括doc、docx、xls、xlsx、html、jpg、jpeg、png、bmp、txt、pdf
|
|
14570
14712
|
|
|
14571
14713
|
```
|
|
14572
14714
|
FormField输入示例:
|
|
@@ -15942,6 +16084,114 @@ class ModifyIntegrationRoleResponse(AbstractModel):
|
|
|
15942
16084
|
self._RequestId = params.get("RequestId")
|
|
15943
16085
|
|
|
15944
16086
|
|
|
16087
|
+
class NeedReviewApproverInfo(AbstractModel):
|
|
16088
|
+
"""需要进行签署审核的签署人信息
|
|
16089
|
+
|
|
16090
|
+
"""
|
|
16091
|
+
|
|
16092
|
+
def __init__(self):
|
|
16093
|
+
r"""
|
|
16094
|
+
:param _ApproverType: 签署方经办人的类型,支持以下类型
|
|
16095
|
+
<ul><li> ORGANIZATION 企业(含企业自动签)</li>
|
|
16096
|
+
<li>PERSON 个人(含个人自动签)</li></ul>
|
|
16097
|
+
:type ApproverType: str
|
|
16098
|
+
:param _ApproverName: 签署方经办人的姓名。 经办人的姓名将用于身份认证和电子签名,请确保填写的姓名为签署方的真实姓名,而非昵称等代名。
|
|
16099
|
+
:type ApproverName: str
|
|
16100
|
+
:param _ApproverMobile: 签署方经办人手机号码, 支持国内手机号11位数字(无需加+86前缀或其他字符)。 请确认手机号所有方为此合同签署方。
|
|
16101
|
+
:type ApproverMobile: str
|
|
16102
|
+
:param _ApproverIdCardType: 签署方经办人的证件类型,支持以下类型
|
|
16103
|
+
<ul><li>ID_CARD 居民身份证 (默认值)</li>
|
|
16104
|
+
<li>HONGKONG_AND_MACAO 港澳居民来往内地通行证</li>
|
|
16105
|
+
<li>HONGKONG_MACAO_AND_TAIWAN 港澳台居民居住证(格式同居民身份证)</li>
|
|
16106
|
+
<li>OTHER_CARD_TYPE 其他证件</li></ul>
|
|
16107
|
+
|
|
16108
|
+
注: `其他证件类型为白名单功能,使用前请联系对接的客户经理沟通。`
|
|
16109
|
+
:type ApproverIdCardType: str
|
|
16110
|
+
:param _ApproverIdCardNumber: 签署方经办人的证件号码,应符合以下规则
|
|
16111
|
+
<ul><li>居民身份证号码应为18位字符串,由数字和大写字母X组成(如存在X,请大写)。</li>
|
|
16112
|
+
<li>港澳居民来往内地通行证号码应为9位字符串,第1位为“C”,第2位为英文字母(但“I”、“O”除外),后7位为阿拉伯数字。</li>
|
|
16113
|
+
<li>港澳台居民居住证号码编码规则与中国大陆身份证相同,应为18位字符串。</li></ul>
|
|
16114
|
+
:type ApproverIdCardNumber: str
|
|
16115
|
+
:param _OrganizationName: 组织机构名称。
|
|
16116
|
+
请确认该名称与企业营业执照中注册的名称一致。
|
|
16117
|
+
如果名称中包含英文括号(),请使用中文括号()代替。
|
|
16118
|
+
如果签署方是企业签署方(approverType = 0 或者 approverType = 3), 则企业名称必填。
|
|
16119
|
+
|
|
16120
|
+
:type OrganizationName: str
|
|
16121
|
+
"""
|
|
16122
|
+
self._ApproverType = None
|
|
16123
|
+
self._ApproverName = None
|
|
16124
|
+
self._ApproverMobile = None
|
|
16125
|
+
self._ApproverIdCardType = None
|
|
16126
|
+
self._ApproverIdCardNumber = None
|
|
16127
|
+
self._OrganizationName = None
|
|
16128
|
+
|
|
16129
|
+
@property
|
|
16130
|
+
def ApproverType(self):
|
|
16131
|
+
return self._ApproverType
|
|
16132
|
+
|
|
16133
|
+
@ApproverType.setter
|
|
16134
|
+
def ApproverType(self, ApproverType):
|
|
16135
|
+
self._ApproverType = ApproverType
|
|
16136
|
+
|
|
16137
|
+
@property
|
|
16138
|
+
def ApproverName(self):
|
|
16139
|
+
return self._ApproverName
|
|
16140
|
+
|
|
16141
|
+
@ApproverName.setter
|
|
16142
|
+
def ApproverName(self, ApproverName):
|
|
16143
|
+
self._ApproverName = ApproverName
|
|
16144
|
+
|
|
16145
|
+
@property
|
|
16146
|
+
def ApproverMobile(self):
|
|
16147
|
+
return self._ApproverMobile
|
|
16148
|
+
|
|
16149
|
+
@ApproverMobile.setter
|
|
16150
|
+
def ApproverMobile(self, ApproverMobile):
|
|
16151
|
+
self._ApproverMobile = ApproverMobile
|
|
16152
|
+
|
|
16153
|
+
@property
|
|
16154
|
+
def ApproverIdCardType(self):
|
|
16155
|
+
return self._ApproverIdCardType
|
|
16156
|
+
|
|
16157
|
+
@ApproverIdCardType.setter
|
|
16158
|
+
def ApproverIdCardType(self, ApproverIdCardType):
|
|
16159
|
+
self._ApproverIdCardType = ApproverIdCardType
|
|
16160
|
+
|
|
16161
|
+
@property
|
|
16162
|
+
def ApproverIdCardNumber(self):
|
|
16163
|
+
return self._ApproverIdCardNumber
|
|
16164
|
+
|
|
16165
|
+
@ApproverIdCardNumber.setter
|
|
16166
|
+
def ApproverIdCardNumber(self, ApproverIdCardNumber):
|
|
16167
|
+
self._ApproverIdCardNumber = ApproverIdCardNumber
|
|
16168
|
+
|
|
16169
|
+
@property
|
|
16170
|
+
def OrganizationName(self):
|
|
16171
|
+
return self._OrganizationName
|
|
16172
|
+
|
|
16173
|
+
@OrganizationName.setter
|
|
16174
|
+
def OrganizationName(self, OrganizationName):
|
|
16175
|
+
self._OrganizationName = OrganizationName
|
|
16176
|
+
|
|
16177
|
+
|
|
16178
|
+
def _deserialize(self, params):
|
|
16179
|
+
self._ApproverType = params.get("ApproverType")
|
|
16180
|
+
self._ApproverName = params.get("ApproverName")
|
|
16181
|
+
self._ApproverMobile = params.get("ApproverMobile")
|
|
16182
|
+
self._ApproverIdCardType = params.get("ApproverIdCardType")
|
|
16183
|
+
self._ApproverIdCardNumber = params.get("ApproverIdCardNumber")
|
|
16184
|
+
self._OrganizationName = params.get("OrganizationName")
|
|
16185
|
+
memeber_set = set(params.keys())
|
|
16186
|
+
for name, value in vars(self).items():
|
|
16187
|
+
property_name = name[1:]
|
|
16188
|
+
if property_name in memeber_set:
|
|
16189
|
+
memeber_set.remove(property_name)
|
|
16190
|
+
if len(memeber_set) > 0:
|
|
16191
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
16192
|
+
|
|
16193
|
+
|
|
16194
|
+
|
|
15945
16195
|
class OccupiedSeal(AbstractModel):
|
|
15946
16196
|
"""持有的电子印章信息
|
|
15947
16197
|
|