tencentcloud-sdk-python-dlc 3.0.1093__tar.gz → 3.0.1094__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.1093 → tencentcloud-sdk-python-dlc-3.0.1094}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1093 → tencentcloud-sdk-python-dlc-3.0.1094}/setup.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1093 → tencentcloud-sdk-python-dlc-3.0.1094}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1093 → tencentcloud-sdk-python-dlc-3.0.1094}/tencentcloud/dlc/v20210125/models.py +12 -0
- {tencentcloud-sdk-python-dlc-3.0.1093 → tencentcloud-sdk-python-dlc-3.0.1094}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-dlc-3.0.1094/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-dlc-3.0.1093/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-dlc-3.0.1093 → tencentcloud-sdk-python-dlc-3.0.1094}/README.rst +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1093 → tencentcloud-sdk-python-dlc-3.0.1094}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1093 → tencentcloud-sdk-python-dlc-3.0.1094}/tencentcloud/dlc/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1093 → tencentcloud-sdk-python-dlc-3.0.1094}/tencentcloud/dlc/v20210125/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1093 → tencentcloud-sdk-python-dlc-3.0.1094}/tencentcloud/dlc/v20210125/dlc_client.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1093 → tencentcloud-sdk-python-dlc-3.0.1094}/tencentcloud/dlc/v20210125/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1093 → tencentcloud-sdk-python-dlc-3.0.1094}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1093 → tencentcloud-sdk-python-dlc-3.0.1094}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1093 → tencentcloud-sdk-python-dlc-3.0.1094}/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.1094"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Dlc SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -13645,10 +13645,13 @@ class DescribeTaskResultRequest(AbstractModel):
|
|
|
13645
13645
|
:type NextToken: str
|
|
13646
13646
|
:param _MaxResults: 返回结果的最大行数,范围0~1000,默认为1000.
|
|
13647
13647
|
:type MaxResults: int
|
|
13648
|
+
:param _IsTransformDataType: 是否转化数据类型
|
|
13649
|
+
:type IsTransformDataType: bool
|
|
13648
13650
|
"""
|
|
13649
13651
|
self._TaskId = None
|
|
13650
13652
|
self._NextToken = None
|
|
13651
13653
|
self._MaxResults = None
|
|
13654
|
+
self._IsTransformDataType = None
|
|
13652
13655
|
|
|
13653
13656
|
@property
|
|
13654
13657
|
def TaskId(self):
|
|
@@ -13674,11 +13677,20 @@ class DescribeTaskResultRequest(AbstractModel):
|
|
|
13674
13677
|
def MaxResults(self, MaxResults):
|
|
13675
13678
|
self._MaxResults = MaxResults
|
|
13676
13679
|
|
|
13680
|
+
@property
|
|
13681
|
+
def IsTransformDataType(self):
|
|
13682
|
+
return self._IsTransformDataType
|
|
13683
|
+
|
|
13684
|
+
@IsTransformDataType.setter
|
|
13685
|
+
def IsTransformDataType(self, IsTransformDataType):
|
|
13686
|
+
self._IsTransformDataType = IsTransformDataType
|
|
13687
|
+
|
|
13677
13688
|
|
|
13678
13689
|
def _deserialize(self, params):
|
|
13679
13690
|
self._TaskId = params.get("TaskId")
|
|
13680
13691
|
self._NextToken = params.get("NextToken")
|
|
13681
13692
|
self._MaxResults = params.get("MaxResults")
|
|
13693
|
+
self._IsTransformDataType = params.get("IsTransformDataType")
|
|
13682
13694
|
memeber_set = set(params.keys())
|
|
13683
13695
|
for name, value in vars(self).items():
|
|
13684
13696
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1094
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1093
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|