tencentcloud-sdk-python-dlc 3.0.1302__tar.gz → 3.0.1304__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.1302 → tencentcloud-sdk-python-dlc-3.0.1304}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1302 → tencentcloud-sdk-python-dlc-3.0.1304}/setup.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1302 → tencentcloud-sdk-python-dlc-3.0.1304}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1302 → tencentcloud-sdk-python-dlc-3.0.1304}/tencentcloud/dlc/v20210125/models.py +89 -0
- {tencentcloud-sdk-python-dlc-3.0.1302 → tencentcloud-sdk-python-dlc-3.0.1304}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-dlc-3.0.1304/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-dlc-3.0.1302/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-dlc-3.0.1302 → tencentcloud-sdk-python-dlc-3.0.1304}/README.rst +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1302 → tencentcloud-sdk-python-dlc-3.0.1304}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1302 → tencentcloud-sdk-python-dlc-3.0.1304}/tencentcloud/dlc/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1302 → tencentcloud-sdk-python-dlc-3.0.1304}/tencentcloud/dlc/v20210125/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1302 → tencentcloud-sdk-python-dlc-3.0.1304}/tencentcloud/dlc/v20210125/dlc_client.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1302 → tencentcloud-sdk-python-dlc-3.0.1304}/tencentcloud/dlc/v20210125/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1302 → tencentcloud-sdk-python-dlc-3.0.1304}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1302 → tencentcloud-sdk-python-dlc-3.0.1304}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1302 → tencentcloud-sdk-python-dlc-3.0.1304}/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.1304"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Dlc SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -29007,6 +29007,44 @@ class SessionResourceTemplate(AbstractModel):
|
|
|
29007
29007
|
|
|
29008
29008
|
|
|
29009
29009
|
|
|
29010
|
+
class SmartOptimizerChangeTablePolicy(AbstractModel):
|
|
29011
|
+
"""混合表中,change表的数据保存时间,单位为天
|
|
29012
|
+
|
|
29013
|
+
"""
|
|
29014
|
+
|
|
29015
|
+
def __init__(self):
|
|
29016
|
+
r"""
|
|
29017
|
+
:param _DataRetentionTime: change表的数据保存时间,单位为天
|
|
29018
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
29019
|
+
:type DataRetentionTime: int
|
|
29020
|
+
"""
|
|
29021
|
+
self._DataRetentionTime = None
|
|
29022
|
+
|
|
29023
|
+
@property
|
|
29024
|
+
def DataRetentionTime(self):
|
|
29025
|
+
"""change表的数据保存时间,单位为天
|
|
29026
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
29027
|
+
:rtype: int
|
|
29028
|
+
"""
|
|
29029
|
+
return self._DataRetentionTime
|
|
29030
|
+
|
|
29031
|
+
@DataRetentionTime.setter
|
|
29032
|
+
def DataRetentionTime(self, DataRetentionTime):
|
|
29033
|
+
self._DataRetentionTime = DataRetentionTime
|
|
29034
|
+
|
|
29035
|
+
|
|
29036
|
+
def _deserialize(self, params):
|
|
29037
|
+
self._DataRetentionTime = params.get("DataRetentionTime")
|
|
29038
|
+
memeber_set = set(params.keys())
|
|
29039
|
+
for name, value in vars(self).items():
|
|
29040
|
+
property_name = name[1:]
|
|
29041
|
+
if property_name in memeber_set:
|
|
29042
|
+
memeber_set.remove(property_name)
|
|
29043
|
+
if len(memeber_set) > 0:
|
|
29044
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
29045
|
+
|
|
29046
|
+
|
|
29047
|
+
|
|
29010
29048
|
class SmartOptimizerIndexPolicy(AbstractModel):
|
|
29011
29049
|
"""SmartOptimizerIndexPolicy
|
|
29012
29050
|
|
|
@@ -29173,12 +29211,16 @@ class SmartOptimizerPolicy(AbstractModel):
|
|
|
29173
29211
|
:param _Index: SmartOptimizerIndexPolicy
|
|
29174
29212
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
29175
29213
|
:type Index: :class:`tencentcloud.dlc.v20210125.models.SmartOptimizerIndexPolicy`
|
|
29214
|
+
:param _ChangeTable: SmartOptimizerChangeTablePolicy
|
|
29215
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
29216
|
+
:type ChangeTable: :class:`tencentcloud.dlc.v20210125.models.SmartOptimizerChangeTablePolicy`
|
|
29176
29217
|
"""
|
|
29177
29218
|
self._Inherit = None
|
|
29178
29219
|
self._Resources = None
|
|
29179
29220
|
self._Written = None
|
|
29180
29221
|
self._Lifecycle = None
|
|
29181
29222
|
self._Index = None
|
|
29223
|
+
self._ChangeTable = None
|
|
29182
29224
|
|
|
29183
29225
|
@property
|
|
29184
29226
|
def Inherit(self):
|
|
@@ -29240,6 +29282,18 @@ class SmartOptimizerPolicy(AbstractModel):
|
|
|
29240
29282
|
def Index(self, Index):
|
|
29241
29283
|
self._Index = Index
|
|
29242
29284
|
|
|
29285
|
+
@property
|
|
29286
|
+
def ChangeTable(self):
|
|
29287
|
+
"""SmartOptimizerChangeTablePolicy
|
|
29288
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
29289
|
+
:rtype: :class:`tencentcloud.dlc.v20210125.models.SmartOptimizerChangeTablePolicy`
|
|
29290
|
+
"""
|
|
29291
|
+
return self._ChangeTable
|
|
29292
|
+
|
|
29293
|
+
@ChangeTable.setter
|
|
29294
|
+
def ChangeTable(self, ChangeTable):
|
|
29295
|
+
self._ChangeTable = ChangeTable
|
|
29296
|
+
|
|
29243
29297
|
|
|
29244
29298
|
def _deserialize(self, params):
|
|
29245
29299
|
self._Inherit = params.get("Inherit")
|
|
@@ -29258,6 +29312,9 @@ class SmartOptimizerPolicy(AbstractModel):
|
|
|
29258
29312
|
if params.get("Index") is not None:
|
|
29259
29313
|
self._Index = SmartOptimizerIndexPolicy()
|
|
29260
29314
|
self._Index._deserialize(params.get("Index"))
|
|
29315
|
+
if params.get("ChangeTable") is not None:
|
|
29316
|
+
self._ChangeTable = SmartOptimizerChangeTablePolicy()
|
|
29317
|
+
self._ChangeTable._deserialize(params.get("ChangeTable"))
|
|
29261
29318
|
memeber_set = set(params.keys())
|
|
29262
29319
|
for name, value in vars(self).items():
|
|
29263
29320
|
property_name = name[1:]
|
|
@@ -31555,6 +31612,9 @@ class TableBaseInfo(AbstractModel):
|
|
|
31555
31612
|
:param _SmartPolicy: 智能数据治理配置项
|
|
31556
31613
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
31557
31614
|
:type SmartPolicy: :class:`tencentcloud.dlc.v20210125.models.SmartPolicy`
|
|
31615
|
+
:param _PrimaryKeys: T-ICEBERG表的主键
|
|
31616
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
31617
|
+
:type PrimaryKeys: list of str
|
|
31558
31618
|
"""
|
|
31559
31619
|
self._DatabaseName = None
|
|
31560
31620
|
self._TableName = None
|
|
@@ -31567,6 +31627,7 @@ class TableBaseInfo(AbstractModel):
|
|
|
31567
31627
|
self._GovernPolicy = None
|
|
31568
31628
|
self._DbGovernPolicyIsDisable = None
|
|
31569
31629
|
self._SmartPolicy = None
|
|
31630
|
+
self._PrimaryKeys = None
|
|
31570
31631
|
|
|
31571
31632
|
@property
|
|
31572
31633
|
def DatabaseName(self):
|
|
@@ -31706,6 +31767,18 @@ class TableBaseInfo(AbstractModel):
|
|
|
31706
31767
|
def SmartPolicy(self, SmartPolicy):
|
|
31707
31768
|
self._SmartPolicy = SmartPolicy
|
|
31708
31769
|
|
|
31770
|
+
@property
|
|
31771
|
+
def PrimaryKeys(self):
|
|
31772
|
+
"""T-ICEBERG表的主键
|
|
31773
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
31774
|
+
:rtype: list of str
|
|
31775
|
+
"""
|
|
31776
|
+
return self._PrimaryKeys
|
|
31777
|
+
|
|
31778
|
+
@PrimaryKeys.setter
|
|
31779
|
+
def PrimaryKeys(self, PrimaryKeys):
|
|
31780
|
+
self._PrimaryKeys = PrimaryKeys
|
|
31781
|
+
|
|
31709
31782
|
|
|
31710
31783
|
def _deserialize(self, params):
|
|
31711
31784
|
self._DatabaseName = params.get("DatabaseName")
|
|
@@ -31723,6 +31796,7 @@ class TableBaseInfo(AbstractModel):
|
|
|
31723
31796
|
if params.get("SmartPolicy") is not None:
|
|
31724
31797
|
self._SmartPolicy = SmartPolicy()
|
|
31725
31798
|
self._SmartPolicy._deserialize(params.get("SmartPolicy"))
|
|
31799
|
+
self._PrimaryKeys = params.get("PrimaryKeys")
|
|
31726
31800
|
memeber_set = set(params.keys())
|
|
31727
31801
|
for name, value in vars(self).items():
|
|
31728
31802
|
property_name = name[1:]
|
|
@@ -31885,6 +31959,8 @@ class TableResponseInfo(AbstractModel):
|
|
|
31885
31959
|
:param _HeatValue: 访问热点
|
|
31886
31960
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
31887
31961
|
:type HeatValue: int
|
|
31962
|
+
:param _InputFormatShort: InputFormat的缩写
|
|
31963
|
+
:type InputFormatShort: str
|
|
31888
31964
|
"""
|
|
31889
31965
|
self._TableBaseInfo = None
|
|
31890
31966
|
self._Columns = None
|
|
@@ -31898,6 +31974,7 @@ class TableResponseInfo(AbstractModel):
|
|
|
31898
31974
|
self._RecordCount = None
|
|
31899
31975
|
self._MapMaterializedViewName = None
|
|
31900
31976
|
self._HeatValue = None
|
|
31977
|
+
self._InputFormatShort = None
|
|
31901
31978
|
|
|
31902
31979
|
@property
|
|
31903
31980
|
def TableBaseInfo(self):
|
|
@@ -32042,6 +32119,17 @@ class TableResponseInfo(AbstractModel):
|
|
|
32042
32119
|
def HeatValue(self, HeatValue):
|
|
32043
32120
|
self._HeatValue = HeatValue
|
|
32044
32121
|
|
|
32122
|
+
@property
|
|
32123
|
+
def InputFormatShort(self):
|
|
32124
|
+
"""InputFormat的缩写
|
|
32125
|
+
:rtype: str
|
|
32126
|
+
"""
|
|
32127
|
+
return self._InputFormatShort
|
|
32128
|
+
|
|
32129
|
+
@InputFormatShort.setter
|
|
32130
|
+
def InputFormatShort(self, InputFormatShort):
|
|
32131
|
+
self._InputFormatShort = InputFormatShort
|
|
32132
|
+
|
|
32045
32133
|
|
|
32046
32134
|
def _deserialize(self, params):
|
|
32047
32135
|
if params.get("TableBaseInfo") is not None:
|
|
@@ -32073,6 +32161,7 @@ class TableResponseInfo(AbstractModel):
|
|
|
32073
32161
|
self._RecordCount = params.get("RecordCount")
|
|
32074
32162
|
self._MapMaterializedViewName = params.get("MapMaterializedViewName")
|
|
32075
32163
|
self._HeatValue = params.get("HeatValue")
|
|
32164
|
+
self._InputFormatShort = params.get("InputFormatShort")
|
|
32076
32165
|
memeber_set = set(params.keys())
|
|
32077
32166
|
for name, value in vars(self).items():
|
|
32078
32167
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1304
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1302
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|