tencentcloud-sdk-python-dlc 3.0.1205__tar.gz → 3.0.1207__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.
Files changed (16) hide show
  1. {tencentcloud-sdk-python-dlc-3.0.1205 → tencentcloud-sdk-python-dlc-3.0.1207}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-dlc-3.0.1205 → tencentcloud-sdk-python-dlc-3.0.1207}/setup.py +1 -1
  3. {tencentcloud-sdk-python-dlc-3.0.1205 → tencentcloud-sdk-python-dlc-3.0.1207}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-dlc-3.0.1205 → tencentcloud-sdk-python-dlc-3.0.1207}/tencentcloud/dlc/v20210125/models.py +24 -0
  5. {tencentcloud-sdk-python-dlc-3.0.1205 → tencentcloud-sdk-python-dlc-3.0.1207}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-dlc-3.0.1207/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-dlc-3.0.1205/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-dlc-3.0.1205 → tencentcloud-sdk-python-dlc-3.0.1207}/README.rst +0 -0
  9. {tencentcloud-sdk-python-dlc-3.0.1205 → tencentcloud-sdk-python-dlc-3.0.1207}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-dlc-3.0.1205 → tencentcloud-sdk-python-dlc-3.0.1207}/tencentcloud/dlc/__init__.py +0 -0
  11. {tencentcloud-sdk-python-dlc-3.0.1205 → tencentcloud-sdk-python-dlc-3.0.1207}/tencentcloud/dlc/v20210125/__init__.py +0 -0
  12. {tencentcloud-sdk-python-dlc-3.0.1205 → tencentcloud-sdk-python-dlc-3.0.1207}/tencentcloud/dlc/v20210125/dlc_client.py +0 -0
  13. {tencentcloud-sdk-python-dlc-3.0.1205 → tencentcloud-sdk-python-dlc-3.0.1207}/tencentcloud/dlc/v20210125/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-dlc-3.0.1205 → tencentcloud-sdk-python-dlc-3.0.1207}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-dlc-3.0.1205 → tencentcloud-sdk-python-dlc-3.0.1207}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-dlc-3.0.1205 → tencentcloud-sdk-python-dlc-3.0.1207}/tencentcloud_sdk_python_dlc.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-dlc
3
- Version: 3.0.1205
3
+ Version: 3.0.1207
4
4
  Summary: Tencent Cloud Dlc SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -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.1205"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1207"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Dlc SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1205'
17
+ __version__ = '3.0.1207'
@@ -26819,9 +26819,15 @@ class UpdateDataEngineConfigRequest(AbstractModel):
26819
26819
  :type DataEngineIds: list of str
26820
26820
  :param _DataEngineConfigCommand: 引擎配置命令,支持UpdateSparkSQLLakefsPath(更新原生表配置)、UpdateSparkSQLResultPath(更新结果路径配置)
26821
26821
  :type DataEngineConfigCommand: str
26822
+ :param _UseLakeFs: 是否使用lakefs作为结果存储
26823
+ :type UseLakeFs: bool
26824
+ :param _CustomResultPath: 用户自定义结果路径
26825
+ :type CustomResultPath: str
26822
26826
  """
26823
26827
  self._DataEngineIds = None
26824
26828
  self._DataEngineConfigCommand = None
26829
+ self._UseLakeFs = None
26830
+ self._CustomResultPath = None
26825
26831
 
26826
26832
  @property
26827
26833
  def DataEngineIds(self):
@@ -26839,10 +26845,28 @@ class UpdateDataEngineConfigRequest(AbstractModel):
26839
26845
  def DataEngineConfigCommand(self, DataEngineConfigCommand):
26840
26846
  self._DataEngineConfigCommand = DataEngineConfigCommand
26841
26847
 
26848
+ @property
26849
+ def UseLakeFs(self):
26850
+ return self._UseLakeFs
26851
+
26852
+ @UseLakeFs.setter
26853
+ def UseLakeFs(self, UseLakeFs):
26854
+ self._UseLakeFs = UseLakeFs
26855
+
26856
+ @property
26857
+ def CustomResultPath(self):
26858
+ return self._CustomResultPath
26859
+
26860
+ @CustomResultPath.setter
26861
+ def CustomResultPath(self, CustomResultPath):
26862
+ self._CustomResultPath = CustomResultPath
26863
+
26842
26864
 
26843
26865
  def _deserialize(self, params):
26844
26866
  self._DataEngineIds = params.get("DataEngineIds")
26845
26867
  self._DataEngineConfigCommand = params.get("DataEngineConfigCommand")
26868
+ self._UseLakeFs = params.get("UseLakeFs")
26869
+ self._CustomResultPath = params.get("CustomResultPath")
26846
26870
  memeber_set = set(params.keys())
26847
26871
  for name, value in vars(self).items():
26848
26872
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-dlc
3
- Version: 3.0.1205
3
+ Version: 3.0.1207
4
4
  Summary: Tencent Cloud Dlc SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1207
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1205