tencentcloud-sdk-python 3.0.1246__py2.py3-none-any.whl → 3.0.1248__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/cls/v20201016/errorcodes.py +3 -0
- tencentcloud/cvm/v20170312/cvm_client.py +1 -1
- tencentcloud/cvm/v20170312/errorcodes.py +3 -0
- tencentcloud/cvm/v20170312/models.py +12 -0
- tencentcloud/cynosdb/v20190107/cynosdb_client.py +23 -0
- tencentcloud/cynosdb/v20190107/models.py +160 -0
- tencentcloud/ess/v20201111/errorcodes.py +3 -0
- tencentcloud/ess/v20201111/ess_client.py +47 -0
- tencentcloud/ess/v20201111/models.py +387 -1
- tencentcloud/iss/v20230517/errorcodes.py +3 -0
- tencentcloud/iss/v20230517/models.py +25 -0
- tencentcloud/lke/v20231130/models.py +1 -1
- tencentcloud/vpc/v20170312/models.py +1 -5
- {tencentcloud_sdk_python-3.0.1246.dist-info → tencentcloud_sdk_python-3.0.1248.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1246.dist-info → tencentcloud_sdk_python-3.0.1248.dist-info}/RECORD +19 -19
- {tencentcloud_sdk_python-3.0.1246.dist-info → tencentcloud_sdk_python-3.0.1248.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1246.dist-info → tencentcloud_sdk_python-3.0.1248.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1246.dist-info → tencentcloud_sdk_python-3.0.1248.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -122,6 +122,9 @@ INTERNALERROR_SEARCHERROR = 'InternalError.SearchError'
|
|
122
122
|
# 检索失败
|
123
123
|
INTERNALERROR_SEARCHFAILED = 'InternalError.SearchFailed'
|
124
124
|
|
125
|
+
# 内部错误服务器繁忙
|
126
|
+
INTERNALERROR_SERVERBUSY = 'InternalError.ServerBusy'
|
127
|
+
|
125
128
|
# 参数错误。
|
126
129
|
INVALIDPARAMETER = 'InvalidParameter'
|
127
130
|
|
@@ -1387,7 +1387,7 @@ class CvmClient(AbstractClient):
|
|
1387
1387
|
|
1388
1388
|
|
1389
1389
|
def ImportImage(self, request):
|
1390
|
-
"""本接口(ImportImage)用于导入镜像,导入后的镜像可用于创建实例。目前支持
|
1390
|
+
"""本接口(ImportImage)用于导入镜像,导入后的镜像可用于创建实例。目前支持RAW、VHD、QCOW2、VMDK镜像格式。
|
1391
1391
|
|
1392
1392
|
:param request: Request instance for ImportImage.
|
1393
1393
|
:type request: :class:`tencentcloud.cvm.v20170312.models.ImportImageRequest`
|
@@ -401,6 +401,9 @@ INVALIDPARAMETERVALUE_IPADDRESSMALFORMED = 'InvalidParameterValue.IPAddressMalfo
|
|
401
401
|
# ipv6地址无效
|
402
402
|
INVALIDPARAMETERVALUE_IPV6ADDRESSMALFORMED = 'InvalidParameterValue.IPv6AddressMalformed'
|
403
403
|
|
404
|
+
# ISO文件必须强制导入
|
405
|
+
INVALIDPARAMETERVALUE_ISOMUSTIMPORTBYFORCE = 'InvalidParameterValue.ISOMustImportByForce'
|
406
|
+
|
404
407
|
# HostName参数值不合法
|
405
408
|
INVALIDPARAMETERVALUE_ILLEGALHOSTNAME = 'InvalidParameterValue.IllegalHostName'
|
406
409
|
|
@@ -8601,6 +8601,8 @@ BYOL: 自带许可(Bring Your Own License)
|
|
8601
8601
|
:type LicenseType: str
|
8602
8602
|
:param _BootMode: 启动模式
|
8603
8603
|
:type BootMode: str
|
8604
|
+
:param _ImageFamily: 镜像族
|
8605
|
+
:type ImageFamily: str
|
8604
8606
|
"""
|
8605
8607
|
self._Architecture = None
|
8606
8608
|
self._OsType = None
|
@@ -8613,6 +8615,7 @@ BYOL: 自带许可(Bring Your Own License)
|
|
8613
8615
|
self._TagSpecification = None
|
8614
8616
|
self._LicenseType = None
|
8615
8617
|
self._BootMode = None
|
8618
|
+
self._ImageFamily = None
|
8616
8619
|
|
8617
8620
|
@property
|
8618
8621
|
def Architecture(self):
|
@@ -8702,6 +8705,14 @@ BYOL: 自带许可(Bring Your Own License)
|
|
8702
8705
|
def BootMode(self, BootMode):
|
8703
8706
|
self._BootMode = BootMode
|
8704
8707
|
|
8708
|
+
@property
|
8709
|
+
def ImageFamily(self):
|
8710
|
+
return self._ImageFamily
|
8711
|
+
|
8712
|
+
@ImageFamily.setter
|
8713
|
+
def ImageFamily(self, ImageFamily):
|
8714
|
+
self._ImageFamily = ImageFamily
|
8715
|
+
|
8705
8716
|
|
8706
8717
|
def _deserialize(self, params):
|
8707
8718
|
self._Architecture = params.get("Architecture")
|
@@ -8720,6 +8731,7 @@ BYOL: 自带许可(Bring Your Own License)
|
|
8720
8731
|
self._TagSpecification.append(obj)
|
8721
8732
|
self._LicenseType = params.get("LicenseType")
|
8722
8733
|
self._BootMode = params.get("BootMode")
|
8734
|
+
self._ImageFamily = params.get("ImageFamily")
|
8723
8735
|
memeber_set = set(params.keys())
|
8724
8736
|
for name, value in vars(self).items():
|
8725
8737
|
property_name = name[1:]
|
@@ -1981,6 +1981,29 @@ class CynosdbClient(AbstractClient):
|
|
1981
1981
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1982
1982
|
|
1983
1983
|
|
1984
|
+
def InquirePriceModify(self, request):
|
1985
|
+
"""变配预付费集群询价
|
1986
|
+
|
1987
|
+
:param request: Request instance for InquirePriceModify.
|
1988
|
+
:type request: :class:`tencentcloud.cynosdb.v20190107.models.InquirePriceModifyRequest`
|
1989
|
+
:rtype: :class:`tencentcloud.cynosdb.v20190107.models.InquirePriceModifyResponse`
|
1990
|
+
|
1991
|
+
"""
|
1992
|
+
try:
|
1993
|
+
params = request._serialize()
|
1994
|
+
headers = request.headers
|
1995
|
+
body = self.call("InquirePriceModify", params, headers=headers)
|
1996
|
+
response = json.loads(body)
|
1997
|
+
model = models.InquirePriceModifyResponse()
|
1998
|
+
model._deserialize(response["Response"])
|
1999
|
+
return model
|
2000
|
+
except Exception as e:
|
2001
|
+
if isinstance(e, TencentCloudSDKException):
|
2002
|
+
raise
|
2003
|
+
else:
|
2004
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2005
|
+
|
2006
|
+
|
1984
2007
|
def InquirePriceRenew(self, request):
|
1985
2008
|
"""查询续费集群价格
|
1986
2009
|
|
@@ -17688,6 +17688,166 @@ class InquirePriceCreateResponse(AbstractModel):
|
|
17688
17688
|
self._RequestId = params.get("RequestId")
|
17689
17689
|
|
17690
17690
|
|
17691
|
+
class InquirePriceModifyRequest(AbstractModel):
|
17692
|
+
"""InquirePriceModify请求参数结构体
|
17693
|
+
|
17694
|
+
"""
|
17695
|
+
|
17696
|
+
def __init__(self):
|
17697
|
+
r"""
|
17698
|
+
:param _ClusterId: 集群ID
|
17699
|
+
:type ClusterId: str
|
17700
|
+
:param _Cpu: CPU核数
|
17701
|
+
:type Cpu: int
|
17702
|
+
:param _Memory: 内存大小
|
17703
|
+
:type Memory: int
|
17704
|
+
:param _StorageLimit: 存储大小,存储资源变配:ClusterId,StorageLimit
|
17705
|
+
:type StorageLimit: int
|
17706
|
+
:param _InstanceId: 实例ID,计算资源变配必传: ClusterId,InstanceId,Cpu,Memory
|
17707
|
+
:type InstanceId: str
|
17708
|
+
:param _DeviceType: 实例设备类型
|
17709
|
+
:type DeviceType: str
|
17710
|
+
:param _Ccu: serverless实例ccu大小
|
17711
|
+
:type Ccu: float
|
17712
|
+
"""
|
17713
|
+
self._ClusterId = None
|
17714
|
+
self._Cpu = None
|
17715
|
+
self._Memory = None
|
17716
|
+
self._StorageLimit = None
|
17717
|
+
self._InstanceId = None
|
17718
|
+
self._DeviceType = None
|
17719
|
+
self._Ccu = None
|
17720
|
+
|
17721
|
+
@property
|
17722
|
+
def ClusterId(self):
|
17723
|
+
return self._ClusterId
|
17724
|
+
|
17725
|
+
@ClusterId.setter
|
17726
|
+
def ClusterId(self, ClusterId):
|
17727
|
+
self._ClusterId = ClusterId
|
17728
|
+
|
17729
|
+
@property
|
17730
|
+
def Cpu(self):
|
17731
|
+
return self._Cpu
|
17732
|
+
|
17733
|
+
@Cpu.setter
|
17734
|
+
def Cpu(self, Cpu):
|
17735
|
+
self._Cpu = Cpu
|
17736
|
+
|
17737
|
+
@property
|
17738
|
+
def Memory(self):
|
17739
|
+
return self._Memory
|
17740
|
+
|
17741
|
+
@Memory.setter
|
17742
|
+
def Memory(self, Memory):
|
17743
|
+
self._Memory = Memory
|
17744
|
+
|
17745
|
+
@property
|
17746
|
+
def StorageLimit(self):
|
17747
|
+
return self._StorageLimit
|
17748
|
+
|
17749
|
+
@StorageLimit.setter
|
17750
|
+
def StorageLimit(self, StorageLimit):
|
17751
|
+
self._StorageLimit = StorageLimit
|
17752
|
+
|
17753
|
+
@property
|
17754
|
+
def InstanceId(self):
|
17755
|
+
return self._InstanceId
|
17756
|
+
|
17757
|
+
@InstanceId.setter
|
17758
|
+
def InstanceId(self, InstanceId):
|
17759
|
+
self._InstanceId = InstanceId
|
17760
|
+
|
17761
|
+
@property
|
17762
|
+
def DeviceType(self):
|
17763
|
+
return self._DeviceType
|
17764
|
+
|
17765
|
+
@DeviceType.setter
|
17766
|
+
def DeviceType(self, DeviceType):
|
17767
|
+
self._DeviceType = DeviceType
|
17768
|
+
|
17769
|
+
@property
|
17770
|
+
def Ccu(self):
|
17771
|
+
return self._Ccu
|
17772
|
+
|
17773
|
+
@Ccu.setter
|
17774
|
+
def Ccu(self, Ccu):
|
17775
|
+
self._Ccu = Ccu
|
17776
|
+
|
17777
|
+
|
17778
|
+
def _deserialize(self, params):
|
17779
|
+
self._ClusterId = params.get("ClusterId")
|
17780
|
+
self._Cpu = params.get("Cpu")
|
17781
|
+
self._Memory = params.get("Memory")
|
17782
|
+
self._StorageLimit = params.get("StorageLimit")
|
17783
|
+
self._InstanceId = params.get("InstanceId")
|
17784
|
+
self._DeviceType = params.get("DeviceType")
|
17785
|
+
self._Ccu = params.get("Ccu")
|
17786
|
+
memeber_set = set(params.keys())
|
17787
|
+
for name, value in vars(self).items():
|
17788
|
+
property_name = name[1:]
|
17789
|
+
if property_name in memeber_set:
|
17790
|
+
memeber_set.remove(property_name)
|
17791
|
+
if len(memeber_set) > 0:
|
17792
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
17793
|
+
|
17794
|
+
|
17795
|
+
|
17796
|
+
class InquirePriceModifyResponse(AbstractModel):
|
17797
|
+
"""InquirePriceModify返回参数结构体
|
17798
|
+
|
17799
|
+
"""
|
17800
|
+
|
17801
|
+
def __init__(self):
|
17802
|
+
r"""
|
17803
|
+
:param _InstancePrice: 实例价格
|
17804
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
17805
|
+
:type InstancePrice: :class:`tencentcloud.cynosdb.v20190107.models.TradePrice`
|
17806
|
+
:param _StoragePrice: 存储价格
|
17807
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
17808
|
+
:type StoragePrice: :class:`tencentcloud.cynosdb.v20190107.models.TradePrice`
|
17809
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
17810
|
+
:type RequestId: str
|
17811
|
+
"""
|
17812
|
+
self._InstancePrice = None
|
17813
|
+
self._StoragePrice = None
|
17814
|
+
self._RequestId = None
|
17815
|
+
|
17816
|
+
@property
|
17817
|
+
def InstancePrice(self):
|
17818
|
+
return self._InstancePrice
|
17819
|
+
|
17820
|
+
@InstancePrice.setter
|
17821
|
+
def InstancePrice(self, InstancePrice):
|
17822
|
+
self._InstancePrice = InstancePrice
|
17823
|
+
|
17824
|
+
@property
|
17825
|
+
def StoragePrice(self):
|
17826
|
+
return self._StoragePrice
|
17827
|
+
|
17828
|
+
@StoragePrice.setter
|
17829
|
+
def StoragePrice(self, StoragePrice):
|
17830
|
+
self._StoragePrice = StoragePrice
|
17831
|
+
|
17832
|
+
@property
|
17833
|
+
def RequestId(self):
|
17834
|
+
return self._RequestId
|
17835
|
+
|
17836
|
+
@RequestId.setter
|
17837
|
+
def RequestId(self, RequestId):
|
17838
|
+
self._RequestId = RequestId
|
17839
|
+
|
17840
|
+
|
17841
|
+
def _deserialize(self, params):
|
17842
|
+
if params.get("InstancePrice") is not None:
|
17843
|
+
self._InstancePrice = TradePrice()
|
17844
|
+
self._InstancePrice._deserialize(params.get("InstancePrice"))
|
17845
|
+
if params.get("StoragePrice") is not None:
|
17846
|
+
self._StoragePrice = TradePrice()
|
17847
|
+
self._StoragePrice._deserialize(params.get("StoragePrice"))
|
17848
|
+
self._RequestId = params.get("RequestId")
|
17849
|
+
|
17850
|
+
|
17691
17851
|
class InquirePriceRenewRequest(AbstractModel):
|
17692
17852
|
"""InquirePriceRenew请求参数结构体
|
17693
17853
|
|
@@ -197,6 +197,9 @@ INVALIDPARAMETER_EMPTYPARAMS = 'InvalidParameter.EmptyParams'
|
|
197
197
|
# 不合法的EndPoint,请检查修改后重试。
|
198
198
|
INVALIDPARAMETER_ENDPOINT = 'InvalidParameter.EndPoint'
|
199
199
|
|
200
|
+
# 不合法的合同过期时间
|
201
|
+
INVALIDPARAMETER_FLOWAPPROVERDEADLINE = 'InvalidParameter.FlowApproverDeadline'
|
202
|
+
|
200
203
|
# 不合法的签署流程回调链接,请修改后重试。
|
201
204
|
INVALIDPARAMETER_FLOWCALLBACKURL = 'InvalidParameter.FlowCallbackUrl'
|
202
205
|
|
@@ -26,6 +26,29 @@ class EssClient(AbstractClient):
|
|
26
26
|
_service = 'ess'
|
27
27
|
|
28
28
|
|
29
|
+
def ArchiveDynamicFlow(self, request):
|
30
|
+
"""该接口用于结束动态签署流程,若当前合同还存在签署方未签署,无法结束。
|
31
|
+
|
32
|
+
:param request: Request instance for ArchiveDynamicFlow.
|
33
|
+
:type request: :class:`tencentcloud.ess.v20201111.models.ArchiveDynamicFlowRequest`
|
34
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.ArchiveDynamicFlowResponse`
|
35
|
+
|
36
|
+
"""
|
37
|
+
try:
|
38
|
+
params = request._serialize()
|
39
|
+
headers = request.headers
|
40
|
+
body = self.call("ArchiveDynamicFlow", params, headers=headers)
|
41
|
+
response = json.loads(body)
|
42
|
+
model = models.ArchiveDynamicFlowResponse()
|
43
|
+
model._deserialize(response["Response"])
|
44
|
+
return model
|
45
|
+
except Exception as e:
|
46
|
+
if isinstance(e, TencentCloudSDKException):
|
47
|
+
raise
|
48
|
+
else:
|
49
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
50
|
+
|
51
|
+
|
29
52
|
def BindEmployeeUserIdWithClientOpenId(self, request):
|
30
53
|
"""此接口(BindEmployeeUserIdWithClientOpenId)用于将电子签系统员工UserId与客户系统员工OpenId进行绑定。
|
31
54
|
|
@@ -434,6 +457,30 @@ class EssClient(AbstractClient):
|
|
434
457
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
435
458
|
|
436
459
|
|
460
|
+
def CreateDynamicFlowApprover(self, request):
|
461
|
+
"""此接口(CreateDynamicFlowApprover)用来补充动态合同的签署人信息。<br/>
|
462
|
+
适用场景:使用CreateFlowByFiles指定:OpenDynamicSignFlow=true发起的合同,可以使用该接口补充后续签署人。<br/>
|
463
|
+
|
464
|
+
:param request: Request instance for CreateDynamicFlowApprover.
|
465
|
+
:type request: :class:`tencentcloud.ess.v20201111.models.CreateDynamicFlowApproverRequest`
|
466
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.CreateDynamicFlowApproverResponse`
|
467
|
+
|
468
|
+
"""
|
469
|
+
try:
|
470
|
+
params = request._serialize()
|
471
|
+
headers = request.headers
|
472
|
+
body = self.call("CreateDynamicFlowApprover", params, headers=headers)
|
473
|
+
response = json.loads(body)
|
474
|
+
model = models.CreateDynamicFlowApproverResponse()
|
475
|
+
model._deserialize(response["Response"])
|
476
|
+
return model
|
477
|
+
except Exception as e:
|
478
|
+
if isinstance(e, TencentCloudSDKException):
|
479
|
+
raise
|
480
|
+
else:
|
481
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
482
|
+
|
483
|
+
|
437
484
|
def CreateEmbedWebUrl(self, request):
|
438
485
|
"""本接口(CreateEmbedWebUrl)用于创建可嵌入web页面的URL(此web页面可以通过iframe方式嵌入到贵方系统的网页中),支持以下类型的Web链接创建:
|
439
486
|
1. 创建印章
|
@@ -242,7 +242,9 @@ class ApproverInfo(AbstractModel):
|
|
242
242
|
|
243
243
|
|
244
244
|
|
245
|
-
注:
|
245
|
+
注:
|
246
|
+
1. <b>其他证件类型为白名单功能</b>,使用前请联系对接的客户经理沟通。
|
247
|
+
2. 港澳居民来往内地通行证 和 港澳台居民居住证 类型的签署人<b>至少要过一次大陆的海关</b>才能使用。
|
246
248
|
:type ApproverIdCardType: str
|
247
249
|
:param _ApproverIdCardNumber: 签署方经办人的证件号码,应符合以下规则
|
248
250
|
<ul><li>居民身份证号码应为18位字符串,由数字和大写字母X组成(如存在X,请大写)。</li>
|
@@ -836,6 +838,172 @@ class ApproverRestriction(AbstractModel):
|
|
836
838
|
|
837
839
|
|
838
840
|
|
841
|
+
class ArchiveDynamicApproverData(AbstractModel):
|
842
|
+
"""动态签署2.0合同参与人信息
|
843
|
+
|
844
|
+
"""
|
845
|
+
|
846
|
+
def __init__(self):
|
847
|
+
r"""
|
848
|
+
:param _SignId: 签署参与人在本流程中的编号ID(每个流程不同),可用此ID来定位签署参与人在本流程的签署节点,也可用于后续创建签署链接等操作。 注意:不指定该字段时默认为发起方
|
849
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
850
|
+
:type SignId: str
|
851
|
+
:param _RecipientId: 签署方经办人在模板中配置的参与方ID,与控件绑定,是控件的归属方,ID为32位字符串。 模板发起合同时,该参数为必填项。 文件发起合同是,该参数无需传值。 如果开发者后序用合同模板发起合同,建议保存此值,在用合同模板发起合同中需此值绑定对应的签署经办人 。
|
852
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
853
|
+
:type RecipientId: str
|
854
|
+
"""
|
855
|
+
self._SignId = None
|
856
|
+
self._RecipientId = None
|
857
|
+
|
858
|
+
@property
|
859
|
+
def SignId(self):
|
860
|
+
return self._SignId
|
861
|
+
|
862
|
+
@SignId.setter
|
863
|
+
def SignId(self, SignId):
|
864
|
+
self._SignId = SignId
|
865
|
+
|
866
|
+
@property
|
867
|
+
def RecipientId(self):
|
868
|
+
return self._RecipientId
|
869
|
+
|
870
|
+
@RecipientId.setter
|
871
|
+
def RecipientId(self, RecipientId):
|
872
|
+
self._RecipientId = RecipientId
|
873
|
+
|
874
|
+
|
875
|
+
def _deserialize(self, params):
|
876
|
+
self._SignId = params.get("SignId")
|
877
|
+
self._RecipientId = params.get("RecipientId")
|
878
|
+
memeber_set = set(params.keys())
|
879
|
+
for name, value in vars(self).items():
|
880
|
+
property_name = name[1:]
|
881
|
+
if property_name in memeber_set:
|
882
|
+
memeber_set.remove(property_name)
|
883
|
+
if len(memeber_set) > 0:
|
884
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
885
|
+
|
886
|
+
|
887
|
+
|
888
|
+
class ArchiveDynamicFlowRequest(AbstractModel):
|
889
|
+
"""ArchiveDynamicFlow请求参数结构体
|
890
|
+
|
891
|
+
"""
|
892
|
+
|
893
|
+
def __init__(self):
|
894
|
+
r"""
|
895
|
+
:param _Operator: 执行本接口操作的员工信息。
|
896
|
+
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
897
|
+
:type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
898
|
+
:param _FlowId: 合同流程ID, 为32位字符串。
|
899
|
+
|
900
|
+
可登录腾讯电子签控制台,[点击查看FlowId在控制台中的位置](https://qcloudimg.tencent-cloud.cn/raw/0a83015166cfe1cb043d14f9ec4bd75e.png)
|
901
|
+
:type FlowId: str
|
902
|
+
:param _Agent: 代理企业和员工的信息。
|
903
|
+
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
904
|
+
:type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
|
905
|
+
"""
|
906
|
+
self._Operator = None
|
907
|
+
self._FlowId = None
|
908
|
+
self._Agent = None
|
909
|
+
|
910
|
+
@property
|
911
|
+
def Operator(self):
|
912
|
+
return self._Operator
|
913
|
+
|
914
|
+
@Operator.setter
|
915
|
+
def Operator(self, Operator):
|
916
|
+
self._Operator = Operator
|
917
|
+
|
918
|
+
@property
|
919
|
+
def FlowId(self):
|
920
|
+
return self._FlowId
|
921
|
+
|
922
|
+
@FlowId.setter
|
923
|
+
def FlowId(self, FlowId):
|
924
|
+
self._FlowId = FlowId
|
925
|
+
|
926
|
+
@property
|
927
|
+
def Agent(self):
|
928
|
+
return self._Agent
|
929
|
+
|
930
|
+
@Agent.setter
|
931
|
+
def Agent(self, Agent):
|
932
|
+
self._Agent = Agent
|
933
|
+
|
934
|
+
|
935
|
+
def _deserialize(self, params):
|
936
|
+
if params.get("Operator") is not None:
|
937
|
+
self._Operator = UserInfo()
|
938
|
+
self._Operator._deserialize(params.get("Operator"))
|
939
|
+
self._FlowId = params.get("FlowId")
|
940
|
+
if params.get("Agent") is not None:
|
941
|
+
self._Agent = Agent()
|
942
|
+
self._Agent._deserialize(params.get("Agent"))
|
943
|
+
memeber_set = set(params.keys())
|
944
|
+
for name, value in vars(self).items():
|
945
|
+
property_name = name[1:]
|
946
|
+
if property_name in memeber_set:
|
947
|
+
memeber_set.remove(property_name)
|
948
|
+
if len(memeber_set) > 0:
|
949
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
950
|
+
|
951
|
+
|
952
|
+
|
953
|
+
class ArchiveDynamicFlowResponse(AbstractModel):
|
954
|
+
"""ArchiveDynamicFlow返回参数结构体
|
955
|
+
|
956
|
+
"""
|
957
|
+
|
958
|
+
def __init__(self):
|
959
|
+
r"""
|
960
|
+
:param _FlowId: 合同流程ID
|
961
|
+
:type FlowId: str
|
962
|
+
:param _Approvers: 动态签署人的参与人信息
|
963
|
+
:type Approvers: list of ArchiveDynamicApproverData
|
964
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
965
|
+
:type RequestId: str
|
966
|
+
"""
|
967
|
+
self._FlowId = None
|
968
|
+
self._Approvers = None
|
969
|
+
self._RequestId = None
|
970
|
+
|
971
|
+
@property
|
972
|
+
def FlowId(self):
|
973
|
+
return self._FlowId
|
974
|
+
|
975
|
+
@FlowId.setter
|
976
|
+
def FlowId(self, FlowId):
|
977
|
+
self._FlowId = FlowId
|
978
|
+
|
979
|
+
@property
|
980
|
+
def Approvers(self):
|
981
|
+
return self._Approvers
|
982
|
+
|
983
|
+
@Approvers.setter
|
984
|
+
def Approvers(self, Approvers):
|
985
|
+
self._Approvers = Approvers
|
986
|
+
|
987
|
+
@property
|
988
|
+
def RequestId(self):
|
989
|
+
return self._RequestId
|
990
|
+
|
991
|
+
@RequestId.setter
|
992
|
+
def RequestId(self, RequestId):
|
993
|
+
self._RequestId = RequestId
|
994
|
+
|
995
|
+
|
996
|
+
def _deserialize(self, params):
|
997
|
+
self._FlowId = params.get("FlowId")
|
998
|
+
if params.get("Approvers") is not None:
|
999
|
+
self._Approvers = []
|
1000
|
+
for item in params.get("Approvers"):
|
1001
|
+
obj = ArchiveDynamicApproverData()
|
1002
|
+
obj._deserialize(item)
|
1003
|
+
self._Approvers.append(obj)
|
1004
|
+
self._RequestId = params.get("RequestId")
|
1005
|
+
|
1006
|
+
|
839
1007
|
class AuthInfoDetail(AbstractModel):
|
840
1008
|
"""企业扩展服务授权列表详情
|
841
1009
|
|
@@ -4155,6 +4323,150 @@ class CreateDocumentResponse(AbstractModel):
|
|
4155
4323
|
self._RequestId = params.get("RequestId")
|
4156
4324
|
|
4157
4325
|
|
4326
|
+
class CreateDynamicFlowApproverRequest(AbstractModel):
|
4327
|
+
"""CreateDynamicFlowApprover请求参数结构体
|
4328
|
+
|
4329
|
+
"""
|
4330
|
+
|
4331
|
+
def __init__(self):
|
4332
|
+
r"""
|
4333
|
+
:param _Operator: 执行本接口操作的员工信息。使用此接口时,必须填写userId。支持填入集团子公司经办人 userId 代发合同。注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
4334
|
+
:type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
|
4335
|
+
:param _FlowId: 合同流程ID,为32位字符串
|
4336
|
+
:type FlowId: str
|
4337
|
+
:param _Approvers: 合同流程的参与方列表,最多可支持50个参与方,可在列表中指定企业B端签署方和个人C端签署方的联系和认证方式等信息,具体定义可以参考开发者中心的ApproverInfo结构体。如果合同流程是有序签署,Approvers列表中参与人的顺序就是默认的签署顺序,请确保列表中参与人的顺序符合实际签署顺序。
|
4338
|
+
:type Approvers: list of ApproverInfo
|
4339
|
+
:param _Agent: 代理企业和员工的信息。在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
4340
|
+
:type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
|
4341
|
+
:param _AutoSignScene: 个人自动签名的使用场景包括以下, 个人自动签署(即ApproverType设置成个人自动签署时)业务此值必传:<ul><li> **E_PRESCRIPTION_AUTO_SIGN**:电子处方单(医疗自动签) </li><li> **OTHER** : 通用场景</li></ul>注: `个人自动签名场景是白名单功能,使用前请与对接的客户经理联系沟通。`
|
4342
|
+
:type AutoSignScene: str
|
4343
|
+
"""
|
4344
|
+
self._Operator = None
|
4345
|
+
self._FlowId = None
|
4346
|
+
self._Approvers = None
|
4347
|
+
self._Agent = None
|
4348
|
+
self._AutoSignScene = None
|
4349
|
+
|
4350
|
+
@property
|
4351
|
+
def Operator(self):
|
4352
|
+
return self._Operator
|
4353
|
+
|
4354
|
+
@Operator.setter
|
4355
|
+
def Operator(self, Operator):
|
4356
|
+
self._Operator = Operator
|
4357
|
+
|
4358
|
+
@property
|
4359
|
+
def FlowId(self):
|
4360
|
+
return self._FlowId
|
4361
|
+
|
4362
|
+
@FlowId.setter
|
4363
|
+
def FlowId(self, FlowId):
|
4364
|
+
self._FlowId = FlowId
|
4365
|
+
|
4366
|
+
@property
|
4367
|
+
def Approvers(self):
|
4368
|
+
return self._Approvers
|
4369
|
+
|
4370
|
+
@Approvers.setter
|
4371
|
+
def Approvers(self, Approvers):
|
4372
|
+
self._Approvers = Approvers
|
4373
|
+
|
4374
|
+
@property
|
4375
|
+
def Agent(self):
|
4376
|
+
return self._Agent
|
4377
|
+
|
4378
|
+
@Agent.setter
|
4379
|
+
def Agent(self, Agent):
|
4380
|
+
self._Agent = Agent
|
4381
|
+
|
4382
|
+
@property
|
4383
|
+
def AutoSignScene(self):
|
4384
|
+
return self._AutoSignScene
|
4385
|
+
|
4386
|
+
@AutoSignScene.setter
|
4387
|
+
def AutoSignScene(self, AutoSignScene):
|
4388
|
+
self._AutoSignScene = AutoSignScene
|
4389
|
+
|
4390
|
+
|
4391
|
+
def _deserialize(self, params):
|
4392
|
+
if params.get("Operator") is not None:
|
4393
|
+
self._Operator = UserInfo()
|
4394
|
+
self._Operator._deserialize(params.get("Operator"))
|
4395
|
+
self._FlowId = params.get("FlowId")
|
4396
|
+
if params.get("Approvers") is not None:
|
4397
|
+
self._Approvers = []
|
4398
|
+
for item in params.get("Approvers"):
|
4399
|
+
obj = ApproverInfo()
|
4400
|
+
obj._deserialize(item)
|
4401
|
+
self._Approvers.append(obj)
|
4402
|
+
if params.get("Agent") is not None:
|
4403
|
+
self._Agent = Agent()
|
4404
|
+
self._Agent._deserialize(params.get("Agent"))
|
4405
|
+
self._AutoSignScene = params.get("AutoSignScene")
|
4406
|
+
memeber_set = set(params.keys())
|
4407
|
+
for name, value in vars(self).items():
|
4408
|
+
property_name = name[1:]
|
4409
|
+
if property_name in memeber_set:
|
4410
|
+
memeber_set.remove(property_name)
|
4411
|
+
if len(memeber_set) > 0:
|
4412
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
4413
|
+
|
4414
|
+
|
4415
|
+
|
4416
|
+
class CreateDynamicFlowApproverResponse(AbstractModel):
|
4417
|
+
"""CreateDynamicFlowApprover返回参数结构体
|
4418
|
+
|
4419
|
+
"""
|
4420
|
+
|
4421
|
+
def __init__(self):
|
4422
|
+
r"""
|
4423
|
+
:param _FlowId: 合同流程ID,为32位字符串
|
4424
|
+
:type FlowId: str
|
4425
|
+
:param _DynamicFlowApproverList: 补充动态合同签署人的结果数组
|
4426
|
+
:type DynamicFlowApproverList: list of DynamicFlowApproverResult
|
4427
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4428
|
+
:type RequestId: str
|
4429
|
+
"""
|
4430
|
+
self._FlowId = None
|
4431
|
+
self._DynamicFlowApproverList = None
|
4432
|
+
self._RequestId = None
|
4433
|
+
|
4434
|
+
@property
|
4435
|
+
def FlowId(self):
|
4436
|
+
return self._FlowId
|
4437
|
+
|
4438
|
+
@FlowId.setter
|
4439
|
+
def FlowId(self, FlowId):
|
4440
|
+
self._FlowId = FlowId
|
4441
|
+
|
4442
|
+
@property
|
4443
|
+
def DynamicFlowApproverList(self):
|
4444
|
+
return self._DynamicFlowApproverList
|
4445
|
+
|
4446
|
+
@DynamicFlowApproverList.setter
|
4447
|
+
def DynamicFlowApproverList(self, DynamicFlowApproverList):
|
4448
|
+
self._DynamicFlowApproverList = DynamicFlowApproverList
|
4449
|
+
|
4450
|
+
@property
|
4451
|
+
def RequestId(self):
|
4452
|
+
return self._RequestId
|
4453
|
+
|
4454
|
+
@RequestId.setter
|
4455
|
+
def RequestId(self, RequestId):
|
4456
|
+
self._RequestId = RequestId
|
4457
|
+
|
4458
|
+
|
4459
|
+
def _deserialize(self, params):
|
4460
|
+
self._FlowId = params.get("FlowId")
|
4461
|
+
if params.get("DynamicFlowApproverList") is not None:
|
4462
|
+
self._DynamicFlowApproverList = []
|
4463
|
+
for item in params.get("DynamicFlowApproverList"):
|
4464
|
+
obj = DynamicFlowApproverResult()
|
4465
|
+
obj._deserialize(item)
|
4466
|
+
self._DynamicFlowApproverList.append(obj)
|
4467
|
+
self._RequestId = params.get("RequestId")
|
4468
|
+
|
4469
|
+
|
4158
4470
|
class CreateEmbedWebUrlRequest(AbstractModel):
|
4159
4471
|
"""CreateEmbedWebUrl请求参数结构体
|
4160
4472
|
|
@@ -4947,6 +5259,10 @@ class CreateFlowByFilesRequest(AbstractModel):
|
|
4947
5259
|
:type NeedSignReview: bool
|
4948
5260
|
:param _FlowDisplayType: 在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li></ul>效果如下:
|
4949
5261
|
:type FlowDisplayType: int
|
5262
|
+
:param _OpenDynamicSignFlow: 是否开启动态签署合同:
|
5263
|
+
<ul><li> **true**:开启动态签署合同,可在签署过程中追加签署人(必须满足:1,发起方企业开启了模块化计费能力;2,发起方企业在企业应用管理中开启了动态签署人2.0能力) 。</li>
|
5264
|
+
<li> **false**:不开启动态签署合同。</li></ul>
|
5265
|
+
:type OpenDynamicSignFlow: bool
|
4950
5266
|
"""
|
4951
5267
|
self._Operator = None
|
4952
5268
|
self._FlowName = None
|
@@ -4970,6 +5286,7 @@ class CreateFlowByFilesRequest(AbstractModel):
|
|
4970
5286
|
self._AutoSignScene = None
|
4971
5287
|
self._NeedSignReview = None
|
4972
5288
|
self._FlowDisplayType = None
|
5289
|
+
self._OpenDynamicSignFlow = None
|
4973
5290
|
|
4974
5291
|
@property
|
4975
5292
|
def Operator(self):
|
@@ -5147,6 +5464,14 @@ class CreateFlowByFilesRequest(AbstractModel):
|
|
5147
5464
|
def FlowDisplayType(self, FlowDisplayType):
|
5148
5465
|
self._FlowDisplayType = FlowDisplayType
|
5149
5466
|
|
5467
|
+
@property
|
5468
|
+
def OpenDynamicSignFlow(self):
|
5469
|
+
return self._OpenDynamicSignFlow
|
5470
|
+
|
5471
|
+
@OpenDynamicSignFlow.setter
|
5472
|
+
def OpenDynamicSignFlow(self, OpenDynamicSignFlow):
|
5473
|
+
self._OpenDynamicSignFlow = OpenDynamicSignFlow
|
5474
|
+
|
5150
5475
|
|
5151
5476
|
def _deserialize(self, params):
|
5152
5477
|
if params.get("Operator") is not None:
|
@@ -5190,6 +5515,7 @@ class CreateFlowByFilesRequest(AbstractModel):
|
|
5190
5515
|
self._AutoSignScene = params.get("AutoSignScene")
|
5191
5516
|
self._NeedSignReview = params.get("NeedSignReview")
|
5192
5517
|
self._FlowDisplayType = params.get("FlowDisplayType")
|
5518
|
+
self._OpenDynamicSignFlow = params.get("OpenDynamicSignFlow")
|
5193
5519
|
memeber_set = set(params.keys())
|
5194
5520
|
for name, value in vars(self).items():
|
5195
5521
|
property_name = name[1:]
|
@@ -16051,6 +16377,66 @@ class DisableUserAutoSignResponse(AbstractModel):
|
|
16051
16377
|
self._RequestId = params.get("RequestId")
|
16052
16378
|
|
16053
16379
|
|
16380
|
+
class DynamicFlowApproverResult(AbstractModel):
|
16381
|
+
"""动态添加签署人的结果信息
|
16382
|
+
|
16383
|
+
"""
|
16384
|
+
|
16385
|
+
def __init__(self):
|
16386
|
+
r"""
|
16387
|
+
:param _RecipientId: 签署方角色编号
|
16388
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
16389
|
+
:type RecipientId: str
|
16390
|
+
:param _SignId: 签署方唯一编号
|
16391
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
16392
|
+
:type SignId: str
|
16393
|
+
:param _ApproverStatus: 签署方当前状态
|
16394
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
16395
|
+
:type ApproverStatus: int
|
16396
|
+
"""
|
16397
|
+
self._RecipientId = None
|
16398
|
+
self._SignId = None
|
16399
|
+
self._ApproverStatus = None
|
16400
|
+
|
16401
|
+
@property
|
16402
|
+
def RecipientId(self):
|
16403
|
+
return self._RecipientId
|
16404
|
+
|
16405
|
+
@RecipientId.setter
|
16406
|
+
def RecipientId(self, RecipientId):
|
16407
|
+
self._RecipientId = RecipientId
|
16408
|
+
|
16409
|
+
@property
|
16410
|
+
def SignId(self):
|
16411
|
+
return self._SignId
|
16412
|
+
|
16413
|
+
@SignId.setter
|
16414
|
+
def SignId(self, SignId):
|
16415
|
+
self._SignId = SignId
|
16416
|
+
|
16417
|
+
@property
|
16418
|
+
def ApproverStatus(self):
|
16419
|
+
return self._ApproverStatus
|
16420
|
+
|
16421
|
+
@ApproverStatus.setter
|
16422
|
+
def ApproverStatus(self, ApproverStatus):
|
16423
|
+
self._ApproverStatus = ApproverStatus
|
16424
|
+
|
16425
|
+
|
16426
|
+
def _deserialize(self, params):
|
16427
|
+
self._RecipientId = params.get("RecipientId")
|
16428
|
+
self._SignId = params.get("SignId")
|
16429
|
+
self._ApproverStatus = params.get("ApproverStatus")
|
16430
|
+
memeber_set = set(params.keys())
|
16431
|
+
for name, value in vars(self).items():
|
16432
|
+
property_name = name[1:]
|
16433
|
+
if property_name in memeber_set:
|
16434
|
+
memeber_set.remove(property_name)
|
16435
|
+
if len(memeber_set) > 0:
|
16436
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
16437
|
+
|
16438
|
+
|
16439
|
+
|
16054
16440
|
class EmbedUrlOption(AbstractModel):
|
16055
16441
|
"""个性化参数
|
16056
16442
|
|
@@ -68,6 +68,9 @@ INVALIDPARAMETER_INVALIDLIFERULEPARAM = 'InvalidParameter.InvalidLifeRuleParam'
|
|
68
68
|
# 无效的组织参数
|
69
69
|
INVALIDPARAMETER_INVALIDORGANIZATIONPARAM = 'InvalidParameter.InvalidOrganizationParam'
|
70
70
|
|
71
|
+
# 无效的输入参数
|
72
|
+
INVALIDPARAMETER_INVALIDPARAMETER = 'InvalidParameter.InvalidParameter'
|
73
|
+
|
71
74
|
# 参数格式不对或缺少参数
|
72
75
|
INVALIDPARAMETER_INVALIDPARAMETERFORMAT = 'InvalidParameter.InvalidParameterFormat'
|
73
76
|
|
@@ -7487,11 +7487,14 @@ class DescribeRecordFileRequest(AbstractModel):
|
|
7487
7487
|
:type StartTime: int
|
7488
7488
|
:param _EndTime: 检索结束时间,UTC秒数,例如:1662114246,开始和结束时间段最长为一天,且不能跨天
|
7489
7489
|
:type EndTime: int
|
7490
|
+
:param _WithUrl: 是否携带每个时间段的播放url
|
7491
|
+
:type WithUrl: bool
|
7490
7492
|
"""
|
7491
7493
|
self._DeviceId = None
|
7492
7494
|
self._ChannelId = None
|
7493
7495
|
self._StartTime = None
|
7494
7496
|
self._EndTime = None
|
7497
|
+
self._WithUrl = None
|
7495
7498
|
|
7496
7499
|
@property
|
7497
7500
|
def DeviceId(self):
|
@@ -7525,12 +7528,21 @@ class DescribeRecordFileRequest(AbstractModel):
|
|
7525
7528
|
def EndTime(self, EndTime):
|
7526
7529
|
self._EndTime = EndTime
|
7527
7530
|
|
7531
|
+
@property
|
7532
|
+
def WithUrl(self):
|
7533
|
+
return self._WithUrl
|
7534
|
+
|
7535
|
+
@WithUrl.setter
|
7536
|
+
def WithUrl(self, WithUrl):
|
7537
|
+
self._WithUrl = WithUrl
|
7538
|
+
|
7528
7539
|
|
7529
7540
|
def _deserialize(self, params):
|
7530
7541
|
self._DeviceId = params.get("DeviceId")
|
7531
7542
|
self._ChannelId = params.get("ChannelId")
|
7532
7543
|
self._StartTime = params.get("StartTime")
|
7533
7544
|
self._EndTime = params.get("EndTime")
|
7545
|
+
self._WithUrl = params.get("WithUrl")
|
7534
7546
|
memeber_set = set(params.keys())
|
7535
7547
|
for name, value in vars(self).items():
|
7536
7548
|
property_name = name[1:]
|
@@ -13278,9 +13290,13 @@ class RecordTimeLine(AbstractModel):
|
|
13278
13290
|
:type Begin: int
|
13279
13291
|
:param _End: 时间片段结束时间,UTC秒数,例如:1662114146
|
13280
13292
|
:type End: int
|
13293
|
+
:param _HlsUrl: 对应时间片段的播放url
|
13294
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13295
|
+
:type HlsUrl: str
|
13281
13296
|
"""
|
13282
13297
|
self._Begin = None
|
13283
13298
|
self._End = None
|
13299
|
+
self._HlsUrl = None
|
13284
13300
|
|
13285
13301
|
@property
|
13286
13302
|
def Begin(self):
|
@@ -13298,10 +13314,19 @@ class RecordTimeLine(AbstractModel):
|
|
13298
13314
|
def End(self, End):
|
13299
13315
|
self._End = End
|
13300
13316
|
|
13317
|
+
@property
|
13318
|
+
def HlsUrl(self):
|
13319
|
+
return self._HlsUrl
|
13320
|
+
|
13321
|
+
@HlsUrl.setter
|
13322
|
+
def HlsUrl(self, HlsUrl):
|
13323
|
+
self._HlsUrl = HlsUrl
|
13324
|
+
|
13301
13325
|
|
13302
13326
|
def _deserialize(self, params):
|
13303
13327
|
self._Begin = params.get("Begin")
|
13304
13328
|
self._End = params.get("End")
|
13329
|
+
self._HlsUrl = params.get("HlsUrl")
|
13305
13330
|
memeber_set = set(params.keys())
|
13306
13331
|
for name, value in vars(self).items():
|
13307
13332
|
property_name = name[1:]
|
@@ -2128,7 +2128,7 @@ class CreateReconstructDocumentFlowRequest(AbstractModel):
|
|
2128
2128
|
|
2129
2129
|
def __init__(self):
|
2130
2130
|
r"""
|
2131
|
-
:param _FileType: 文件类型。支持的文件类型:PDF、DOCX、
|
2131
|
+
:param _FileType: 文件类型。支持的文件类型:PDF、DOC、DOCX、PPT、PPTX、MD、TXT、XLS、XLSX、CSV、PNG、JPG、JPEG、BMP、GIF、WEBP、HEIC、EPS、ICNS、IM、PCX、PPM、TIFF、XBM、HEIF、JP2
|
2132
2132
|
:type FileType: str
|
2133
2133
|
:param _FileBase64: 文件的 Base64 值。支持的文件大小:所下载文件经Base64编码后不超过 8M。文件下载时间不超过 3 秒。支持的图片像素:单边介于20-10000px之间。文件的 FileUrl、FileBase64 必须提供一个,如果都提供,只使用 FileUrl。
|
2134
2134
|
:type FileBase64: str
|
@@ -3910,7 +3910,7 @@ class CCN(AbstractModel):
|
|
3910
3910
|
:type DirectConnectAccelerateChannelFlag: bool
|
3911
3911
|
:param _Ipv6Flag: 是否支持ipv6路由表
|
3912
3912
|
注意:此字段可能返回 null,表示取不到有效值。
|
3913
|
-
:type Ipv6Flag:
|
3913
|
+
:type Ipv6Flag: bool
|
3914
3914
|
:param _MrtbAggregatePolicyFlag: 是否支持路由表聚合策略
|
3915
3915
|
注意:此字段可能返回 null,表示取不到有效值。
|
3916
3916
|
:type MrtbAggregatePolicyFlag: bool
|
@@ -4104,14 +4104,10 @@ class CCN(AbstractModel):
|
|
4104
4104
|
|
4105
4105
|
@property
|
4106
4106
|
def Ipv6Flag(self):
|
4107
|
-
warnings.warn("parameter `Ipv6Flag` is deprecated", DeprecationWarning)
|
4108
|
-
|
4109
4107
|
return self._Ipv6Flag
|
4110
4108
|
|
4111
4109
|
@Ipv6Flag.setter
|
4112
4110
|
def Ipv6Flag(self, Ipv6Flag):
|
4113
|
-
warnings.warn("parameter `Ipv6Flag` is deprecated", DeprecationWarning)
|
4114
|
-
|
4115
4111
|
self._Ipv6Flag = Ipv6Flag
|
4116
4112
|
|
4117
4113
|
@property
|
{tencentcloud_sdk_python-3.0.1246.dist-info → tencentcloud_sdk_python-3.0.1248.dist-info}/RECORD
RENAMED
@@ -50,7 +50,7 @@ QcloudApi/modules/vod.py,sha256=l05_qYx0l5bq6LJ8mAX2YO3pRXzxY3JMdDHV1N_SRKE,679
|
|
50
50
|
QcloudApi/modules/vpc.py,sha256=JBiNpcnrAwf_UJ_UdpxQybKeCTfeveJ9R1B-vO1_w_U,679
|
51
51
|
QcloudApi/modules/wenzhi.py,sha256=hr1rRLU8TxxSfejMqV2O4alO_yXF3C0tfZMSzziu54Q,685
|
52
52
|
QcloudApi/modules/yunsou.py,sha256=JlgzMjnJaho6axFVhSTAv6DS0HLcjl0LJL02q6qI2yY,685
|
53
|
-
tencentcloud/__init__.py,sha256=
|
53
|
+
tencentcloud/__init__.py,sha256=vGY1hvPJSvgdWfgkXLXymn7h9TMuTrELcNca4lWtX1Q,631
|
54
54
|
tencentcloud/aa/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
55
55
|
tencentcloud/aa/v20200224/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
56
|
tencentcloud/aa/v20200224/aa_client.py,sha256=L7P5zpJElo9WoLSkhvLxnfpEGCZ1q2e5Fzx3wLEioAA,2184
|
@@ -389,7 +389,7 @@ tencentcloud/cloudstudio/v20230508/models.py,sha256=HJvFETbu7Sag5bL_8M9CobfJqfH-
|
|
389
389
|
tencentcloud/cls/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
390
390
|
tencentcloud/cls/v20201016/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
391
391
|
tencentcloud/cls/v20201016/cls_client.py,sha256=V4MGD02RWfGJi6JZlHmAmgH96qXimsJhaeS1VBmgAv4,100021
|
392
|
-
tencentcloud/cls/v20201016/errorcodes.py,sha256=
|
392
|
+
tencentcloud/cls/v20201016/errorcodes.py,sha256=dlENEAcp9AfLe0wtVZ7Ct27YDDEZBd71UO-KaR-su80,11240
|
393
393
|
tencentcloud/cls/v20201016/models.py,sha256=GQEzgrckN4g1qBDlbEa3asXCDL1uhDlD4RMjxlrOiKs,687457
|
394
394
|
tencentcloud/cme/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
395
395
|
tencentcloud/cme/v20191029/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -453,9 +453,9 @@ tencentcloud/csxg/v20230303/errorcodes.py,sha256=EjLvi430lQlDBLmE6_ZwXPa5Z8c--C8
|
|
453
453
|
tencentcloud/csxg/v20230303/models.py,sha256=zjOqDU66s4nrB2H3HSJZCwyKTFXnRQb6T58shTaMppk,4814
|
454
454
|
tencentcloud/cvm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
455
455
|
tencentcloud/cvm/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
456
|
-
tencentcloud/cvm/v20170312/cvm_client.py,sha256=
|
457
|
-
tencentcloud/cvm/v20170312/errorcodes.py,sha256=
|
458
|
-
tencentcloud/cvm/v20170312/models.py,sha256=
|
456
|
+
tencentcloud/cvm/v20170312/cvm_client.py,sha256=pEtLDv-cJuhPDHDUsQGgutrSfTdzjHZECtb7CTgtFBg,126226
|
457
|
+
tencentcloud/cvm/v20170312/errorcodes.py,sha256=tIag8oJ9r3uzqINx-9hAmPVglLnacAc5BLBCP0V98EI,50743
|
458
|
+
tencentcloud/cvm/v20170312/models.py,sha256=PrR0s--s4KqLI9GmDP6vOmYoGB3b0dPpx0WtvGpkIFs,671684
|
459
459
|
tencentcloud/cwp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
460
460
|
tencentcloud/cwp/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
461
461
|
tencentcloud/cwp/v20180228/cwp_client.py,sha256=OJxdvGbajut62SnsoskvnLtWsOb4TP26EELT65xzEUo,477164
|
@@ -468,9 +468,9 @@ tencentcloud/cws/v20180312/errorcodes.py,sha256=T4gxxbmFJ0qJrkF9IPU3m6AaRKtiqTAg
|
|
468
468
|
tencentcloud/cws/v20180312/models.py,sha256=pczVx3k_Y5wzVxa-CTPtF5_zsu_2OkWELZBhUXzGlFE,92049
|
469
469
|
tencentcloud/cynosdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
470
470
|
tencentcloud/cynosdb/v20190107/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
471
|
-
tencentcloud/cynosdb/v20190107/cynosdb_client.py,sha256=
|
471
|
+
tencentcloud/cynosdb/v20190107/cynosdb_client.py,sha256=znZX3XhxVOJGMt2_m7wtSFj22LrqwWBuZlO8EKj1KwM,140461
|
472
472
|
tencentcloud/cynosdb/v20190107/errorcodes.py,sha256=biFECw2es-cDvWe9Sd-I_Kcd4_KGSy6Z13vQehIGaBo,12070
|
473
|
-
tencentcloud/cynosdb/v20190107/models.py,sha256=
|
473
|
+
tencentcloud/cynosdb/v20190107/models.py,sha256=83iIJ-v_OobuN1pIYyf4ZlLv3FYv3uvKKj3HcpmgQLo,931558
|
474
474
|
tencentcloud/dasb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
475
475
|
tencentcloud/dasb/v20191018/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
476
476
|
tencentcloud/dasb/v20191018/dasb_client.py,sha256=FTJqlBHjqRmfkdsZFVOuZ5x_jg98jHrSEotXvPxPDFA,56319
|
@@ -600,9 +600,9 @@ tencentcloud/es/v20180416/es_client.py,sha256=glgKO1I4zVhR7Zqf_Zr8xpjqn_LtBihKOU
|
|
600
600
|
tencentcloud/es/v20180416/models.py,sha256=SxnCkoadwSHNo26UHF_l9Qxr5zyua1crxYFfHkr4Mh0,477079
|
601
601
|
tencentcloud/ess/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
602
602
|
tencentcloud/ess/v20201111/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
603
|
-
tencentcloud/ess/v20201111/errorcodes.py,sha256=
|
604
|
-
tencentcloud/ess/v20201111/ess_client.py,sha256=
|
605
|
-
tencentcloud/ess/v20201111/models.py,sha256=
|
603
|
+
tencentcloud/ess/v20201111/errorcodes.py,sha256=mShfLfMlwo5en1UxN2AcHvQdHtPTqPkOSVwQdZSrEZs,26124
|
604
|
+
tencentcloud/ess/v20201111/ess_client.py,sha256=r6yq3E8nzhd4rSCXR7a3uh8FHfm4ifTeQWEWvX9KFio,156662
|
605
|
+
tencentcloud/ess/v20201111/models.py,sha256=AagQ407C6tLf-A9zYXodsyaMW17JWM7veHNVtl2gUw4,899690
|
606
606
|
tencentcloud/essbasic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
607
607
|
tencentcloud/essbasic/v20201222/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
608
608
|
tencentcloud/essbasic/v20201222/errorcodes.py,sha256=cZPs0vLmArRFQoZqxM4alb0WeBF9f0V0IHmt65dUdxs,5392
|
@@ -792,9 +792,9 @@ tencentcloud/irp/v20220805/irp_client.py,sha256=FUb8UGmjJnWIRaZATqdZEiEjnc1aPyQr
|
|
792
792
|
tencentcloud/irp/v20220805/models.py,sha256=UIikMxHYpNdbCRLz2XSyLVJlAo7jrCGetVMut96OdHY,82589
|
793
793
|
tencentcloud/iss/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
794
794
|
tencentcloud/iss/v20230517/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
795
|
-
tencentcloud/iss/v20230517/errorcodes.py,sha256=
|
795
|
+
tencentcloud/iss/v20230517/errorcodes.py,sha256=ukutxkZnIXnVu4rkKCI_HOdaQPXBu22ED1ovnqksmUc,20912
|
796
796
|
tencentcloud/iss/v20230517/iss_client.py,sha256=_Iah7n3iMSfhgndlAleEgDhnmhGUBWxLJLdIhbmEuLk,78607
|
797
|
-
tencentcloud/iss/v20230517/models.py,sha256=
|
797
|
+
tencentcloud/iss/v20230517/models.py,sha256=OkAuFm7fUyNeGjFBEyblQ7DNGFaqZIwqyheEXfGoOSM,472946
|
798
798
|
tencentcloud/ivld/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
799
799
|
tencentcloud/ivld/v20210903/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
800
800
|
tencentcloud/ivld/v20210903/errorcodes.py,sha256=ucZd00febZPxosljfYnZCHZm_LYtCiE3zCdnn8MOgPE,9364
|
@@ -829,7 +829,7 @@ tencentcloud/lke/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
829
829
|
tencentcloud/lke/v20231130/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
830
830
|
tencentcloud/lke/v20231130/errorcodes.py,sha256=PCeIyBPnpUC7YgGKARL8v0PZ-KyXlCH_6s6RgypAZpk,2262
|
831
831
|
tencentcloud/lke/v20231130/lke_client.py,sha256=Rrm_0lXu93E4xQ7Svuf9NQpMSMM1X6xL19A3IbDEvuc,80776
|
832
|
-
tencentcloud/lke/v20231130/models.py,sha256=
|
832
|
+
tencentcloud/lke/v20231130/models.py,sha256=w_6Yt4K_9V2RPX4e8abcuBpkpsBPT5CcvtnSvt1t_oI,519524
|
833
833
|
tencentcloud/lowcode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
834
834
|
tencentcloud/lowcode/v20210108/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
835
835
|
tencentcloud/lowcode/v20210108/errorcodes.py,sha256=ZkpeDXiPLJe7W3TH-FBCg3I8m8YiUBEEmGV51yx9jdc,948
|
@@ -1412,7 +1412,7 @@ tencentcloud/vod/v20240718/vod_client.py,sha256=QIBSMvnyU0MKiemDg5Y_QCyhjgfugXvE
|
|
1412
1412
|
tencentcloud/vpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1413
1413
|
tencentcloud/vpc/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1414
1414
|
tencentcloud/vpc/v20170312/errorcodes.py,sha256=mhrtiuqWMzpT08Knugs-jVW1GL-hE_KUdS3muZguGxw,51780
|
1415
|
-
tencentcloud/vpc/v20170312/models.py,sha256=
|
1415
|
+
tencentcloud/vpc/v20170312/models.py,sha256=oW_xcjGOXIpv6euyi7pfHZMVxrmcJieDyEEIcvlHlBQ,1678823
|
1416
1416
|
tencentcloud/vpc/v20170312/vpc_client.py,sha256=hlg5M2OWQbpsjmVDFALqMhK-3HmbJiT8cYpWDUUhgE0,401766
|
1417
1417
|
tencentcloud/vrs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1418
1418
|
tencentcloud/vrs/v20200824/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1473,8 +1473,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
1473
1473
|
tencentcloud/yunsou/v20191115/errorcodes.py,sha256=zB4-XPxmvEhgHoLsKlbayJVRLEagPDcs-UAheVZCoAc,1301
|
1474
1474
|
tencentcloud/yunsou/v20191115/models.py,sha256=sNTR9ixO8CV9yKQahrhOsEJlxOK5d7aXBoIBIPxfJsQ,23137
|
1475
1475
|
tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=ly73Hr8rGamWa6AAvQjurKgd4L83PRY5WjcDv4ziQC8,2741
|
1476
|
-
tencentcloud_sdk_python-3.0.
|
1477
|
-
tencentcloud_sdk_python-3.0.
|
1478
|
-
tencentcloud_sdk_python-3.0.
|
1479
|
-
tencentcloud_sdk_python-3.0.
|
1480
|
-
tencentcloud_sdk_python-3.0.
|
1476
|
+
tencentcloud_sdk_python-3.0.1248.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
|
1477
|
+
tencentcloud_sdk_python-3.0.1248.dist-info/METADATA,sha256=H-IAKAz9LlUuJ7kdxShSBGR5NHSUWODAa1XHeQubyt8,1511
|
1478
|
+
tencentcloud_sdk_python-3.0.1248.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
1479
|
+
tencentcloud_sdk_python-3.0.1248.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
|
1480
|
+
tencentcloud_sdk_python-3.0.1248.dist-info/RECORD,,
|
{tencentcloud_sdk_python-3.0.1246.dist-info → tencentcloud_sdk_python-3.0.1248.dist-info}/LICENSE
RENAMED
File without changes
|
{tencentcloud_sdk_python-3.0.1246.dist-info → tencentcloud_sdk_python-3.0.1248.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|