tencentcloud-sdk-python-dlc 3.0.889__tar.gz → 3.0.892__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.889 → tencentcloud-sdk-python-dlc-3.0.892}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dlc-3.0.889 → tencentcloud-sdk-python-dlc-3.0.892}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.889 → tencentcloud-sdk-python-dlc-3.0.892}/tencentcloud/dlc/v20210125/models.py +33 -0
- {tencentcloud-sdk-python-dlc-3.0.889 → tencentcloud-sdk-python-dlc-3.0.892}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dlc-3.0.889 → tencentcloud-sdk-python-dlc-3.0.892}/README.rst +0 -0
- {tencentcloud-sdk-python-dlc-3.0.889 → tencentcloud-sdk-python-dlc-3.0.892}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dlc-3.0.889 → tencentcloud-sdk-python-dlc-3.0.892}/setup.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.889 → tencentcloud-sdk-python-dlc-3.0.892}/tencentcloud/dlc/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.889 → tencentcloud-sdk-python-dlc-3.0.892}/tencentcloud/dlc/v20210125/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.889 → tencentcloud-sdk-python-dlc-3.0.892}/tencentcloud/dlc/v20210125/dlc_client.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.889 → tencentcloud-sdk-python-dlc-3.0.892}/tencentcloud/dlc/v20210125/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.889 → tencentcloud-sdk-python-dlc-3.0.892}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.889 → tencentcloud-sdk-python-dlc-3.0.892}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.889 → tencentcloud-sdk-python-dlc-3.0.892}/tencentcloud_sdk_python_dlc.egg-info/top_level.txt +0 -0
|
@@ -3230,6 +3230,30 @@ class DataGovernPolicy(AbstractModel):
|
|
|
3230
3230
|
|
|
3231
3231
|
"""
|
|
3232
3232
|
|
|
3233
|
+
def __init__(self):
|
|
3234
|
+
r"""
|
|
3235
|
+
:param RuleType: 治理规则类型,Customize: 自定义;Intelligence: 智能治理
|
|
3236
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3237
|
+
:type RuleType: str
|
|
3238
|
+
:param GovernEngine: 治理引擎
|
|
3239
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3240
|
+
:type GovernEngine: str
|
|
3241
|
+
"""
|
|
3242
|
+
self.RuleType = None
|
|
3243
|
+
self.GovernEngine = None
|
|
3244
|
+
|
|
3245
|
+
|
|
3246
|
+
def _deserialize(self, params):
|
|
3247
|
+
self.RuleType = params.get("RuleType")
|
|
3248
|
+
self.GovernEngine = params.get("GovernEngine")
|
|
3249
|
+
memeber_set = set(params.keys())
|
|
3250
|
+
for name, value in vars(self).items():
|
|
3251
|
+
if name in memeber_set:
|
|
3252
|
+
memeber_set.remove(name)
|
|
3253
|
+
if len(memeber_set) > 0:
|
|
3254
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
3255
|
+
|
|
3256
|
+
|
|
3233
3257
|
|
|
3234
3258
|
class DatabaseInfo(AbstractModel):
|
|
3235
3259
|
"""数据库对象
|
|
@@ -6033,11 +6057,14 @@ class GenerateCreateMangedTableSqlRequest(AbstractModel):
|
|
|
6033
6057
|
:type Partitions: list of TPartition
|
|
6034
6058
|
:param Properties: 表属性信息
|
|
6035
6059
|
:type Properties: list of Property
|
|
6060
|
+
:param UpsertKeys: V2 upsert表 upsert键
|
|
6061
|
+
:type UpsertKeys: list of str
|
|
6036
6062
|
"""
|
|
6037
6063
|
self.TableBaseInfo = None
|
|
6038
6064
|
self.Columns = None
|
|
6039
6065
|
self.Partitions = None
|
|
6040
6066
|
self.Properties = None
|
|
6067
|
+
self.UpsertKeys = None
|
|
6041
6068
|
|
|
6042
6069
|
|
|
6043
6070
|
def _deserialize(self, params):
|
|
@@ -6062,6 +6089,7 @@ class GenerateCreateMangedTableSqlRequest(AbstractModel):
|
|
|
6062
6089
|
obj = Property()
|
|
6063
6090
|
obj._deserialize(item)
|
|
6064
6091
|
self.Properties.append(obj)
|
|
6092
|
+
self.UpsertKeys = params.get("UpsertKeys")
|
|
6065
6093
|
memeber_set = set(params.keys())
|
|
6066
6094
|
for name, value in vars(self).items():
|
|
6067
6095
|
if name in memeber_set:
|
|
@@ -7930,6 +7958,9 @@ class TableBaseInfo(AbstractModel):
|
|
|
7930
7958
|
:param GovernPolicy: 数据治理配置项
|
|
7931
7959
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
7932
7960
|
:type GovernPolicy: :class:`tencentcloud.dlc.v20210125.models.DataGovernPolicy`
|
|
7961
|
+
:param DbGovernPolicyIsDisable: 库数据治理是否关闭,关闭:true,开启:false
|
|
7962
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7963
|
+
:type DbGovernPolicyIsDisable: str
|
|
7933
7964
|
"""
|
|
7934
7965
|
self.DatabaseName = None
|
|
7935
7966
|
self.TableName = None
|
|
@@ -7940,6 +7971,7 @@ class TableBaseInfo(AbstractModel):
|
|
|
7940
7971
|
self.UserAlias = None
|
|
7941
7972
|
self.UserSubUin = None
|
|
7942
7973
|
self.GovernPolicy = None
|
|
7974
|
+
self.DbGovernPolicyIsDisable = None
|
|
7943
7975
|
|
|
7944
7976
|
|
|
7945
7977
|
def _deserialize(self, params):
|
|
@@ -7954,6 +7986,7 @@ class TableBaseInfo(AbstractModel):
|
|
|
7954
7986
|
if params.get("GovernPolicy") is not None:
|
|
7955
7987
|
self.GovernPolicy = DataGovernPolicy()
|
|
7956
7988
|
self.GovernPolicy._deserialize(params.get("GovernPolicy"))
|
|
7989
|
+
self.DbGovernPolicyIsDisable = params.get("DbGovernPolicyIsDisable")
|
|
7957
7990
|
memeber_set = set(params.keys())
|
|
7958
7991
|
for name, value in vars(self).items():
|
|
7959
7992
|
if name in memeber_set:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|