tencentcloud-sdk-python-dlc 3.0.1195__tar.gz → 3.0.1206__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.1195 → tencentcloud-sdk-python-dlc-3.0.1206}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1195 → tencentcloud-sdk-python-dlc-3.0.1206}/setup.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1195 → tencentcloud-sdk-python-dlc-3.0.1206}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1195 → tencentcloud-sdk-python-dlc-3.0.1206}/tencentcloud/dlc/v20210125/dlc_client.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1195 → tencentcloud-sdk-python-dlc-3.0.1206}/tencentcloud/dlc/v20210125/models.py +42 -1
- {tencentcloud-sdk-python-dlc-3.0.1195 → tencentcloud-sdk-python-dlc-3.0.1206}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-dlc-3.0.1206/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-dlc-3.0.1195/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-dlc-3.0.1195 → tencentcloud-sdk-python-dlc-3.0.1206}/README.rst +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1195 → tencentcloud-sdk-python-dlc-3.0.1206}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1195 → tencentcloud-sdk-python-dlc-3.0.1206}/tencentcloud/dlc/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1195 → tencentcloud-sdk-python-dlc-3.0.1206}/tencentcloud/dlc/v20210125/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1195 → tencentcloud-sdk-python-dlc-3.0.1206}/tencentcloud/dlc/v20210125/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1195 → tencentcloud-sdk-python-dlc-3.0.1206}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1195 → tencentcloud-sdk-python-dlc-3.0.1206}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1195 → tencentcloud-sdk-python-dlc-3.0.1206}/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.1206"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Dlc SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -2097,7 +2097,7 @@ class DlcClient(AbstractClient):
|
|
|
2097
2097
|
|
|
2098
2098
|
|
|
2099
2099
|
def DescribeTaskResult(self, request):
|
|
2100
|
-
"""
|
|
2100
|
+
"""查询任务结果,仅支持30天以内的任务查询结果,且返回数据大小超过近50M会进行截断。
|
|
2101
2101
|
|
|
2102
2102
|
:param request: Request instance for DescribeTaskResult.
|
|
2103
2103
|
:type request: :class:`tencentcloud.dlc.v20210125.models.DescribeTaskResultRequest`
|
|
@@ -13100,6 +13100,8 @@ class DescribeNotebookSessionsRequest(AbstractModel):
|
|
|
13100
13100
|
:type Limit: int
|
|
13101
13101
|
:param _Offset: 分页参数,默认0
|
|
13102
13102
|
:type Offset: int
|
|
13103
|
+
:param _Filters: 过滤类型,支持如下的过滤类型,传参Name应为以下其中一个, engine-generation - String(引擎时代: supersql:supersql引擎,native:标准引擎):notebook-keyword - String(数据引擎名称或sessionid或sessionname的模糊搜索)
|
|
13104
|
+
:type Filters: list of Filter
|
|
13103
13105
|
"""
|
|
13104
13106
|
self._DataEngineName = None
|
|
13105
13107
|
self._State = None
|
|
@@ -13107,6 +13109,7 @@ class DescribeNotebookSessionsRequest(AbstractModel):
|
|
|
13107
13109
|
self._Asc = None
|
|
13108
13110
|
self._Limit = None
|
|
13109
13111
|
self._Offset = None
|
|
13112
|
+
self._Filters = None
|
|
13110
13113
|
|
|
13111
13114
|
@property
|
|
13112
13115
|
def DataEngineName(self):
|
|
@@ -13156,6 +13159,14 @@ class DescribeNotebookSessionsRequest(AbstractModel):
|
|
|
13156
13159
|
def Offset(self, Offset):
|
|
13157
13160
|
self._Offset = Offset
|
|
13158
13161
|
|
|
13162
|
+
@property
|
|
13163
|
+
def Filters(self):
|
|
13164
|
+
return self._Filters
|
|
13165
|
+
|
|
13166
|
+
@Filters.setter
|
|
13167
|
+
def Filters(self, Filters):
|
|
13168
|
+
self._Filters = Filters
|
|
13169
|
+
|
|
13159
13170
|
|
|
13160
13171
|
def _deserialize(self, params):
|
|
13161
13172
|
self._DataEngineName = params.get("DataEngineName")
|
|
@@ -13164,6 +13175,12 @@ class DescribeNotebookSessionsRequest(AbstractModel):
|
|
|
13164
13175
|
self._Asc = params.get("Asc")
|
|
13165
13176
|
self._Limit = params.get("Limit")
|
|
13166
13177
|
self._Offset = params.get("Offset")
|
|
13178
|
+
if params.get("Filters") is not None:
|
|
13179
|
+
self._Filters = []
|
|
13180
|
+
for item in params.get("Filters"):
|
|
13181
|
+
obj = Filter()
|
|
13182
|
+
obj._deserialize(item)
|
|
13183
|
+
self._Filters.append(obj)
|
|
13167
13184
|
memeber_set = set(params.keys())
|
|
13168
13185
|
for name, value in vars(self).items():
|
|
13169
13186
|
property_name = name[1:]
|
|
@@ -15175,7 +15192,7 @@ class DescribeTaskResultRequest(AbstractModel):
|
|
|
15175
15192
|
|
|
15176
15193
|
def __init__(self):
|
|
15177
15194
|
r"""
|
|
15178
|
-
:param _TaskId: 任务唯一ID
|
|
15195
|
+
:param _TaskId: 任务唯一ID,仅支持30天内的任务
|
|
15179
15196
|
:type TaskId: str
|
|
15180
15197
|
:param _NextToken: 上一次请求响应返回的分页信息。第一次可以不带,从头开始返回数据,每次返回MaxResults字段设置的数据量。
|
|
15181
15198
|
:type NextToken: str
|
|
@@ -15805,8 +15822,14 @@ class DescribeUpdatableDataEnginesRequest(AbstractModel):
|
|
|
15805
15822
|
r"""
|
|
15806
15823
|
:param _DataEngineConfigCommand: 引擎配置操作命令,UpdateSparkSQLLakefsPath 更新托管表路径,UpdateSparkSQLResultPath 更新结果桶路径
|
|
15807
15824
|
:type DataEngineConfigCommand: str
|
|
15825
|
+
:param _UseLakeFs: 是否使用托管存储作为结果存储
|
|
15826
|
+
:type UseLakeFs: bool
|
|
15827
|
+
:param _CustomResultPath: 用户自定义结果存储路径
|
|
15828
|
+
:type CustomResultPath: str
|
|
15808
15829
|
"""
|
|
15809
15830
|
self._DataEngineConfigCommand = None
|
|
15831
|
+
self._UseLakeFs = None
|
|
15832
|
+
self._CustomResultPath = None
|
|
15810
15833
|
|
|
15811
15834
|
@property
|
|
15812
15835
|
def DataEngineConfigCommand(self):
|
|
@@ -15816,9 +15839,27 @@ class DescribeUpdatableDataEnginesRequest(AbstractModel):
|
|
|
15816
15839
|
def DataEngineConfigCommand(self, DataEngineConfigCommand):
|
|
15817
15840
|
self._DataEngineConfigCommand = DataEngineConfigCommand
|
|
15818
15841
|
|
|
15842
|
+
@property
|
|
15843
|
+
def UseLakeFs(self):
|
|
15844
|
+
return self._UseLakeFs
|
|
15845
|
+
|
|
15846
|
+
@UseLakeFs.setter
|
|
15847
|
+
def UseLakeFs(self, UseLakeFs):
|
|
15848
|
+
self._UseLakeFs = UseLakeFs
|
|
15849
|
+
|
|
15850
|
+
@property
|
|
15851
|
+
def CustomResultPath(self):
|
|
15852
|
+
return self._CustomResultPath
|
|
15853
|
+
|
|
15854
|
+
@CustomResultPath.setter
|
|
15855
|
+
def CustomResultPath(self, CustomResultPath):
|
|
15856
|
+
self._CustomResultPath = CustomResultPath
|
|
15857
|
+
|
|
15819
15858
|
|
|
15820
15859
|
def _deserialize(self, params):
|
|
15821
15860
|
self._DataEngineConfigCommand = params.get("DataEngineConfigCommand")
|
|
15861
|
+
self._UseLakeFs = params.get("UseLakeFs")
|
|
15862
|
+
self._CustomResultPath = params.get("CustomResultPath")
|
|
15822
15863
|
memeber_set = set(params.keys())
|
|
15823
15864
|
for name, value in vars(self).items():
|
|
15824
15865
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1206
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1195
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|