tencentcloud-sdk-python 3.0.1440__py2.py3-none-any.whl → 3.0.1442__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of tencentcloud-sdk-python might be problematic. Click here for more details.

Files changed (25) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/autoscaling/v20180419/models.py +10 -6
  3. tencentcloud/cfs/v20190719/cfs_client.py +23 -0
  4. tencentcloud/cfs/v20190719/models.py +124 -0
  5. tencentcloud/cls/v20201016/models.py +120 -32
  6. tencentcloud/dcdb/v20180411/models.py +47 -2
  7. tencentcloud/dlc/v20210125/models.py +21 -6
  8. tencentcloud/dsgc/v20190723/dsgc_client.py +1 -1
  9. tencentcloud/dsgc/v20190723/models.py +10 -10
  10. tencentcloud/ess/v20201111/ess_client.py +16 -1
  11. tencentcloud/ess/v20201111/models.py +63 -2
  12. tencentcloud/essbasic/v20210526/models.py +61 -0
  13. tencentcloud/faceid/v20180301/models.py +96 -4
  14. tencentcloud/mariadb/v20170312/models.py +47 -2
  15. tencentcloud/organization/v20210331/models.py +306 -0
  16. tencentcloud/organization/v20210331/organization_client.py +23 -0
  17. tencentcloud/privatedns/v20201028/models.py +6 -6
  18. tencentcloud/trocket/v20230308/models.py +15 -0
  19. tencentcloud/tsf/v20180326/errorcodes.py +18 -18
  20. tencentcloud/tsf/v20180326/models.py +4 -4
  21. {tencentcloud_sdk_python-3.0.1440.dist-info → tencentcloud_sdk_python-3.0.1442.dist-info}/METADATA +1 -1
  22. {tencentcloud_sdk_python-3.0.1440.dist-info → tencentcloud_sdk_python-3.0.1442.dist-info}/RECORD +25 -25
  23. {tencentcloud_sdk_python-3.0.1440.dist-info → tencentcloud_sdk_python-3.0.1442.dist-info}/LICENSE +0 -0
  24. {tencentcloud_sdk_python-3.0.1440.dist-info → tencentcloud_sdk_python-3.0.1442.dist-info}/WHEEL +0 -0
  25. {tencentcloud_sdk_python-3.0.1440.dist-info → tencentcloud_sdk_python-3.0.1442.dist-info}/top_level.txt +0 -0
@@ -3641,6 +3641,8 @@ class DCDBInstanceInfo(AbstractModel):
3641
3641
  :type ResourceTags: list of ResourceTag
3642
3642
  :param _DbVersionId: 数据库引擎版本
3643
3643
  :type DbVersionId: str
3644
+ :param _ProtectedProperty: 实例删除保护标签,1: 已开启删除保护,0: 未开启删除保护
3645
+ :type ProtectedProperty: int
3644
3646
  """
3645
3647
  self._InstanceId = None
3646
3648
  self._InstanceName = None
@@ -3692,6 +3694,7 @@ class DCDBInstanceInfo(AbstractModel):
3692
3694
  self._InstanceType = None
3693
3695
  self._ResourceTags = None
3694
3696
  self._DbVersionId = None
3697
+ self._ProtectedProperty = None
3695
3698
 
3696
3699
  @property
3697
3700
  def InstanceId(self):
@@ -4243,6 +4246,17 @@ class DCDBInstanceInfo(AbstractModel):
4243
4246
  def DbVersionId(self, DbVersionId):
4244
4247
  self._DbVersionId = DbVersionId
4245
4248
 
4249
+ @property
4250
+ def ProtectedProperty(self):
4251
+ """实例删除保护标签,1: 已开启删除保护,0: 未开启删除保护
4252
+ :rtype: int
4253
+ """
4254
+ return self._ProtectedProperty
4255
+
4256
+ @ProtectedProperty.setter
4257
+ def ProtectedProperty(self, ProtectedProperty):
4258
+ self._ProtectedProperty = ProtectedProperty
4259
+
4246
4260
 
4247
4261
  def _deserialize(self, params):
4248
4262
  self._InstanceId = params.get("InstanceId")
@@ -4305,6 +4319,7 @@ class DCDBInstanceInfo(AbstractModel):
4305
4319
  obj._deserialize(item)
4306
4320
  self._ResourceTags.append(obj)
4307
4321
  self._DbVersionId = params.get("DbVersionId")
4322
+ self._ProtectedProperty = params.get("ProtectedProperty")
4308
4323
  memeber_set = set(params.keys())
4309
4324
  for name, value in vars(self).items():
4310
4325
  property_name = name[1:]
@@ -7727,6 +7742,8 @@ class DescribeDCDBInstanceDetailResponse(AbstractModel):
7727
7742
  :type IsDcnSwitchSupported: int
7728
7743
  :param _CpuType: cpu类型,英特尔:Intel/AMD,海光:Hygon,默认Intel/AMD
7729
7744
  :type CpuType: str
7745
+ :param _ProtectedProperty: 实例删除保护标签,1: 已开启删除保护,0: 未开启删除保护
7746
+ :type ProtectedProperty: int
7730
7747
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7731
7748
  :type RequestId: str
7732
7749
  """
@@ -7785,6 +7802,7 @@ class DescribeDCDBInstanceDetailResponse(AbstractModel):
7785
7802
  self._IsDcnStrongSyncSupported = None
7786
7803
  self._IsDcnSwitchSupported = None
7787
7804
  self._CpuType = None
7805
+ self._ProtectedProperty = None
7788
7806
  self._RequestId = None
7789
7807
 
7790
7808
  @property
@@ -8392,6 +8410,17 @@ class DescribeDCDBInstanceDetailResponse(AbstractModel):
8392
8410
  def CpuType(self, CpuType):
8393
8411
  self._CpuType = CpuType
8394
8412
 
8413
+ @property
8414
+ def ProtectedProperty(self):
8415
+ """实例删除保护标签,1: 已开启删除保护,0: 未开启删除保护
8416
+ :rtype: int
8417
+ """
8418
+ return self._ProtectedProperty
8419
+
8420
+ @ProtectedProperty.setter
8421
+ def ProtectedProperty(self, ProtectedProperty):
8422
+ self._ProtectedProperty = ProtectedProperty
8423
+
8395
8424
  @property
8396
8425
  def RequestId(self):
8397
8426
  """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -8475,6 +8504,7 @@ class DescribeDCDBInstanceDetailResponse(AbstractModel):
8475
8504
  self._IsDcnStrongSyncSupported = params.get("IsDcnStrongSyncSupported")
8476
8505
  self._IsDcnSwitchSupported = params.get("IsDcnSwitchSupported")
8477
8506
  self._CpuType = params.get("CpuType")
8507
+ self._ProtectedProperty = params.get("ProtectedProperty")
8478
8508
  self._RequestId = params.get("RequestId")
8479
8509
 
8480
8510
 
@@ -12511,11 +12541,14 @@ class KillSessionRequest(AbstractModel):
12511
12541
  :type ShardId: str
12512
12542
  :param _ShardSerialId: 分片序列ID,与ShardId设置一个
12513
12543
  :type ShardSerialId: str
12544
+ :param _NodeId: 节点ID,可指定主节点或者备节点进行kill。可选参数,不传默认为主节点。
12545
+ :type NodeId: str
12514
12546
  """
12515
12547
  self._InstanceId = None
12516
12548
  self._SessionId = None
12517
12549
  self._ShardId = None
12518
12550
  self._ShardSerialId = None
12551
+ self._NodeId = None
12519
12552
 
12520
12553
  @property
12521
12554
  def InstanceId(self):
@@ -12561,12 +12594,24 @@ class KillSessionRequest(AbstractModel):
12561
12594
  def ShardSerialId(self, ShardSerialId):
12562
12595
  self._ShardSerialId = ShardSerialId
12563
12596
 
12597
+ @property
12598
+ def NodeId(self):
12599
+ """节点ID,可指定主节点或者备节点进行kill。可选参数,不传默认为主节点。
12600
+ :rtype: str
12601
+ """
12602
+ return self._NodeId
12603
+
12604
+ @NodeId.setter
12605
+ def NodeId(self, NodeId):
12606
+ self._NodeId = NodeId
12607
+
12564
12608
 
12565
12609
  def _deserialize(self, params):
12566
12610
  self._InstanceId = params.get("InstanceId")
12567
12611
  self._SessionId = params.get("SessionId")
12568
12612
  self._ShardId = params.get("ShardId")
12569
12613
  self._ShardSerialId = params.get("ShardSerialId")
12614
+ self._NodeId = params.get("NodeId")
12570
12615
  memeber_set = set(params.keys())
12571
12616
  for name, value in vars(self).items():
12572
12617
  property_name = name[1:]
@@ -13471,7 +13516,7 @@ class ModifyDBInstanceSecurityGroupsRequest(AbstractModel):
13471
13516
  :type Product: str
13472
13517
  :param _InstanceId: 实例ID。
13473
13518
  :type InstanceId: str
13474
- :param _SecurityGroupIds: 要修改的安全组 ID 列表,一个或者多个安全组 ID 组成的数组。
13519
+ :param _SecurityGroupIds: 要修改的安全组 ID 列表,一个或者多个安全组 ID 组成的数组。<br>注意:该入参会全量替换存量已有安全组集合,并非增量更新。修改需传入全量的预期集合。
13475
13520
  :type SecurityGroupIds: list of str
13476
13521
  """
13477
13522
  self._Product = None
@@ -13502,7 +13547,7 @@ class ModifyDBInstanceSecurityGroupsRequest(AbstractModel):
13502
13547
 
13503
13548
  @property
13504
13549
  def SecurityGroupIds(self):
13505
- """要修改的安全组 ID 列表,一个或者多个安全组 ID 组成的数组。
13550
+ """要修改的安全组 ID 列表,一个或者多个安全组 ID 组成的数组。<br>注意:该入参会全量替换存量已有安全组集合,并非增量更新。修改需传入全量的预期集合。
13506
13551
  :rtype: list of str
13507
13552
  """
13508
13553
  return self._SecurityGroupIds
@@ -4399,9 +4399,9 @@ class CreateDataEngineRequest(AbstractModel):
4399
4399
  :type Size: int
4400
4400
  :param _PayMode: 计费类型,后付费:0,预付费:1。当前只支持后付费,不填默认为后付费。
4401
4401
  :type PayMode: int
4402
- :param _TimeSpan: 资源使用时长,后付费:固定填3600,预付费:最少填1,代表购买资源一个月,最长不超过120。默认1
4402
+ :param _TimeSpan: 资源使用时长,后付费:固定填1,预付费:最少填1,代表购买资源一个月,最长不超过120。默认1
4403
4403
  :type TimeSpan: int
4404
- :param _TimeUnit: 资源使用时长的单位,后付费:s,预付费:m。默认为s
4404
+ :param _TimeUnit: 资源使用时长的单位,后付费:h,预付费:m。默认为h
4405
4405
  :type TimeUnit: str
4406
4406
  :param _AutoRenew: 资源的自动续费标志。后付费无需续费,固定填0;预付费下:0表示手动续费、1代表自动续费、2代表不续费,在0下如果是大客户,会自动帮大客户续费。默认为0
4407
4407
  :type AutoRenew: int
@@ -4413,7 +4413,7 @@ class CreateDataEngineRequest(AbstractModel):
4413
4413
  :type CrontabResumeSuspend: int
4414
4414
  :param _CrontabResumeSuspendStrategy: 定时启停策略,复杂类型:包含启停时间、挂起集群策略
4415
4415
  :type CrontabResumeSuspendStrategy: :class:`tencentcloud.dlc.v20210125.models.CrontabResumeSuspendStrategy`
4416
- :param _EngineExecType: 引擎执行任务类型,有效值:SQL/BATCH,默认为SQL
4416
+ :param _EngineExecType: 引擎执行任务类型,有效值:SQL/BATCH,标准引擎默认为BATCH
4417
4417
  :type EngineExecType: str
4418
4418
  :param _MaxConcurrency: 单个集群最大并发任务数,默认5
4419
4419
  :type MaxConcurrency: int
@@ -4614,7 +4614,7 @@ class CreateDataEngineRequest(AbstractModel):
4614
4614
 
4615
4615
  @property
4616
4616
  def TimeSpan(self):
4617
- """资源使用时长,后付费:固定填3600,预付费:最少填1,代表购买资源一个月,最长不超过120。默认1
4617
+ """资源使用时长,后付费:固定填1,预付费:最少填1,代表购买资源一个月,最长不超过120。默认1
4618
4618
  :rtype: int
4619
4619
  """
4620
4620
  return self._TimeSpan
@@ -4625,7 +4625,7 @@ class CreateDataEngineRequest(AbstractModel):
4625
4625
 
4626
4626
  @property
4627
4627
  def TimeUnit(self):
4628
- """资源使用时长的单位,后付费:s,预付费:m。默认为s
4628
+ """资源使用时长的单位,后付费:h,预付费:m。默认为h
4629
4629
  :rtype: str
4630
4630
  """
4631
4631
  return self._TimeUnit
@@ -4691,7 +4691,7 @@ class CreateDataEngineRequest(AbstractModel):
4691
4691
 
4692
4692
  @property
4693
4693
  def EngineExecType(self):
4694
- """引擎执行任务类型,有效值:SQL/BATCH,默认为SQL
4694
+ """引擎执行任务类型,有效值:SQL/BATCH,标准引擎默认为BATCH
4695
4695
  :rtype: str
4696
4696
  """
4697
4697
  return self._EngineExecType
@@ -38299,6 +38299,8 @@ class TaskResponseInfo(AbstractModel):
38299
38299
  :type EngineTypeDetail: str
38300
38300
  :param _ResourceGroupName: spark引擎资源组名称
38301
38301
  :type ResourceGroupName: str
38302
+ :param _JobTimeSum: 任务执行耗时
38303
+ :type JobTimeSum: int
38302
38304
  """
38303
38305
  self._DatabaseName = None
38304
38306
  self._DataAmount = None
@@ -38343,6 +38345,7 @@ class TaskResponseInfo(AbstractModel):
38343
38345
  self._ResultFormat = None
38344
38346
  self._EngineTypeDetail = None
38345
38347
  self._ResourceGroupName = None
38348
+ self._JobTimeSum = None
38346
38349
 
38347
38350
  @property
38348
38351
  def DatabaseName(self):
@@ -38820,6 +38823,17 @@ class TaskResponseInfo(AbstractModel):
38820
38823
  def ResourceGroupName(self, ResourceGroupName):
38821
38824
  self._ResourceGroupName = ResourceGroupName
38822
38825
 
38826
+ @property
38827
+ def JobTimeSum(self):
38828
+ """任务执行耗时
38829
+ :rtype: int
38830
+ """
38831
+ return self._JobTimeSum
38832
+
38833
+ @JobTimeSum.setter
38834
+ def JobTimeSum(self, JobTimeSum):
38835
+ self._JobTimeSum = JobTimeSum
38836
+
38823
38837
 
38824
38838
  def _deserialize(self, params):
38825
38839
  self._DatabaseName = params.get("DatabaseName")
@@ -38871,6 +38885,7 @@ class TaskResponseInfo(AbstractModel):
38871
38885
  self._ResultFormat = params.get("ResultFormat")
38872
38886
  self._EngineTypeDetail = params.get("EngineTypeDetail")
38873
38887
  self._ResourceGroupName = params.get("ResourceGroupName")
38888
+ self._JobTimeSum = params.get("JobTimeSum")
38874
38889
  memeber_set = set(params.keys())
38875
38890
  for name, value in vars(self).items():
38876
38891
  property_name = name[1:]
@@ -1346,7 +1346,7 @@ class DsgcClient(AbstractClient):
1346
1346
 
1347
1347
 
1348
1348
  def DescribeDSPAAssessmentTemplateControlItems(self, request):
1349
- """获取DSPA评估模版关联的评估控制项列表
1349
+ """获取DSPA评估模板关联的评估控制项列表
1350
1350
 
1351
1351
  :param request: Request instance for DescribeDSPAAssessmentTemplateControlItems.
1352
1352
  :type request: :class:`tencentcloud.dsgc.v20190723.models.DescribeDSPAAssessmentTemplateControlItemsRequest`
@@ -4399,7 +4399,7 @@ class CreateDSPAComplianceGroupRequest(AbstractModel):
4399
4399
  :type ComplianceGroupRules: list of ComplianceGroupRuleIdInfo
4400
4400
  :param _LevelGroupId: 分级组ID,默认值为1,新增参数,可选
4401
4401
  :type LevelGroupId: int
4402
- :param _Status: 1代表模版开启,0代表模版关闭
4402
+ :param _Status: 1代表模板开启,0代表模板关闭
4403
4403
  :type Status: int
4404
4404
  :param _CloseComplianceId: 该complianceId的开启状态将被关闭
4405
4405
  :type CloseComplianceId: int
@@ -4469,7 +4469,7 @@ class CreateDSPAComplianceGroupRequest(AbstractModel):
4469
4469
 
4470
4470
  @property
4471
4471
  def Status(self):
4472
- """1代表模版开启,0代表模版关闭
4472
+ """1代表模板开启,0代表模板关闭
4473
4473
  :rtype: int
4474
4474
  """
4475
4475
  return self._Status
@@ -14622,7 +14622,7 @@ class DescribeDSPAComplianceGroupsRequest(AbstractModel):
14622
14622
  :type Limit: int
14623
14623
  :param _ComplianceGroupTypeList: 合规组类型可选值:0 默认合规组, 1 系统合规组, 2 自定义合规组
14624
14624
  :type ComplianceGroupTypeList: list of int
14625
- :param _IsFilterCloseComplianceGroup: 是否仅显示已开启模版
14625
+ :param _IsFilterCloseComplianceGroup: 是否仅显示已开启模板
14626
14626
  :type IsFilterCloseComplianceGroup: bool
14627
14627
  """
14628
14628
  self._DspaId = None
@@ -14701,7 +14701,7 @@ class DescribeDSPAComplianceGroupsRequest(AbstractModel):
14701
14701
 
14702
14702
  @property
14703
14703
  def IsFilterCloseComplianceGroup(self):
14704
- """是否仅显示已开启模版
14704
+ """是否仅显示已开启模板
14705
14705
  :rtype: bool
14706
14706
  """
14707
14707
  return self._IsFilterCloseComplianceGroup
@@ -21299,9 +21299,9 @@ class DspaDiscoveryComplianceGroupInfo(AbstractModel):
21299
21299
  :type Disabled: bool
21300
21300
  :param _IsAlias: 是否别名
21301
21301
  :type IsAlias: bool
21302
- :param _Status: 1代表模版开启,0代表模版关闭
21302
+ :param _Status: 1代表模板开启,0代表模板关闭
21303
21303
  :type Status: int
21304
- :param _ModifyTime: 模版最后修改时间
21304
+ :param _ModifyTime: 模板最后修改时间
21305
21305
  :type ModifyTime: str
21306
21306
  """
21307
21307
  self._ComplianceGroupId = None
@@ -21405,7 +21405,7 @@ class DspaDiscoveryComplianceGroupInfo(AbstractModel):
21405
21405
 
21406
21406
  @property
21407
21407
  def Status(self):
21408
- """1代表模版开启,0代表模版关闭
21408
+ """1代表模板开启,0代表模板关闭
21409
21409
  :rtype: int
21410
21410
  """
21411
21411
  return self._Status
@@ -21416,7 +21416,7 @@ class DspaDiscoveryComplianceGroupInfo(AbstractModel):
21416
21416
 
21417
21417
  @property
21418
21418
  def ModifyTime(self):
21419
- """模版最后修改时间
21419
+ """模板最后修改时间
21420
21420
  :rtype: str
21421
21421
  """
21422
21422
  return self._ModifyTime
@@ -30724,7 +30724,7 @@ class ReportInfo(AbstractModel):
30724
30724
  :type ComplianceName: str
30725
30725
  :param _ProgressPercent: 进度百分比
30726
30726
  :type ProgressPercent: int
30727
- :param _ReportTemplateName: 报告模版名称
30727
+ :param _ReportTemplateName: 报告模板名称
30728
30728
  :type ReportTemplateName: str
30729
30729
  """
30730
30730
  self._Id = None
@@ -30899,7 +30899,7 @@ class ReportInfo(AbstractModel):
30899
30899
 
30900
30900
  @property
30901
30901
  def ReportTemplateName(self):
30902
- """报告模版名称
30902
+ """报告模板名称
30903
30903
  :rtype: str
30904
30904
  """
30905
30905
  return self._ReportTemplateName
@@ -1761,7 +1761,7 @@ class EssClient(AbstractClient):
1761
1761
 
1762
1762
 
1763
1763
  **该接口效果同控制台: 企业设置-> 扩展服务 -> 企业自动签署 -> 合作企业方授权**
1764
- ![image](https://qcloudimg.tencent-cloud.cn/raw/489aa0bf74941469b5e740f428f17c3a.png)
1764
+ ![image](https://qcloudimg.tencent-cloud.cn/raw/4f89c8d5ccc1397db964257fd73dd5e1.png)
1765
1765
 
1766
1766
  :param request: Request instance for CreatePartnerAutoSignAuthUrl.
1767
1767
  :type request: :class:`tencentcloud.ess.v20201111.models.CreatePartnerAutoSignAuthUrlRequest`
@@ -2881,6 +2881,21 @@ class EssClient(AbstractClient):
2881
2881
  def DescribeIntegrationRoles(self, request):
2882
2882
  """此接口(DescribeIntegrationRoles)用于分页查询企业角色列表,列表按照角色创建时间升序排列。
2883
2883
 
2884
+ 角色分为系统默认角色与企业自定义角色,其中系统默认角色不可以禁用、删除、编辑权限项,只可往默认角色中添加成员。企业自定义角色为企业根据自身需要新增的角色,可根据企业具体情况设置各个角色的权限,例如新增财务岗、销售岗等角色。
2885
+
2886
+ 企业版的系统默认角色包含如下角色:
2887
+
2888
+ | 角色名称 | 角色描述 |
2889
+ |------------------------------|--------------------------------------------------------------------------|
2890
+ | 超级管理员(电子签业务最高权限,e.g.法务/业务负责人) | 所有功能和数据管理权限,只能设置一位超管。 |
2891
+ | IT信息管理员(IT系统负责人,e.g. CTO) | 组织员工、计费模块、应用模块等权限能力。 |
2892
+ | 企业合同管理员(企业法务负责人) | 企业全部合同管理、可申请出证等权限能力。 |
2893
+ | 企业模板管理员 | 企业全部模板管理权限能力。 |
2894
+ | 企业印章管理员(企业行政负责人) | 管理企业的所有电子印章,如添加印章、启用停用印章、印章授权等。 |
2895
+ | 用印审批岗(各部门的印章管理岗) | 可对被授权的印章进行日常使用管理,如合同盖章用印的审核及登记。 |
2896
+ | 部门管理员(部门的合同+印章+模板管理) | 部门级(含子部门)所有合同管理权限能力。 |
2897
+ | 业务员(销售员、采购员) | 发起合同、签署合同(含填写、拒签)、撤销合同、持有印章等权限能力。 |
2898
+
2884
2899
  :param request: Request instance for DescribeIntegrationRoles.
2885
2900
  :type request: :class:`tencentcloud.ess.v20201111.models.DescribeIntegrationRolesRequest`
2886
2901
  :rtype: :class:`tencentcloud.ess.v20201111.models.DescribeIntegrationRolesResponse`
@@ -28268,7 +28268,7 @@ class FlowGroupInfo(AbstractModel):
28268
28268
  注意 approver中的顺序需要和模板中的顺序保持一致, 否则会导致模板中配置的信息无效。
28269
28269
  :type Approvers: list of ApproverInfo
28270
28270
  :param _FileIds: 文件资源ID,通过多文件上传[UploadFiles](https://qian.tencent.com/developers/companyApis/templatesAndFiles/UploadFiles)接口获得,为32位字符串。
28271
- 建议开发者保存此资源ID,后续创建合同或创建合同流程需此资源ID。
28271
+ 注:此字段定义为数组,但仅支持单个文件
28272
28272
  :type FileIds: list of str
28273
28273
  :param _TemplateId: 合同模板ID,为32位字符串。
28274
28274
  建议开发者保存此模板ID,后续用此模板发起合同流程需要此参数。
@@ -28357,7 +28357,7 @@ false:有序签
28357
28357
  @property
28358
28358
  def FileIds(self):
28359
28359
  """文件资源ID,通过多文件上传[UploadFiles](https://qian.tencent.com/developers/companyApis/templatesAndFiles/UploadFiles)接口获得,为32位字符串。
28360
- 建议开发者保存此资源ID,后续创建合同或创建合同流程需此资源ID。
28360
+ 注:此字段定义为数组,但仅支持单个文件
28361
28361
  :rtype: list of str
28362
28362
  """
28363
28363
  return self._FileIds
@@ -30141,10 +30141,13 @@ class Intention(AbstractModel):
30141
30141
 
30142
30142
  注:`选择点头模式时,此字段可不传,不传则使用默认语音文本:请问,您是否同意签署本协议?可点头同意。`
30143
30143
  :type IntentionActions: list of IntentionAction
30144
+ :param _RuleIdConfig: 视频核身相关配置
30145
+ :type RuleIdConfig: :class:`tencentcloud.ess.v20201111.models.RuleIdConfig`
30144
30146
  """
30145
30147
  self._IntentionType = None
30146
30148
  self._IntentionQuestions = None
30147
30149
  self._IntentionActions = None
30150
+ self._RuleIdConfig = None
30148
30151
 
30149
30152
  @property
30150
30153
  def IntentionType(self):
@@ -30187,6 +30190,17 @@ class Intention(AbstractModel):
30187
30190
  def IntentionActions(self, IntentionActions):
30188
30191
  self._IntentionActions = IntentionActions
30189
30192
 
30193
+ @property
30194
+ def RuleIdConfig(self):
30195
+ """视频核身相关配置
30196
+ :rtype: :class:`tencentcloud.ess.v20201111.models.RuleIdConfig`
30197
+ """
30198
+ return self._RuleIdConfig
30199
+
30200
+ @RuleIdConfig.setter
30201
+ def RuleIdConfig(self, RuleIdConfig):
30202
+ self._RuleIdConfig = RuleIdConfig
30203
+
30190
30204
 
30191
30205
  def _deserialize(self, params):
30192
30206
  self._IntentionType = params.get("IntentionType")
@@ -30202,6 +30216,9 @@ class Intention(AbstractModel):
30202
30216
  obj = IntentionAction()
30203
30217
  obj._deserialize(item)
30204
30218
  self._IntentionActions.append(obj)
30219
+ if params.get("RuleIdConfig") is not None:
30220
+ self._RuleIdConfig = RuleIdConfig()
30221
+ self._RuleIdConfig._deserialize(params.get("RuleIdConfig"))
30205
30222
  memeber_set = set(params.keys())
30206
30223
  for name, value in vars(self).items():
30207
30224
  property_name = name[1:]
@@ -35044,6 +35061,50 @@ class RiskIdentificationRoleInfo(AbstractModel):
35044
35061
 
35045
35062
 
35046
35063
 
35064
+ class RuleIdConfig(AbstractModel):
35065
+ """视频核身相关配置
35066
+
35067
+ """
35068
+
35069
+ def __init__(self):
35070
+ r"""
35071
+ :param _Speed: 意愿核身语音播报速度,配置后问答模式和点头模式的语音播报环节都会生效,默认值为0:
35072
+ 0-智能语速(根据播报文案的长度自动调整语音播报速度)
35073
+ 1-固定1倍速
35074
+ 2-固定1.2倍速
35075
+ 3-固定1.5倍速
35076
+ :type Speed: int
35077
+ """
35078
+ self._Speed = None
35079
+
35080
+ @property
35081
+ def Speed(self):
35082
+ """意愿核身语音播报速度,配置后问答模式和点头模式的语音播报环节都会生效,默认值为0:
35083
+ 0-智能语速(根据播报文案的长度自动调整语音播报速度)
35084
+ 1-固定1倍速
35085
+ 2-固定1.2倍速
35086
+ 3-固定1.5倍速
35087
+ :rtype: int
35088
+ """
35089
+ return self._Speed
35090
+
35091
+ @Speed.setter
35092
+ def Speed(self, Speed):
35093
+ self._Speed = Speed
35094
+
35095
+
35096
+ def _deserialize(self, params):
35097
+ self._Speed = params.get("Speed")
35098
+ memeber_set = set(params.keys())
35099
+ for name, value in vars(self).items():
35100
+ property_name = name[1:]
35101
+ if property_name in memeber_set:
35102
+ memeber_set.remove(property_name)
35103
+ if len(memeber_set) > 0:
35104
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
35105
+
35106
+
35107
+
35047
35108
  class SealInfo(AbstractModel):
35048
35109
  """模板中指定的印章信息
35049
35110
 
@@ -25412,10 +25412,13 @@ class Intention(AbstractModel):
25412
25412
 
25413
25413
  注:`选择点头模式时,此字段可不传,不传则使用默认语音文本:请问,您是否同意签署本协议?可点头同意。`
25414
25414
  :type IntentionActions: list of IntentionAction
25415
+ :param _RuleIdConfig: 视频核身相关配置
25416
+ :type RuleIdConfig: :class:`tencentcloud.essbasic.v20210526.models.RuleIdConfig`
25415
25417
  """
25416
25418
  self._IntentionType = None
25417
25419
  self._IntentionQuestions = None
25418
25420
  self._IntentionActions = None
25421
+ self._RuleIdConfig = None
25419
25422
 
25420
25423
  @property
25421
25424
  def IntentionType(self):
@@ -25458,6 +25461,17 @@ class Intention(AbstractModel):
25458
25461
  def IntentionActions(self, IntentionActions):
25459
25462
  self._IntentionActions = IntentionActions
25460
25463
 
25464
+ @property
25465
+ def RuleIdConfig(self):
25466
+ """视频核身相关配置
25467
+ :rtype: :class:`tencentcloud.essbasic.v20210526.models.RuleIdConfig`
25468
+ """
25469
+ return self._RuleIdConfig
25470
+
25471
+ @RuleIdConfig.setter
25472
+ def RuleIdConfig(self, RuleIdConfig):
25473
+ self._RuleIdConfig = RuleIdConfig
25474
+
25461
25475
 
25462
25476
  def _deserialize(self, params):
25463
25477
  self._IntentionType = params.get("IntentionType")
@@ -25473,6 +25487,9 @@ class Intention(AbstractModel):
25473
25487
  obj = IntentionAction()
25474
25488
  obj._deserialize(item)
25475
25489
  self._IntentionActions.append(obj)
25490
+ if params.get("RuleIdConfig") is not None:
25491
+ self._RuleIdConfig = RuleIdConfig()
25492
+ self._RuleIdConfig._deserialize(params.get("RuleIdConfig"))
25476
25493
  memeber_set = set(params.keys())
25477
25494
  for name, value in vars(self).items():
25478
25495
  property_name = name[1:]
@@ -29587,6 +29604,50 @@ class ResourceUrlInfo(AbstractModel):
29587
29604
 
29588
29605
 
29589
29606
 
29607
+ class RuleIdConfig(AbstractModel):
29608
+ """视频核身相关配置
29609
+
29610
+ """
29611
+
29612
+ def __init__(self):
29613
+ r"""
29614
+ :param _Speed: 意愿核身语音播报速度,配置后问答模式和点头模式的语音播报环节都会生效,默认值为0:
29615
+ 0-智能语速(根据播报文案的长度自动调整语音播报速度)
29616
+ 1-固定1倍速
29617
+ 2-固定1.2倍速
29618
+ 3-固定1.5倍速
29619
+ :type Speed: int
29620
+ """
29621
+ self._Speed = None
29622
+
29623
+ @property
29624
+ def Speed(self):
29625
+ """意愿核身语音播报速度,配置后问答模式和点头模式的语音播报环节都会生效,默认值为0:
29626
+ 0-智能语速(根据播报文案的长度自动调整语音播报速度)
29627
+ 1-固定1倍速
29628
+ 2-固定1.2倍速
29629
+ 3-固定1.5倍速
29630
+ :rtype: int
29631
+ """
29632
+ return self._Speed
29633
+
29634
+ @Speed.setter
29635
+ def Speed(self, Speed):
29636
+ self._Speed = Speed
29637
+
29638
+
29639
+ def _deserialize(self, params):
29640
+ self._Speed = params.get("Speed")
29641
+ memeber_set = set(params.keys())
29642
+ for name, value in vars(self).items():
29643
+ property_name = name[1:]
29644
+ if property_name in memeber_set:
29645
+ memeber_set.remove(property_name)
29646
+ if len(memeber_set) > 0:
29647
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
29648
+
29649
+
29650
+
29590
29651
  class SignComponentConfig(AbstractModel):
29591
29652
  """签署控件的配置信息,用在嵌入式发起的页面配置,包括
29592
29653