tencentcloud-sdk-python-dlc 3.0.1202__tar.gz → 3.0.1212__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.1202 → tencentcloud-sdk-python-dlc-3.0.1212}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1202 → tencentcloud-sdk-python-dlc-3.0.1212}/setup.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1202 → tencentcloud-sdk-python-dlc-3.0.1212}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1202 → tencentcloud-sdk-python-dlc-3.0.1212}/tencentcloud/dlc/v20210125/models.py +163 -0
- {tencentcloud-sdk-python-dlc-3.0.1202 → tencentcloud-sdk-python-dlc-3.0.1212}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-dlc-3.0.1212/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-dlc-3.0.1202/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-dlc-3.0.1202 → tencentcloud-sdk-python-dlc-3.0.1212}/README.rst +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1202 → tencentcloud-sdk-python-dlc-3.0.1212}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1202 → tencentcloud-sdk-python-dlc-3.0.1212}/tencentcloud/dlc/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1202 → tencentcloud-sdk-python-dlc-3.0.1212}/tencentcloud/dlc/v20210125/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1202 → tencentcloud-sdk-python-dlc-3.0.1212}/tencentcloud/dlc/v20210125/dlc_client.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1202 → tencentcloud-sdk-python-dlc-3.0.1212}/tencentcloud/dlc/v20210125/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1202 → tencentcloud-sdk-python-dlc-3.0.1212}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1202 → tencentcloud-sdk-python-dlc-3.0.1212}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1202 → tencentcloud-sdk-python-dlc-3.0.1212}/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.1212"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Dlc SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -18789,11 +18789,27 @@ class LakeFsInfo(AbstractModel):
|
|
|
18789
18789
|
:type SpaceUsedSize: float
|
|
18790
18790
|
:param _CreateTimeStamp: 创建时候的时间戳
|
|
18791
18791
|
:type CreateTimeStamp: int
|
|
18792
|
+
:param _DefaultBucket: 是否是用户默认桶,0:默认桶,1:非默认桶
|
|
18793
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
18794
|
+
:type DefaultBucket: int
|
|
18795
|
+
:param _ShortName: 托管存储short name
|
|
18796
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
18797
|
+
:type ShortName: str
|
|
18798
|
+
:param _Description: 桶描述信息
|
|
18799
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
18800
|
+
:type Description: str
|
|
18801
|
+
:param _Status: 托管桶状态,当前取值为:creating、bind、readOnly、isolate
|
|
18802
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
18803
|
+
:type Status: str
|
|
18792
18804
|
"""
|
|
18793
18805
|
self._Name = None
|
|
18794
18806
|
self._Type = None
|
|
18795
18807
|
self._SpaceUsedSize = None
|
|
18796
18808
|
self._CreateTimeStamp = None
|
|
18809
|
+
self._DefaultBucket = None
|
|
18810
|
+
self._ShortName = None
|
|
18811
|
+
self._Description = None
|
|
18812
|
+
self._Status = None
|
|
18797
18813
|
|
|
18798
18814
|
@property
|
|
18799
18815
|
def Name(self):
|
|
@@ -18827,12 +18843,48 @@ class LakeFsInfo(AbstractModel):
|
|
|
18827
18843
|
def CreateTimeStamp(self, CreateTimeStamp):
|
|
18828
18844
|
self._CreateTimeStamp = CreateTimeStamp
|
|
18829
18845
|
|
|
18846
|
+
@property
|
|
18847
|
+
def DefaultBucket(self):
|
|
18848
|
+
return self._DefaultBucket
|
|
18849
|
+
|
|
18850
|
+
@DefaultBucket.setter
|
|
18851
|
+
def DefaultBucket(self, DefaultBucket):
|
|
18852
|
+
self._DefaultBucket = DefaultBucket
|
|
18853
|
+
|
|
18854
|
+
@property
|
|
18855
|
+
def ShortName(self):
|
|
18856
|
+
return self._ShortName
|
|
18857
|
+
|
|
18858
|
+
@ShortName.setter
|
|
18859
|
+
def ShortName(self, ShortName):
|
|
18860
|
+
self._ShortName = ShortName
|
|
18861
|
+
|
|
18862
|
+
@property
|
|
18863
|
+
def Description(self):
|
|
18864
|
+
return self._Description
|
|
18865
|
+
|
|
18866
|
+
@Description.setter
|
|
18867
|
+
def Description(self, Description):
|
|
18868
|
+
self._Description = Description
|
|
18869
|
+
|
|
18870
|
+
@property
|
|
18871
|
+
def Status(self):
|
|
18872
|
+
return self._Status
|
|
18873
|
+
|
|
18874
|
+
@Status.setter
|
|
18875
|
+
def Status(self, Status):
|
|
18876
|
+
self._Status = Status
|
|
18877
|
+
|
|
18830
18878
|
|
|
18831
18879
|
def _deserialize(self, params):
|
|
18832
18880
|
self._Name = params.get("Name")
|
|
18833
18881
|
self._Type = params.get("Type")
|
|
18834
18882
|
self._SpaceUsedSize = params.get("SpaceUsedSize")
|
|
18835
18883
|
self._CreateTimeStamp = params.get("CreateTimeStamp")
|
|
18884
|
+
self._DefaultBucket = params.get("DefaultBucket")
|
|
18885
|
+
self._ShortName = params.get("ShortName")
|
|
18886
|
+
self._Description = params.get("Description")
|
|
18887
|
+
self._Status = params.get("Status")
|
|
18836
18888
|
memeber_set = set(params.keys())
|
|
18837
18889
|
for name, value in vars(self).items():
|
|
18838
18890
|
property_name = name[1:]
|
|
@@ -23278,10 +23330,18 @@ class SmartOptimizerLifecyclePolicy(AbstractModel):
|
|
|
23278
23330
|
:param _DropTable: 是否删表
|
|
23279
23331
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
23280
23332
|
:type DropTable: bool
|
|
23333
|
+
:param _ExpiredField: 过期字段
|
|
23334
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
23335
|
+
:type ExpiredField: str
|
|
23336
|
+
:param _ExpiredFieldFormat: 过期字段格式
|
|
23337
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
23338
|
+
:type ExpiredFieldFormat: str
|
|
23281
23339
|
"""
|
|
23282
23340
|
self._LifecycleEnable = None
|
|
23283
23341
|
self._Expiration = None
|
|
23284
23342
|
self._DropTable = None
|
|
23343
|
+
self._ExpiredField = None
|
|
23344
|
+
self._ExpiredFieldFormat = None
|
|
23285
23345
|
|
|
23286
23346
|
@property
|
|
23287
23347
|
def LifecycleEnable(self):
|
|
@@ -23307,11 +23367,29 @@ class SmartOptimizerLifecyclePolicy(AbstractModel):
|
|
|
23307
23367
|
def DropTable(self, DropTable):
|
|
23308
23368
|
self._DropTable = DropTable
|
|
23309
23369
|
|
|
23370
|
+
@property
|
|
23371
|
+
def ExpiredField(self):
|
|
23372
|
+
return self._ExpiredField
|
|
23373
|
+
|
|
23374
|
+
@ExpiredField.setter
|
|
23375
|
+
def ExpiredField(self, ExpiredField):
|
|
23376
|
+
self._ExpiredField = ExpiredField
|
|
23377
|
+
|
|
23378
|
+
@property
|
|
23379
|
+
def ExpiredFieldFormat(self):
|
|
23380
|
+
return self._ExpiredFieldFormat
|
|
23381
|
+
|
|
23382
|
+
@ExpiredFieldFormat.setter
|
|
23383
|
+
def ExpiredFieldFormat(self, ExpiredFieldFormat):
|
|
23384
|
+
self._ExpiredFieldFormat = ExpiredFieldFormat
|
|
23385
|
+
|
|
23310
23386
|
|
|
23311
23387
|
def _deserialize(self, params):
|
|
23312
23388
|
self._LifecycleEnable = params.get("LifecycleEnable")
|
|
23313
23389
|
self._Expiration = params.get("Expiration")
|
|
23314
23390
|
self._DropTable = params.get("DropTable")
|
|
23391
|
+
self._ExpiredField = params.get("ExpiredField")
|
|
23392
|
+
self._ExpiredFieldFormat = params.get("ExpiredFieldFormat")
|
|
23315
23393
|
memeber_set = set(params.keys())
|
|
23316
23394
|
for name, value in vars(self).items():
|
|
23317
23395
|
property_name = name[1:]
|
|
@@ -23424,6 +23502,34 @@ class SmartOptimizerWrittenPolicy(AbstractModel):
|
|
|
23424
23502
|
|
|
23425
23503
|
"""
|
|
23426
23504
|
|
|
23505
|
+
def __init__(self):
|
|
23506
|
+
r"""
|
|
23507
|
+
:param _WrittenEnable: none/enable/disable/default
|
|
23508
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
23509
|
+
:type WrittenEnable: str
|
|
23510
|
+
"""
|
|
23511
|
+
self._WrittenEnable = None
|
|
23512
|
+
|
|
23513
|
+
@property
|
|
23514
|
+
def WrittenEnable(self):
|
|
23515
|
+
return self._WrittenEnable
|
|
23516
|
+
|
|
23517
|
+
@WrittenEnable.setter
|
|
23518
|
+
def WrittenEnable(self, WrittenEnable):
|
|
23519
|
+
self._WrittenEnable = WrittenEnable
|
|
23520
|
+
|
|
23521
|
+
|
|
23522
|
+
def _deserialize(self, params):
|
|
23523
|
+
self._WrittenEnable = params.get("WrittenEnable")
|
|
23524
|
+
memeber_set = set(params.keys())
|
|
23525
|
+
for name, value in vars(self).items():
|
|
23526
|
+
property_name = name[1:]
|
|
23527
|
+
if property_name in memeber_set:
|
|
23528
|
+
memeber_set.remove(property_name)
|
|
23529
|
+
if len(memeber_set) > 0:
|
|
23530
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
23531
|
+
|
|
23532
|
+
|
|
23427
23533
|
|
|
23428
23534
|
class SmartPolicy(AbstractModel):
|
|
23429
23535
|
"""SmartPolicyRequest
|
|
@@ -24857,20 +24963,33 @@ class TColumn(AbstractModel):
|
|
|
24857
24963
|
def __init__(self):
|
|
24858
24964
|
r"""
|
|
24859
24965
|
:param _Name: 字段名称
|
|
24966
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
24860
24967
|
:type Name: str
|
|
24861
24968
|
:param _Type: 字段类型
|
|
24969
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
24862
24970
|
:type Type: str
|
|
24863
24971
|
:param _Comment: 字段描述
|
|
24972
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
24864
24973
|
:type Comment: str
|
|
24865
24974
|
:param _Default: 字段默认值
|
|
24975
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
24866
24976
|
:type Default: str
|
|
24867
24977
|
:param _NotNull: 字段是否是非空
|
|
24978
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
24868
24979
|
:type NotNull: bool
|
|
24869
24980
|
:param _Precision: 表示整个 numeric 的长度,取值1-38
|
|
24981
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
24870
24982
|
:type Precision: int
|
|
24871
24983
|
:param _Scale: 表示小数部分的长度
|
|
24872
24984
|
Scale小于Precision
|
|
24985
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
24873
24986
|
:type Scale: int
|
|
24987
|
+
:param _Position: 字段位置,小的在前
|
|
24988
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
24989
|
+
:type Position: int
|
|
24990
|
+
:param _IsPartition: 是否为分区字段
|
|
24991
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
24992
|
+
:type IsPartition: bool
|
|
24874
24993
|
"""
|
|
24875
24994
|
self._Name = None
|
|
24876
24995
|
self._Type = None
|
|
@@ -24879,6 +24998,8 @@ Scale小于Precision
|
|
|
24879
24998
|
self._NotNull = None
|
|
24880
24999
|
self._Precision = None
|
|
24881
25000
|
self._Scale = None
|
|
25001
|
+
self._Position = None
|
|
25002
|
+
self._IsPartition = None
|
|
24882
25003
|
|
|
24883
25004
|
@property
|
|
24884
25005
|
def Name(self):
|
|
@@ -24936,6 +25057,22 @@ Scale小于Precision
|
|
|
24936
25057
|
def Scale(self, Scale):
|
|
24937
25058
|
self._Scale = Scale
|
|
24938
25059
|
|
|
25060
|
+
@property
|
|
25061
|
+
def Position(self):
|
|
25062
|
+
return self._Position
|
|
25063
|
+
|
|
25064
|
+
@Position.setter
|
|
25065
|
+
def Position(self, Position):
|
|
25066
|
+
self._Position = Position
|
|
25067
|
+
|
|
25068
|
+
@property
|
|
25069
|
+
def IsPartition(self):
|
|
25070
|
+
return self._IsPartition
|
|
25071
|
+
|
|
25072
|
+
@IsPartition.setter
|
|
25073
|
+
def IsPartition(self, IsPartition):
|
|
25074
|
+
self._IsPartition = IsPartition
|
|
25075
|
+
|
|
24939
25076
|
|
|
24940
25077
|
def _deserialize(self, params):
|
|
24941
25078
|
self._Name = params.get("Name")
|
|
@@ -24945,6 +25082,8 @@ Scale小于Precision
|
|
|
24945
25082
|
self._NotNull = params.get("NotNull")
|
|
24946
25083
|
self._Precision = params.get("Precision")
|
|
24947
25084
|
self._Scale = params.get("Scale")
|
|
25085
|
+
self._Position = params.get("Position")
|
|
25086
|
+
self._IsPartition = params.get("IsPartition")
|
|
24948
25087
|
memeber_set = set(params.keys())
|
|
24949
25088
|
for name, value in vars(self).items():
|
|
24950
25089
|
property_name = name[1:]
|
|
@@ -26819,9 +26958,15 @@ class UpdateDataEngineConfigRequest(AbstractModel):
|
|
|
26819
26958
|
:type DataEngineIds: list of str
|
|
26820
26959
|
:param _DataEngineConfigCommand: 引擎配置命令,支持UpdateSparkSQLLakefsPath(更新原生表配置)、UpdateSparkSQLResultPath(更新结果路径配置)
|
|
26821
26960
|
:type DataEngineConfigCommand: str
|
|
26961
|
+
:param _UseLakeFs: 是否使用lakefs作为结果存储
|
|
26962
|
+
:type UseLakeFs: bool
|
|
26963
|
+
:param _CustomResultPath: 用户自定义结果路径
|
|
26964
|
+
:type CustomResultPath: str
|
|
26822
26965
|
"""
|
|
26823
26966
|
self._DataEngineIds = None
|
|
26824
26967
|
self._DataEngineConfigCommand = None
|
|
26968
|
+
self._UseLakeFs = None
|
|
26969
|
+
self._CustomResultPath = None
|
|
26825
26970
|
|
|
26826
26971
|
@property
|
|
26827
26972
|
def DataEngineIds(self):
|
|
@@ -26839,10 +26984,28 @@ class UpdateDataEngineConfigRequest(AbstractModel):
|
|
|
26839
26984
|
def DataEngineConfigCommand(self, DataEngineConfigCommand):
|
|
26840
26985
|
self._DataEngineConfigCommand = DataEngineConfigCommand
|
|
26841
26986
|
|
|
26987
|
+
@property
|
|
26988
|
+
def UseLakeFs(self):
|
|
26989
|
+
return self._UseLakeFs
|
|
26990
|
+
|
|
26991
|
+
@UseLakeFs.setter
|
|
26992
|
+
def UseLakeFs(self, UseLakeFs):
|
|
26993
|
+
self._UseLakeFs = UseLakeFs
|
|
26994
|
+
|
|
26995
|
+
@property
|
|
26996
|
+
def CustomResultPath(self):
|
|
26997
|
+
return self._CustomResultPath
|
|
26998
|
+
|
|
26999
|
+
@CustomResultPath.setter
|
|
27000
|
+
def CustomResultPath(self, CustomResultPath):
|
|
27001
|
+
self._CustomResultPath = CustomResultPath
|
|
27002
|
+
|
|
26842
27003
|
|
|
26843
27004
|
def _deserialize(self, params):
|
|
26844
27005
|
self._DataEngineIds = params.get("DataEngineIds")
|
|
26845
27006
|
self._DataEngineConfigCommand = params.get("DataEngineConfigCommand")
|
|
27007
|
+
self._UseLakeFs = params.get("UseLakeFs")
|
|
27008
|
+
self._CustomResultPath = params.get("CustomResultPath")
|
|
26846
27009
|
memeber_set = set(params.keys())
|
|
26847
27010
|
for name, value in vars(self).items():
|
|
26848
27011
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1212
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1202
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|