tencentcloud-sdk-python-dlc 3.0.1090__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.1090 → tencentcloud-sdk-python-dlc-3.0.1094}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1090 → tencentcloud-sdk-python-dlc-3.0.1094}/setup.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1090 → tencentcloud-sdk-python-dlc-3.0.1094}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1090 → tencentcloud-sdk-python-dlc-3.0.1094}/tencentcloud/dlc/v20210125/errorcodes.py +3 -0
- {tencentcloud-sdk-python-dlc-3.0.1090 → tencentcloud-sdk-python-dlc-3.0.1094}/tencentcloud/dlc/v20210125/models.py +25 -0
- {tencentcloud-sdk-python-dlc-3.0.1090 → 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.1090/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-dlc-3.0.1090 → tencentcloud-sdk-python-dlc-3.0.1094}/README.rst +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1090 → tencentcloud-sdk-python-dlc-3.0.1094}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1090 → tencentcloud-sdk-python-dlc-3.0.1094}/tencentcloud/dlc/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1090 → tencentcloud-sdk-python-dlc-3.0.1094}/tencentcloud/dlc/v20210125/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1090 → tencentcloud-sdk-python-dlc-3.0.1094}/tencentcloud/dlc/v20210125/dlc_client.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1090 → tencentcloud-sdk-python-dlc-3.0.1094}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1090 → tencentcloud-sdk-python-dlc-3.0.1094}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1090 → 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(),
|
|
@@ -428,6 +428,9 @@ INVALIDPARAMETER_INVALIDWHITELISTKEY = 'InvalidParameter.InvalidWhiteListKey'
|
|
|
428
428
|
# 无效的工作组名。
|
|
429
429
|
INVALIDPARAMETER_INVALIDWORKGROUPNAME = 'InvalidParameter.InvalidWorkGroupName'
|
|
430
430
|
|
|
431
|
+
# 您当前仅允许查看100条结果数据,若需调整,请与我们联系
|
|
432
|
+
INVALIDPARAMETER_MAXRESULTONLYSUPPORTHUNDRED = 'InvalidParameter.MaxResultOnlySupportHundred'
|
|
433
|
+
|
|
431
434
|
# 提交的SQL数量范围限制为1~50
|
|
432
435
|
INVALIDPARAMETER_NUMBEROFSQLEXCEEDSTHELIMIT = 'InvalidParameter.NumberOfSQLExceedsTheLimit'
|
|
433
436
|
|
|
@@ -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:]
|
|
@@ -23555,6 +23567,9 @@ class TaskResultInfo(AbstractModel):
|
|
|
23555
23567
|
:type DisplayFormat: str
|
|
23556
23568
|
:param _TotalTime: 任务耗时,单位: ms
|
|
23557
23569
|
:type TotalTime: int
|
|
23570
|
+
:param _QueryResultTime: 获取结果消耗的时间
|
|
23571
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
23572
|
+
:type QueryResultTime: float
|
|
23558
23573
|
"""
|
|
23559
23574
|
self._TaskId = None
|
|
23560
23575
|
self._DatasourceConnectionName = None
|
|
@@ -23575,6 +23590,7 @@ class TaskResultInfo(AbstractModel):
|
|
|
23575
23590
|
self._ProgressDetail = None
|
|
23576
23591
|
self._DisplayFormat = None
|
|
23577
23592
|
self._TotalTime = None
|
|
23593
|
+
self._QueryResultTime = None
|
|
23578
23594
|
|
|
23579
23595
|
@property
|
|
23580
23596
|
def TaskId(self):
|
|
@@ -23728,6 +23744,14 @@ class TaskResultInfo(AbstractModel):
|
|
|
23728
23744
|
def TotalTime(self, TotalTime):
|
|
23729
23745
|
self._TotalTime = TotalTime
|
|
23730
23746
|
|
|
23747
|
+
@property
|
|
23748
|
+
def QueryResultTime(self):
|
|
23749
|
+
return self._QueryResultTime
|
|
23750
|
+
|
|
23751
|
+
@QueryResultTime.setter
|
|
23752
|
+
def QueryResultTime(self, QueryResultTime):
|
|
23753
|
+
self._QueryResultTime = QueryResultTime
|
|
23754
|
+
|
|
23731
23755
|
|
|
23732
23756
|
def _deserialize(self, params):
|
|
23733
23757
|
self._TaskId = params.get("TaskId")
|
|
@@ -23754,6 +23778,7 @@ class TaskResultInfo(AbstractModel):
|
|
|
23754
23778
|
self._ProgressDetail = params.get("ProgressDetail")
|
|
23755
23779
|
self._DisplayFormat = params.get("DisplayFormat")
|
|
23756
23780
|
self._TotalTime = params.get("TotalTime")
|
|
23781
|
+
self._QueryResultTime = params.get("QueryResultTime")
|
|
23757
23782
|
memeber_set = set(params.keys())
|
|
23758
23783
|
for name, value in vars(self).items():
|
|
23759
23784
|
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.1090
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|