tencentcloud-sdk-python-dlc 3.0.1252__tar.gz → 3.0.1259__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.1252 → tencentcloud-sdk-python-dlc-3.0.1259}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1252 → tencentcloud-sdk-python-dlc-3.0.1259}/setup.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1252 → tencentcloud-sdk-python-dlc-3.0.1259}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1252 → tencentcloud-sdk-python-dlc-3.0.1259}/tencentcloud/dlc/v20210125/models.py +13 -0
- {tencentcloud-sdk-python-dlc-3.0.1252 → tencentcloud-sdk-python-dlc-3.0.1259}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-dlc-3.0.1259/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-dlc-3.0.1252/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-dlc-3.0.1252 → tencentcloud-sdk-python-dlc-3.0.1259}/README.rst +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1252 → tencentcloud-sdk-python-dlc-3.0.1259}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1252 → tencentcloud-sdk-python-dlc-3.0.1259}/tencentcloud/dlc/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1252 → tencentcloud-sdk-python-dlc-3.0.1259}/tencentcloud/dlc/v20210125/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1252 → tencentcloud-sdk-python-dlc-3.0.1259}/tencentcloud/dlc/v20210125/dlc_client.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1252 → tencentcloud-sdk-python-dlc-3.0.1259}/tencentcloud/dlc/v20210125/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1252 → tencentcloud-sdk-python-dlc-3.0.1259}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1252 → tencentcloud-sdk-python-dlc-3.0.1259}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1252 → tencentcloud-sdk-python-dlc-3.0.1259}/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.1259"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Dlc SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -8005,6 +8005,9 @@ class DataEngineInfo(AbstractModel):
|
|
|
8005
8005
|
:param _EngineNetworkName: 引擎所在网络名称
|
|
8006
8006
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
8007
8007
|
:type EngineNetworkName: str
|
|
8008
|
+
:param _IsPoolMode: 是否使用预留池
|
|
8009
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8010
|
+
:type IsPoolMode: str
|
|
8008
8011
|
"""
|
|
8009
8012
|
self._DataEngineName = None
|
|
8010
8013
|
self._EngineType = None
|
|
@@ -8059,6 +8062,7 @@ class DataEngineInfo(AbstractModel):
|
|
|
8059
8062
|
self._EngineResourceUsedCU = None
|
|
8060
8063
|
self._AccessInfos = None
|
|
8061
8064
|
self._EngineNetworkName = None
|
|
8065
|
+
self._IsPoolMode = None
|
|
8062
8066
|
|
|
8063
8067
|
@property
|
|
8064
8068
|
def DataEngineName(self):
|
|
@@ -8484,6 +8488,14 @@ class DataEngineInfo(AbstractModel):
|
|
|
8484
8488
|
def EngineNetworkName(self, EngineNetworkName):
|
|
8485
8489
|
self._EngineNetworkName = EngineNetworkName
|
|
8486
8490
|
|
|
8491
|
+
@property
|
|
8492
|
+
def IsPoolMode(self):
|
|
8493
|
+
return self._IsPoolMode
|
|
8494
|
+
|
|
8495
|
+
@IsPoolMode.setter
|
|
8496
|
+
def IsPoolMode(self, IsPoolMode):
|
|
8497
|
+
self._IsPoolMode = IsPoolMode
|
|
8498
|
+
|
|
8487
8499
|
|
|
8488
8500
|
def _deserialize(self, params):
|
|
8489
8501
|
self._DataEngineName = params.get("DataEngineName")
|
|
@@ -8558,6 +8570,7 @@ class DataEngineInfo(AbstractModel):
|
|
|
8558
8570
|
obj._deserialize(item)
|
|
8559
8571
|
self._AccessInfos.append(obj)
|
|
8560
8572
|
self._EngineNetworkName = params.get("EngineNetworkName")
|
|
8573
|
+
self._IsPoolMode = params.get("IsPoolMode")
|
|
8561
8574
|
memeber_set = set(params.keys())
|
|
8562
8575
|
for name, value in vars(self).items():
|
|
8563
8576
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1259
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1252
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|