tencentcloud-sdk-python-dlc 3.0.1047__tar.gz → 3.0.1048__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.1047 → tencentcloud-sdk-python-dlc-3.0.1048}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1047 → tencentcloud-sdk-python-dlc-3.0.1048}/setup.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1047 → tencentcloud-sdk-python-dlc-3.0.1048}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1047 → tencentcloud-sdk-python-dlc-3.0.1048}/tencentcloud/dlc/v20210125/errorcodes.py +6 -0
- {tencentcloud-sdk-python-dlc-3.0.1047 → tencentcloud-sdk-python-dlc-3.0.1048}/tencentcloud/dlc/v20210125/models.py +29 -3
- {tencentcloud-sdk-python-dlc-3.0.1047 → tencentcloud-sdk-python-dlc-3.0.1048}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-dlc-3.0.1048/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-dlc-3.0.1047/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-dlc-3.0.1047 → tencentcloud-sdk-python-dlc-3.0.1048}/README.rst +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1047 → tencentcloud-sdk-python-dlc-3.0.1048}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1047 → tencentcloud-sdk-python-dlc-3.0.1048}/tencentcloud/dlc/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1047 → tencentcloud-sdk-python-dlc-3.0.1048}/tencentcloud/dlc/v20210125/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1047 → tencentcloud-sdk-python-dlc-3.0.1048}/tencentcloud/dlc/v20210125/dlc_client.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1047 → tencentcloud-sdk-python-dlc-3.0.1048}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1047 → tencentcloud-sdk-python-dlc-3.0.1048}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1047 → tencentcloud-sdk-python-dlc-3.0.1048}/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.1048"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Dlc SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -170,6 +170,9 @@ INVALIDPARAMETER_DATAENGINEIMAGEOPERATENOTMATCH = 'InvalidParameter.DataEngineIm
|
|
|
170
170
|
# 指定集群计费模式不匹配,当前仅支持: 1: 按量计费, 2: 包年包月
|
|
171
171
|
INVALIDPARAMETER_DATAENGINEMODENOTMATCH = 'InvalidParameter.DataEngineModeNotMatch'
|
|
172
172
|
|
|
173
|
+
# 当前任务仅支持SQL引擎运行
|
|
174
|
+
INVALIDPARAMETER_DATAENGINEONLYSUPPORTSQL = 'InvalidParameter.DataEngineOnlySupportSQL'
|
|
175
|
+
|
|
173
176
|
# 当前任务仅支持Spark批作业引擎运行
|
|
174
177
|
INVALIDPARAMETER_DATAENGINEONLYSUPPORTSPARKBATCH = 'InvalidParameter.DataEngineOnlySupportSparkBatch'
|
|
175
178
|
|
|
@@ -572,6 +575,9 @@ RESOURCENOTFOUND_SESSIONNOTFOUND = 'ResourceNotFound.SessionNotFound'
|
|
|
572
575
|
# session已消亡。
|
|
573
576
|
RESOURCENOTFOUND_SESSIONSTATEDEAD = 'ResourceNotFound.SessionStateDead'
|
|
574
577
|
|
|
578
|
+
# Session正在关闭,请确认任务是否已经取消
|
|
579
|
+
RESOURCENOTFOUND_SESSIONSTATESHUTTINGDOWN = 'ResourceNotFound.SessionStateShuttingDown'
|
|
580
|
+
|
|
575
581
|
# 找不到Spark Shuffle存储路径,请到控制台->数据探索页面->存储配置中设置
|
|
576
582
|
RESOURCENOTFOUND_SHUFFLEDIRNOTFOUND = 'ResourceNotFound.ShuffleDirNotFound'
|
|
577
583
|
|
|
@@ -6848,7 +6848,7 @@ class DataEngineConfigInstanceInfo(AbstractModel):
|
|
|
6848
6848
|
:type DataEngineId: str
|
|
6849
6849
|
:param _DataEngineConfigPairs: 用户自定义配置项集合
|
|
6850
6850
|
:type DataEngineConfigPairs: list of DataEngineConfigPair
|
|
6851
|
-
:param _SessionResourceTemplate:
|
|
6851
|
+
:param _SessionResourceTemplate: 作业集群资源参数配置模板
|
|
6852
6852
|
:type SessionResourceTemplate: :class:`tencentcloud.dlc.v20210125.models.SessionResourceTemplate`
|
|
6853
6853
|
"""
|
|
6854
6854
|
self._DataEngineId = None
|
|
@@ -16634,9 +16634,9 @@ class LakeFileSystemToken(AbstractModel):
|
|
|
16634
16634
|
|
|
16635
16635
|
def __init__(self):
|
|
16636
16636
|
r"""
|
|
16637
|
-
:param _SecretId: Token
|
|
16637
|
+
:param _SecretId: Token使用的临时密钥的ID
|
|
16638
16638
|
:type SecretId: str
|
|
16639
|
-
:param _SecretKey: Token
|
|
16639
|
+
:param _SecretKey: Token使用的临时密钥
|
|
16640
16640
|
:type SecretKey: str
|
|
16641
16641
|
:param _Token: Token信息
|
|
16642
16642
|
:type Token: str
|
|
@@ -22663,6 +22663,9 @@ class TableResponseInfo(AbstractModel):
|
|
|
22663
22663
|
:param _MapMaterializedViewName: xxxx
|
|
22664
22664
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
22665
22665
|
:type MapMaterializedViewName: str
|
|
22666
|
+
:param _HeatValue: 访问热点
|
|
22667
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
22668
|
+
:type HeatValue: int
|
|
22666
22669
|
"""
|
|
22667
22670
|
self._TableBaseInfo = None
|
|
22668
22671
|
self._Columns = None
|
|
@@ -22675,6 +22678,7 @@ class TableResponseInfo(AbstractModel):
|
|
|
22675
22678
|
self._StorageSize = None
|
|
22676
22679
|
self._RecordCount = None
|
|
22677
22680
|
self._MapMaterializedViewName = None
|
|
22681
|
+
self._HeatValue = None
|
|
22678
22682
|
|
|
22679
22683
|
@property
|
|
22680
22684
|
def TableBaseInfo(self):
|
|
@@ -22764,6 +22768,14 @@ class TableResponseInfo(AbstractModel):
|
|
|
22764
22768
|
def MapMaterializedViewName(self, MapMaterializedViewName):
|
|
22765
22769
|
self._MapMaterializedViewName = MapMaterializedViewName
|
|
22766
22770
|
|
|
22771
|
+
@property
|
|
22772
|
+
def HeatValue(self):
|
|
22773
|
+
return self._HeatValue
|
|
22774
|
+
|
|
22775
|
+
@HeatValue.setter
|
|
22776
|
+
def HeatValue(self, HeatValue):
|
|
22777
|
+
self._HeatValue = HeatValue
|
|
22778
|
+
|
|
22767
22779
|
|
|
22768
22780
|
def _deserialize(self, params):
|
|
22769
22781
|
if params.get("TableBaseInfo") is not None:
|
|
@@ -22794,6 +22806,7 @@ class TableResponseInfo(AbstractModel):
|
|
|
22794
22806
|
self._StorageSize = params.get("StorageSize")
|
|
22795
22807
|
self._RecordCount = params.get("RecordCount")
|
|
22796
22808
|
self._MapMaterializedViewName = params.get("MapMaterializedViewName")
|
|
22809
|
+
self._HeatValue = params.get("HeatValue")
|
|
22797
22810
|
memeber_set = set(params.keys())
|
|
22798
22811
|
for name, value in vars(self).items():
|
|
22799
22812
|
property_name = name[1:]
|
|
@@ -23012,6 +23025,9 @@ class TaskResponseInfo(AbstractModel):
|
|
|
23012
23025
|
:param _PrestoMonitorMetrics: presto任务指标数据
|
|
23013
23026
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
23014
23027
|
:type PrestoMonitorMetrics: :class:`tencentcloud.dlc.v20210125.models.PrestoMonitorMetrics`
|
|
23028
|
+
:param _ResultFormat: 结果文件格式:默认为csv
|
|
23029
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
23030
|
+
:type ResultFormat: str
|
|
23015
23031
|
"""
|
|
23016
23032
|
self._DatabaseName = None
|
|
23017
23033
|
self._DataAmount = None
|
|
@@ -23053,6 +23069,7 @@ class TaskResponseInfo(AbstractModel):
|
|
|
23053
23069
|
self._CommonMetrics = None
|
|
23054
23070
|
self._SparkMonitorMetrics = None
|
|
23055
23071
|
self._PrestoMonitorMetrics = None
|
|
23072
|
+
self._ResultFormat = None
|
|
23056
23073
|
|
|
23057
23074
|
@property
|
|
23058
23075
|
def DatabaseName(self):
|
|
@@ -23374,6 +23391,14 @@ class TaskResponseInfo(AbstractModel):
|
|
|
23374
23391
|
def PrestoMonitorMetrics(self, PrestoMonitorMetrics):
|
|
23375
23392
|
self._PrestoMonitorMetrics = PrestoMonitorMetrics
|
|
23376
23393
|
|
|
23394
|
+
@property
|
|
23395
|
+
def ResultFormat(self):
|
|
23396
|
+
return self._ResultFormat
|
|
23397
|
+
|
|
23398
|
+
@ResultFormat.setter
|
|
23399
|
+
def ResultFormat(self, ResultFormat):
|
|
23400
|
+
self._ResultFormat = ResultFormat
|
|
23401
|
+
|
|
23377
23402
|
|
|
23378
23403
|
def _deserialize(self, params):
|
|
23379
23404
|
self._DatabaseName = params.get("DatabaseName")
|
|
@@ -23422,6 +23447,7 @@ class TaskResponseInfo(AbstractModel):
|
|
|
23422
23447
|
if params.get("PrestoMonitorMetrics") is not None:
|
|
23423
23448
|
self._PrestoMonitorMetrics = PrestoMonitorMetrics()
|
|
23424
23449
|
self._PrestoMonitorMetrics._deserialize(params.get("PrestoMonitorMetrics"))
|
|
23450
|
+
self._ResultFormat = params.get("ResultFormat")
|
|
23425
23451
|
memeber_set = set(params.keys())
|
|
23426
23452
|
for name, value in vars(self).items():
|
|
23427
23453
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1048
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1047
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|