tencentcloud-sdk-python 3.0.1342__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/bi/v20220105/models.py +68 -0
- tencentcloud/billing/v20180709/billing_client.py +3 -1
- tencentcloud/billing/v20180709/models.py +90 -224
- tencentcloud/cdb/v20170320/cdb_client.py +23 -0
- tencentcloud/cdb/v20170320/models.py +117 -0
- tencentcloud/cdwpg/v20201230/models.py +4 -4
- tencentcloud/cdz/v20221123/models.py +0 -4
- tencentcloud/cfg/v20210820/models.py +0 -192
- tencentcloud/clb/v20180317/clb_client.py +2 -2
- tencentcloud/clb/v20180317/models.py +39 -10
- tencentcloud/cls/v20201016/models.py +17 -186
- tencentcloud/cwp/v20180228/models.py +61 -18
- tencentcloud/cynosdb/v20190107/models.py +2 -2
- tencentcloud/dbbrain/v20191016/models.py +0 -16
- tencentcloud/dbbrain/v20210527/dbbrain_client.py +161 -0
- tencentcloud/dbbrain/v20210527/models.py +1731 -389
- tencentcloud/domain/v20180808/models.py +0 -10
- tencentcloud/dts/v20180330/models.py +0 -6
- tencentcloud/dts/v20211206/models.py +2 -210
- tencentcloud/ess/v20201111/models.py +71 -4
- tencentcloud/essbasic/v20210526/models.py +59 -2
- tencentcloud/fmu/v20191213/errorcodes.py +3 -0
- tencentcloud/fmu/v20191213/models.py +4 -4
- tencentcloud/goosefs/v20220519/models.py +0 -2
- tencentcloud/gwlb/v20240906/models.py +4 -4
- tencentcloud/hai/v20230812/errorcodes.py +1 -1
- tencentcloud/iotcloud/v20210408/models.py +2 -4
- tencentcloud/iotexplorer/v20190423/errorcodes.py +12 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +69 -0
- tencentcloud/iotexplorer/v20190423/models.py +995 -65
- tencentcloud/iotvideo/v20211125/iotvideo_client.py +46 -0
- tencentcloud/iotvideo/v20211125/models.py +188 -0
- tencentcloud/lcic/v20220817/errorcodes.py +1 -1
- tencentcloud/lighthouse/v20200324/errorcodes.py +12 -9
- tencentcloud/lighthouse/v20200324/lighthouse_client.py +24 -17
- tencentcloud/lighthouse/v20200324/models.py +72 -48
- tencentcloud/lke/v20231130/models.py +17 -2
- tencentcloud/lkeap/v20240522/models.py +4 -8
- tencentcloud/lowcode/v20210108/models.py +0 -2
- tencentcloud/monitor/v20180724/models.py +251 -0
- tencentcloud/monitor/v20180724/monitor_client.py +23 -0
- tencentcloud/mps/v20190612/errorcodes.py +34 -0
- tencentcloud/mps/v20190612/models.py +4254 -384
- tencentcloud/mps/v20190612/mps_client.py +208 -0
- tencentcloud/mqtt/v20240516/errorcodes.py +9 -0
- tencentcloud/organization/v20210331/errorcodes.py +3 -0
- tencentcloud/organization/v20210331/models.py +0 -82
- tencentcloud/redis/v20180412/models.py +64 -0
- tencentcloud/redis/v20180412/redis_client.py +23 -0
- tencentcloud/tcb/v20180608/models.py +109 -157
- tencentcloud/tcb/v20180608/tcb_client.py +23 -0
- tencentcloud/tdmq/v20200217/models.py +158 -282
- tencentcloud/teo/v20220901/models.py +955 -20
- tencentcloud/tione/v20211111/models.py +90 -0
- tencentcloud/vdb/v20230616/models.py +45 -0
- tencentcloud/vdb/v20230616/vdb_client.py +1 -1
- tencentcloud/vrs/v20200824/models.py +32 -0
- tencentcloud/wedata/v20210820/models.py +167 -0
- tencentcloud/weilingwith/v20230427/models.py +0 -964
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1344.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1344.dist-info}/RECORD +65 -65
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1344.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1344.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1342.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
|
|