tencentcloud-sdk-python-dlc 3.0.1135__tar.gz → 3.0.1139__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.1135 → tencentcloud-sdk-python-dlc-3.0.1139}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1135 → tencentcloud-sdk-python-dlc-3.0.1139}/setup.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1135 → tencentcloud-sdk-python-dlc-3.0.1139}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1135 → tencentcloud-sdk-python-dlc-3.0.1139}/tencentcloud/dlc/v20210125/errorcodes.py +3 -0
- {tencentcloud-sdk-python-dlc-3.0.1135 → tencentcloud-sdk-python-dlc-3.0.1139}/tencentcloud/dlc/v20210125/models.py +16 -3
- {tencentcloud-sdk-python-dlc-3.0.1135 → tencentcloud-sdk-python-dlc-3.0.1139}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-dlc-3.0.1139/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-dlc-3.0.1135/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-dlc-3.0.1135 → tencentcloud-sdk-python-dlc-3.0.1139}/README.rst +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1135 → tencentcloud-sdk-python-dlc-3.0.1139}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1135 → tencentcloud-sdk-python-dlc-3.0.1139}/tencentcloud/dlc/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1135 → tencentcloud-sdk-python-dlc-3.0.1139}/tencentcloud/dlc/v20210125/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1135 → tencentcloud-sdk-python-dlc-3.0.1139}/tencentcloud/dlc/v20210125/dlc_client.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1135 → tencentcloud-sdk-python-dlc-3.0.1139}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1135 → tencentcloud-sdk-python-dlc-3.0.1139}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1135 → tencentcloud-sdk-python-dlc-3.0.1139}/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.1139"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Dlc SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -374,6 +374,9 @@ INVALIDPARAMETER_INVALIDSORTING = 'InvalidParameter.InvalidSorting'
|
|
|
374
374
|
# SparkAppParam无效。
|
|
375
375
|
INVALIDPARAMETER_INVALIDSPARKAPPPARAM = 'InvalidParameter.InvalidSparkAppParam'
|
|
376
376
|
|
|
377
|
+
# 指定的Spark作业配置格式异常,请参考:spark.network.timeout=120s
|
|
378
|
+
INVALIDPARAMETER_INVALIDSPARKCONFIGFORMAT = 'InvalidParameter.InvalidSparkConfigFormat'
|
|
379
|
+
|
|
377
380
|
# 当前Statement仅支持sql类型
|
|
378
381
|
INVALIDPARAMETER_INVALIDSTATEMENTKINDTYPE = 'InvalidParameter.InvalidStatementKindType'
|
|
379
382
|
|
|
@@ -4363,7 +4363,7 @@ class CreateSparkAppRequest(AbstractModel):
|
|
|
4363
4363
|
:type DataEngine: str
|
|
4364
4364
|
:param _AppFile: spark作业程序包文件路径
|
|
4365
4365
|
:type AppFile: str
|
|
4366
|
-
:param _RoleArn: 数据访问策略,CAM Role arn
|
|
4366
|
+
:param _RoleArn: 数据访问策略,CAM Role arn,控制台通过数据作业—>作业配置获取,SDK通过DescribeUserRoles接口获取对应的值;
|
|
4367
4367
|
:type RoleArn: int
|
|
4368
4368
|
:param _AppDriverSize: 指定的Driver规格,当前支持:small(默认,1cu)、medium(2cu)、large(4cu)、xlarge(8cu)
|
|
4369
4369
|
:type AppDriverSize: str
|
|
@@ -21197,7 +21197,7 @@ class SparkJobInfo(AbstractModel):
|
|
|
21197
21197
|
:type JobUpdateTime: int
|
|
21198
21198
|
:param _CurrentTaskId: spark作业最近任务ID
|
|
21199
21199
|
:type CurrentTaskId: str
|
|
21200
|
-
:param _JobStatus: spark
|
|
21200
|
+
:param _JobStatus: spark作业最近运行状态,初始化:0,运行中:1,成功:2,数据写入中: 3, 排队中: 4, 失败: -1, 已删除: -3,已过期: -5
|
|
21201
21201
|
:type JobStatus: int
|
|
21202
21202
|
:param _StreamingStat: spark流作业统计
|
|
21203
21203
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -21250,6 +21250,9 @@ class SparkJobInfo(AbstractModel):
|
|
|
21250
21250
|
:param _IsSessionStarted: 是否使用session脚本的sql运行任务:false:否,true:是
|
|
21251
21251
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
21252
21252
|
:type IsSessionStarted: bool
|
|
21253
|
+
:param _EngineTypeDetail: 引擎详细类型:SparkSQL、PrestoSQL、SparkBatch、StandardSpark、StandardPresto
|
|
21254
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
21255
|
+
:type EngineTypeDetail: str
|
|
21253
21256
|
"""
|
|
21254
21257
|
self._JobId = None
|
|
21255
21258
|
self._JobName = None
|
|
@@ -21292,6 +21295,7 @@ class SparkJobInfo(AbstractModel):
|
|
|
21292
21295
|
self._DataEngineImageVersion = None
|
|
21293
21296
|
self._IsInherit = None
|
|
21294
21297
|
self._IsSessionStarted = None
|
|
21298
|
+
self._EngineTypeDetail = None
|
|
21295
21299
|
|
|
21296
21300
|
@property
|
|
21297
21301
|
def JobId(self):
|
|
@@ -21621,6 +21625,14 @@ class SparkJobInfo(AbstractModel):
|
|
|
21621
21625
|
def IsSessionStarted(self, IsSessionStarted):
|
|
21622
21626
|
self._IsSessionStarted = IsSessionStarted
|
|
21623
21627
|
|
|
21628
|
+
@property
|
|
21629
|
+
def EngineTypeDetail(self):
|
|
21630
|
+
return self._EngineTypeDetail
|
|
21631
|
+
|
|
21632
|
+
@EngineTypeDetail.setter
|
|
21633
|
+
def EngineTypeDetail(self, EngineTypeDetail):
|
|
21634
|
+
self._EngineTypeDetail = EngineTypeDetail
|
|
21635
|
+
|
|
21624
21636
|
|
|
21625
21637
|
def _deserialize(self, params):
|
|
21626
21638
|
self._JobId = params.get("JobId")
|
|
@@ -21666,6 +21678,7 @@ class SparkJobInfo(AbstractModel):
|
|
|
21666
21678
|
self._DataEngineImageVersion = params.get("DataEngineImageVersion")
|
|
21667
21679
|
self._IsInherit = params.get("IsInherit")
|
|
21668
21680
|
self._IsSessionStarted = params.get("IsSessionStarted")
|
|
21681
|
+
self._EngineTypeDetail = params.get("EngineTypeDetail")
|
|
21669
21682
|
memeber_set = set(params.keys())
|
|
21670
21683
|
for name, value in vars(self).items():
|
|
21671
21684
|
property_name = name[1:]
|
|
@@ -24721,7 +24734,7 @@ class UpdateUserDataEngineConfigRequest(AbstractModel):
|
|
|
24721
24734
|
:type DataEngineId: str
|
|
24722
24735
|
:param _DataEngineConfigPairs: 用户自定义引擎配置项集合。该参数需要传用户需要添加的全部配置项,例如,已有配置项k1:v1,添加k2:v2,需要传[k1:v1,k2:v2]。
|
|
24723
24736
|
:type DataEngineConfigPairs: list of DataEngineConfigPair
|
|
24724
|
-
:param _SessionResourceTemplate:
|
|
24737
|
+
:param _SessionResourceTemplate: 作业引擎资源配置模板
|
|
24725
24738
|
:type SessionResourceTemplate: :class:`tencentcloud.dlc.v20210125.models.SessionResourceTemplate`
|
|
24726
24739
|
"""
|
|
24727
24740
|
self._DataEngineId = None
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1139
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1135
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|