tencentcloud-sdk-python 3.0.1178__py2.py3-none-any.whl → 3.0.1180__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.
Files changed (29) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/cynosdb/v20190107/models.py +53 -14
  3. tencentcloud/emr/v20190103/models.py +14 -10
  4. tencentcloud/ess/v20201111/ess_client.py +10 -3
  5. tencentcloud/ess/v20201111/models.py +55 -32
  6. tencentcloud/essbasic/v20210526/essbasic_client.py +13 -6
  7. tencentcloud/essbasic/v20210526/models.py +15 -13
  8. tencentcloud/iotexplorer/v20190423/models.py +78 -0
  9. tencentcloud/iss/v20230517/errorcodes.py +27 -0
  10. tencentcloud/iss/v20230517/iss_client.py +46 -0
  11. tencentcloud/iss/v20230517/models.py +363 -0
  12. tencentcloud/scf/v20180416/scf_client.py +1 -1
  13. tencentcloud/ses/v20201002/models.py +419 -0
  14. tencentcloud/ses/v20201002/ses_client.py +92 -0
  15. tencentcloud/ssl/v20191205/models.py +89 -1
  16. tencentcloud/ssl/v20191205/ssl_client.py +2 -2
  17. tencentcloud/tcr/v20190924/models.py +4 -0
  18. tencentcloud/vpc/v20170312/errorcodes.py +24 -0
  19. tencentcloud/vpc/v20170312/models.py +2941 -99
  20. tencentcloud/vpc/v20170312/vpc_client.py +414 -0
  21. tencentcloud/waf/v20180125/models.py +0 -74
  22. tencentcloud/waf/v20180125/waf_client.py +0 -23
  23. tencentcloud/wedata/v20210820/models.py +572 -0
  24. tencentcloud/wedata/v20210820/wedata_client.py +46 -0
  25. {tencentcloud_sdk_python-3.0.1178.dist-info → tencentcloud_sdk_python-3.0.1180.dist-info}/METADATA +1 -1
  26. {tencentcloud_sdk_python-3.0.1178.dist-info → tencentcloud_sdk_python-3.0.1180.dist-info}/RECORD +29 -29
  27. {tencentcloud_sdk_python-3.0.1178.dist-info → tencentcloud_sdk_python-3.0.1180.dist-info}/LICENSE +0 -0
  28. {tencentcloud_sdk_python-3.0.1178.dist-info → tencentcloud_sdk_python-3.0.1180.dist-info}/WHEEL +0 -0
  29. {tencentcloud_sdk_python-3.0.1178.dist-info → tencentcloud_sdk_python-3.0.1180.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1178'
17
+ __version__ = '3.0.1180'
@@ -38,12 +38,20 @@ class Ability(AbstractModel):
38
38
  :param _IsSupportManualSnapshot: 是否支持手动发起快照备份
39
39
  注意:此字段可能返回 null,表示取不到有效值。
40
40
  :type IsSupportManualSnapshot: str
41
+ :param _IsSupportTransparentDataEncryption: 是否支持透明数据加密
42
+ 注意:此字段可能返回 null,表示取不到有效值。
43
+ :type IsSupportTransparentDataEncryption: str
44
+ :param _NoSupportTransparentDataEncryptionReason: 不支持透明数据加密原因
45
+ 注意:此字段可能返回 null,表示取不到有效值。
46
+ :type NoSupportTransparentDataEncryptionReason: str
41
47
  """
42
48
  self._IsSupportSlaveZone = None
43
49
  self._NonsupportSlaveZoneReason = None
44
50
  self._IsSupportRo = None
45
51
  self._NonsupportRoReason = None
46
52
  self._IsSupportManualSnapshot = None
53
+ self._IsSupportTransparentDataEncryption = None
54
+ self._NoSupportTransparentDataEncryptionReason = None
47
55
 
48
56
  @property
49
57
  def IsSupportSlaveZone(self):
@@ -85,6 +93,22 @@ class Ability(AbstractModel):
85
93
  def IsSupportManualSnapshot(self, IsSupportManualSnapshot):
86
94
  self._IsSupportManualSnapshot = IsSupportManualSnapshot
87
95
 
96
+ @property
97
+ def IsSupportTransparentDataEncryption(self):
98
+ return self._IsSupportTransparentDataEncryption
99
+
100
+ @IsSupportTransparentDataEncryption.setter
101
+ def IsSupportTransparentDataEncryption(self, IsSupportTransparentDataEncryption):
102
+ self._IsSupportTransparentDataEncryption = IsSupportTransparentDataEncryption
103
+
104
+ @property
105
+ def NoSupportTransparentDataEncryptionReason(self):
106
+ return self._NoSupportTransparentDataEncryptionReason
107
+
108
+ @NoSupportTransparentDataEncryptionReason.setter
109
+ def NoSupportTransparentDataEncryptionReason(self, NoSupportTransparentDataEncryptionReason):
110
+ self._NoSupportTransparentDataEncryptionReason = NoSupportTransparentDataEncryptionReason
111
+
88
112
 
89
113
  def _deserialize(self, params):
90
114
  self._IsSupportSlaveZone = params.get("IsSupportSlaveZone")
@@ -92,6 +116,8 @@ class Ability(AbstractModel):
92
116
  self._IsSupportRo = params.get("IsSupportRo")
93
117
  self._NonsupportRoReason = params.get("NonsupportRoReason")
94
118
  self._IsSupportManualSnapshot = params.get("IsSupportManualSnapshot")
119
+ self._IsSupportTransparentDataEncryption = params.get("IsSupportTransparentDataEncryption")
120
+ self._NoSupportTransparentDataEncryptionReason = params.get("NoSupportTransparentDataEncryptionReason")
95
121
  memeber_set = set(params.keys())
96
122
  for name, value in vars(self).items():
97
123
  property_name = name[1:]
@@ -8094,6 +8120,10 @@ class CynosdbInstanceDetail(AbstractModel):
8094
8120
  :type Status: str
8095
8121
  :param _StatusDesc: 实例状态中文描述
8096
8122
  :type StatusDesc: str
8123
+ :param _ServerlessStatus: serverless实例状态, 可能值:
8124
+ resume
8125
+ pause
8126
+ :type ServerlessStatus: str
8097
8127
  :param _DbType: 数据库类型
8098
8128
  :type DbType: str
8099
8129
  :param _DbVersion: 数据库版本
@@ -8138,10 +8168,6 @@ class CynosdbInstanceDetail(AbstractModel):
8138
8168
  :type MinCpu: float
8139
8169
  :param _MaxCpu: serverless实例cpu上限
8140
8170
  :type MaxCpu: float
8141
- :param _ServerlessStatus: serverless实例状态, 可能值:
8142
- resume
8143
- pause
8144
- :type ServerlessStatus: str
8145
8171
  """
8146
8172
  self._Uin = None
8147
8173
  self._AppId = None
@@ -8154,6 +8180,7 @@ pause
8154
8180
  self._Zone = None
8155
8181
  self._Status = None
8156
8182
  self._StatusDesc = None
8183
+ self._ServerlessStatus = None
8157
8184
  self._DbType = None
8158
8185
  self._DbVersion = None
8159
8186
  self._Cpu = None
@@ -8176,7 +8203,6 @@ pause
8176
8203
  self._RenewFlag = None
8177
8204
  self._MinCpu = None
8178
8205
  self._MaxCpu = None
8179
- self._ServerlessStatus = None
8180
8206
 
8181
8207
  @property
8182
8208
  def Uin(self):
@@ -8266,6 +8292,14 @@ pause
8266
8292
  def StatusDesc(self, StatusDesc):
8267
8293
  self._StatusDesc = StatusDesc
8268
8294
 
8295
+ @property
8296
+ def ServerlessStatus(self):
8297
+ return self._ServerlessStatus
8298
+
8299
+ @ServerlessStatus.setter
8300
+ def ServerlessStatus(self, ServerlessStatus):
8301
+ self._ServerlessStatus = ServerlessStatus
8302
+
8269
8303
  @property
8270
8304
  def DbType(self):
8271
8305
  return self._DbType
@@ -8442,14 +8476,6 @@ pause
8442
8476
  def MaxCpu(self, MaxCpu):
8443
8477
  self._MaxCpu = MaxCpu
8444
8478
 
8445
- @property
8446
- def ServerlessStatus(self):
8447
- return self._ServerlessStatus
8448
-
8449
- @ServerlessStatus.setter
8450
- def ServerlessStatus(self, ServerlessStatus):
8451
- self._ServerlessStatus = ServerlessStatus
8452
-
8453
8479
 
8454
8480
  def _deserialize(self, params):
8455
8481
  self._Uin = params.get("Uin")
@@ -8463,6 +8489,7 @@ pause
8463
8489
  self._Zone = params.get("Zone")
8464
8490
  self._Status = params.get("Status")
8465
8491
  self._StatusDesc = params.get("StatusDesc")
8492
+ self._ServerlessStatus = params.get("ServerlessStatus")
8466
8493
  self._DbType = params.get("DbType")
8467
8494
  self._DbVersion = params.get("DbVersion")
8468
8495
  self._Cpu = params.get("Cpu")
@@ -8485,7 +8512,6 @@ pause
8485
8512
  self._RenewFlag = params.get("RenewFlag")
8486
8513
  self._MinCpu = params.get("MinCpu")
8487
8514
  self._MaxCpu = params.get("MaxCpu")
8488
- self._ServerlessStatus = params.get("ServerlessStatus")
8489
8515
  memeber_set = set(params.keys())
8490
8516
  for name, value in vars(self).items():
8491
8517
  property_name = name[1:]
@@ -23605,6 +23631,9 @@ class ParamInfo(AbstractModel):
23605
23631
  :param _Func: 函数
23606
23632
  注意:此字段可能返回 null,表示取不到有效值。
23607
23633
  :type Func: str
23634
+ :param _FuncPattern: 支持公式的参数的默认公式样式
23635
+ 注意:此字段可能返回 null,表示取不到有效值。
23636
+ :type FuncPattern: str
23608
23637
  """
23609
23638
  self._CurrentValue = None
23610
23639
  self._Default = None
@@ -23621,6 +23650,7 @@ class ParamInfo(AbstractModel):
23621
23650
  self._ModifiableInfo = None
23622
23651
  self._IsFunc = None
23623
23652
  self._Func = None
23653
+ self._FuncPattern = None
23624
23654
 
23625
23655
  @property
23626
23656
  def CurrentValue(self):
@@ -23742,6 +23772,14 @@ class ParamInfo(AbstractModel):
23742
23772
  def Func(self, Func):
23743
23773
  self._Func = Func
23744
23774
 
23775
+ @property
23776
+ def FuncPattern(self):
23777
+ return self._FuncPattern
23778
+
23779
+ @FuncPattern.setter
23780
+ def FuncPattern(self, FuncPattern):
23781
+ self._FuncPattern = FuncPattern
23782
+
23745
23783
 
23746
23784
  def _deserialize(self, params):
23747
23785
  self._CurrentValue = params.get("CurrentValue")
@@ -23761,6 +23799,7 @@ class ParamInfo(AbstractModel):
23761
23799
  self._ModifiableInfo._deserialize(params.get("ModifiableInfo"))
23762
23800
  self._IsFunc = params.get("IsFunc")
23763
23801
  self._Func = params.get("Func")
23802
+ self._FuncPattern = params.get("FuncPattern")
23764
23803
  memeber_set = set(params.keys())
23765
23804
  for name, value in vars(self).items():
23766
23805
  property_name = name[1:]
@@ -8936,11 +8936,7 @@ class InquiryPriceCreateInstanceRequest(AbstractModel):
8936
8936
  <li>0:表示不开启节点高可用。</li>
8937
8937
  <li>1:表示开启节点高可用。</li>
8938
8938
  :type SupportHA: int
8939
- :param _Software: 部署的组件列表。不同的EMR产品ID(ProductId:具体含义参考入参ProductId字段)需要选择不同的必选组件:
8940
- <li>ProductId为1的时候,必选组件包括:hadoop-2.7.3、knox-1.2.0、zookeeper-3.4.9</li>
8941
- <li>ProductId为2的时候,必选组件包括:hadoop-2.7.3、knox-1.2.0、zookeeper-3.4.9</li>
8942
- <li>ProductId为4的时候,必选组件包括:hadoop-2.8.4、knox-1.2.0、zookeeper-3.4.9</li>
8943
- <li>ProductId为7的时候,必选组件包括:hadoop-3.1.2、knox-1.2.0、zookeeper-3.4.9</li>
8939
+ :param _Software: 部署的组件列表。不同的EMR产品ID(ProductId:具体含义参考入参ProductId字段)需要选择不同的必选组件:<li>ProductId为2(EMR-V2.0.1)的时候,必选组件包括:hdfs-2.7.3,yarn-2.7.3,zookeeper-3.4.9,knox-1.2.0</li><li>ProductId为16(EMR-V2.3.0)的时候,必选组件包括:hdfs-2.8.5,yarn-2.8.5,zookeeper-3.5.5,knox-1.2.0</li><li>ProductId为20(EMR-V2.5.0)的时候,必选组件包括:hdfs-2.8.5,yarn-2.8.5,zookeeper-3.6.1,knox-1.2.0</li><li>ProductId为30(EMR-V2.6.0)的时候,必选组件包括:hdfs-2.8.5,yarn-2.8.5,zookeeper-3.6.1,openldap-2.4.44,knox-1.2.0</li><li>ProductId为38(EMR-V2.7.0)的时候,必选组件包括:hdfs-2.8.5,yarn-2.8.5,zookeeper-3.6.3,openldap-2.4.44,knox-1.6.1</li><li>ProductId为57(EMR-V2.8.0)的时候,必选组件包括:hdfs-2.8.5,yarn-2.8.5,zookeeper-3.6.3,openldap-2.4.44,knox-1.6.1</li><li>ProductId为7(EMR-V3.0.0)的时候,必选组件包括:hdfs-3.1.2,yarn-3.1.2,zookeeper-3.4.9,knox-1.2.0</li><li>ProductId为25(EMR-V3.1.0)的时候,必选组件包括:hdfs-3.1.2,yarn-3.1.2,zookeeper-3.6.1,knox-1.2.0</li><li>ProductId为31(EMR-V3.1.1)的时候,必选组件包括:hdfs-3.1.2,yarn-3.1.2,zookeeper-3.6.1,knox-1.2.0</li><li>ProductId为28(EMR-V3.2.0)的时候,必选组件包括:hdfs-3.2.2,yarn-3.2.2,zookeeper-3.6.1,knox-1.2.0</li><li>ProductId为33(EMR-V3.2.1)的时候,必选组件包括:hdfs-3.2.2,yarn-3.2.2,zookeeper-3.6.1,openldap-2.4.44,knox-1.2.0</li><li>ProductId为34(EMR-V3.3.0)的时候,必选组件包括:hdfs-3.2.2,yarn-3.2.2,zookeeper-3.6.1,openldap-2.4.44,knox-1.2.0</li><li>ProductId为37(EMR-V3.4.0)的时候,必选组件包括:hdfs-3.2.2,yarn-3.2.2,zookeeper-3.6.3,openldap-2.4.44,knox-1.6.1</li><li>ProductId为44(EMR-V3.5.0)的时候,必选组件包括:hdfs-3.2.2,yarn-3.2.2,zookeeper-3.6.3,openldap-2.4.44,knox-1.6.1</li><li>ProductId为53(EMR-V3.6.0)的时候,必选组件包括:hdfs-3.2.2,yarn-3.2.2,zookeeper-3.6.3,openldap-2.4.44,knox-1.6.1</li><li>ProductId为58(EMR-V3.6.1)的时候,必选组件包括:hdfs-3.2.2,yarn-3.2.2,zookeeper-3.6.3,openldap-2.4.46,knox-1.6.1</li><li>ProductId为47(EMR-V4.0.0)的时候,必选组件包括:hdfs-3.2.2,yarn-3.2.2,zookeeper-3.6.3,openldap-2.4.44,knox-1.6.1</li>
8944
8940
  :type Software: list of str
8945
8941
  :param _ResourceSpec: 询价的节点规格。
8946
8942
  :type ResourceSpec: :class:`tencentcloud.emr.v20190103.models.NewResourceSpec`
@@ -8957,11 +8953,7 @@ class InquiryPriceCreateInstanceRequest(AbstractModel):
8957
8953
  :type UnifyMetaInstanceId: str
8958
8954
  :param _MetaDBInfo: 自定义MetaDB信息
8959
8955
  :type MetaDBInfo: :class:`tencentcloud.emr.v20190103.models.CustomMetaInfo`
8960
- :param _ProductId: 产品ID,不同产品ID表示不同的EMR产品版本。取值范围:
8961
- <li>1:表示EMR-V1.3.1。</li>
8962
- <li>2:表示EMR-V2.0.1。</li>
8963
- <li>4:表示EMR-V2.1.0。</li>
8964
- <li>7:表示EMR-V3.0.0。</li>
8956
+ :param _ProductId: 产品ID,不同产品ID表示不同的EMR产品版本。取值范围:<li>2:表示EMR-V2.0.1</li><li>16:表示EMR-V2.3.0</li><li>20:表示EMR-V2.5.0</li><li>30:表示EMR-V2.6.0</li><li>38:表示EMR-V2.7.0</li><li>57:表示EMR-V2.8.0</li><li>7:表示EMR-V3.0.0</li><li>25:表示EMR-V3.1.0</li><li>31:表示EMR-V3.1.1</li><li>28:表示EMR-V3.2.0</li><li>33:表示EMR-V3.2.1</li><li>34:表示EMR-V3.3.0</li><li>37:表示EMR-V3.4.0</li><li>44:表示EMR-V3.5.0</li><li>53:表示EMR-V3.6.0</li><li>58:表示EMR-V3.6.1</li><li>47:表示EMR-V4.0.0</li>
8965
8957
  :type ProductId: int
8966
8958
  :param _SceneName: 场景化取值:
8967
8959
  Hadoop-Kudu
@@ -17536,12 +17528,15 @@ class StartStopServiceOrMonitorRequest(AbstractModel):
17536
17528
  :type StrategyConfig: :class:`tencentcloud.emr.v20190103.models.StrategyConfig`
17537
17529
  :param _StopParams: 暂停服务时用的参数
17538
17530
  :type StopParams: :class:`tencentcloud.emr.v20190103.models.StopParams`
17531
+ :param _KeepMonitorButNotRecoverProcess: 当OpType为<li>StopMonitor</li>才有用,true表示进入维护模式但是仍然监控进程但是不拉起进程
17532
+ :type KeepMonitorButNotRecoverProcess: bool
17539
17533
  """
17540
17534
  self._InstanceId = None
17541
17535
  self._OpType = None
17542
17536
  self._OpScope = None
17543
17537
  self._StrategyConfig = None
17544
17538
  self._StopParams = None
17539
+ self._KeepMonitorButNotRecoverProcess = None
17545
17540
 
17546
17541
  @property
17547
17542
  def InstanceId(self):
@@ -17583,6 +17578,14 @@ class StartStopServiceOrMonitorRequest(AbstractModel):
17583
17578
  def StopParams(self, StopParams):
17584
17579
  self._StopParams = StopParams
17585
17580
 
17581
+ @property
17582
+ def KeepMonitorButNotRecoverProcess(self):
17583
+ return self._KeepMonitorButNotRecoverProcess
17584
+
17585
+ @KeepMonitorButNotRecoverProcess.setter
17586
+ def KeepMonitorButNotRecoverProcess(self, KeepMonitorButNotRecoverProcess):
17587
+ self._KeepMonitorButNotRecoverProcess = KeepMonitorButNotRecoverProcess
17588
+
17586
17589
 
17587
17590
  def _deserialize(self, params):
17588
17591
  self._InstanceId = params.get("InstanceId")
@@ -17596,6 +17599,7 @@ class StartStopServiceOrMonitorRequest(AbstractModel):
17596
17599
  if params.get("StopParams") is not None:
17597
17600
  self._StopParams = StopParams()
17598
17601
  self._StopParams._deserialize(params.get("StopParams"))
17602
+ self._KeepMonitorButNotRecoverProcess = params.get("KeepMonitorButNotRecoverProcess")
17599
17603
  memeber_set = set(params.keys())
17600
17604
  for name, value in vars(self).items():
17601
17605
  property_name = name[1:]
@@ -1025,10 +1025,15 @@ class EssClient(AbstractClient):
1025
1025
 
1026
1026
 
1027
1027
  def CreateLegalSealQrCode(self, request):
1028
- """该接口用于获取创建法人章的二维码<br/>
1028
+ """该接口用于获取创建法人章的二维码,需要通过微信扫描。扫描后将跳转到腾讯电子签署,进入到创建法人章的流程。
1029
1029
 
1030
1030
  **注意**
1031
1031
  1. 该二维码**有效期为7天**,过期后将失效,可重新创建 。
1032
+ 2. 每个公司**只能有1个法人章**,无法重复创建或者创建多个
1033
+
1034
+ 法人章的样式可以参考下图索引(也可以自己上传法人印章图片):
1035
+
1036
+ ![image](https://qcloudimg.tencent-cloud.cn/raw/36a0a090750c45bb5cac5047ac461b2c.png)
1032
1037
 
1033
1038
  :param request: Request instance for CreateLegalSealQrCode.
1034
1039
  :type request: :class:`tencentcloud.ess.v20201111.models.CreateLegalSealQrCodeRequest`
@@ -2122,8 +2127,10 @@ class EssClient(AbstractClient):
2122
2127
 
2123
2128
 
2124
2129
  def DescribeOrganizationSeals(self, request):
2125
- """查询企业印章的列表,需要操作者具有查询印章权限
2126
- 客户指定需要获取的印章数量和偏移量,数量最多100,超过100按100处理;入参InfoType控制印章是否携带授权人信息,为1则携带,为0则返回的授权人信息为空数组。接口调用成功返回印章的信息列表还有企业印章的总数。
2130
+ """查询企业印章列表。
2131
+
2132
+ 注:
2133
+ 1. 此操作要求操作者具备<b>印章查询权限</b>(若调用者尚无此权限,请联系超级管理员前往Web控制台【组织管理】->【角色管理】添加相应权限)。
2127
2134
 
2128
2135
  :param request: Request instance for DescribeOrganizationSeals.
2129
2136
  :type request: :class:`tencentcloud.ess.v20201111.models.DescribeOrganizationSealsRequest`
@@ -2015,8 +2015,6 @@ class Component(AbstractModel):
2015
2015
  1. 绝对定位方式 (可以通过 [PDF坐标计算助手](https://qian.tencent.com/developers/tools/template-editor)计算控件的坐标)
2016
2016
  2. 表单域(FIELD)定位方式
2017
2017
  3. 关键字(KEYWORD)定位方式,使用关键字定位时,请确保PDF原始文件内是关键字以文字形式保存在PDF文件中,不支持对图片内文字进行关键字查找
2018
- 可以参考官网说明
2019
- https://cloud.tencent.com/document/product/1323/78346#component-.E4.B8.89.E7.A7.8D.E5.AE.9A.E4.BD.8D.E6.96.B9.E5.BC.8F.E8.AF.B4.E6.98.8E
2020
2018
 
2021
2019
  """
2022
2020
 
@@ -7116,7 +7114,10 @@ class CreateLegalSealQrCodeResponse(AbstractModel):
7116
7114
 
7117
7115
  def __init__(self):
7118
7116
  r"""
7119
- :param _QrcodeBase64: 二维码图片base64
7117
+ :param _QrcodeBase64: 二维码图片base64值,二维码有效期7天(604800秒)
7118
+
7119
+ 二维码图片的样式如下图:
7120
+ ![image](https://qcloudimg.tencent-cloud.cn/raw/7ec2478761158a35a9c623882839a5df.png)
7120
7121
  :type QrcodeBase64: str
7121
7122
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7122
7123
  :type RequestId: str
@@ -10704,6 +10705,12 @@ class CreateUserVerifyUrlRequest(AbstractModel):
10704
10705
  :type IdCardType: str
10705
10706
  :param _Mobile: 要实名的手机号,兼容带+86的格式
10706
10707
  :type Mobile: str
10708
+ :param _JumpUrl: 实名完之后的跳转链接,最大长度1000个字符。
10709
+ 链接类型请参考 <a href="https://qian.tencent.com/developers/company/openqianh5" target="_blank">跳转电子签H5</a>。
10710
+
10711
+ 注:此参数仅支持 Endpoint 为 <font color="red">H5 或 H5_SHORT_URL </font>的时候传递
10712
+
10713
+ :type JumpUrl: str
10707
10714
  :param _Endpoint: 要跳转的链接类型
10708
10715
 
10709
10716
  - HTTP:
@@ -10715,13 +10722,19 @@ class CreateUserVerifyUrlRequest(AbstractModel):
10715
10722
  - APP:
10716
10723
  第三方APP或小程序跳转电子签小程序的path, APP或者小程序跳转适合此类型
10717
10724
 
10718
- 如果不传递,默认值是 APP
10725
+ - H5:
10726
+ 跳转电子签H5实名页面的长链
10727
+
10728
+ - H5_SHORT_URL:
10729
+ 跳转电子签H5实名页面的短链
10730
+
10731
+ 注:如果不传递,默认值是 <font color="red"> APP </font>
10719
10732
  :type Endpoint: str
10720
10733
  :param _AutoJumpBack: 签署完成后是否自动回跳
10721
10734
  <ul><li>false:否, 实名完成不会自动跳转回来(默认)</li><li>true:是, 实名完成会自动跳转回来</li></ul>
10722
10735
 
10723
10736
  注:
10724
- 1. 该参数<font color="red">只针对APP类型(电子签小程序跳转贵方小程序)场景</font> 的实名链接有效
10737
+ 1. 该参数<font color="red">只针对APP类型(第三方APP或小程序跳转电子签小程序)场景</font> 的实名链接有效
10725
10738
  2. <font color="red">手机应用APP 或 微信小程序需要监控界面的返回走后序逻辑</font>, 微信小程序的文档可以参考[这个](https://developers.weixin.qq.com/miniprogram/dev/reference/api/App.html#onShow-Object-object)
10726
10739
  3. <font color="red">电子签小程序跳转贵方APP,不支持自动跳转,必需用户手动点击完成按钮(微信的限制)</font>
10727
10740
  :type AutoJumpBack: bool
@@ -10733,6 +10746,7 @@ class CreateUserVerifyUrlRequest(AbstractModel):
10733
10746
  self._IdCardNumber = None
10734
10747
  self._IdCardType = None
10735
10748
  self._Mobile = None
10749
+ self._JumpUrl = None
10736
10750
  self._Endpoint = None
10737
10751
  self._AutoJumpBack = None
10738
10752
  self._UserData = None
@@ -10777,6 +10791,14 @@ class CreateUserVerifyUrlRequest(AbstractModel):
10777
10791
  def Mobile(self, Mobile):
10778
10792
  self._Mobile = Mobile
10779
10793
 
10794
+ @property
10795
+ def JumpUrl(self):
10796
+ return self._JumpUrl
10797
+
10798
+ @JumpUrl.setter
10799
+ def JumpUrl(self, JumpUrl):
10800
+ self._JumpUrl = JumpUrl
10801
+
10780
10802
  @property
10781
10803
  def Endpoint(self):
10782
10804
  return self._Endpoint
@@ -10810,6 +10832,7 @@ class CreateUserVerifyUrlRequest(AbstractModel):
10810
10832
  self._IdCardNumber = params.get("IdCardNumber")
10811
10833
  self._IdCardType = params.get("IdCardType")
10812
10834
  self._Mobile = params.get("Mobile")
10835
+ self._JumpUrl = params.get("JumpUrl")
10813
10836
  self._Endpoint = params.get("Endpoint")
10814
10837
  self._AutoJumpBack = params.get("AutoJumpBack")
10815
10838
  self._UserData = params.get("UserData")
@@ -10842,8 +10865,14 @@ class CreateUserVerifyUrlResponse(AbstractModel):
10842
10865
  - 如果EndPoint是HTTP_SHORT_URL,
10843
10866
  得到的链接类似于https://essurl.cn/2n**42Nd,点击后会跳转到腾讯电子签小程序进行签署
10844
10867
 
10868
+ - 如果EndPoint是H5,
10869
+ 得到的链接类似于 https://quick.test.qian.tencent.cn/guide?Code=yDU****VJhsS5q&CodeType=xxx&shortKey=yD*****frcb,点击后会跳转到腾讯电子签H5页面进行签署
10845
10870
 
10846
- 注: 生成的链路后面不能再增加参数
10871
+ - 如果EndPoint是H5_SHORT_URL,
10872
+ 得到的链接类似于https://essurl.cn/2n**42Nd,点击后会跳转到腾讯电子签H5页面进行签署
10873
+
10874
+
10875
+ `注:` <font color="red">生成的链路后面不能再增加参数</font>
10847
10876
  示例值:https://essurl.cn/2n**42Nd
10848
10877
  :type UserVerifyUrl: str
10849
10878
  :param _ExpireTime: 链接过期时间
@@ -14170,38 +14199,32 @@ class DescribeOrganizationSealsRequest(AbstractModel):
14170
14199
  :type Limit: int
14171
14200
  :param _Offset: 指定分页返回第几页的数据,如果不传默认返回第一页,页码从 0 开始,即首页为 0,最大 20000。
14172
14201
  :type Offset: int
14173
- :param _InfoType: 查询信息类型,取值如下:
14174
- <ul>
14175
- <li>0不返回授权用户</li>
14176
- <li>1返回授权用户信息</li>
14177
- </ul>
14202
+ :param _InfoType: 查询授权用户信息类型,取值如下:
14203
+
14204
+ <ul> <li><b>0</b>:(默认)不返回授权用户信息</li> <li><b>1</b>:返回授权用户的信息</li> </ul>
14178
14205
  :type InfoType: int
14179
- :param _SealId: 印章id(没有输入返回所有)
14206
+ :param _SealId: 印章id,是否查询特定的印章(没有输入返回所有)
14180
14207
  :type SealId: str
14181
- :param _SealTypes: 印章类型列表(都是组织机构印章)。
14182
- 为空时查询所有类型的印章。
14183
- 目前支持以下类型:
14184
- <ul>
14185
- <li>OFFICIAL:企业公章;</li>
14186
- <li>CONTRACT:合同专用章;</li>
14187
- <li>ORGANIZATION_SEAL:企业印章(图片上传创建);</li>
14188
- <li>LEGAL_PERSON_SEAL:法定代表人章</li>
14189
- </ul>
14208
+ :param _SealTypes: 印章种类列表(均为组织机构印章)。 若无特定需求,将展示所有类型的印章。
14209
+
14210
+ 目前支持以下几种:
14211
+
14212
+ <ul> <li><strong>OFFICIAL</strong>:企业公章;</li> <li><strong>CONTRACT</strong>:合同专用章;</li> <li><strong>ORGANIZATION_SEAL</strong>:企业印章(通过图片上传创建);</li> <li><strong>LEGAL_PERSON_SEAL</strong>:法定代表人章。</li> </ul>
14190
14213
  :type SealTypes: list of str
14191
14214
  :param _Agent: 代理企业和员工的信息。
14192
14215
  在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
14193
14216
  :type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
14194
- :param _SealStatuses: 查询的印章状态列表。
14217
+ :param _SealStatuses: 需查询的印章状态列表。
14195
14218
  <ul>
14196
- <li>空,只查询启用状态的印章;</li>
14197
- <li>ALL,查询所有状态的印章;</li>
14198
- <li>CHECKING,查询待审核的印章;</li>
14199
- <li>SUCCESS,查询启用状态的印章;</li>
14200
- <li>FAIL,查询印章审核拒绝的印章;</li>
14201
- <li>DISABLE,查询已停用的印章;</li>
14202
- <li>STOPPED,查询已终止的印章;</li>
14203
- <li>VOID,查询已作废的印章;</li>
14204
- <li>INVALID,查询已失效的印章;</li>
14219
+ <li>空:(默认)仅查询启用状态的印章;</li>
14220
+ <li><strong>ALL</strong>:查询所有状态的印章;</li>
14221
+ <li><strong>CHECKING</strong>:查询待审核的印章;</li>
14222
+ <li><strong>SUCCESS</strong>:查询启用状态的印章;</li>
14223
+ <li><strong>FAIL</strong>:查询印章审核拒绝的印章;</li>
14224
+ <li><strong>DISABLE</strong>:查询已停用的印章;</li>
14225
+ <li><strong>STOPPED</strong>:查询已终止的印章;</li>
14226
+ <li><strong>VOID</strong>:查询已作废的印章;</li>
14227
+ <li><strong>INVALID</strong>:查询已失效的印章。</li>
14205
14228
  </ul>
14206
14229
  :type SealStatuses: list of str
14207
14230
  """
@@ -14309,7 +14332,7 @@ class DescribeOrganizationSealsResponse(AbstractModel):
14309
14332
 
14310
14333
  def __init__(self):
14311
14334
  r"""
14312
- :param _TotalCount: 在设置了SealId时返回0或1,没有设置时返回公司的总印章数量,可能比返回的印章数组数量多
14335
+ :param _TotalCount: 在设定了SealId时,返回值为0或1;若未设定SealId,则返回公司的总印章数量
14313
14336
  :type TotalCount: int
14314
14337
  :param _Seals: 查询到的印章结果数组
14315
14338
  :type Seals: list of OccupiedSeal
@@ -1218,11 +1218,10 @@ class EssbasicClient(AbstractClient):
1218
1218
 
1219
1219
 
1220
1220
  def ChannelDescribeOrganizationSeals(self, request):
1221
- """此接口(ChannelDescribeOrganizationSeals)查询子客企业电子印章。<br />
1222
- 注:
1223
- 1. `查询子客企业电子印章,需要操作者具有管理印章权限`
1224
- 2. `客户指定需要获取的印章数量和偏移量,数量最多100,超过100按100处理`
1225
- 3. `此接口只能查询启用的印章`
1221
+ """此接口查询子企业电子印章。<br />
1222
+
1223
+ 注:
1224
+ 1. 此操作要求操作者具备<b>印章查询权限</b>(若调用者尚无此权限,请联系超级管理员前往Web控制台【组织管理】->【角色管理】添加相应权限)。
1226
1225
 
1227
1226
  :param request: Request instance for ChannelDescribeOrganizationSeals.
1228
1227
  :type request: :class:`tencentcloud.essbasic.v20210526.models.ChannelDescribeOrganizationSealsRequest`
@@ -1840,7 +1839,15 @@ class EssbasicClient(AbstractClient):
1840
1839
 
1841
1840
 
1842
1841
  def CreateLegalSealQrCode(self, request):
1843
- """此接口用于获取创建法人章二维码图片base64
1842
+ """该接口用于获取创建法人章的二维码,需要通过微信扫描。扫描后将跳转到腾讯电子签署,进入到创建法人章的流程。
1843
+
1844
+ **注意**
1845
+ 1. 该二维码**有效期为7天**,过期后将失效,可重新创建 。
1846
+ 2. 每个公司**只能有1个法人章**,无法重复创建或者创建多个
1847
+
1848
+ 法人章的样式可以参考下图索引(也可以自己上传法人印章图片):
1849
+
1850
+ ![image](https://qcloudimg.tencent-cloud.cn/raw/36a0a090750c45bb5cac5047ac461b2c.png)
1844
1851
 
1845
1852
  :param request: Request instance for CreateLegalSealQrCode.
1846
1853
  :type request: :class:`tencentcloud.essbasic.v20210526.models.CreateLegalSealQrCodeRequest`
@@ -6974,22 +6974,20 @@ class ChannelDescribeOrganizationSealsRequest(AbstractModel):
6974
6974
  </ul>
6975
6975
  第三方平台子客企业和员工必须已经经过实名认证
6976
6976
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
6977
- :param _Limit: 返回最大数量,最大为100
6977
+ :param _Limit: 指定分页每页返回的数据条数,单页最大支持 100
6978
6978
  :type Limit: int
6979
6979
  :param _Offset: 分页查询偏移量,默认为0,最大为20000
6980
6980
  :type Offset: int
6981
- :param _InfoType: 查询信息类型
6982
- 支持的值如下:
6983
- <ul><li>0-默认,不返回授权用户信息</li>
6984
- <li>1-返回授权用户信息</li>
6985
- </ul>
6981
+ :param _InfoType: 查询授权用户信息类型,取值如下:
6982
+
6983
+ <ul> <li><b>0</b>:(默认)不返回授权用户信息</li> <li><b>1</b>:返回授权用户的信息</li> </ul>
6986
6984
  :type InfoType: int
6987
- :param _SealId: 印章id(没有输入返回所有)
6985
+ :param _SealId: 印章id,是否查询特定的印章(没有输入返回所有)
6988
6986
 
6989
6987
  注: `没有输入返回所有记录,最大返回100条。`
6990
6988
  :type SealId: str
6991
6989
  :param _SealTypes: 电子印章类型 , 可选类型如下:
6992
- <ul><li>**OFFICIAL**: (默认)公章</li>
6990
+ <ul><li>**OFFICIAL**: 公章</li>
6993
6991
  <li>**CONTRACT**: 合同专用章;</li>
6994
6992
  <li>**FINANCE**: 财务专用章;</li>
6995
6993
  <li>**PERSONNEL**: 人事专用章</li>
@@ -6998,7 +6996,10 @@ class ChannelDescribeOrganizationSealsRequest(AbstractModel):
6998
6996
 
6999
6997
  注: `为空时查询所有类型的印章。`
7000
6998
  :type SealTypes: list of str
7001
- :param _SealStatuses: 查询的印章状态列表。 <ul> <li>空,只查询启用状态的印章;</li> <li>ALL,查询所有状态的印章;</li> <li>CHECKING,查询待审核的印章;</li> <li>SUCCESS,查询启用状态的印章;</li> <li>FAIL,查询印章审核拒绝的印章;</li> <li>DISABLE,查询已停用的印章;</li> <li>STOPPED,查询已终止的印章;</li> <li>VOID,查询已作废的印章;</li> <li>INVALID,查询已失效的印章;</li> </ul>
6999
+ :param _SealStatuses:
7000
+ 需查询的印章状态列表。
7001
+
7002
+ <ul> <li>空,()仅查询启用状态的印章;</li> <li><strong>ALL</strong>,查询所有状态的印章;</li> <li><strong>CHECKING</strong>,查询待审核的印章;</li> <li><strong>SUCCESS</strong>,查询启用状态的印章;</li> <li><strong>FAIL</strong>,查询印章审核拒绝的印章;</li> <li><strong>DISABLE</strong>,查询已停用的印章;</li> <li><strong>STOPPED</strong>,查询已终止的印章;</li> <li><strong>VOID</strong>,查询已作废的印章;</li> <li><strong>INVALID</strong>,查询已失效的印章。</li> </ul>
7002
7003
  :type SealStatuses: list of str
7003
7004
  """
7004
7005
  self._Agent = None
@@ -7093,7 +7094,7 @@ class ChannelDescribeOrganizationSealsResponse(AbstractModel):
7093
7094
 
7094
7095
  def __init__(self):
7095
7096
  r"""
7096
- :param _TotalCount: 在设置了SealId时返回0或1,没有设置时返回公司的总印章数量,可能比返回的印章数组数量多
7097
+ :param _TotalCount: 在设定了SealId时,返回值为0或1;若未设定SealId,则返回公司的总印章数量
7097
7098
  :type TotalCount: int
7098
7099
  :param _Seals: 查询到的印章结果数组
7099
7100
  :type Seals: list of OccupiedSeal
@@ -9028,8 +9029,6 @@ class Component(AbstractModel):
9028
9029
  1. 绝对定位方式 (可以通过 [PDF坐标计算助手](https://qian.tencent.com/developers/tools/template-editor)计算控件的坐标)
9029
9030
  2. 表单域(FIELD)定位方式
9030
9031
  3. 关键字(KEYWORD)定位方式,使用关键字定位时,请确保PDF原始文件内是关键字以文字形式保存在PDF文件中,不支持对图片内文字进行关键字查找
9031
- 可以参考官网说明
9032
- https://cloud.tencent.com/document/product/1323/78346#component-.E4.B8.89.E7.A7.8D.E5.AE.9A.E4.BD.8D.E6.96.B9.E5.BC.8F.E8.AF.B4.E6.98.8E
9033
9032
 
9034
9033
  """
9035
9034
 
@@ -11027,7 +11026,10 @@ class CreateLegalSealQrCodeResponse(AbstractModel):
11027
11026
 
11028
11027
  def __init__(self):
11029
11028
  r"""
11030
- :param _QrcodeBase64: 二维码图片base64
11029
+ :param _QrcodeBase64: 二维码图片base64值,二维码有效期7天(604800秒)
11030
+
11031
+ 二维码图片的样式如下图:
11032
+ ![image](https://qcloudimg.tencent-cloud.cn/raw/7ec2478761158a35a9c623882839a5df.png)
11031
11033
  :type QrcodeBase64: str
11032
11034
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
11033
11035
  :type RequestId: str