tencentcloud-sdk-python 3.0.1068__py2.py3-none-any.whl → 3.0.1076__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 (60) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/antiddos/v20200309/models.py +27 -1
  3. tencentcloud/billing/v20180709/billing_client.py +23 -0
  4. tencentcloud/billing/v20180709/errorcodes.py +6 -0
  5. tencentcloud/billing/v20180709/models.py +479 -0
  6. tencentcloud/car/v20220110/car_client.py +2 -2
  7. tencentcloud/cfs/v20190719/models.py +12 -0
  8. tencentcloud/cfw/v20190904/models.py +116 -0
  9. tencentcloud/clb/v20180317/errorcodes.py +3 -0
  10. tencentcloud/cloudaudit/v20190319/cloudaudit_client.py +6 -6
  11. tencentcloud/cloudaudit/v20190319/errorcodes.py +6 -3
  12. tencentcloud/cloudaudit/v20190319/models.py +30 -2
  13. tencentcloud/cvm/v20170312/models.py +2 -2
  14. tencentcloud/cynosdb/v20190107/models.py +188 -0
  15. tencentcloud/dbbrain/v20210527/models.py +37 -0
  16. tencentcloud/dnspod/v20210323/models.py +12 -0
  17. tencentcloud/dts/v20211206/dts_client.py +511 -0
  18. tencentcloud/dts/v20211206/errorcodes.py +3 -0
  19. tencentcloud/dts/v20211206/models.py +6918 -2996
  20. tencentcloud/ess/v20201111/ess_client.py +64 -9
  21. tencentcloud/ess/v20201111/models.py +161 -42
  22. tencentcloud/essbasic/v20210526/essbasic_client.py +59 -11
  23. tencentcloud/essbasic/v20210526/models.py +253 -187
  24. tencentcloud/faceid/v20180301/models.py +24 -0
  25. tencentcloud/hai/v20230812/errorcodes.py +6 -0
  26. tencentcloud/hunyuan/v20230901/models.py +1 -1
  27. tencentcloud/monitor/v20180724/models.py +1118 -97
  28. tencentcloud/monitor/v20180724/monitor_client.py +118 -0
  29. tencentcloud/mps/v20190612/models.py +60 -1
  30. tencentcloud/mrs/v20200910/models.py +5 -1
  31. tencentcloud/ocr/v20181119/models.py +216 -1
  32. tencentcloud/ocr/v20181119/ocr_client.py +23 -0
  33. tencentcloud/rum/v20210622/models.py +0 -504
  34. tencentcloud/rum/v20210622/rum_client.py +0 -138
  35. tencentcloud/scf/v20180416/errorcodes.py +3 -0
  36. tencentcloud/tat/v20201028/models.py +2 -0
  37. tencentcloud/tcb/v20180608/models.py +9 -0
  38. tencentcloud/tdid/v20210519/errorcodes.py +143 -2
  39. tencentcloud/tdid/v20210519/models.py +1424 -788
  40. tencentcloud/tdid/v20210519/tdid_client.py +201 -112
  41. tencentcloud/tdmq/v20200217/errorcodes.py +3 -0
  42. tencentcloud/tdmq/v20200217/models.py +261 -0
  43. tencentcloud/tdmq/v20200217/tdmq_client.py +23 -0
  44. tencentcloud/teo/v20220901/models.py +18 -16
  45. tencentcloud/tione/v20211111/errorcodes.py +12 -0
  46. tencentcloud/tione/v20211111/models.py +190 -32
  47. tencentcloud/trtc/v20190722/errorcodes.py +6 -0
  48. tencentcloud/trtc/v20190722/models.py +34 -5
  49. tencentcloud/trtc/v20190722/trtc_client.py +2 -0
  50. tencentcloud/tse/v20201207/models.py +1 -1
  51. tencentcloud/tsf/v20180326/models.py +14 -1
  52. tencentcloud/vod/v20180717/models.py +933 -43
  53. tencentcloud/vod/v20180717/vod_client.py +161 -0
  54. tencentcloud/wedata/v20210820/models.py +0 -70
  55. tencentcloud/wedata/v20210820/wedata_client.py +0 -25
  56. {tencentcloud_sdk_python-3.0.1068.dist-info → tencentcloud_sdk_python-3.0.1076.dist-info}/METADATA +1 -1
  57. {tencentcloud_sdk_python-3.0.1068.dist-info → tencentcloud_sdk_python-3.0.1076.dist-info}/RECORD +60 -60
  58. {tencentcloud_sdk_python-3.0.1068.dist-info → tencentcloud_sdk_python-3.0.1076.dist-info}/LICENSE +0 -0
  59. {tencentcloud_sdk_python-3.0.1068.dist-info → tencentcloud_sdk_python-3.0.1076.dist-info}/WHEEL +0 -0
  60. {tencentcloud_sdk_python-3.0.1068.dist-info → tencentcloud_sdk_python-3.0.1076.dist-info}/top_level.txt +0 -0
@@ -3448,10 +3448,16 @@ class GetEidResultRequest(AbstractModel):
3448
3448
  :type InfoType: str
3449
3449
  :param _BestFramesCount: 从活体视频中截取一定张数的最佳帧。默认为0,最大为3,超出3的最多只给3张。(InfoType需要包含3)
3450
3450
  :type BestFramesCount: int
3451
+ :param _IsCutIdCardImage: 是否对身份证照片进行裁边。默认为false。(InfoType需要包含2)
3452
+ :type IsCutIdCardImage: bool
3453
+ :param _IsNeedIdCardAvatar: 是否需要从身份证中抠出头像。默认为false。(InfoType需要包含2)
3454
+ :type IsNeedIdCardAvatar: bool
3451
3455
  """
3452
3456
  self._EidToken = None
3453
3457
  self._InfoType = None
3454
3458
  self._BestFramesCount = None
3459
+ self._IsCutIdCardImage = None
3460
+ self._IsNeedIdCardAvatar = None
3455
3461
 
3456
3462
  @property
3457
3463
  def EidToken(self):
@@ -3477,11 +3483,29 @@ class GetEidResultRequest(AbstractModel):
3477
3483
  def BestFramesCount(self, BestFramesCount):
3478
3484
  self._BestFramesCount = BestFramesCount
3479
3485
 
3486
+ @property
3487
+ def IsCutIdCardImage(self):
3488
+ return self._IsCutIdCardImage
3489
+
3490
+ @IsCutIdCardImage.setter
3491
+ def IsCutIdCardImage(self, IsCutIdCardImage):
3492
+ self._IsCutIdCardImage = IsCutIdCardImage
3493
+
3494
+ @property
3495
+ def IsNeedIdCardAvatar(self):
3496
+ return self._IsNeedIdCardAvatar
3497
+
3498
+ @IsNeedIdCardAvatar.setter
3499
+ def IsNeedIdCardAvatar(self, IsNeedIdCardAvatar):
3500
+ self._IsNeedIdCardAvatar = IsNeedIdCardAvatar
3501
+
3480
3502
 
3481
3503
  def _deserialize(self, params):
3482
3504
  self._EidToken = params.get("EidToken")
3483
3505
  self._InfoType = params.get("InfoType")
3484
3506
  self._BestFramesCount = params.get("BestFramesCount")
3507
+ self._IsCutIdCardImage = params.get("IsCutIdCardImage")
3508
+ self._IsNeedIdCardAvatar = params.get("IsNeedIdCardAvatar")
3485
3509
  memeber_set = set(params.keys())
3486
3510
  for name, value in vars(self).items():
3487
3511
  property_name = name[1:]
@@ -65,6 +65,12 @@ INVALIDPARAMETERVALUE_INVALIDSCENEIDMALFORMED = 'InvalidParameterValue.InvalidSc
65
65
  # 地域非法
66
66
  INVALIDPARAMETERVALUE_REGIONINVALID = 'InvalidParameterValue.RegionInvalid'
67
67
 
68
+ # 没有配额去为HAI创建新的安全组
69
+ LIMITEXCEEDED_SECURITYGROUPLIMITEXCEEDED = 'LimitExceeded.SecurityGroupLimitExceeded'
70
+
71
+ # 没有配额去为HAI创建新的VPC
72
+ LIMITEXCEEDED_VPCLIMITEXCEEDED = 'LimitExceeded.VpcLimitExceeded'
73
+
68
74
  # 指定实例有正在执行的操作,不能执行新的操作
69
75
  OPERATIONDENIED_INSTANCEOPERATIONINPROGRESS = 'OperationDenied.InstanceOperationInProgress'
70
76
 
@@ -28,7 +28,7 @@ class ChatProRequest(AbstractModel):
28
28
  :param _Messages: 聊天上下文信息。
29
29
  说明:
30
30
  1.长度最多为40, 按对话时间从旧到新在数组中排列。
31
- 2.Message的Role当前可选值:user、assistant,其中,user和assistant需要交替出现(一问一答),最后一个为user提问, 且Content不能为空。
31
+ 2.Message的Role当前可选值:system、user、assistant,其中,system角色是可选的,如果存在,必须位于列表的最开始。user和assistant需要交替出现(一问一答),最后一个为user提问, 且Content不能为空。
32
32
  3.Messages中Content总长度不超过16000 token,超过则会截断最前面的内容,只保留尾部内容。建议不超过4000 token。
33
33
  :type Messages: list of Message
34
34
  :param _TopP: 说明: