tencentcloud-sdk-python 3.0.1343__py2.py3-none-any.whl → 3.0.1344__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 (38) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/billing/v20180709/models.py +0 -14
  3. tencentcloud/cdb/v20170320/cdb_client.py +23 -0
  4. tencentcloud/cdb/v20170320/models.py +117 -0
  5. tencentcloud/clb/v20180317/models.py +39 -10
  6. tencentcloud/cls/v20201016/models.py +17 -186
  7. tencentcloud/cynosdb/v20190107/models.py +2 -2
  8. tencentcloud/dbbrain/v20191016/models.py +0 -16
  9. tencentcloud/dbbrain/v20210527/models.py +0 -14
  10. tencentcloud/domain/v20180808/models.py +0 -8
  11. tencentcloud/ess/v20201111/models.py +4 -2
  12. tencentcloud/essbasic/v20210526/models.py +4 -2
  13. tencentcloud/fmu/v20191213/errorcodes.py +3 -0
  14. tencentcloud/fmu/v20191213/models.py +4 -4
  15. tencentcloud/goosefs/v20220519/models.py +0 -2
  16. tencentcloud/gwlb/v20240906/models.py +4 -4
  17. tencentcloud/hai/v20230812/errorcodes.py +1 -1
  18. tencentcloud/iotcloud/v20210408/models.py +2 -4
  19. tencentcloud/lighthouse/v20200324/models.py +12 -20
  20. tencentcloud/lke/v20231130/models.py +15 -0
  21. tencentcloud/lowcode/v20210108/models.py +0 -2
  22. tencentcloud/monitor/v20180724/models.py +251 -0
  23. tencentcloud/monitor/v20180724/monitor_client.py +23 -0
  24. tencentcloud/mps/v20190612/errorcodes.py +34 -0
  25. tencentcloud/mps/v20190612/models.py +4129 -429
  26. tencentcloud/mps/v20190612/mps_client.py +208 -0
  27. tencentcloud/redis/v20180412/models.py +64 -0
  28. tencentcloud/redis/v20180412/redis_client.py +23 -0
  29. tencentcloud/tcb/v20180608/models.py +109 -153
  30. tencentcloud/tcb/v20180608/tcb_client.py +23 -0
  31. tencentcloud/tdmq/v20200217/models.py +158 -282
  32. tencentcloud/wedata/v20210820/models.py +90 -0
  33. tencentcloud/weilingwith/v20230427/models.py +0 -964
  34. {tencentcloud_sdk_python-3.0.1343.dist-info → tencentcloud_sdk_python-3.0.1344.dist-info}/METADATA +1 -1
  35. {tencentcloud_sdk_python-3.0.1343.dist-info → tencentcloud_sdk_python-3.0.1344.dist-info}/RECORD +38 -38
  36. {tencentcloud_sdk_python-3.0.1343.dist-info → tencentcloud_sdk_python-3.0.1344.dist-info}/LICENSE +0 -0
  37. {tencentcloud_sdk_python-3.0.1343.dist-info → tencentcloud_sdk_python-3.0.1344.dist-info}/WHEEL +0 -0
  38. {tencentcloud_sdk_python-3.0.1343.dist-info → tencentcloud_sdk_python-3.0.1344.dist-info}/top_level.txt +0 -0
@@ -1686,6 +1686,29 @@ class TcbClient(AbstractClient):
1686
1686
  raise TencentCloudSDKException(type(e).__name__, str(e))
1687
1687
 
1688
1688
 
1689
+ def EditAuthConfig(self, request):
1690
+ """修改登录配置
1691
+
1692
+ :param request: Request instance for EditAuthConfig.
1693
+ :type request: :class:`tencentcloud.tcb.v20180608.models.EditAuthConfigRequest`
1694
+ :rtype: :class:`tencentcloud.tcb.v20180608.models.EditAuthConfigResponse`
1695
+
1696
+ """
1697
+ try:
1698
+ params = request._serialize()
1699
+ headers = request.headers
1700
+ body = self.call("EditAuthConfig", params, headers=headers)
1701
+ response = json.loads(body)
1702
+ model = models.EditAuthConfigResponse()
1703
+ model._deserialize(response["Response"])
1704
+ return model
1705
+ except Exception as e:
1706
+ if isinstance(e, TencentCloudSDKException):
1707
+ raise
1708
+ else:
1709
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1710
+
1711
+
1689
1712
  def EstablishCloudBaseRunServer(self, request):
1690
1713
  """创建云应用服务
1691
1714