tencentcloud-sdk-python 3.0.1285__py2.py3-none-any.whl → 3.0.1287__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 (42) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/apm/v20210622/errorcodes.py +4 -4
  3. tencentcloud/batch/v20170312/models.py +94 -6
  4. tencentcloud/bi/v20220105/models.py +15 -0
  5. tencentcloud/ccc/v20200210/models.py +45 -0
  6. tencentcloud/cfg/v20210820/models.py +78 -0
  7. tencentcloud/domain/v20180808/domain_client.py +1 -1
  8. tencentcloud/domain/v20180808/errorcodes.py +3 -0
  9. tencentcloud/dsgc/v20190723/dsgc_client.py +1 -2
  10. tencentcloud/dsgc/v20190723/models.py +241 -1136
  11. tencentcloud/dts/v20211206/models.py +17 -0
  12. tencentcloud/ess/v20201111/ess_client.py +28 -0
  13. tencentcloud/ess/v20201111/models.py +452 -37
  14. tencentcloud/essbasic/v20210526/essbasic_client.py +28 -0
  15. tencentcloud/essbasic/v20210526/models.py +463 -39
  16. tencentcloud/iss/v20230517/models.py +2 -2
  17. tencentcloud/keewidb/v20220308/models.py +19 -2
  18. tencentcloud/lighthouse/v20200324/models.py +6 -6
  19. tencentcloud/mariadb/v20170312/models.py +12 -8
  20. tencentcloud/monitor/v20180724/errorcodes.py +3 -0
  21. tencentcloud/monitor/v20180724/models.py +421 -0
  22. tencentcloud/monitor/v20180724/monitor_client.py +46 -0
  23. tencentcloud/mps/v20190612/models.py +68 -54
  24. tencentcloud/ocr/v20181119/models.py +15 -0
  25. tencentcloud/ocr/v20181119/ocr_client.py +2 -2
  26. tencentcloud/organization/v20210331/models.py +71 -26
  27. tencentcloud/privatedns/v20201028/models.py +4 -0
  28. tencentcloud/privatedns/v20201028/privatedns_client.py +1 -1
  29. tencentcloud/tdmq/v20200217/models.py +116 -2
  30. tencentcloud/tdmq/v20200217/tdmq_client.py +23 -0
  31. tencentcloud/teo/v20220901/models.py +1499 -81
  32. tencentcloud/teo/v20220901/teo_client.py +207 -0
  33. tencentcloud/thpc/v20211109/models.py +4 -4
  34. tencentcloud/thpc/v20220401/models.py +8 -10
  35. tencentcloud/tiia/v20190529/models.py +2 -42
  36. tencentcloud/tiia/v20190529/tiia_client.py +14 -17
  37. tencentcloud/vod/v20180717/errorcodes.py +1 -1
  38. {tencentcloud_sdk_python-3.0.1285.dist-info → tencentcloud_sdk_python-3.0.1287.dist-info}/METADATA +1 -1
  39. {tencentcloud_sdk_python-3.0.1285.dist-info → tencentcloud_sdk_python-3.0.1287.dist-info}/RECORD +42 -42
  40. {tencentcloud_sdk_python-3.0.1285.dist-info → tencentcloud_sdk_python-3.0.1287.dist-info}/LICENSE +0 -0
  41. {tencentcloud_sdk_python-3.0.1285.dist-info → tencentcloud_sdk_python-3.0.1287.dist-info}/WHEEL +0 -0
  42. {tencentcloud_sdk_python-3.0.1285.dist-info → tencentcloud_sdk_python-3.0.1287.dist-info}/top_level.txt +0 -0
@@ -14029,6 +14029,9 @@ class Options(AbstractModel):
14029
14029
  :param _AutoRetryTimeRangeMinutes: 自动重试的时间窗口设置
14030
14030
  注意:此字段可能返回 null,表示取不到有效值。
14031
14031
  :type AutoRetryTimeRangeMinutes: int
14032
+ :param _StartPosition: 同步到kafka链路指定位点。目前只支持时间格式:yyyy-mm-dd hh:mm:ss。如果没有指定位点,为空。
14033
+ 注意:此字段可能返回 null,表示取不到有效值。
14034
+ :type StartPosition: str
14032
14035
  :param _FilterBeginCommit: 同步到kafka链路是否过滤掉begin和commit消息。目前仅mysql2kafka链路支持
14033
14036
  注意:此字段可能返回 null,表示取不到有效值。
14034
14037
  :type FilterBeginCommit: bool
@@ -14046,6 +14049,7 @@ class Options(AbstractModel):
14046
14049
  self._KafkaOption = None
14047
14050
  self._RateLimitOption = None
14048
14051
  self._AutoRetryTimeRangeMinutes = None
14052
+ self._StartPosition = None
14049
14053
  self._FilterBeginCommit = None
14050
14054
  self._FilterCheckpoint = None
14051
14055
 
@@ -14169,6 +14173,18 @@ class Options(AbstractModel):
14169
14173
  def AutoRetryTimeRangeMinutes(self, AutoRetryTimeRangeMinutes):
14170
14174
  self._AutoRetryTimeRangeMinutes = AutoRetryTimeRangeMinutes
14171
14175
 
14176
+ @property
14177
+ def StartPosition(self):
14178
+ """同步到kafka链路指定位点。目前只支持时间格式:yyyy-mm-dd hh:mm:ss。如果没有指定位点,为空。
14179
+ 注意:此字段可能返回 null,表示取不到有效值。
14180
+ :rtype: str
14181
+ """
14182
+ return self._StartPosition
14183
+
14184
+ @StartPosition.setter
14185
+ def StartPosition(self, StartPosition):
14186
+ self._StartPosition = StartPosition
14187
+
14172
14188
  @property
14173
14189
  def FilterBeginCommit(self):
14174
14190
  """同步到kafka链路是否过滤掉begin和commit消息。目前仅mysql2kafka链路支持
@@ -14216,6 +14232,7 @@ class Options(AbstractModel):
14216
14232
  self._RateLimitOption = RateLimitOption()
14217
14233
  self._RateLimitOption._deserialize(params.get("RateLimitOption"))
14218
14234
  self._AutoRetryTimeRangeMinutes = params.get("AutoRetryTimeRangeMinutes")
14235
+ self._StartPosition = params.get("StartPosition")
14219
14236
  self._FilterBeginCommit = params.get("FilterBeginCommit")
14220
14237
  self._FilterCheckpoint = params.get("FilterCheckpoint")
14221
14238
  memeber_set = set(params.keys())
@@ -1334,6 +1334,34 @@ class EssClient(AbstractClient):
1334
1334
  raise TencentCloudSDKException(type(e).__name__, str(e))
1335
1335
 
1336
1336
 
1337
+ def CreateOrganizationAuthFile(self, request):
1338
+ """生成合成后的各类企业授权书,包括:
1339
+ - 企业认证超管授权书
1340
+ - 超管变更授权书
1341
+ - 企业注销授权书
1342
+
1343
+ 注: 需自行保证传入真实的企业/法人/超管信息,否则后续的审核将会拒绝。
1344
+
1345
+ :param request: Request instance for CreateOrganizationAuthFile.
1346
+ :type request: :class:`tencentcloud.ess.v20201111.models.CreateOrganizationAuthFileRequest`
1347
+ :rtype: :class:`tencentcloud.ess.v20201111.models.CreateOrganizationAuthFileResponse`
1348
+
1349
+ """
1350
+ try:
1351
+ params = request._serialize()
1352
+ headers = request.headers
1353
+ body = self.call("CreateOrganizationAuthFile", params, headers=headers)
1354
+ response = json.loads(body)
1355
+ model = models.CreateOrganizationAuthFileResponse()
1356
+ model._deserialize(response["Response"])
1357
+ return model
1358
+ except Exception as e:
1359
+ if isinstance(e, TencentCloudSDKException):
1360
+ raise
1361
+ else:
1362
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1363
+
1364
+
1337
1365
  def CreateOrganizationAuthUrl(self, request):
1338
1366
  """本接口(CreateOrganizationAuthUrl)的主要功能是生成合作企业的认证链接。
1339
1367