tencentcloud-sdk-python-dlc 3.1.73__tar.gz → 3.1.95__tar.gz
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_sdk_python_dlc-3.1.73 → tencentcloud_sdk_python_dlc-3.1.95}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_dlc-3.1.73 → tencentcloud_sdk_python_dlc-3.1.95}/setup.py +1 -1
- {tencentcloud_sdk_python_dlc-3.1.73 → tencentcloud_sdk_python_dlc-3.1.95}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_dlc-3.1.73 → tencentcloud_sdk_python_dlc-3.1.95}/tencentcloud/dlc/v20210125/dlc_client.py +46 -0
- {tencentcloud_sdk_python_dlc-3.1.73 → tencentcloud_sdk_python_dlc-3.1.95}/tencentcloud/dlc/v20210125/dlc_client_async.py +36 -0
- {tencentcloud_sdk_python_dlc-3.1.73 → tencentcloud_sdk_python_dlc-3.1.95}/tencentcloud/dlc/v20210125/models.py +328 -174
- {tencentcloud_sdk_python_dlc-3.1.73 → tencentcloud_sdk_python_dlc-3.1.95}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_dlc-3.1.95/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_dlc-3.1.73/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_dlc-3.1.73 → tencentcloud_sdk_python_dlc-3.1.95}/README.rst +0 -0
- {tencentcloud_sdk_python_dlc-3.1.73 → tencentcloud_sdk_python_dlc-3.1.95}/setup.cfg +0 -0
- {tencentcloud_sdk_python_dlc-3.1.73 → tencentcloud_sdk_python_dlc-3.1.95}/tencentcloud/dlc/__init__.py +0 -0
- {tencentcloud_sdk_python_dlc-3.1.73 → tencentcloud_sdk_python_dlc-3.1.95}/tencentcloud/dlc/v20210125/__init__.py +0 -0
- {tencentcloud_sdk_python_dlc-3.1.73 → tencentcloud_sdk_python_dlc-3.1.95}/tencentcloud/dlc/v20210125/errorcodes.py +0 -0
- {tencentcloud_sdk_python_dlc-3.1.73 → tencentcloud_sdk_python_dlc-3.1.95}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_dlc-3.1.73 → tencentcloud_sdk_python_dlc-3.1.95}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_dlc-3.1.73 → tencentcloud_sdk_python_dlc-3.1.95}/tencentcloud_sdk_python_dlc.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-dlc
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.95
|
|
4
4
|
Summary: Tencent Cloud Dlc SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.95
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-dlc',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.95,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Dlc SDK for Python',
|
|
@@ -2581,6 +2581,29 @@ class DlcClient(AbstractClient):
|
|
|
2581
2581
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2582
2582
|
|
|
2583
2583
|
|
|
2584
|
+
def DescribeTCLakeMetaInstance(self, request):
|
|
2585
|
+
r"""是否成功开通TCLake
|
|
2586
|
+
|
|
2587
|
+
:param request: Request instance for DescribeTCLakeMetaInstance.
|
|
2588
|
+
:type request: :class:`tencentcloud.dlc.v20210125.models.DescribeTCLakeMetaInstanceRequest`
|
|
2589
|
+
:rtype: :class:`tencentcloud.dlc.v20210125.models.DescribeTCLakeMetaInstanceResponse`
|
|
2590
|
+
|
|
2591
|
+
"""
|
|
2592
|
+
try:
|
|
2593
|
+
params = request._serialize()
|
|
2594
|
+
headers = request.headers
|
|
2595
|
+
body = self.call("DescribeTCLakeMetaInstance", params, headers=headers)
|
|
2596
|
+
response = json.loads(body)
|
|
2597
|
+
model = models.DescribeTCLakeMetaInstanceResponse()
|
|
2598
|
+
model._deserialize(response["Response"])
|
|
2599
|
+
return model
|
|
2600
|
+
except Exception as e:
|
|
2601
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2602
|
+
raise
|
|
2603
|
+
else:
|
|
2604
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2605
|
+
|
|
2606
|
+
|
|
2584
2607
|
def DescribeTable(self, request):
|
|
2585
2608
|
r"""本接口(DescribeTable),用于查询单个表的详细信息。
|
|
2586
2609
|
|
|
@@ -3363,6 +3386,29 @@ class DlcClient(AbstractClient):
|
|
|
3363
3386
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
3364
3387
|
|
|
3365
3388
|
|
|
3389
|
+
def InitializeTCLake(self, request):
|
|
3390
|
+
r"""开通TCLake
|
|
3391
|
+
|
|
3392
|
+
:param request: Request instance for InitializeTCLake.
|
|
3393
|
+
:type request: :class:`tencentcloud.dlc.v20210125.models.InitializeTCLakeRequest`
|
|
3394
|
+
:rtype: :class:`tencentcloud.dlc.v20210125.models.InitializeTCLakeResponse`
|
|
3395
|
+
|
|
3396
|
+
"""
|
|
3397
|
+
try:
|
|
3398
|
+
params = request._serialize()
|
|
3399
|
+
headers = request.headers
|
|
3400
|
+
body = self.call("InitializeTCLake", params, headers=headers)
|
|
3401
|
+
response = json.loads(body)
|
|
3402
|
+
model = models.InitializeTCLakeResponse()
|
|
3403
|
+
model._deserialize(response["Response"])
|
|
3404
|
+
return model
|
|
3405
|
+
except Exception as e:
|
|
3406
|
+
if isinstance(e, TencentCloudSDKException):
|
|
3407
|
+
raise
|
|
3408
|
+
else:
|
|
3409
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
3410
|
+
|
|
3411
|
+
|
|
3366
3412
|
def LaunchStandardEngineResourceGroups(self, request):
|
|
3367
3413
|
r"""启动标准引擎资源组
|
|
3368
3414
|
|
|
@@ -2025,6 +2025,24 @@ class DlcClient(AbstractClient):
|
|
|
2025
2025
|
|
|
2026
2026
|
return await self.call_and_deserialize(**kwargs)
|
|
2027
2027
|
|
|
2028
|
+
async def DescribeTCLakeMetaInstance(
|
|
2029
|
+
self,
|
|
2030
|
+
request: models.DescribeTCLakeMetaInstanceRequest,
|
|
2031
|
+
opts: Dict = None,
|
|
2032
|
+
) -> models.DescribeTCLakeMetaInstanceResponse:
|
|
2033
|
+
"""
|
|
2034
|
+
是否成功开通TCLake
|
|
2035
|
+
"""
|
|
2036
|
+
|
|
2037
|
+
kwargs = {}
|
|
2038
|
+
kwargs["action"] = "DescribeTCLakeMetaInstance"
|
|
2039
|
+
kwargs["params"] = request._serialize()
|
|
2040
|
+
kwargs["resp_cls"] = models.DescribeTCLakeMetaInstanceResponse
|
|
2041
|
+
kwargs["headers"] = request.headers
|
|
2042
|
+
kwargs["opts"] = opts or {}
|
|
2043
|
+
|
|
2044
|
+
return await self.call_and_deserialize(**kwargs)
|
|
2045
|
+
|
|
2028
2046
|
async def DescribeTable(
|
|
2029
2047
|
self,
|
|
2030
2048
|
request: models.DescribeTableRequest,
|
|
@@ -2637,6 +2655,24 @@ class DlcClient(AbstractClient):
|
|
|
2637
2655
|
|
|
2638
2656
|
return await self.call_and_deserialize(**kwargs)
|
|
2639
2657
|
|
|
2658
|
+
async def InitializeTCLake(
|
|
2659
|
+
self,
|
|
2660
|
+
request: models.InitializeTCLakeRequest,
|
|
2661
|
+
opts: Dict = None,
|
|
2662
|
+
) -> models.InitializeTCLakeResponse:
|
|
2663
|
+
"""
|
|
2664
|
+
开通TCLake
|
|
2665
|
+
"""
|
|
2666
|
+
|
|
2667
|
+
kwargs = {}
|
|
2668
|
+
kwargs["action"] = "InitializeTCLake"
|
|
2669
|
+
kwargs["params"] = request._serialize()
|
|
2670
|
+
kwargs["resp_cls"] = models.InitializeTCLakeResponse
|
|
2671
|
+
kwargs["headers"] = request.headers
|
|
2672
|
+
kwargs["opts"] = opts or {}
|
|
2673
|
+
|
|
2674
|
+
return await self.call_and_deserialize(**kwargs)
|
|
2675
|
+
|
|
2640
2676
|
async def LaunchStandardEngineResourceGroups(
|
|
2641
2677
|
self,
|
|
2642
2678
|
request: models.LaunchStandardEngineResourceGroupsRequest,
|