tencentcloud-sdk-python 3.0.1192__py2.py3-none-any.whl → 3.0.1194__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/billing/v20180709/billing_client.py +3 -0
- tencentcloud/ccc/v20200210/models.py +7 -2
- tencentcloud/cdb/v20170320/models.py +2 -1
- tencentcloud/ckafka/v20190819/ckafka_client.py +23 -0
- tencentcloud/ckafka/v20190819/models.py +192 -0
- tencentcloud/clb/v20180317/clb_client.py +1 -0
- tencentcloud/cloudapp/v20220530/models.py +3 -66
- tencentcloud/cvm/v20170312/cvm_client.py +46 -0
- tencentcloud/cvm/v20170312/errorcodes.py +3 -0
- tencentcloud/cvm/v20170312/models.py +152 -0
- tencentcloud/cynosdb/v20190107/cynosdb_client.py +46 -0
- tencentcloud/cynosdb/v20190107/errorcodes.py +3 -0
- tencentcloud/cynosdb/v20190107/models.py +298 -0
- tencentcloud/es/v20180416/models.py +48 -0
- tencentcloud/ess/v20201111/ess_client.py +37 -21
- tencentcloud/ess/v20201111/models.py +9 -16
- tencentcloud/essbasic/v20210526/essbasic_client.py +46 -31
- tencentcloud/essbasic/v20210526/models.py +13 -13
- tencentcloud/faceid/v20180301/errorcodes.py +1 -1
- tencentcloud/faceid/v20180301/models.py +3 -0
- tencentcloud/hunyuan/v20230901/hunyuan_client.py +1 -1
- tencentcloud/hunyuan/v20230901/models.py +132 -4
- tencentcloud/live/v20180801/live_client.py +1 -1
- tencentcloud/mna/v20210119/errorcodes.py +6 -0
- tencentcloud/mna/v20210119/mna_client.py +138 -0
- tencentcloud/mna/v20210119/models.py +651 -0
- tencentcloud/oceanus/v20190422/models.py +26 -0
- tencentcloud/tke/v20180525/models.py +4 -4
- tencentcloud/trtc/v20190722/models.py +1 -1
- tencentcloud/trtc/v20190722/trtc_client.py +2 -3
- tencentcloud/vpc/v20170312/models.py +1 -1
- {tencentcloud_sdk_python-3.0.1192.dist-info → tencentcloud_sdk_python-3.0.1194.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1192.dist-info → tencentcloud_sdk_python-3.0.1194.dist-info}/RECORD +37 -37
- {tencentcloud_sdk_python-3.0.1192.dist-info → tencentcloud_sdk_python-3.0.1194.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1192.dist-info → tencentcloud_sdk_python-3.0.1194.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1192.dist-info → tencentcloud_sdk_python-3.0.1194.dist-info}/top_level.txt +0 -0
@@ -16778,6 +16778,172 @@ class ExportInstanceSlowQueriesResponse(AbstractModel):
|
|
16778
16778
|
self._RequestId = params.get("RequestId")
|
16779
16779
|
|
16780
16780
|
|
16781
|
+
class ExportResourcePackageDeductDetailsRequest(AbstractModel):
|
16782
|
+
"""ExportResourcePackageDeductDetails请求参数结构体
|
16783
|
+
|
16784
|
+
"""
|
16785
|
+
|
16786
|
+
def __init__(self):
|
16787
|
+
r"""
|
16788
|
+
:param _PackageId: 需要导出的资源包ID
|
16789
|
+
:type PackageId: str
|
16790
|
+
:param _ClusterIds: 使用资源包容量的cynos集群ID
|
16791
|
+
:type ClusterIds: list of str
|
16792
|
+
:param _OrderBy: 排序字段,目前支持:createTime(资源包被抵扣时间),successDeductSpec(资源包抵扣量)
|
16793
|
+
:type OrderBy: str
|
16794
|
+
:param _OrderByType: 排序类型,支持ASC、DESC、asc、desc
|
16795
|
+
:type OrderByType: str
|
16796
|
+
:param _StartTime: 开始时间
|
16797
|
+
:type StartTime: str
|
16798
|
+
:param _EndTime: 结束时间
|
16799
|
+
:type EndTime: str
|
16800
|
+
:param _Limit: 单次最大导出数据行数,目前最大支持2000行
|
16801
|
+
:type Limit: str
|
16802
|
+
:param _Offset: 偏移量页数
|
16803
|
+
:type Offset: str
|
16804
|
+
:param _FileType: 导出数据格式,目前仅支持csv格式,留作扩展
|
16805
|
+
:type FileType: str
|
16806
|
+
"""
|
16807
|
+
self._PackageId = None
|
16808
|
+
self._ClusterIds = None
|
16809
|
+
self._OrderBy = None
|
16810
|
+
self._OrderByType = None
|
16811
|
+
self._StartTime = None
|
16812
|
+
self._EndTime = None
|
16813
|
+
self._Limit = None
|
16814
|
+
self._Offset = None
|
16815
|
+
self._FileType = None
|
16816
|
+
|
16817
|
+
@property
|
16818
|
+
def PackageId(self):
|
16819
|
+
return self._PackageId
|
16820
|
+
|
16821
|
+
@PackageId.setter
|
16822
|
+
def PackageId(self, PackageId):
|
16823
|
+
self._PackageId = PackageId
|
16824
|
+
|
16825
|
+
@property
|
16826
|
+
def ClusterIds(self):
|
16827
|
+
return self._ClusterIds
|
16828
|
+
|
16829
|
+
@ClusterIds.setter
|
16830
|
+
def ClusterIds(self, ClusterIds):
|
16831
|
+
self._ClusterIds = ClusterIds
|
16832
|
+
|
16833
|
+
@property
|
16834
|
+
def OrderBy(self):
|
16835
|
+
return self._OrderBy
|
16836
|
+
|
16837
|
+
@OrderBy.setter
|
16838
|
+
def OrderBy(self, OrderBy):
|
16839
|
+
self._OrderBy = OrderBy
|
16840
|
+
|
16841
|
+
@property
|
16842
|
+
def OrderByType(self):
|
16843
|
+
return self._OrderByType
|
16844
|
+
|
16845
|
+
@OrderByType.setter
|
16846
|
+
def OrderByType(self, OrderByType):
|
16847
|
+
self._OrderByType = OrderByType
|
16848
|
+
|
16849
|
+
@property
|
16850
|
+
def StartTime(self):
|
16851
|
+
return self._StartTime
|
16852
|
+
|
16853
|
+
@StartTime.setter
|
16854
|
+
def StartTime(self, StartTime):
|
16855
|
+
self._StartTime = StartTime
|
16856
|
+
|
16857
|
+
@property
|
16858
|
+
def EndTime(self):
|
16859
|
+
return self._EndTime
|
16860
|
+
|
16861
|
+
@EndTime.setter
|
16862
|
+
def EndTime(self, EndTime):
|
16863
|
+
self._EndTime = EndTime
|
16864
|
+
|
16865
|
+
@property
|
16866
|
+
def Limit(self):
|
16867
|
+
return self._Limit
|
16868
|
+
|
16869
|
+
@Limit.setter
|
16870
|
+
def Limit(self, Limit):
|
16871
|
+
self._Limit = Limit
|
16872
|
+
|
16873
|
+
@property
|
16874
|
+
def Offset(self):
|
16875
|
+
return self._Offset
|
16876
|
+
|
16877
|
+
@Offset.setter
|
16878
|
+
def Offset(self, Offset):
|
16879
|
+
self._Offset = Offset
|
16880
|
+
|
16881
|
+
@property
|
16882
|
+
def FileType(self):
|
16883
|
+
return self._FileType
|
16884
|
+
|
16885
|
+
@FileType.setter
|
16886
|
+
def FileType(self, FileType):
|
16887
|
+
self._FileType = FileType
|
16888
|
+
|
16889
|
+
|
16890
|
+
def _deserialize(self, params):
|
16891
|
+
self._PackageId = params.get("PackageId")
|
16892
|
+
self._ClusterIds = params.get("ClusterIds")
|
16893
|
+
self._OrderBy = params.get("OrderBy")
|
16894
|
+
self._OrderByType = params.get("OrderByType")
|
16895
|
+
self._StartTime = params.get("StartTime")
|
16896
|
+
self._EndTime = params.get("EndTime")
|
16897
|
+
self._Limit = params.get("Limit")
|
16898
|
+
self._Offset = params.get("Offset")
|
16899
|
+
self._FileType = params.get("FileType")
|
16900
|
+
memeber_set = set(params.keys())
|
16901
|
+
for name, value in vars(self).items():
|
16902
|
+
property_name = name[1:]
|
16903
|
+
if property_name in memeber_set:
|
16904
|
+
memeber_set.remove(property_name)
|
16905
|
+
if len(memeber_set) > 0:
|
16906
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
16907
|
+
|
16908
|
+
|
16909
|
+
|
16910
|
+
class ExportResourcePackageDeductDetailsResponse(AbstractModel):
|
16911
|
+
"""ExportResourcePackageDeductDetails返回参数结构体
|
16912
|
+
|
16913
|
+
"""
|
16914
|
+
|
16915
|
+
def __init__(self):
|
16916
|
+
r"""
|
16917
|
+
:param _FileContent: 文件详情
|
16918
|
+
:type FileContent: str
|
16919
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
16920
|
+
:type RequestId: str
|
16921
|
+
"""
|
16922
|
+
self._FileContent = None
|
16923
|
+
self._RequestId = None
|
16924
|
+
|
16925
|
+
@property
|
16926
|
+
def FileContent(self):
|
16927
|
+
return self._FileContent
|
16928
|
+
|
16929
|
+
@FileContent.setter
|
16930
|
+
def FileContent(self, FileContent):
|
16931
|
+
self._FileContent = FileContent
|
16932
|
+
|
16933
|
+
@property
|
16934
|
+
def RequestId(self):
|
16935
|
+
return self._RequestId
|
16936
|
+
|
16937
|
+
@RequestId.setter
|
16938
|
+
def RequestId(self, RequestId):
|
16939
|
+
self._RequestId = RequestId
|
16940
|
+
|
16941
|
+
|
16942
|
+
def _deserialize(self, params):
|
16943
|
+
self._FileContent = params.get("FileContent")
|
16944
|
+
self._RequestId = params.get("RequestId")
|
16945
|
+
|
16946
|
+
|
16781
16947
|
class GrantAccountPrivilegesRequest(AbstractModel):
|
16782
16948
|
"""GrantAccountPrivileges请求参数结构体
|
16783
16949
|
|
@@ -21765,6 +21931,93 @@ class ModifyResourcePackageNameResponse(AbstractModel):
|
|
21765
21931
|
self._RequestId = params.get("RequestId")
|
21766
21932
|
|
21767
21933
|
|
21934
|
+
class ModifyResourcePackagesDeductionPriorityRequest(AbstractModel):
|
21935
|
+
"""ModifyResourcePackagesDeductionPriority请求参数结构体
|
21936
|
+
|
21937
|
+
"""
|
21938
|
+
|
21939
|
+
def __init__(self):
|
21940
|
+
r"""
|
21941
|
+
:param _PackageType: 需要修改优先级的资源包类型,CCU:计算资源包,DISK:存储资源包
|
21942
|
+
:type PackageType: str
|
21943
|
+
:param _ClusterId: 修改后的抵扣优先级对于哪个cynos资源生效
|
21944
|
+
:type ClusterId: str
|
21945
|
+
:param _DeductionPriorities: 资源包抵扣优先级
|
21946
|
+
:type DeductionPriorities: list of PackagePriority
|
21947
|
+
"""
|
21948
|
+
self._PackageType = None
|
21949
|
+
self._ClusterId = None
|
21950
|
+
self._DeductionPriorities = None
|
21951
|
+
|
21952
|
+
@property
|
21953
|
+
def PackageType(self):
|
21954
|
+
return self._PackageType
|
21955
|
+
|
21956
|
+
@PackageType.setter
|
21957
|
+
def PackageType(self, PackageType):
|
21958
|
+
self._PackageType = PackageType
|
21959
|
+
|
21960
|
+
@property
|
21961
|
+
def ClusterId(self):
|
21962
|
+
return self._ClusterId
|
21963
|
+
|
21964
|
+
@ClusterId.setter
|
21965
|
+
def ClusterId(self, ClusterId):
|
21966
|
+
self._ClusterId = ClusterId
|
21967
|
+
|
21968
|
+
@property
|
21969
|
+
def DeductionPriorities(self):
|
21970
|
+
return self._DeductionPriorities
|
21971
|
+
|
21972
|
+
@DeductionPriorities.setter
|
21973
|
+
def DeductionPriorities(self, DeductionPriorities):
|
21974
|
+
self._DeductionPriorities = DeductionPriorities
|
21975
|
+
|
21976
|
+
|
21977
|
+
def _deserialize(self, params):
|
21978
|
+
self._PackageType = params.get("PackageType")
|
21979
|
+
self._ClusterId = params.get("ClusterId")
|
21980
|
+
if params.get("DeductionPriorities") is not None:
|
21981
|
+
self._DeductionPriorities = []
|
21982
|
+
for item in params.get("DeductionPriorities"):
|
21983
|
+
obj = PackagePriority()
|
21984
|
+
obj._deserialize(item)
|
21985
|
+
self._DeductionPriorities.append(obj)
|
21986
|
+
memeber_set = set(params.keys())
|
21987
|
+
for name, value in vars(self).items():
|
21988
|
+
property_name = name[1:]
|
21989
|
+
if property_name in memeber_set:
|
21990
|
+
memeber_set.remove(property_name)
|
21991
|
+
if len(memeber_set) > 0:
|
21992
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
21993
|
+
|
21994
|
+
|
21995
|
+
|
21996
|
+
class ModifyResourcePackagesDeductionPriorityResponse(AbstractModel):
|
21997
|
+
"""ModifyResourcePackagesDeductionPriority返回参数结构体
|
21998
|
+
|
21999
|
+
"""
|
22000
|
+
|
22001
|
+
def __init__(self):
|
22002
|
+
r"""
|
22003
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
22004
|
+
:type RequestId: str
|
22005
|
+
"""
|
22006
|
+
self._RequestId = None
|
22007
|
+
|
22008
|
+
@property
|
22009
|
+
def RequestId(self):
|
22010
|
+
return self._RequestId
|
22011
|
+
|
22012
|
+
@RequestId.setter
|
22013
|
+
def RequestId(self, RequestId):
|
22014
|
+
self._RequestId = RequestId
|
22015
|
+
|
22016
|
+
|
22017
|
+
def _deserialize(self, params):
|
22018
|
+
self._RequestId = params.get("RequestId")
|
22019
|
+
|
22020
|
+
|
21768
22021
|
class ModifyVipVportRequest(AbstractModel):
|
21769
22022
|
"""ModifyVipVport请求参数结构体
|
21770
22023
|
|
@@ -23357,6 +23610,51 @@ class PackageDetail(AbstractModel):
|
|
23357
23610
|
|
23358
23611
|
|
23359
23612
|
|
23613
|
+
class PackagePriority(AbstractModel):
|
23614
|
+
"""资源包抵扣优先级
|
23615
|
+
|
23616
|
+
"""
|
23617
|
+
|
23618
|
+
def __init__(self):
|
23619
|
+
r"""
|
23620
|
+
:param _PackageId: 需要自定义抵扣优先级的资源包
|
23621
|
+
:type PackageId: str
|
23622
|
+
:param _DeductionPriority: 自定义的抵扣优先级
|
23623
|
+
:type DeductionPriority: int
|
23624
|
+
"""
|
23625
|
+
self._PackageId = None
|
23626
|
+
self._DeductionPriority = None
|
23627
|
+
|
23628
|
+
@property
|
23629
|
+
def PackageId(self):
|
23630
|
+
return self._PackageId
|
23631
|
+
|
23632
|
+
@PackageId.setter
|
23633
|
+
def PackageId(self, PackageId):
|
23634
|
+
self._PackageId = PackageId
|
23635
|
+
|
23636
|
+
@property
|
23637
|
+
def DeductionPriority(self):
|
23638
|
+
return self._DeductionPriority
|
23639
|
+
|
23640
|
+
@DeductionPriority.setter
|
23641
|
+
def DeductionPriority(self, DeductionPriority):
|
23642
|
+
self._DeductionPriority = DeductionPriority
|
23643
|
+
|
23644
|
+
|
23645
|
+
def _deserialize(self, params):
|
23646
|
+
self._PackageId = params.get("PackageId")
|
23647
|
+
self._DeductionPriority = params.get("DeductionPriority")
|
23648
|
+
memeber_set = set(params.keys())
|
23649
|
+
for name, value in vars(self).items():
|
23650
|
+
property_name = name[1:]
|
23651
|
+
if property_name in memeber_set:
|
23652
|
+
memeber_set.remove(property_name)
|
23653
|
+
if len(memeber_set) > 0:
|
23654
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
23655
|
+
|
23656
|
+
|
23657
|
+
|
23360
23658
|
class ParamDetail(AbstractModel):
|
23361
23659
|
"""实例参数详细描述
|
23362
23660
|
|
@@ -11695,6 +11695,10 @@ class RestartNodesRequest(AbstractModel):
|
|
11695
11695
|
:type IsOffline: bool
|
11696
11696
|
:param _CvmDelayOnlineTime: cvm延迟上架时间
|
11697
11697
|
:type CvmDelayOnlineTime: int
|
11698
|
+
:param _ShardAllocationConcurrents: 分片迁移并发数
|
11699
|
+
:type ShardAllocationConcurrents: int
|
11700
|
+
:param _ShardAllocationBytes: 分片迁移并发速度
|
11701
|
+
:type ShardAllocationBytes: int
|
11698
11702
|
"""
|
11699
11703
|
self._InstanceId = None
|
11700
11704
|
self._NodeNames = None
|
@@ -11702,6 +11706,8 @@ class RestartNodesRequest(AbstractModel):
|
|
11702
11706
|
self._RestartMode = None
|
11703
11707
|
self._IsOffline = None
|
11704
11708
|
self._CvmDelayOnlineTime = None
|
11709
|
+
self._ShardAllocationConcurrents = None
|
11710
|
+
self._ShardAllocationBytes = None
|
11705
11711
|
|
11706
11712
|
@property
|
11707
11713
|
def InstanceId(self):
|
@@ -11751,6 +11757,22 @@ class RestartNodesRequest(AbstractModel):
|
|
11751
11757
|
def CvmDelayOnlineTime(self, CvmDelayOnlineTime):
|
11752
11758
|
self._CvmDelayOnlineTime = CvmDelayOnlineTime
|
11753
11759
|
|
11760
|
+
@property
|
11761
|
+
def ShardAllocationConcurrents(self):
|
11762
|
+
return self._ShardAllocationConcurrents
|
11763
|
+
|
11764
|
+
@ShardAllocationConcurrents.setter
|
11765
|
+
def ShardAllocationConcurrents(self, ShardAllocationConcurrents):
|
11766
|
+
self._ShardAllocationConcurrents = ShardAllocationConcurrents
|
11767
|
+
|
11768
|
+
@property
|
11769
|
+
def ShardAllocationBytes(self):
|
11770
|
+
return self._ShardAllocationBytes
|
11771
|
+
|
11772
|
+
@ShardAllocationBytes.setter
|
11773
|
+
def ShardAllocationBytes(self, ShardAllocationBytes):
|
11774
|
+
self._ShardAllocationBytes = ShardAllocationBytes
|
11775
|
+
|
11754
11776
|
|
11755
11777
|
def _deserialize(self, params):
|
11756
11778
|
self._InstanceId = params.get("InstanceId")
|
@@ -11759,6 +11781,8 @@ class RestartNodesRequest(AbstractModel):
|
|
11759
11781
|
self._RestartMode = params.get("RestartMode")
|
11760
11782
|
self._IsOffline = params.get("IsOffline")
|
11761
11783
|
self._CvmDelayOnlineTime = params.get("CvmDelayOnlineTime")
|
11784
|
+
self._ShardAllocationConcurrents = params.get("ShardAllocationConcurrents")
|
11785
|
+
self._ShardAllocationBytes = params.get("ShardAllocationBytes")
|
11762
11786
|
memeber_set = set(params.keys())
|
11763
11787
|
for name, value in vars(self).items():
|
11764
11788
|
property_name = name[1:]
|
@@ -14938,6 +14962,10 @@ class UpgradeInstanceRequest(AbstractModel):
|
|
14938
14962
|
:type SkipCheckForceRestart: bool
|
14939
14963
|
:param _CvmDelayOnlineTime: cvm延迟上架参数
|
14940
14964
|
:type CvmDelayOnlineTime: int
|
14965
|
+
:param _ShardAllocationConcurrents: 分片迁移并发数
|
14966
|
+
:type ShardAllocationConcurrents: int
|
14967
|
+
:param _ShardAllocationBytes: 分片迁移并发速度
|
14968
|
+
:type ShardAllocationBytes: int
|
14941
14969
|
"""
|
14942
14970
|
self._InstanceId = None
|
14943
14971
|
self._EsVersion = None
|
@@ -14948,6 +14976,8 @@ class UpgradeInstanceRequest(AbstractModel):
|
|
14948
14976
|
self._CosBackup = None
|
14949
14977
|
self._SkipCheckForceRestart = None
|
14950
14978
|
self._CvmDelayOnlineTime = None
|
14979
|
+
self._ShardAllocationConcurrents = None
|
14980
|
+
self._ShardAllocationBytes = None
|
14951
14981
|
|
14952
14982
|
@property
|
14953
14983
|
def InstanceId(self):
|
@@ -15021,6 +15051,22 @@ class UpgradeInstanceRequest(AbstractModel):
|
|
15021
15051
|
def CvmDelayOnlineTime(self, CvmDelayOnlineTime):
|
15022
15052
|
self._CvmDelayOnlineTime = CvmDelayOnlineTime
|
15023
15053
|
|
15054
|
+
@property
|
15055
|
+
def ShardAllocationConcurrents(self):
|
15056
|
+
return self._ShardAllocationConcurrents
|
15057
|
+
|
15058
|
+
@ShardAllocationConcurrents.setter
|
15059
|
+
def ShardAllocationConcurrents(self, ShardAllocationConcurrents):
|
15060
|
+
self._ShardAllocationConcurrents = ShardAllocationConcurrents
|
15061
|
+
|
15062
|
+
@property
|
15063
|
+
def ShardAllocationBytes(self):
|
15064
|
+
return self._ShardAllocationBytes
|
15065
|
+
|
15066
|
+
@ShardAllocationBytes.setter
|
15067
|
+
def ShardAllocationBytes(self, ShardAllocationBytes):
|
15068
|
+
self._ShardAllocationBytes = ShardAllocationBytes
|
15069
|
+
|
15024
15070
|
|
15025
15071
|
def _deserialize(self, params):
|
15026
15072
|
self._InstanceId = params.get("InstanceId")
|
@@ -15032,6 +15078,8 @@ class UpgradeInstanceRequest(AbstractModel):
|
|
15032
15078
|
self._CosBackup = params.get("CosBackup")
|
15033
15079
|
self._SkipCheckForceRestart = params.get("SkipCheckForceRestart")
|
15034
15080
|
self._CvmDelayOnlineTime = params.get("CvmDelayOnlineTime")
|
15081
|
+
self._ShardAllocationConcurrents = params.get("ShardAllocationConcurrents")
|
15082
|
+
self._ShardAllocationBytes = params.get("ShardAllocationBytes")
|
15035
15083
|
memeber_set = set(params.keys())
|
15036
15084
|
for name, value in vars(self).items():
|
15037
15085
|
property_name = name[1:]
|
@@ -376,14 +376,18 @@ class EssClient(AbstractClient):
|
|
376
376
|
|
377
377
|
|
378
378
|
def CreateEmbedWebUrl(self, request):
|
379
|
-
"""本接口(CreateEmbedWebUrl
|
379
|
+
"""本接口(CreateEmbedWebUrl)用于创建可嵌入web页面的URL(此web页面可以通过iframe方式嵌入到贵方系统的网页中),支持以下类型的Web链接创建:
|
380
380
|
1. 创建印章
|
381
381
|
2. 创建模板
|
382
382
|
3. 修改模板
|
383
383
|
4. 预览模板
|
384
384
|
5. 预览合同流程
|
385
385
|
|
386
|
-
|
386
|
+
预览模板的嵌入页面长相如下:
|
387
|
+

|
388
|
+
|
389
|
+
预览合同流程的嵌入页面长相如下:
|
390
|
+

|
387
391
|
|
388
392
|
:param request: Request instance for CreateEmbedWebUrl.
|
389
393
|
:type request: :class:`tencentcloud.ess.v20201111.models.CreateEmbedWebUrlRequest`
|
@@ -1148,11 +1152,17 @@ class EssClient(AbstractClient):
|
|
1148
1152
|
|
1149
1153
|
def CreateOrganizationBatchSignUrl(self, request):
|
1150
1154
|
"""使用此接口,您可以创建企业批量签署链接,员工只需点击链接即可跳转至控制台进行批量签署。<br/>
|
1151
|
-
|
1152
|
-
|
1153
|
-
|
1154
|
-
|
1155
|
-
|
1155
|
+
|
1156
|
+
注:
|
1157
|
+
<ul>
|
1158
|
+
<li>员工必须需作为批量签署合同的签署方,或者是或签合同的候选人之一。</li>
|
1159
|
+
<li><b>本方企业签署链接</b>:如有UserId,应以UserId为主要标识;如果没有UserId,则必须填写Name和Mobile信息。</li>
|
1160
|
+
<li><b>他方企业签署链接</b>:传RecipientIds,且必须是合同发起方调用此接口。打开链接后需要他方签署人登录电子签系统。(<b>如果签署人没有加入对方企业则会引导加入;如果对方企业还没有注册认证,会引导企业注册和认证</b>)</li>
|
1161
|
+
<li>只支持待签署、待填写状态的合同生成签署链接。</li>
|
1162
|
+
</ul>
|
1163
|
+
|
1164
|
+
签署的嵌入页面长相如下:
|
1165
|
+

|
1156
1166
|
|
1157
1167
|
:param request: Request instance for CreateOrganizationBatchSignUrl.
|
1158
1168
|
:type request: :class:`tencentcloud.ess.v20201111.models.CreateOrganizationBatchSignUrlRequest`
|
@@ -1288,9 +1298,12 @@ class EssClient(AbstractClient):
|
|
1288
1298
|
|
1289
1299
|
|
1290
1300
|
def CreatePrepareFlow(self, request):
|
1291
|
-
"""创建发起流程web
|
1292
|
-
|
1293
|
-
|
1301
|
+
"""创建发起流程Web页面,通过该接口可以获取发起流程的可嵌入web页面的URL(此web页面可以通过iframe方式嵌入到贵方系统的网页中)。在页面上完成签署控件等信息的编辑与确认后,可快速发起流程。
|
1302
|
+
|
1303
|
+
<br/>注意:调用接口后,<font color="red">流程不会立即发起,需在嵌入页面上点击【发起合同】按钮来发起流程</font>。
|
1304
|
+
|
1305
|
+
嵌入页面长相如下:
|
1306
|
+

|
1294
1307
|
|
1295
1308
|
:param request: Request instance for CreatePrepareFlow.
|
1296
1309
|
:type request: :class:`tencentcloud.ess.v20201111.models.CreatePrepareFlowRequest`
|
@@ -2435,17 +2448,20 @@ class EssClient(AbstractClient):
|
|
2435
2448
|
|
2436
2449
|
|
2437
2450
|
def ModifyFlowDeadline(self, request):
|
2438
|
-
"""
|
2439
|
-
1.
|
2440
|
-
2.
|
2441
|
-
|
2442
|
-
|
2443
|
-
1.
|
2444
|
-
2.
|
2445
|
-
3.
|
2446
|
-
4.
|
2447
|
-
5.
|
2448
|
-
6.
|
2451
|
+
"""在已启动的签署流程中,可对签署截止日期进行延期操作,主要分为以下两个层面:
|
2452
|
+
1. <b> 合同(流程)层面</b>:仅需提供签署流程ID。此操作将对整个签署流程以及未单独设置签署截止时间的签署人进行延期。
|
2453
|
+
2. <b> 签署人层面</b> :需提供流程ID和签署人ID。此操作针对特定签署人进行延期,特别是对于有序合同(流程),签署截止时间不得超过后续签署人的流程截止时间。
|
2454
|
+
|
2455
|
+
此接口存在以下限制:
|
2456
|
+
1. 执行操作的员工须为<font color="red">发起方企业的超级管理员、法定代表人或签署流程发起人</font>。
|
2457
|
+
2. 延长整个签署流程时,<font color="red">应至少有一方尚未签署</font>(即签署流程不能处于已全部签署完成、已拒签、已过期、已撤回、拒绝填写、已解除等状态)。
|
2458
|
+
3. 延长整个签署流程时,新的签署截止日期应晚于已设定的签署截止日期和当前日期。
|
2459
|
+
4. 延长签署方截止时间时,<font color="red">签署方不能处于流程完结或已终止状态</font>(即签署人不能处于已签署、已拒签、已过期、已撤回、拒绝填写、已解除等状态)。
|
2460
|
+
5. 延长签署方截止时间时,新的签署截止日期应晚于当前日期和已设定的截止日期。若为有序合同,还需早于或等于下一签署人的截止日期,且早于签署流程整体的截止日期。
|
2461
|
+
6. <font color="red">不支持操作合同组合同</font>。
|
2462
|
+
|
2463
|
+
合同(流程)层面 截止时间控制台展示的位置:
|
2464
|
+

|
2449
2465
|
|
2450
2466
|
:param request: Request instance for ModifyFlowDeadline.
|
2451
2467
|
:type request: :class:`tencentcloud.ess.v20201111.models.ModifyFlowDeadlineRequest`
|
@@ -300,7 +300,7 @@ class ApproverInfo(AbstractModel):
|
|
300
300
|
:param _ApproverSignTypes: 您可以指定签署方签署合同的认证校验方式,可传递以下值:
|
301
301
|
<ul><li>**1**:人脸认证,需进行人脸识别成功后才能签署合同;</li>
|
302
302
|
<li>**2**:签署密码,需输入与用户在腾讯电子签设置的密码一致才能校验成功进行合同签署;</li>
|
303
|
-
<li>**3
|
303
|
+
<li>**3**:运营商三要素,需到运营商处比对手机号实名信息(名字、手机号、证件号)校验一致才能成功进行合同签署。(如果是港澳台客户,建议不要选择这个)</li></ul>
|
304
304
|
|
305
305
|
默认为1(人脸认证 ),2(签署密码),3(运营商三要素)
|
306
306
|
|
@@ -3716,7 +3716,7 @@ class CreateEmbedWebUrlRequest(AbstractModel):
|
|
3716
3716
|
def __init__(self):
|
3717
3717
|
r"""
|
3718
3718
|
:param _Operator: 执行本接口操作的员工信息。
|
3719
|
-
<br/>注:
|
3719
|
+
<br/>注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
3720
3720
|
:type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
3721
3721
|
:param _EmbedType: WEB嵌入资源类型,支持以下类型
|
3722
3722
|
<ul><li>CREATE_SEAL: 生成创建印章的嵌入页面</li>
|
@@ -3742,17 +3742,7 @@ class CreateEmbedWebUrlRequest(AbstractModel):
|
|
3742
3742
|
:type Reviewer: :class:`tencentcloud.ess.v20201111.models.ReviewerInfo`
|
3743
3743
|
:param _Option: 个性化参数,用于控制页面展示内容
|
3744
3744
|
:type Option: :class:`tencentcloud.ess.v20201111.models.EmbedUrlOption`
|
3745
|
-
:param _UserData:
|
3746
|
-
<ul>
|
3747
|
-
<li>目前仅支持EmbedType=CREATE_TEMPLATE时传入</li>
|
3748
|
-
<li>指定后,创建,编辑,删除模板时,回调都会携带该userData</li>
|
3749
|
-
<li>支持的格式:json字符串的BASE64编码字符串</li>
|
3750
|
-
<li>示例:<ul>
|
3751
|
-
<li>json字符串:{"ComeFrom":"xxx"},BASE64编码:eyJDb21lRnJvbSI6Inh4eCJ9</li>
|
3752
|
-
<li>eyJDb21lRnJvbSI6Inh4eCJ9,为符合要求的userData数据格式</li>
|
3753
|
-
</ul>
|
3754
|
-
</li>
|
3755
|
-
</ul>
|
3745
|
+
:param _UserData: <ul> <li>目前仅支持EmbedType=CREATE_TEMPLATE时传入</li> <li>指定后,创建,编辑,删除模板时,回调都会携带该userData</li> <li>支持的格式:json字符串的BASE64编码字符串</li> <li>示例:<ul> <li>json字符串:{"ComeFrom":"xxx"},BASE64编码:eyJDb21lRnJvbSI6Inh4eCJ9</li> <li>eyJDb21lRnJvbSI6Inh4eCJ9,为符合要求的userData数据格式</li> </ul> </li> </ul>
|
3756
3746
|
:type UserData: str
|
3757
3747
|
"""
|
3758
3748
|
self._Operator = None
|
@@ -7874,8 +7864,11 @@ class CreateOrganizationBatchSignUrlRequest(AbstractModel):
|
|
7874
7864
|
:param _UserId: 员工在腾讯电子签平台的独特身份标识,为32位字符串。
|
7875
7865
|
您可登录腾讯电子签控制台,在 "更多能力"->"组织管理" 中查阅某位员工的UserId(在页面中显示为用户ID)。
|
7876
7866
|
UserId必须是传入合同(FlowId)中的签署人。
|
7877
|
-
|
7878
|
-
|
7867
|
+
|
7868
|
+
<ul>
|
7869
|
+
<li>1. 若UserId为空,Name和Mobile 必须提供。</li>
|
7870
|
+
<li>2. 若UserId 与 Name,Mobile均存在,将优先采用UserId对应的员工。</li>
|
7871
|
+
</ul>
|
7879
7872
|
:type UserId: str
|
7880
7873
|
:param _Name: 员工姓名,必须与手机号码一起使用。
|
7881
7874
|
如果UserId为空,则此字段不能为空。同时,姓名和手机号码必须与传入合同(FlowId)中的签署人信息一致。
|
@@ -16837,7 +16830,7 @@ class FlowCreateApprover(AbstractModel):
|
|
16837
16830
|
:param _ApproverSignTypes: 您可以指定签署方签署合同的认证校验方式,可传递以下值:
|
16838
16831
|
<ul><li>**1**:人脸认证,需进行人脸识别成功后才能签署合同;</li>
|
16839
16832
|
<li>**2**:签署密码,需输入与用户在腾讯电子签设置的密码一致才能校验成功进行合同签署;</li>
|
16840
|
-
<li>**3
|
16833
|
+
<li>**3**:运营商三要素,需到运营商处比对手机号实名信息(名字、手机号、证件号)校验一致才能成功进行合同签署。(如果是港澳台客户,建议不要选择这个)</li></ul>
|
16841
16834
|
注:
|
16842
16835
|
<ul><li>默认情况下,认证校验方式为人脸认证和签署密码两种形式;</li>
|
16843
16836
|
<li>您可以传递多种值,表示可用多种认证校验方式。</li></ul>
|