tencentcloud-sdk-python 3.0.1441__py2.py3-none-any.whl → 3.0.1443__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 (47) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/batch/v20170312/models.py +28 -48
  3. tencentcloud/ckafka/v20190819/models.py +23 -23
  4. tencentcloud/clb/v20180317/models.py +4 -4
  5. tencentcloud/cls/v20201016/cls_client.py +3 -3
  6. tencentcloud/cls/v20201016/errorcodes.py +3 -0
  7. tencentcloud/cls/v20201016/models.py +1063 -246
  8. tencentcloud/common/credential.py +20 -2
  9. tencentcloud/dlc/v20210125/models.py +6 -6
  10. tencentcloud/dnspod/v20210323/errorcodes.py +3 -0
  11. tencentcloud/dnspod/v20210323/models.py +17 -2
  12. tencentcloud/es/v20180416/models.py +30 -0
  13. tencentcloud/ess/v20201111/ess_client.py +3 -1
  14. tencentcloud/ess/v20201111/models.py +65 -4
  15. tencentcloud/essbasic/v20210526/essbasic_client.py +3 -1
  16. tencentcloud/essbasic/v20210526/models.py +63 -2
  17. tencentcloud/faceid/v20180301/models.py +96 -4
  18. tencentcloud/iai/v20200303/models.py +19 -0
  19. tencentcloud/lighthouse/v20200324/errorcodes.py +27 -0
  20. tencentcloud/lighthouse/v20200324/lighthouse_client.py +53 -0
  21. tencentcloud/lighthouse/v20200324/models.py +534 -0
  22. tencentcloud/live/v20180801/models.py +2 -10
  23. tencentcloud/lke/v20231130/lke_client.py +0 -23
  24. tencentcloud/lke/v20231130/models.py +40 -128
  25. tencentcloud/mariadb/v20170312/models.py +2 -2
  26. tencentcloud/ocr/v20181119/models.py +34 -0
  27. tencentcloud/organization/v20210331/models.py +24 -26
  28. tencentcloud/ssl/v20191205/models.py +2 -2
  29. tencentcloud/tbaas/v20180416/errorcodes.py +6 -0
  30. tencentcloud/teo/v20220901/models.py +18 -18
  31. tencentcloud/tms/v20201229/errorcodes.py +3 -0
  32. tencentcloud/trtc/v20190722/errorcodes.py +15 -0
  33. tencentcloud/trtc/v20190722/models.py +482 -0
  34. tencentcloud/trtc/v20190722/trtc_client.py +64 -0
  35. tencentcloud/tse/v20201207/models.py +30 -0
  36. tencentcloud/tsf/v20180326/errorcodes.py +38 -17
  37. tencentcloud/tsf/v20180326/models.py +976 -778
  38. tencentcloud/tsf/v20180326/tsf_client.py +18 -18
  39. tencentcloud/vod/v20180717/models.py +15 -0
  40. tencentcloud/vpc/v20170312/models.py +35 -0
  41. tencentcloud/vpc/v20170312/vpc_client.py +1 -1
  42. tencentcloud/wsa/v20250508/models.py +42 -6
  43. {tencentcloud_sdk_python-3.0.1441.dist-info → tencentcloud_sdk_python-3.0.1443.dist-info}/METADATA +1 -1
  44. {tencentcloud_sdk_python-3.0.1441.dist-info → tencentcloud_sdk_python-3.0.1443.dist-info}/RECORD +47 -47
  45. {tencentcloud_sdk_python-3.0.1441.dist-info → tencentcloud_sdk_python-3.0.1443.dist-info}/LICENSE +0 -0
  46. {tencentcloud_sdk_python-3.0.1441.dist-info → tencentcloud_sdk_python-3.0.1443.dist-info}/WHEEL +0 -0
  47. {tencentcloud_sdk_python-3.0.1441.dist-info → tencentcloud_sdk_python-3.0.1443.dist-info}/top_level.txt +0 -0
@@ -388,14 +388,17 @@ class OIDCRoleArnCredential(object):
388
388
  _service = "sts"
389
389
  _action = 'AssumeRoleWithWebIdentity'
390
390
  _default_session_name = 'tencentcloud-python-sdk-'
391
+ _endpoint = "sts.tencentcloudapi.com"
391
392
 
392
- def __init__(self, region, provider_id, web_identity_token, role_arn, role_session_name, duration_seconds=7200):
393
+ def __init__(self, region, provider_id, web_identity_token, role_arn, role_session_name, duration_seconds=7200, endpoint=None):
393
394
  self._region = region
394
395
  self._provider_id = provider_id
395
396
  self._web_identity_token = web_identity_token
396
397
  self._role_arn = role_arn
397
398
  self._role_session_name = role_session_name
398
399
  self._duration_seconds = duration_seconds
400
+ if endpoint:
401
+ self._endpoint = endpoint
399
402
 
400
403
  self._token = None
401
404
  self._tmp_secret_id = None
@@ -428,6 +431,14 @@ class OIDCRoleArnCredential(object):
428
431
  self._keep_fresh()
429
432
  return self._token
430
433
 
434
+ @property
435
+ def endpoint(self):
436
+ return self._endpoint
437
+
438
+ @endpoint.setter
439
+ def endpoint(self, endpoint):
440
+ self._endpoint = endpoint
441
+
431
442
  def _keep_fresh(self):
432
443
  if None in [self._token, self._tmp_secret_key, self._tmp_secret_id] or self._expired_time < int(time.time()):
433
444
  self.refresh()
@@ -435,7 +446,14 @@ class OIDCRoleArnCredential(object):
435
446
  def refresh(self):
436
447
  if self._is_tke:
437
448
  self._init_from_tke()
438
- common_client = CommonClient(credential=None, region=self._region, version=self._version, service=self._service)
449
+
450
+ http_profile = HttpProfile()
451
+ http_profile.endpoint = self._endpoint
452
+ client_profile = ClientProfile()
453
+ client_profile.httpProfile = http_profile
454
+
455
+ common_client = CommonClient(credential=None, region=self._region, version=self._version,
456
+ service=self._service, profile=client_profile)
439
457
  params = {
440
458
  "ProviderId": self._provider_id,
441
459
  "WebIdentityToken": self._web_identity_token,
@@ -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
@@ -137,6 +137,9 @@ FAILEDOPERATION_TRANSFERTOPERSONDENIED = 'FailedOperation.TransferToPersonDenied
137
137
  # 操作未响应,请稍后重试。
138
138
  FAILEDOPERATION_UNKNOWERROR = 'FailedOperation.UnknowError'
139
139
 
140
+ # 目标用户不允许转入域名
141
+ FAILEDOPERATION_USERNOTALLOWTRANSFER = 'FailedOperation.UserNotAllowTransfer'
142
+
140
143
  # 域名已经提交过订单并且正在审核中,请稍候。
141
144
  FAILEDOPERATION_VERIFYINGBILLEXISTS = 'FailedOperation.VerifyingBillExists'
142
145
 
@@ -13914,7 +13914,7 @@ class ModifyDomainOwnerRequest(AbstractModel):
13914
13914
  r"""
13915
13915
  :param _Domain: 域名
13916
13916
  :type Domain: str
13917
- :param _Account: 域名需要转入的账号,支持Uin或者邮箱格式
13917
+ :param _Account: 域名需要转入的账号Uin
13918
13918
  :type Account: str
13919
13919
  :param _DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId
13920
13920
  :type DomainId: int
@@ -13936,7 +13936,7 @@ class ModifyDomainOwnerRequest(AbstractModel):
13936
13936
 
13937
13937
  @property
13938
13938
  def Account(self):
13939
- """域名需要转入的账号,支持Uin或者邮箱格式
13939
+ """域名需要转入的账号Uin
13940
13940
  :rtype: str
13941
13941
  """
13942
13942
  return self._Account
@@ -20036,6 +20036,8 @@ class WhoisInfo(AbstractModel):
20036
20036
  :param _Dnssec: dnssec
20037
20037
  注意:此字段可能返回 null,表示取不到有效值。
20038
20038
  :type Dnssec: str
20039
+ :param _RegistrarType: 腾讯注册商资质
20040
+ :type RegistrarType: str
20039
20041
  """
20040
20042
  self._Contacts = None
20041
20043
  self._CreationDate = None
@@ -20048,6 +20050,7 @@ class WhoisInfo(AbstractModel):
20048
20050
  self._Status = None
20049
20051
  self._UpdatedDate = None
20050
20052
  self._Dnssec = None
20053
+ self._RegistrarType = None
20051
20054
 
20052
20055
  @property
20053
20056
  def Contacts(self):
@@ -20181,6 +20184,17 @@ class WhoisInfo(AbstractModel):
20181
20184
  def Dnssec(self, Dnssec):
20182
20185
  self._Dnssec = Dnssec
20183
20186
 
20187
+ @property
20188
+ def RegistrarType(self):
20189
+ """腾讯注册商资质
20190
+ :rtype: str
20191
+ """
20192
+ return self._RegistrarType
20193
+
20194
+ @RegistrarType.setter
20195
+ def RegistrarType(self, RegistrarType):
20196
+ self._RegistrarType = RegistrarType
20197
+
20184
20198
 
20185
20199
  def _deserialize(self, params):
20186
20200
  if params.get("Contacts") is not None:
@@ -20196,6 +20210,7 @@ class WhoisInfo(AbstractModel):
20196
20210
  self._Status = params.get("Status")
20197
20211
  self._UpdatedDate = params.get("UpdatedDate")
20198
20212
  self._Dnssec = params.get("Dnssec")
20213
+ self._RegistrarType = params.get("RegistrarType")
20199
20214
  memeber_set = set(params.keys())
20200
20215
  for name, value in vars(self).items():
20201
20216
  property_name = name[1:]
@@ -10737,6 +10737,8 @@ RENEW_FLAG_DEFAULT:不自动续费
10737
10737
  :param _EnableDestroyProtection: 开启集群保护:OPEN-开启,CLOSE-关闭
10738
10738
  注意:此字段可能返回 null,表示取不到有效值。
10739
10739
  :type EnableDestroyProtection: str
10740
+ :param _ShowKibanaIpPort: kibana内网访问地址
10741
+ :type ShowKibanaIpPort: str
10740
10742
  """
10741
10743
  self._InstanceId = None
10742
10744
  self._InstanceName = None
@@ -10832,6 +10834,7 @@ RENEW_FLAG_DEFAULT:不自动续费
10832
10834
  self._EnableScheduleRecoverGroup = None
10833
10835
  self._EnableScheduleOperationDuration = None
10834
10836
  self._EnableDestroyProtection = None
10837
+ self._ShowKibanaIpPort = None
10835
10838
 
10836
10839
  @property
10837
10840
  def InstanceId(self):
@@ -11930,6 +11933,17 @@ RENEW_FLAG_DEFAULT:不自动续费
11930
11933
  def EnableDestroyProtection(self, EnableDestroyProtection):
11931
11934
  self._EnableDestroyProtection = EnableDestroyProtection
11932
11935
 
11936
+ @property
11937
+ def ShowKibanaIpPort(self):
11938
+ """kibana内网访问地址
11939
+ :rtype: str
11940
+ """
11941
+ return self._ShowKibanaIpPort
11942
+
11943
+ @ShowKibanaIpPort.setter
11944
+ def ShowKibanaIpPort(self, ShowKibanaIpPort):
11945
+ self._ShowKibanaIpPort = ShowKibanaIpPort
11946
+
11933
11947
 
11934
11948
  def _deserialize(self, params):
11935
11949
  self._InstanceId = params.get("InstanceId")
@@ -12074,6 +12088,7 @@ RENEW_FLAG_DEFAULT:不自动续费
12074
12088
  self._EnableScheduleOperationDuration = EnableScheduleOperationDuration()
12075
12089
  self._EnableScheduleOperationDuration._deserialize(params.get("EnableScheduleOperationDuration"))
12076
12090
  self._EnableDestroyProtection = params.get("EnableDestroyProtection")
12091
+ self._ShowKibanaIpPort = params.get("ShowKibanaIpPort")
12077
12092
  memeber_set = set(params.keys())
12078
12093
  for name, value in vars(self).items():
12079
12094
  property_name = name[1:]
@@ -15874,6 +15889,8 @@ class RestartNodesRequest(AbstractModel):
15874
15889
  :type EnableScheduleRecoverGroup: bool
15875
15890
  :param _EnableScheduleOperationDuration: 置放群组异步任务时间段
15876
15891
  :type EnableScheduleOperationDuration: :class:`tencentcloud.es.v20180416.models.EnableScheduleOperationDuration`
15892
+ :param _EventTypeIds: 事件id列表
15893
+ :type EventTypeIds: list of str
15877
15894
  """
15878
15895
  self._InstanceId = None
15879
15896
  self._NodeNames = None
@@ -15885,6 +15902,7 @@ class RestartNodesRequest(AbstractModel):
15885
15902
  self._ShardAllocationBytes = None
15886
15903
  self._EnableScheduleRecoverGroup = None
15887
15904
  self._EnableScheduleOperationDuration = None
15905
+ self._EventTypeIds = None
15888
15906
 
15889
15907
  @property
15890
15908
  def InstanceId(self):
@@ -15996,6 +16014,17 @@ class RestartNodesRequest(AbstractModel):
15996
16014
  def EnableScheduleOperationDuration(self, EnableScheduleOperationDuration):
15997
16015
  self._EnableScheduleOperationDuration = EnableScheduleOperationDuration
15998
16016
 
16017
+ @property
16018
+ def EventTypeIds(self):
16019
+ """事件id列表
16020
+ :rtype: list of str
16021
+ """
16022
+ return self._EventTypeIds
16023
+
16024
+ @EventTypeIds.setter
16025
+ def EventTypeIds(self, EventTypeIds):
16026
+ self._EventTypeIds = EventTypeIds
16027
+
15999
16028
 
16000
16029
  def _deserialize(self, params):
16001
16030
  self._InstanceId = params.get("InstanceId")
@@ -16010,6 +16039,7 @@ class RestartNodesRequest(AbstractModel):
16010
16039
  if params.get("EnableScheduleOperationDuration") is not None:
16011
16040
  self._EnableScheduleOperationDuration = EnableScheduleOperationDuration()
16012
16041
  self._EnableScheduleOperationDuration._deserialize(params.get("EnableScheduleOperationDuration"))
16042
+ self._EventTypeIds = params.get("EventTypeIds")
16013
16043
  memeber_set = set(params.keys())
16014
16044
  for name, value in vars(self).items():
16015
16045
  property_name = name[1:]
@@ -3479,7 +3479,9 @@ class EssClient(AbstractClient):
3479
3479
 
3480
3480
 
3481
3481
  def RenewAutoSignLicense(self, request):
3482
- """给医疗个人自动签许可续期。续期成功后,可对医疗自动签许可追加一年有效期,只可续期一次。
3482
+ """已经不再使用
3483
+
3484
+ 给医疗个人自动签许可续期。续期成功后,可对医疗自动签许可追加一年有效期,只可续期一次。
3483
3485
 
3484
3486
  注意: `处方单等特殊场景专用,此接口为白名单功能,使用前请联系对接的客户经理沟通。`
3485
3487
 
@@ -16611,7 +16611,7 @@ class CreateSealRequest(AbstractModel):
16611
16611
  <ul><li>**circle**:(默认)圆形印章</li>
16612
16612
  <li>**ellipse**:椭圆印章</li></ul>
16613
16613
  :type SealStyle: str
16614
- :param _SealSize: 印章尺寸取值描述, 可以选择的尺寸如下: <ul><li> **38_38**: 圆形企业公章直径38mm, 当SealStyle是圆形的时候才有效</li> <li> **40_40**: 圆形企业公章直径40mm, 当SealStyle是圆形的时候才有效</li> <li> **42_42**(默认): 圆形企业公章直径42mm, 当SealStyle是圆形的时候才有效</li> <li> **45_45**: 圆形企业印章直径45mm, 当SealStyle是圆形的时候才有效</li> <li> **50_50**: 圆形企业印章直径45mm, 当SealStyle是圆形的时候才有效</li> <li> **58_58**: 圆形企业印章直径45mm, 当SealStyle是圆形的时候才有效</li> <li> **40_30**: 椭圆形印章40mm x 30mm, 当SealStyle是椭圆的时候才有效</li> <li> **45_30**: 椭圆形印章45mm x 30mm, 当SealStyle是椭圆的时候才有效</li> </ul>
16614
+ :param _SealSize: 印章尺寸取值描述, 可以选择的尺寸如下: <ul><li> **38_38**: 圆形企业公章直径38mm, 当SealStyle是圆形的时候才有效</li> <li> **40_40**: 圆形企业公章直径40mm, 当SealStyle是圆形的时候才有效</li> <li> **42_42**(默认): 圆形企业公章直径42mm, 当SealStyle是圆形的时候才有效</li> <li> **45_45**: 圆形企业印章直径45mm, 当SealStyle是圆形的时候才有效</li> <li> **50_50**: 圆形企业印章直径50mm, 当SealStyle是圆形的时候才有效</li> <li> **58_58**: 圆形企业印章直径58mm, 当SealStyle是圆形的时候才有效</li> <li> **40_30**: 椭圆形印章40mm x 30mm, 当SealStyle是椭圆的时候才有效</li> <li> **45_30**: 椭圆形印章45mm x 30mm, 当SealStyle是椭圆的时候才有效</li> </ul>
16615
16615
  :type SealSize: str
16616
16616
  :param _TaxIdentifyCode: 企业税号
16617
16617
  注:
@@ -16828,7 +16828,7 @@ class CreateSealRequest(AbstractModel):
16828
16828
 
16829
16829
  @property
16830
16830
  def SealSize(self):
16831
- """印章尺寸取值描述, 可以选择的尺寸如下: <ul><li> **38_38**: 圆形企业公章直径38mm, 当SealStyle是圆形的时候才有效</li> <li> **40_40**: 圆形企业公章直径40mm, 当SealStyle是圆形的时候才有效</li> <li> **42_42**(默认): 圆形企业公章直径42mm, 当SealStyle是圆形的时候才有效</li> <li> **45_45**: 圆形企业印章直径45mm, 当SealStyle是圆形的时候才有效</li> <li> **50_50**: 圆形企业印章直径45mm, 当SealStyle是圆形的时候才有效</li> <li> **58_58**: 圆形企业印章直径45mm, 当SealStyle是圆形的时候才有效</li> <li> **40_30**: 椭圆形印章40mm x 30mm, 当SealStyle是椭圆的时候才有效</li> <li> **45_30**: 椭圆形印章45mm x 30mm, 当SealStyle是椭圆的时候才有效</li> </ul>
16831
+ """印章尺寸取值描述, 可以选择的尺寸如下: <ul><li> **38_38**: 圆形企业公章直径38mm, 当SealStyle是圆形的时候才有效</li> <li> **40_40**: 圆形企业公章直径40mm, 当SealStyle是圆形的时候才有效</li> <li> **42_42**(默认): 圆形企业公章直径42mm, 当SealStyle是圆形的时候才有效</li> <li> **45_45**: 圆形企业印章直径45mm, 当SealStyle是圆形的时候才有效</li> <li> **50_50**: 圆形企业印章直径50mm, 当SealStyle是圆形的时候才有效</li> <li> **58_58**: 圆形企业印章直径58mm, 当SealStyle是圆形的时候才有效</li> <li> **40_30**: 椭圆形印章40mm x 30mm, 当SealStyle是椭圆的时候才有效</li> <li> **45_30**: 椭圆形印章45mm x 30mm, 当SealStyle是椭圆的时候才有效</li> </ul>
16832
16832
  :rtype: str
16833
16833
  """
16834
16834
  return self._SealSize
@@ -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
 
@@ -1584,7 +1584,9 @@ class EssbasicClient(AbstractClient):
1584
1584
 
1585
1585
 
1586
1586
  def ChannelRenewAutoSignLicense(self, request):
1587
- """给医疗个人自动签许可续期。续期成功后,可对医疗自动签许可追加一年有效期,只可续期一次。
1587
+ """已经不再使用
1588
+
1589
+ 给医疗个人自动签许可续期。续期成功后,可对医疗自动签许可追加一年有效期,只可续期一次。
1588
1590
 
1589
1591
  注意: `处方单等特殊场景专用,此接口为白名单功能,使用前请联系对接的客户经理沟通。`
1590
1592
 
@@ -17673,7 +17673,7 @@ class CreateSealByImageRequest(AbstractModel):
17673
17673
  <ul><li>**circle**:(默认)圆形印章</li>
17674
17674
  <li>**ellipse**:椭圆印章</li></ul>
17675
17675
  :type SealStyle: str
17676
- :param _SealSize: 印章尺寸取值描述, 可以选择的尺寸如下: <ul><li> **38_38**: 圆形企业公章直径38mm, 当SealStyle是圆形的时候才有效</li> <li> **40_40**: 圆形企业公章直径40mm, 当SealStyle是圆形的时候才有效</li> <li> **42_42**(默认): 圆形企业公章直径42mm, 当SealStyle是圆形的时候才有效</li> <li> **45_45**: 圆形企业印章直径45mm, 当SealStyle是圆形的时候才有效</li> <li> **50_50**: 圆形企业印章直径45mm, 当SealStyle是圆形的时候才有效</li> <li> **58_58**: 圆形企业印章直径45mm, 当SealStyle是圆形的时候才有效</li> <li> **40_30**: 椭圆形印章40mm x 30mm, 当SealStyle是椭圆的时候才有效</li> <li> **45_30**: 椭圆形印章45mm x 30mm, 当SealStyle是椭圆的时候才有效</li> </ul>
17676
+ :param _SealSize: 印章尺寸取值描述, 可以选择的尺寸如下: <ul><li> **38_38**: 圆形企业公章直径38mm, 当SealStyle是圆形的时候才有效</li> <li> **40_40**: 圆形企业公章直径40mm, 当SealStyle是圆形的时候才有效</li> <li> **42_42**(默认): 圆形企业公章直径42mm, 当SealStyle是圆形的时候才有效</li> <li> **45_45**: 圆形企业印章直径45mm, 当SealStyle是圆形的时候才有效</li> <li> **50_50**: 圆形企业印章直径50mm, 当SealStyle是圆形的时候才有效</li> <li> **58_58**: 圆形企业印章直径58mm, 当SealStyle是圆形的时候才有效</li> <li> **40_30**: 椭圆形印章40mm x 30mm, 当SealStyle是椭圆的时候才有效</li> <li> **45_30**: 椭圆形印章45mm x 30mm, 当SealStyle是椭圆的时候才有效</li> </ul>
17677
17677
  :type SealSize: str
17678
17678
  :param _TaxIdentifyCode: 企业税号
17679
17679
 
@@ -17812,7 +17812,7 @@ class CreateSealByImageRequest(AbstractModel):
17812
17812
 
17813
17813
  @property
17814
17814
  def SealSize(self):
17815
- """印章尺寸取值描述, 可以选择的尺寸如下: <ul><li> **38_38**: 圆形企业公章直径38mm, 当SealStyle是圆形的时候才有效</li> <li> **40_40**: 圆形企业公章直径40mm, 当SealStyle是圆形的时候才有效</li> <li> **42_42**(默认): 圆形企业公章直径42mm, 当SealStyle是圆形的时候才有效</li> <li> **45_45**: 圆形企业印章直径45mm, 当SealStyle是圆形的时候才有效</li> <li> **50_50**: 圆形企业印章直径45mm, 当SealStyle是圆形的时候才有效</li> <li> **58_58**: 圆形企业印章直径45mm, 当SealStyle是圆形的时候才有效</li> <li> **40_30**: 椭圆形印章40mm x 30mm, 当SealStyle是椭圆的时候才有效</li> <li> **45_30**: 椭圆形印章45mm x 30mm, 当SealStyle是椭圆的时候才有效</li> </ul>
17815
+ """印章尺寸取值描述, 可以选择的尺寸如下: <ul><li> **38_38**: 圆形企业公章直径38mm, 当SealStyle是圆形的时候才有效</li> <li> **40_40**: 圆形企业公章直径40mm, 当SealStyle是圆形的时候才有效</li> <li> **42_42**(默认): 圆形企业公章直径42mm, 当SealStyle是圆形的时候才有效</li> <li> **45_45**: 圆形企业印章直径45mm, 当SealStyle是圆形的时候才有效</li> <li> **50_50**: 圆形企业印章直径50mm, 当SealStyle是圆形的时候才有效</li> <li> **58_58**: 圆形企业印章直径58mm, 当SealStyle是圆形的时候才有效</li> <li> **40_30**: 椭圆形印章40mm x 30mm, 当SealStyle是椭圆的时候才有效</li> <li> **45_30**: 椭圆形印章45mm x 30mm, 当SealStyle是椭圆的时候才有效</li> </ul>
17816
17816
  :rtype: str
17817
17817
  """
17818
17818
  return self._SealSize
@@ -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