tencentcloud-sdk-python-dlc 3.0.1335__tar.gz → 3.0.1337__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.1335 → tencentcloud-sdk-python-dlc-3.0.1337}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-dlc-3.0.1335 → tencentcloud-sdk-python-dlc-3.0.1337}/setup.py +1 -1
  3. {tencentcloud-sdk-python-dlc-3.0.1335 → tencentcloud-sdk-python-dlc-3.0.1337}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-dlc-3.0.1335 → tencentcloud-sdk-python-dlc-3.0.1337}/tencentcloud/dlc/v20210125/models.py +17 -0
  5. {tencentcloud-sdk-python-dlc-3.0.1335 → tencentcloud-sdk-python-dlc-3.0.1337}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-dlc-3.0.1337/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-dlc-3.0.1335/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-dlc-3.0.1335 → tencentcloud-sdk-python-dlc-3.0.1337}/README.rst +0 -0
  9. {tencentcloud-sdk-python-dlc-3.0.1335 → tencentcloud-sdk-python-dlc-3.0.1337}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-dlc-3.0.1335 → tencentcloud-sdk-python-dlc-3.0.1337}/tencentcloud/dlc/__init__.py +0 -0
  11. {tencentcloud-sdk-python-dlc-3.0.1335 → tencentcloud-sdk-python-dlc-3.0.1337}/tencentcloud/dlc/v20210125/__init__.py +0 -0
  12. {tencentcloud-sdk-python-dlc-3.0.1335 → tencentcloud-sdk-python-dlc-3.0.1337}/tencentcloud/dlc/v20210125/dlc_client.py +0 -0
  13. {tencentcloud-sdk-python-dlc-3.0.1335 → tencentcloud-sdk-python-dlc-3.0.1337}/tencentcloud/dlc/v20210125/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-dlc-3.0.1335 → tencentcloud-sdk-python-dlc-3.0.1337}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-dlc-3.0.1335 → tencentcloud-sdk-python-dlc-3.0.1337}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-dlc-3.0.1335 → tencentcloud-sdk-python-dlc-3.0.1337}/tencentcloud_sdk_python_dlc.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-dlc
3
- Version: 3.0.1335
3
+ Version: 3.0.1337
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.1335"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1337"],
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.1335'
17
+ __version__ = '3.0.1337'
@@ -27350,6 +27350,9 @@ class Policy(AbstractModel):
27350
27350
  :param _Id: 策略ID
27351
27351
  注意:此字段可能返回 null,表示取不到有效值。
27352
27352
  :type Id: int
27353
+ :param _EngineGeneration: 引擎类型
27354
+
27355
+ :type EngineGeneration: str
27353
27356
  """
27354
27357
  self._Database = None
27355
27358
  self._Catalog = None
@@ -27368,6 +27371,7 @@ class Policy(AbstractModel):
27368
27371
  self._SourceId = None
27369
27372
  self._SourceName = None
27370
27373
  self._Id = None
27374
+ self._EngineGeneration = None
27371
27375
 
27372
27376
  @property
27373
27377
  def Database(self):
@@ -27568,6 +27572,18 @@ class Policy(AbstractModel):
27568
27572
  def Id(self, Id):
27569
27573
  self._Id = Id
27570
27574
 
27575
+ @property
27576
+ def EngineGeneration(self):
27577
+ """引擎类型
27578
+
27579
+ :rtype: str
27580
+ """
27581
+ return self._EngineGeneration
27582
+
27583
+ @EngineGeneration.setter
27584
+ def EngineGeneration(self, EngineGeneration):
27585
+ self._EngineGeneration = EngineGeneration
27586
+
27571
27587
 
27572
27588
  def _deserialize(self, params):
27573
27589
  self._Database = params.get("Database")
@@ -27587,6 +27603,7 @@ class Policy(AbstractModel):
27587
27603
  self._SourceId = params.get("SourceId")
27588
27604
  self._SourceName = params.get("SourceName")
27589
27605
  self._Id = params.get("Id")
27606
+ self._EngineGeneration = params.get("EngineGeneration")
27590
27607
  memeber_set = set(params.keys())
27591
27608
  for name, value in vars(self).items():
27592
27609
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-dlc
3
- Version: 3.0.1335
3
+ Version: 3.0.1337
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.1337
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1335