tencentcloud-sdk-python 3.0.1385__py2.py3-none-any.whl → 3.0.1387__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 (54) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/ams/v20201229/models.py +4 -8
  3. tencentcloud/batch/v20170312/models.py +4 -4
  4. tencentcloud/billing/v20180709/models.py +4 -2
  5. tencentcloud/cbs/v20170312/errorcodes.py +3 -0
  6. tencentcloud/cdwdoris/v20211228/models.py +45 -0
  7. tencentcloud/cls/v20201016/models.py +38 -14
  8. tencentcloud/cvm/v20170312/cvm_client.py +1 -0
  9. tencentcloud/cvm/v20170312/models.py +26 -24
  10. tencentcloud/cynosdb/v20190107/errorcodes.py +3 -0
  11. tencentcloud/dlc/v20210125/models.py +197 -0
  12. tencentcloud/dnspod/v20210323/models.py +0 -45
  13. tencentcloud/domain/v20180808/domain_client.py +1 -1
  14. tencentcloud/domain/v20180808/models.py +2 -0
  15. tencentcloud/dsgc/v20190723/dsgc_client.py +0 -375
  16. tencentcloud/dsgc/v20190723/models.py +0 -510
  17. tencentcloud/es/v20180416/models.py +15 -0
  18. tencentcloud/ess/v20201111/ess_client.py +2 -0
  19. tencentcloud/ess/v20201111/models.py +28 -8
  20. tencentcloud/essbasic/v20210526/essbasic_client.py +2 -0
  21. tencentcloud/essbasic/v20210526/models.py +24 -4
  22. tencentcloud/live/v20180801/models.py +15 -0
  23. tencentcloud/lke/v20231130/models.py +2 -2
  24. tencentcloud/lkeap/v20240522/lkeap_client.py +1 -1
  25. tencentcloud/monitor/v20180724/models.py +4 -4
  26. tencentcloud/mps/v20190612/models.py +29 -8
  27. tencentcloud/mps/v20190612/mps_client.py +1 -0
  28. tencentcloud/postgres/v20170312/postgres_client.py +3 -3
  29. tencentcloud/redis/v20180412/models.py +4 -4
  30. tencentcloud/scf/v20180416/errorcodes.py +24 -0
  31. tencentcloud/ses/v20201002/models.py +15 -0
  32. tencentcloud/tcb/v20180608/errorcodes.py +3 -0
  33. tencentcloud/tcb/v20180608/models.py +2 -2
  34. tencentcloud/tdmq/v20200217/errorcodes.py +12 -0
  35. tencentcloud/tione/v20211111/models.py +614 -0
  36. tencentcloud/tione/v20211111/tione_client.py +23 -0
  37. tencentcloud/tke/v20180525/errorcodes.py +3 -0
  38. tencentcloud/tke/v20220501/models.py +17 -0
  39. tencentcloud/trtc/v20190722/models.py +15 -0
  40. tencentcloud/tts/v20190823/models.py +4 -4
  41. tencentcloud/tts/v20190823/tts_client.py +0 -1
  42. tencentcloud/vpc/v20170312/errorcodes.py +18 -0
  43. tencentcloud/vpc/v20170312/models.py +4 -2
  44. tencentcloud/vpc/v20170312/vpc_client.py +1 -1
  45. {tencentcloud_sdk_python-3.0.1385.dist-info → tencentcloud_sdk_python-3.0.1387.dist-info}/METADATA +1 -1
  46. {tencentcloud_sdk_python-3.0.1385.dist-info → tencentcloud_sdk_python-3.0.1387.dist-info}/RECORD +49 -54
  47. tencentcloud/apcas/__init__.py +0 -0
  48. tencentcloud/apcas/v20201127/__init__.py +0 -0
  49. tencentcloud/apcas/v20201127/apcas_client.py +0 -187
  50. tencentcloud/apcas/v20201127/errorcodes.py +0 -48
  51. tencentcloud/apcas/v20201127/models.py +0 -1514
  52. {tencentcloud_sdk_python-3.0.1385.dist-info → tencentcloud_sdk_python-3.0.1387.dist-info}/LICENSE +0 -0
  53. {tencentcloud_sdk_python-3.0.1385.dist-info → tencentcloud_sdk_python-3.0.1387.dist-info}/WHEEL +0 -0
  54. {tencentcloud_sdk_python-3.0.1385.dist-info → tencentcloud_sdk_python-3.0.1387.dist-info}/top_level.txt +0 -0
@@ -751,8 +751,11 @@ class CreateEmailIdentityRequest(AbstractModel):
751
751
  r"""
752
752
  :param _EmailIdentity: 您的发信域名,建议使用三级以上域名。例如:mail.qcloud.com。
753
753
  :type EmailIdentity: str
754
+ :param _DKIMOption: 生成的dkim密钥长度。0:1024,1:2048
755
+ :type DKIMOption: int
754
756
  """
755
757
  self._EmailIdentity = None
758
+ self._DKIMOption = None
756
759
 
757
760
  @property
758
761
  def EmailIdentity(self):
@@ -765,9 +768,21 @@ class CreateEmailIdentityRequest(AbstractModel):
765
768
  def EmailIdentity(self, EmailIdentity):
766
769
  self._EmailIdentity = EmailIdentity
767
770
 
771
+ @property
772
+ def DKIMOption(self):
773
+ """生成的dkim密钥长度。0:1024,1:2048
774
+ :rtype: int
775
+ """
776
+ return self._DKIMOption
777
+
778
+ @DKIMOption.setter
779
+ def DKIMOption(self, DKIMOption):
780
+ self._DKIMOption = DKIMOption
781
+
768
782
 
769
783
  def _deserialize(self, params):
770
784
  self._EmailIdentity = params.get("EmailIdentity")
785
+ self._DKIMOption = params.get("DKIMOption")
771
786
  memeber_set = set(params.keys())
772
787
  for name, value in vars(self).items():
773
788
  property_name = name[1:]
@@ -101,6 +101,9 @@ OPERATIONDENIED_RESOURCEFROZEN = 'OperationDenied.ResourceFrozen'
101
101
  # 资源被占用。
102
102
  RESOURCEINUSE = 'ResourceInUse'
103
103
 
104
+ # 云存储目前后后台任务正在执行,请稍后再重试。
105
+ RESOURCEINUSE_FSACLJOBUNDONE = 'ResourceInUse.FsACLJobUnDone'
106
+
104
107
  # 资源不足。
105
108
  RESOURCEINSUFFICIENT = 'ResourceInsufficient'
106
109
 
@@ -11274,7 +11274,7 @@ class DescribeCloudBaseRunVersionResponse(AbstractModel):
11274
11274
  :type VersionName: str
11275
11275
  :param _Remark: 备注
11276
11276
  :type Remark: str
11277
- :param _DockerfilePath: Dockefile的路径
11277
+ :param _DockerfilePath: Dockerfile的路径
11278
11278
  :type DockerfilePath: str
11279
11279
  :param _BuildDir: DockerBuild的目录
11280
11280
  :type BuildDir: str
@@ -11398,7 +11398,7 @@ class DescribeCloudBaseRunVersionResponse(AbstractModel):
11398
11398
 
11399
11399
  @property
11400
11400
  def DockerfilePath(self):
11401
- """Dockefile的路径
11401
+ """Dockerfile的路径
11402
11402
  :rtype: str
11403
11403
  """
11404
11404
  return self._DockerfilePath
@@ -23,6 +23,9 @@ FAILEDOPERATION = 'FailedOperation'
23
23
  # 调用交易服务发生异常。
24
24
  FAILEDOPERATION_CALLTRADE = 'FailedOperation.CallTrade'
25
25
 
26
+ # 第三方云服务异常,请稍后重试
27
+ FAILEDOPERATION_CLOUDSERVICE = 'FailedOperation.CloudService'
28
+
26
29
  # CMQ 后台服务错误。
27
30
  FAILEDOPERATION_CMQBACKENDERROR = 'FailedOperation.CmqBackendError'
28
31
 
@@ -110,6 +113,9 @@ FAILEDOPERATION_MODIFYCLUSTER = 'FailedOperation.ModifyCluster'
110
113
  # 必须先清除关联命名空间才能继续操作。
111
114
  FAILEDOPERATION_NAMESPACEINUSE = 'FailedOperation.NamespaceInUse'
112
115
 
116
+ # 任务进行中,请稍后重试
117
+ FAILEDOPERATION_OPERATELATER = 'FailedOperation.OperateLater'
118
+
113
119
  # 产品信息不存在
114
120
  FAILEDOPERATION_PRODUCTNOTEXIST = 'FailedOperation.ProductNotExist'
115
121
 
@@ -122,6 +128,12 @@ FAILEDOPERATION_RECEIVEERROR = 'FailedOperation.ReceiveError'
122
128
  # 接收消息超时,请重试。
123
129
  FAILEDOPERATION_RECEIVETIMEOUT = 'FailedOperation.ReceiveTimeout'
124
130
 
131
+ # 跨地域复制校验不通过
132
+ FAILEDOPERATION_REPLICATIONDESTCHECKFAILEDERROR = 'FailedOperation.ReplicationDestCheckFailedError'
133
+
134
+ # 跨地域复制检验不通过
135
+ FAILEDOPERATION_REPLICATIONSOURCECHECKFAILEDERROR = 'FailedOperation.ReplicationSourceCheckFailedError'
136
+
125
137
  # 消息回溯设置失败。
126
138
  FAILEDOPERATION_RESETMSGSUBOFFSETBYTIMESTAMPFAILED = 'FailedOperation.ResetMsgSubOffsetByTimestampFailed'
127
139