tencentcloud-sdk-python-dlc 3.0.1226__tar.gz → 3.0.1228__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.0.1226 → tencentcloud-sdk-python-dlc-3.0.1228}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1226 → tencentcloud-sdk-python-dlc-3.0.1228}/setup.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1226 → tencentcloud-sdk-python-dlc-3.0.1228}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1226 → tencentcloud-sdk-python-dlc-3.0.1228}/tencentcloud/dlc/v20210125/dlc_client.py +46 -0
- {tencentcloud-sdk-python-dlc-3.0.1226 → tencentcloud-sdk-python-dlc-3.0.1228}/tencentcloud/dlc/v20210125/models.py +142 -0
- {tencentcloud-sdk-python-dlc-3.0.1226 → tencentcloud-sdk-python-dlc-3.0.1228}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-dlc-3.0.1228/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-dlc-3.0.1226/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-dlc-3.0.1226 → tencentcloud-sdk-python-dlc-3.0.1228}/README.rst +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1226 → tencentcloud-sdk-python-dlc-3.0.1228}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1226 → tencentcloud-sdk-python-dlc-3.0.1228}/tencentcloud/dlc/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1226 → tencentcloud-sdk-python-dlc-3.0.1228}/tencentcloud/dlc/v20210125/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1226 → tencentcloud-sdk-python-dlc-3.0.1228}/tencentcloud/dlc/v20210125/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1226 → tencentcloud-sdk-python-dlc-3.0.1228}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1226 → tencentcloud-sdk-python-dlc-3.0.1228}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1226 → tencentcloud-sdk-python-dlc-3.0.1228}/tencentcloud_sdk_python_dlc.egg-info/top_level.txt +0 -0
|
@@ -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.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1228"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Dlc SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -1084,6 +1084,29 @@ class DlcClient(AbstractClient):
|
|
|
1084
1084
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1085
1085
|
|
|
1086
1086
|
|
|
1087
|
+
def DeleteTable(self, request):
|
|
1088
|
+
"""删除表
|
|
1089
|
+
|
|
1090
|
+
:param request: Request instance for DeleteTable.
|
|
1091
|
+
:type request: :class:`tencentcloud.dlc.v20210125.models.DeleteTableRequest`
|
|
1092
|
+
:rtype: :class:`tencentcloud.dlc.v20210125.models.DeleteTableResponse`
|
|
1093
|
+
|
|
1094
|
+
"""
|
|
1095
|
+
try:
|
|
1096
|
+
params = request._serialize()
|
|
1097
|
+
headers = request.headers
|
|
1098
|
+
body = self.call("DeleteTable", params, headers=headers)
|
|
1099
|
+
response = json.loads(body)
|
|
1100
|
+
model = models.DeleteTableResponse()
|
|
1101
|
+
model._deserialize(response["Response"])
|
|
1102
|
+
return model
|
|
1103
|
+
except Exception as e:
|
|
1104
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1105
|
+
raise
|
|
1106
|
+
else:
|
|
1107
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1108
|
+
|
|
1109
|
+
|
|
1087
1110
|
def DeleteThirdPartyAccessUser(self, request):
|
|
1088
1111
|
"""本接口(RegisterThirdPartyAccessUser)用于移除第三方平台访问
|
|
1089
1112
|
|
|
@@ -2855,6 +2878,29 @@ class DlcClient(AbstractClient):
|
|
|
2855
2878
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2856
2879
|
|
|
2857
2880
|
|
|
2881
|
+
def QueryInternalTableWarehouse(self, request):
|
|
2882
|
+
"""本接口(QueryInternalTableWarehouse)用于获取原生表warehouse路径
|
|
2883
|
+
|
|
2884
|
+
:param request: Request instance for QueryInternalTableWarehouse.
|
|
2885
|
+
:type request: :class:`tencentcloud.dlc.v20210125.models.QueryInternalTableWarehouseRequest`
|
|
2886
|
+
:rtype: :class:`tencentcloud.dlc.v20210125.models.QueryInternalTableWarehouseResponse`
|
|
2887
|
+
|
|
2888
|
+
"""
|
|
2889
|
+
try:
|
|
2890
|
+
params = request._serialize()
|
|
2891
|
+
headers = request.headers
|
|
2892
|
+
body = self.call("QueryInternalTableWarehouse", params, headers=headers)
|
|
2893
|
+
response = json.loads(body)
|
|
2894
|
+
model = models.QueryInternalTableWarehouseResponse()
|
|
2895
|
+
model._deserialize(response["Response"])
|
|
2896
|
+
return model
|
|
2897
|
+
except Exception as e:
|
|
2898
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2899
|
+
raise
|
|
2900
|
+
else:
|
|
2901
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2902
|
+
|
|
2903
|
+
|
|
2858
2904
|
def QueryResult(self, request):
|
|
2859
2905
|
"""获取任务结果查询
|
|
2860
2906
|
|
|
@@ -9784,6 +9784,66 @@ class DeleteSparkAppResponse(AbstractModel):
|
|
|
9784
9784
|
self._RequestId = params.get("RequestId")
|
|
9785
9785
|
|
|
9786
9786
|
|
|
9787
|
+
class DeleteTableRequest(AbstractModel):
|
|
9788
|
+
"""DeleteTable请求参数结构体
|
|
9789
|
+
|
|
9790
|
+
"""
|
|
9791
|
+
|
|
9792
|
+
def __init__(self):
|
|
9793
|
+
r"""
|
|
9794
|
+
:param _TableBaseInfo: 表基本信息
|
|
9795
|
+
:type TableBaseInfo: :class:`tencentcloud.dlc.v20210125.models.TableBaseInfo`
|
|
9796
|
+
"""
|
|
9797
|
+
self._TableBaseInfo = None
|
|
9798
|
+
|
|
9799
|
+
@property
|
|
9800
|
+
def TableBaseInfo(self):
|
|
9801
|
+
return self._TableBaseInfo
|
|
9802
|
+
|
|
9803
|
+
@TableBaseInfo.setter
|
|
9804
|
+
def TableBaseInfo(self, TableBaseInfo):
|
|
9805
|
+
self._TableBaseInfo = TableBaseInfo
|
|
9806
|
+
|
|
9807
|
+
|
|
9808
|
+
def _deserialize(self, params):
|
|
9809
|
+
if params.get("TableBaseInfo") is not None:
|
|
9810
|
+
self._TableBaseInfo = TableBaseInfo()
|
|
9811
|
+
self._TableBaseInfo._deserialize(params.get("TableBaseInfo"))
|
|
9812
|
+
memeber_set = set(params.keys())
|
|
9813
|
+
for name, value in vars(self).items():
|
|
9814
|
+
property_name = name[1:]
|
|
9815
|
+
if property_name in memeber_set:
|
|
9816
|
+
memeber_set.remove(property_name)
|
|
9817
|
+
if len(memeber_set) > 0:
|
|
9818
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
9819
|
+
|
|
9820
|
+
|
|
9821
|
+
|
|
9822
|
+
class DeleteTableResponse(AbstractModel):
|
|
9823
|
+
"""DeleteTable返回参数结构体
|
|
9824
|
+
|
|
9825
|
+
"""
|
|
9826
|
+
|
|
9827
|
+
def __init__(self):
|
|
9828
|
+
r"""
|
|
9829
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
9830
|
+
:type RequestId: str
|
|
9831
|
+
"""
|
|
9832
|
+
self._RequestId = None
|
|
9833
|
+
|
|
9834
|
+
@property
|
|
9835
|
+
def RequestId(self):
|
|
9836
|
+
return self._RequestId
|
|
9837
|
+
|
|
9838
|
+
@RequestId.setter
|
|
9839
|
+
def RequestId(self, RequestId):
|
|
9840
|
+
self._RequestId = RequestId
|
|
9841
|
+
|
|
9842
|
+
|
|
9843
|
+
def _deserialize(self, params):
|
|
9844
|
+
self._RequestId = params.get("RequestId")
|
|
9845
|
+
|
|
9846
|
+
|
|
9787
9847
|
class DeleteThirdPartyAccessUserRequest(AbstractModel):
|
|
9788
9848
|
"""DeleteThirdPartyAccessUser请求参数结构体
|
|
9789
9849
|
|
|
@@ -22265,6 +22325,88 @@ class PythonSparkImage(AbstractModel):
|
|
|
22265
22325
|
|
|
22266
22326
|
|
|
22267
22327
|
|
|
22328
|
+
class QueryInternalTableWarehouseRequest(AbstractModel):
|
|
22329
|
+
"""QueryInternalTableWarehouse请求参数结构体
|
|
22330
|
+
|
|
22331
|
+
"""
|
|
22332
|
+
|
|
22333
|
+
def __init__(self):
|
|
22334
|
+
r"""
|
|
22335
|
+
:param _DatabaseName: 库名
|
|
22336
|
+
:type DatabaseName: str
|
|
22337
|
+
:param _TableName: 表名
|
|
22338
|
+
:type TableName: str
|
|
22339
|
+
"""
|
|
22340
|
+
self._DatabaseName = None
|
|
22341
|
+
self._TableName = None
|
|
22342
|
+
|
|
22343
|
+
@property
|
|
22344
|
+
def DatabaseName(self):
|
|
22345
|
+
return self._DatabaseName
|
|
22346
|
+
|
|
22347
|
+
@DatabaseName.setter
|
|
22348
|
+
def DatabaseName(self, DatabaseName):
|
|
22349
|
+
self._DatabaseName = DatabaseName
|
|
22350
|
+
|
|
22351
|
+
@property
|
|
22352
|
+
def TableName(self):
|
|
22353
|
+
return self._TableName
|
|
22354
|
+
|
|
22355
|
+
@TableName.setter
|
|
22356
|
+
def TableName(self, TableName):
|
|
22357
|
+
self._TableName = TableName
|
|
22358
|
+
|
|
22359
|
+
|
|
22360
|
+
def _deserialize(self, params):
|
|
22361
|
+
self._DatabaseName = params.get("DatabaseName")
|
|
22362
|
+
self._TableName = params.get("TableName")
|
|
22363
|
+
memeber_set = set(params.keys())
|
|
22364
|
+
for name, value in vars(self).items():
|
|
22365
|
+
property_name = name[1:]
|
|
22366
|
+
if property_name in memeber_set:
|
|
22367
|
+
memeber_set.remove(property_name)
|
|
22368
|
+
if len(memeber_set) > 0:
|
|
22369
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
22370
|
+
|
|
22371
|
+
|
|
22372
|
+
|
|
22373
|
+
class QueryInternalTableWarehouseResponse(AbstractModel):
|
|
22374
|
+
"""QueryInternalTableWarehouse返回参数结构体
|
|
22375
|
+
|
|
22376
|
+
"""
|
|
22377
|
+
|
|
22378
|
+
def __init__(self):
|
|
22379
|
+
r"""
|
|
22380
|
+
:param _WarehousePath: warehouse路径
|
|
22381
|
+
:type WarehousePath: str
|
|
22382
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
22383
|
+
:type RequestId: str
|
|
22384
|
+
"""
|
|
22385
|
+
self._WarehousePath = None
|
|
22386
|
+
self._RequestId = None
|
|
22387
|
+
|
|
22388
|
+
@property
|
|
22389
|
+
def WarehousePath(self):
|
|
22390
|
+
return self._WarehousePath
|
|
22391
|
+
|
|
22392
|
+
@WarehousePath.setter
|
|
22393
|
+
def WarehousePath(self, WarehousePath):
|
|
22394
|
+
self._WarehousePath = WarehousePath
|
|
22395
|
+
|
|
22396
|
+
@property
|
|
22397
|
+
def RequestId(self):
|
|
22398
|
+
return self._RequestId
|
|
22399
|
+
|
|
22400
|
+
@RequestId.setter
|
|
22401
|
+
def RequestId(self, RequestId):
|
|
22402
|
+
self._RequestId = RequestId
|
|
22403
|
+
|
|
22404
|
+
|
|
22405
|
+
def _deserialize(self, params):
|
|
22406
|
+
self._WarehousePath = params.get("WarehousePath")
|
|
22407
|
+
self._RequestId = params.get("RequestId")
|
|
22408
|
+
|
|
22409
|
+
|
|
22268
22410
|
class QueryResultRequest(AbstractModel):
|
|
22269
22411
|
"""QueryResult请求参数结构体
|
|
22270
22412
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1228
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1226
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|