tencentcloud-sdk-python-dlc 3.0.1232__tar.gz → 3.0.1236__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.1232 → tencentcloud-sdk-python-dlc-3.0.1236}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1232 → tencentcloud-sdk-python-dlc-3.0.1236}/setup.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1232 → tencentcloud-sdk-python-dlc-3.0.1236}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1232 → tencentcloud-sdk-python-dlc-3.0.1236}/tencentcloud/dlc/v20210125/models.py +12 -0
- {tencentcloud-sdk-python-dlc-3.0.1232 → tencentcloud-sdk-python-dlc-3.0.1236}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-dlc-3.0.1236/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-dlc-3.0.1232/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-dlc-3.0.1232 → tencentcloud-sdk-python-dlc-3.0.1236}/README.rst +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1232 → tencentcloud-sdk-python-dlc-3.0.1236}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1232 → tencentcloud-sdk-python-dlc-3.0.1236}/tencentcloud/dlc/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1232 → tencentcloud-sdk-python-dlc-3.0.1236}/tencentcloud/dlc/v20210125/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1232 → tencentcloud-sdk-python-dlc-3.0.1236}/tencentcloud/dlc/v20210125/dlc_client.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1232 → tencentcloud-sdk-python-dlc-3.0.1236}/tencentcloud/dlc/v20210125/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1232 → tencentcloud-sdk-python-dlc-3.0.1236}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1232 → tencentcloud-sdk-python-dlc-3.0.1236}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1232 → tencentcloud-sdk-python-dlc-3.0.1236}/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.1236"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Dlc SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -5883,12 +5883,15 @@ class CreateTasksRequest(AbstractModel):
|
|
|
5883
5883
|
:type DataEngineName: str
|
|
5884
5884
|
:param _ResourceGroupName: spark集群资源组名称
|
|
5885
5885
|
:type ResourceGroupName: str
|
|
5886
|
+
:param _IsMultiStatement: 是否使用multi- statement方式运行一批次任务,true: 是,false: 否
|
|
5887
|
+
:type IsMultiStatement: bool
|
|
5886
5888
|
"""
|
|
5887
5889
|
self._DatabaseName = None
|
|
5888
5890
|
self._Tasks = None
|
|
5889
5891
|
self._DatasourceConnectionName = None
|
|
5890
5892
|
self._DataEngineName = None
|
|
5891
5893
|
self._ResourceGroupName = None
|
|
5894
|
+
self._IsMultiStatement = None
|
|
5892
5895
|
|
|
5893
5896
|
@property
|
|
5894
5897
|
def DatabaseName(self):
|
|
@@ -5930,6 +5933,14 @@ class CreateTasksRequest(AbstractModel):
|
|
|
5930
5933
|
def ResourceGroupName(self, ResourceGroupName):
|
|
5931
5934
|
self._ResourceGroupName = ResourceGroupName
|
|
5932
5935
|
|
|
5936
|
+
@property
|
|
5937
|
+
def IsMultiStatement(self):
|
|
5938
|
+
return self._IsMultiStatement
|
|
5939
|
+
|
|
5940
|
+
@IsMultiStatement.setter
|
|
5941
|
+
def IsMultiStatement(self, IsMultiStatement):
|
|
5942
|
+
self._IsMultiStatement = IsMultiStatement
|
|
5943
|
+
|
|
5933
5944
|
|
|
5934
5945
|
def _deserialize(self, params):
|
|
5935
5946
|
self._DatabaseName = params.get("DatabaseName")
|
|
@@ -5939,6 +5950,7 @@ class CreateTasksRequest(AbstractModel):
|
|
|
5939
5950
|
self._DatasourceConnectionName = params.get("DatasourceConnectionName")
|
|
5940
5951
|
self._DataEngineName = params.get("DataEngineName")
|
|
5941
5952
|
self._ResourceGroupName = params.get("ResourceGroupName")
|
|
5953
|
+
self._IsMultiStatement = params.get("IsMultiStatement")
|
|
5942
5954
|
memeber_set = set(params.keys())
|
|
5943
5955
|
for name, value in vars(self).items():
|
|
5944
5956
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1236
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1232
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|