tencentcloud-sdk-python-dlc 3.0.1028__tar.gz → 3.0.1031__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.1028 → tencentcloud-sdk-python-dlc-3.0.1031}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1028 → tencentcloud-sdk-python-dlc-3.0.1031}/setup.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1028 → tencentcloud-sdk-python-dlc-3.0.1031}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1028 → tencentcloud-sdk-python-dlc-3.0.1031}/tencentcloud/dlc/v20210125/dlc_client.py +23 -0
- {tencentcloud-sdk-python-dlc-3.0.1028 → tencentcloud-sdk-python-dlc-3.0.1031}/tencentcloud/dlc/v20210125/errorcodes.py +3 -0
- {tencentcloud-sdk-python-dlc-3.0.1028 → tencentcloud-sdk-python-dlc-3.0.1031}/tencentcloud/dlc/v20210125/models.py +295 -1
- {tencentcloud-sdk-python-dlc-3.0.1028 → tencentcloud-sdk-python-dlc-3.0.1031}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-dlc-3.0.1031/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-dlc-3.0.1028/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-dlc-3.0.1028 → tencentcloud-sdk-python-dlc-3.0.1031}/README.rst +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1028 → tencentcloud-sdk-python-dlc-3.0.1031}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1028 → tencentcloud-sdk-python-dlc-3.0.1031}/tencentcloud/dlc/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1028 → tencentcloud-sdk-python-dlc-3.0.1031}/tencentcloud/dlc/v20210125/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1028 → tencentcloud-sdk-python-dlc-3.0.1031}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1028 → tencentcloud-sdk-python-dlc-3.0.1031}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1028 → tencentcloud-sdk-python-dlc-3.0.1031}/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.1031"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Dlc SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -1866,6 +1866,29 @@ class DlcClient(AbstractClient):
|
|
|
1866
1866
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1867
1867
|
|
|
1868
1868
|
|
|
1869
|
+
def DescribeUpdatableDataEngines(self, request):
|
|
1870
|
+
"""查询可更新配置的引擎列表
|
|
1871
|
+
|
|
1872
|
+
:param request: Request instance for DescribeUpdatableDataEngines.
|
|
1873
|
+
:type request: :class:`tencentcloud.dlc.v20210125.models.DescribeUpdatableDataEnginesRequest`
|
|
1874
|
+
:rtype: :class:`tencentcloud.dlc.v20210125.models.DescribeUpdatableDataEnginesResponse`
|
|
1875
|
+
|
|
1876
|
+
"""
|
|
1877
|
+
try:
|
|
1878
|
+
params = request._serialize()
|
|
1879
|
+
headers = request.headers
|
|
1880
|
+
body = self.call("DescribeUpdatableDataEngines", params, headers=headers)
|
|
1881
|
+
response = json.loads(body)
|
|
1882
|
+
model = models.DescribeUpdatableDataEnginesResponse()
|
|
1883
|
+
model._deserialize(response["Response"])
|
|
1884
|
+
return model
|
|
1885
|
+
except Exception as e:
|
|
1886
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1887
|
+
raise
|
|
1888
|
+
else:
|
|
1889
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1890
|
+
|
|
1891
|
+
|
|
1869
1892
|
def DescribeUserDataEngineConfig(self, request):
|
|
1870
1893
|
"""查询用户自定义引擎参数
|
|
1871
1894
|
|
|
@@ -299,6 +299,9 @@ INVALIDPARAMETER_INVALIDDRIVERSIZE = 'InvalidParameter.InvalidDriverSize'
|
|
|
299
299
|
# 指定Excutor动态数量必须为当前最大值
|
|
300
300
|
INVALIDPARAMETER_INVALIDDYNAMICALLOCATIONMAXEXECUTORS = 'InvalidParameter.InvalidDynamicAllocationMaxExecutors'
|
|
301
301
|
|
|
302
|
+
# 引擎执行类型不合法
|
|
303
|
+
INVALIDPARAMETER_INVALIDENGINEEXECTYPE = 'InvalidParameter.InvalidEngineExecType'
|
|
304
|
+
|
|
302
305
|
# 引擎类型不合法
|
|
303
306
|
INVALIDPARAMETER_INVALIDENGINETYPE = 'InvalidParameter.InvalidEngineType'
|
|
304
307
|
|
|
@@ -2656,7 +2656,7 @@ class CreateDataEngineRequest(AbstractModel):
|
|
|
2656
2656
|
:type Size: int
|
|
2657
2657
|
:param _PayMode: 计费类型,后付费:0,预付费:1。当前只支持后付费,不填默认为后付费。
|
|
2658
2658
|
:type PayMode: int
|
|
2659
|
-
:param _TimeSpan: 资源使用时长,后付费:固定填3600,预付费:最少填1,代表购买资源一个月,最长不超过120。默认
|
|
2659
|
+
:param _TimeSpan: 资源使用时长,后付费:固定填3600,预付费:最少填1,代表购买资源一个月,最长不超过120。默认1
|
|
2660
2660
|
:type TimeSpan: int
|
|
2661
2661
|
:param _TimeUnit: 资源使用时长的单位,后付费:s,预付费:m。默认为s
|
|
2662
2662
|
:type TimeUnit: str
|
|
@@ -2694,6 +2694,10 @@ class CreateDataEngineRequest(AbstractModel):
|
|
|
2694
2694
|
:type SessionResourceTemplate: :class:`tencentcloud.dlc.v20210125.models.SessionResourceTemplate`
|
|
2695
2695
|
:param _AutoAuthorization: 自动授权
|
|
2696
2696
|
:type AutoAuthorization: bool
|
|
2697
|
+
:param _EngineNetworkId: 引擎网络ID
|
|
2698
|
+
:type EngineNetworkId: str
|
|
2699
|
+
:param _EngineGeneration: 引擎世代,SuperSQL:代表supersql引擎,Native:代表标准引擎。默认值为SuperSQL
|
|
2700
|
+
:type EngineGeneration: str
|
|
2697
2701
|
"""
|
|
2698
2702
|
self._EngineType = None
|
|
2699
2703
|
self._DataEngineName = None
|
|
@@ -2726,6 +2730,8 @@ class CreateDataEngineRequest(AbstractModel):
|
|
|
2726
2730
|
self._ElasticLimit = None
|
|
2727
2731
|
self._SessionResourceTemplate = None
|
|
2728
2732
|
self._AutoAuthorization = None
|
|
2733
|
+
self._EngineNetworkId = None
|
|
2734
|
+
self._EngineGeneration = None
|
|
2729
2735
|
|
|
2730
2736
|
@property
|
|
2731
2737
|
def EngineType(self):
|
|
@@ -2979,6 +2985,22 @@ class CreateDataEngineRequest(AbstractModel):
|
|
|
2979
2985
|
def AutoAuthorization(self, AutoAuthorization):
|
|
2980
2986
|
self._AutoAuthorization = AutoAuthorization
|
|
2981
2987
|
|
|
2988
|
+
@property
|
|
2989
|
+
def EngineNetworkId(self):
|
|
2990
|
+
return self._EngineNetworkId
|
|
2991
|
+
|
|
2992
|
+
@EngineNetworkId.setter
|
|
2993
|
+
def EngineNetworkId(self, EngineNetworkId):
|
|
2994
|
+
self._EngineNetworkId = EngineNetworkId
|
|
2995
|
+
|
|
2996
|
+
@property
|
|
2997
|
+
def EngineGeneration(self):
|
|
2998
|
+
return self._EngineGeneration
|
|
2999
|
+
|
|
3000
|
+
@EngineGeneration.setter
|
|
3001
|
+
def EngineGeneration(self, EngineGeneration):
|
|
3002
|
+
self._EngineGeneration = EngineGeneration
|
|
3003
|
+
|
|
2982
3004
|
|
|
2983
3005
|
def _deserialize(self, params):
|
|
2984
3006
|
self._EngineType = params.get("EngineType")
|
|
@@ -3026,6 +3048,8 @@ class CreateDataEngineRequest(AbstractModel):
|
|
|
3026
3048
|
self._SessionResourceTemplate = SessionResourceTemplate()
|
|
3027
3049
|
self._SessionResourceTemplate._deserialize(params.get("SessionResourceTemplate"))
|
|
3028
3050
|
self._AutoAuthorization = params.get("AutoAuthorization")
|
|
3051
|
+
self._EngineNetworkId = params.get("EngineNetworkId")
|
|
3052
|
+
self._EngineGeneration = params.get("EngineGeneration")
|
|
3029
3053
|
memeber_set = set(params.keys())
|
|
3030
3054
|
for name, value in vars(self).items():
|
|
3031
3055
|
property_name = name[1:]
|
|
@@ -6556,6 +6580,139 @@ class DMSTableInfo(AbstractModel):
|
|
|
6556
6580
|
|
|
6557
6581
|
|
|
6558
6582
|
|
|
6583
|
+
class DataEngineBasicInfo(AbstractModel):
|
|
6584
|
+
"""DataEngine基本信息
|
|
6585
|
+
|
|
6586
|
+
"""
|
|
6587
|
+
|
|
6588
|
+
def __init__(self):
|
|
6589
|
+
r"""
|
|
6590
|
+
:param _DataEngineName: DataEngine名称
|
|
6591
|
+
:type DataEngineName: str
|
|
6592
|
+
:param _State: 数据引擎状态 -2已删除 -1失败 0初始化中 1挂起 2运行中 3准备删除 4删除中
|
|
6593
|
+
:type State: int
|
|
6594
|
+
:param _CreateTime: 创建时间
|
|
6595
|
+
:type CreateTime: int
|
|
6596
|
+
:param _UpdateTime: 更新时间
|
|
6597
|
+
:type UpdateTime: int
|
|
6598
|
+
:param _Message: 返回信息
|
|
6599
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6600
|
+
:type Message: str
|
|
6601
|
+
:param _DataEngineId: 引擎id
|
|
6602
|
+
:type DataEngineId: str
|
|
6603
|
+
:param _DataEngineType: 引擎类型,有效值:PrestoSQL/SparkSQL/SparkBatch
|
|
6604
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6605
|
+
:type DataEngineType: str
|
|
6606
|
+
:param _AppId: 用户ID
|
|
6607
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6608
|
+
:type AppId: int
|
|
6609
|
+
:param _UserUin: 账号ID
|
|
6610
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6611
|
+
:type UserUin: str
|
|
6612
|
+
"""
|
|
6613
|
+
self._DataEngineName = None
|
|
6614
|
+
self._State = None
|
|
6615
|
+
self._CreateTime = None
|
|
6616
|
+
self._UpdateTime = None
|
|
6617
|
+
self._Message = None
|
|
6618
|
+
self._DataEngineId = None
|
|
6619
|
+
self._DataEngineType = None
|
|
6620
|
+
self._AppId = None
|
|
6621
|
+
self._UserUin = None
|
|
6622
|
+
|
|
6623
|
+
@property
|
|
6624
|
+
def DataEngineName(self):
|
|
6625
|
+
return self._DataEngineName
|
|
6626
|
+
|
|
6627
|
+
@DataEngineName.setter
|
|
6628
|
+
def DataEngineName(self, DataEngineName):
|
|
6629
|
+
self._DataEngineName = DataEngineName
|
|
6630
|
+
|
|
6631
|
+
@property
|
|
6632
|
+
def State(self):
|
|
6633
|
+
return self._State
|
|
6634
|
+
|
|
6635
|
+
@State.setter
|
|
6636
|
+
def State(self, State):
|
|
6637
|
+
self._State = State
|
|
6638
|
+
|
|
6639
|
+
@property
|
|
6640
|
+
def CreateTime(self):
|
|
6641
|
+
return self._CreateTime
|
|
6642
|
+
|
|
6643
|
+
@CreateTime.setter
|
|
6644
|
+
def CreateTime(self, CreateTime):
|
|
6645
|
+
self._CreateTime = CreateTime
|
|
6646
|
+
|
|
6647
|
+
@property
|
|
6648
|
+
def UpdateTime(self):
|
|
6649
|
+
return self._UpdateTime
|
|
6650
|
+
|
|
6651
|
+
@UpdateTime.setter
|
|
6652
|
+
def UpdateTime(self, UpdateTime):
|
|
6653
|
+
self._UpdateTime = UpdateTime
|
|
6654
|
+
|
|
6655
|
+
@property
|
|
6656
|
+
def Message(self):
|
|
6657
|
+
return self._Message
|
|
6658
|
+
|
|
6659
|
+
@Message.setter
|
|
6660
|
+
def Message(self, Message):
|
|
6661
|
+
self._Message = Message
|
|
6662
|
+
|
|
6663
|
+
@property
|
|
6664
|
+
def DataEngineId(self):
|
|
6665
|
+
return self._DataEngineId
|
|
6666
|
+
|
|
6667
|
+
@DataEngineId.setter
|
|
6668
|
+
def DataEngineId(self, DataEngineId):
|
|
6669
|
+
self._DataEngineId = DataEngineId
|
|
6670
|
+
|
|
6671
|
+
@property
|
|
6672
|
+
def DataEngineType(self):
|
|
6673
|
+
return self._DataEngineType
|
|
6674
|
+
|
|
6675
|
+
@DataEngineType.setter
|
|
6676
|
+
def DataEngineType(self, DataEngineType):
|
|
6677
|
+
self._DataEngineType = DataEngineType
|
|
6678
|
+
|
|
6679
|
+
@property
|
|
6680
|
+
def AppId(self):
|
|
6681
|
+
return self._AppId
|
|
6682
|
+
|
|
6683
|
+
@AppId.setter
|
|
6684
|
+
def AppId(self, AppId):
|
|
6685
|
+
self._AppId = AppId
|
|
6686
|
+
|
|
6687
|
+
@property
|
|
6688
|
+
def UserUin(self):
|
|
6689
|
+
return self._UserUin
|
|
6690
|
+
|
|
6691
|
+
@UserUin.setter
|
|
6692
|
+
def UserUin(self, UserUin):
|
|
6693
|
+
self._UserUin = UserUin
|
|
6694
|
+
|
|
6695
|
+
|
|
6696
|
+
def _deserialize(self, params):
|
|
6697
|
+
self._DataEngineName = params.get("DataEngineName")
|
|
6698
|
+
self._State = params.get("State")
|
|
6699
|
+
self._CreateTime = params.get("CreateTime")
|
|
6700
|
+
self._UpdateTime = params.get("UpdateTime")
|
|
6701
|
+
self._Message = params.get("Message")
|
|
6702
|
+
self._DataEngineId = params.get("DataEngineId")
|
|
6703
|
+
self._DataEngineType = params.get("DataEngineType")
|
|
6704
|
+
self._AppId = params.get("AppId")
|
|
6705
|
+
self._UserUin = params.get("UserUin")
|
|
6706
|
+
memeber_set = set(params.keys())
|
|
6707
|
+
for name, value in vars(self).items():
|
|
6708
|
+
property_name = name[1:]
|
|
6709
|
+
if property_name in memeber_set:
|
|
6710
|
+
memeber_set.remove(property_name)
|
|
6711
|
+
if len(memeber_set) > 0:
|
|
6712
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
6713
|
+
|
|
6714
|
+
|
|
6715
|
+
|
|
6559
6716
|
class DataEngineConfigInstanceInfo(AbstractModel):
|
|
6560
6717
|
"""引擎配置信息
|
|
6561
6718
|
|
|
@@ -6930,6 +7087,12 @@ class DataEngineInfo(AbstractModel):
|
|
|
6930
7087
|
:param _AutoAuthorization: 自动授权开关
|
|
6931
7088
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6932
7089
|
:type AutoAuthorization: bool
|
|
7090
|
+
:param _EngineGeneration: 引擎版本,支持Native/SuperSQL
|
|
7091
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7092
|
+
:type EngineGeneration: str
|
|
7093
|
+
:param _EngineTypeDetail: 引擎详细类型,支持:SparkSQL/SparkBatch/PrestoSQL/Kyuubi
|
|
7094
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7095
|
+
:type EngineTypeDetail: str
|
|
6933
7096
|
"""
|
|
6934
7097
|
self._DataEngineName = None
|
|
6935
7098
|
self._EngineType = None
|
|
@@ -6977,6 +7140,8 @@ class DataEngineInfo(AbstractModel):
|
|
|
6977
7140
|
self._UserUin = None
|
|
6978
7141
|
self._SessionResourceTemplate = None
|
|
6979
7142
|
self._AutoAuthorization = None
|
|
7143
|
+
self._EngineGeneration = None
|
|
7144
|
+
self._EngineTypeDetail = None
|
|
6980
7145
|
|
|
6981
7146
|
@property
|
|
6982
7147
|
def DataEngineName(self):
|
|
@@ -7346,6 +7511,22 @@ class DataEngineInfo(AbstractModel):
|
|
|
7346
7511
|
def AutoAuthorization(self, AutoAuthorization):
|
|
7347
7512
|
self._AutoAuthorization = AutoAuthorization
|
|
7348
7513
|
|
|
7514
|
+
@property
|
|
7515
|
+
def EngineGeneration(self):
|
|
7516
|
+
return self._EngineGeneration
|
|
7517
|
+
|
|
7518
|
+
@EngineGeneration.setter
|
|
7519
|
+
def EngineGeneration(self, EngineGeneration):
|
|
7520
|
+
self._EngineGeneration = EngineGeneration
|
|
7521
|
+
|
|
7522
|
+
@property
|
|
7523
|
+
def EngineTypeDetail(self):
|
|
7524
|
+
return self._EngineTypeDetail
|
|
7525
|
+
|
|
7526
|
+
@EngineTypeDetail.setter
|
|
7527
|
+
def EngineTypeDetail(self, EngineTypeDetail):
|
|
7528
|
+
self._EngineTypeDetail = EngineTypeDetail
|
|
7529
|
+
|
|
7349
7530
|
|
|
7350
7531
|
def _deserialize(self, params):
|
|
7351
7532
|
self._DataEngineName = params.get("DataEngineName")
|
|
@@ -7408,6 +7589,8 @@ class DataEngineInfo(AbstractModel):
|
|
|
7408
7589
|
self._SessionResourceTemplate = SessionResourceTemplate()
|
|
7409
7590
|
self._SessionResourceTemplate._deserialize(params.get("SessionResourceTemplate"))
|
|
7410
7591
|
self._AutoAuthorization = params.get("AutoAuthorization")
|
|
7592
|
+
self._EngineGeneration = params.get("EngineGeneration")
|
|
7593
|
+
self._EngineTypeDetail = params.get("EngineTypeDetail")
|
|
7411
7594
|
memeber_set = set(params.keys())
|
|
7412
7595
|
for name, value in vars(self).items():
|
|
7413
7596
|
property_name = name[1:]
|
|
@@ -10278,6 +10461,10 @@ class DescribeDataEnginesRequest(AbstractModel):
|
|
|
10278
10461
|
:type EngineType: str
|
|
10279
10462
|
:param _DatasourceConnectionNameSet: 网络配置列表,若传入该参数,则返回网络配置关联的计算引擎
|
|
10280
10463
|
:type DatasourceConnectionNameSet: list of str
|
|
10464
|
+
:param _EngineGeneration: 引擎版本,有效值:Native/SuperSQL,为空时默认获取SuperSQL引擎
|
|
10465
|
+
:type EngineGeneration: str
|
|
10466
|
+
:param _EngineTypeDetail: 引擎类型,支持:SparkSQL、SparkBatch、PrestoSQL、Kyuubi
|
|
10467
|
+
:type EngineTypeDetail: str
|
|
10281
10468
|
"""
|
|
10282
10469
|
self._Offset = None
|
|
10283
10470
|
self._Filters = None
|
|
@@ -10290,6 +10477,8 @@ class DescribeDataEnginesRequest(AbstractModel):
|
|
|
10290
10477
|
self._EngineExecType = None
|
|
10291
10478
|
self._EngineType = None
|
|
10292
10479
|
self._DatasourceConnectionNameSet = None
|
|
10480
|
+
self._EngineGeneration = None
|
|
10481
|
+
self._EngineTypeDetail = None
|
|
10293
10482
|
|
|
10294
10483
|
@property
|
|
10295
10484
|
def Offset(self):
|
|
@@ -10379,6 +10568,22 @@ class DescribeDataEnginesRequest(AbstractModel):
|
|
|
10379
10568
|
def DatasourceConnectionNameSet(self, DatasourceConnectionNameSet):
|
|
10380
10569
|
self._DatasourceConnectionNameSet = DatasourceConnectionNameSet
|
|
10381
10570
|
|
|
10571
|
+
@property
|
|
10572
|
+
def EngineGeneration(self):
|
|
10573
|
+
return self._EngineGeneration
|
|
10574
|
+
|
|
10575
|
+
@EngineGeneration.setter
|
|
10576
|
+
def EngineGeneration(self, EngineGeneration):
|
|
10577
|
+
self._EngineGeneration = EngineGeneration
|
|
10578
|
+
|
|
10579
|
+
@property
|
|
10580
|
+
def EngineTypeDetail(self):
|
|
10581
|
+
return self._EngineTypeDetail
|
|
10582
|
+
|
|
10583
|
+
@EngineTypeDetail.setter
|
|
10584
|
+
def EngineTypeDetail(self, EngineTypeDetail):
|
|
10585
|
+
self._EngineTypeDetail = EngineTypeDetail
|
|
10586
|
+
|
|
10382
10587
|
|
|
10383
10588
|
def _deserialize(self, params):
|
|
10384
10589
|
self._Offset = params.get("Offset")
|
|
@@ -10397,6 +10602,8 @@ class DescribeDataEnginesRequest(AbstractModel):
|
|
|
10397
10602
|
self._EngineExecType = params.get("EngineExecType")
|
|
10398
10603
|
self._EngineType = params.get("EngineType")
|
|
10399
10604
|
self._DatasourceConnectionNameSet = params.get("DatasourceConnectionNameSet")
|
|
10605
|
+
self._EngineGeneration = params.get("EngineGeneration")
|
|
10606
|
+
self._EngineTypeDetail = params.get("EngineTypeDetail")
|
|
10400
10607
|
memeber_set = set(params.keys())
|
|
10401
10608
|
for name, value in vars(self).items():
|
|
10402
10609
|
property_name = name[1:]
|
|
@@ -13338,6 +13545,93 @@ class DescribeTasksResponse(AbstractModel):
|
|
|
13338
13545
|
self._RequestId = params.get("RequestId")
|
|
13339
13546
|
|
|
13340
13547
|
|
|
13548
|
+
class DescribeUpdatableDataEnginesRequest(AbstractModel):
|
|
13549
|
+
"""DescribeUpdatableDataEngines请求参数结构体
|
|
13550
|
+
|
|
13551
|
+
"""
|
|
13552
|
+
|
|
13553
|
+
def __init__(self):
|
|
13554
|
+
r"""
|
|
13555
|
+
:param _DataEngineConfigCommand: 引擎配置操作命令,UpdateSparkSQLLakefsPath 更新托管表路径,UpdateSparkSQLResultPath 更新结果桶路径
|
|
13556
|
+
:type DataEngineConfigCommand: str
|
|
13557
|
+
"""
|
|
13558
|
+
self._DataEngineConfigCommand = None
|
|
13559
|
+
|
|
13560
|
+
@property
|
|
13561
|
+
def DataEngineConfigCommand(self):
|
|
13562
|
+
return self._DataEngineConfigCommand
|
|
13563
|
+
|
|
13564
|
+
@DataEngineConfigCommand.setter
|
|
13565
|
+
def DataEngineConfigCommand(self, DataEngineConfigCommand):
|
|
13566
|
+
self._DataEngineConfigCommand = DataEngineConfigCommand
|
|
13567
|
+
|
|
13568
|
+
|
|
13569
|
+
def _deserialize(self, params):
|
|
13570
|
+
self._DataEngineConfigCommand = params.get("DataEngineConfigCommand")
|
|
13571
|
+
memeber_set = set(params.keys())
|
|
13572
|
+
for name, value in vars(self).items():
|
|
13573
|
+
property_name = name[1:]
|
|
13574
|
+
if property_name in memeber_set:
|
|
13575
|
+
memeber_set.remove(property_name)
|
|
13576
|
+
if len(memeber_set) > 0:
|
|
13577
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
13578
|
+
|
|
13579
|
+
|
|
13580
|
+
|
|
13581
|
+
class DescribeUpdatableDataEnginesResponse(AbstractModel):
|
|
13582
|
+
"""DescribeUpdatableDataEngines返回参数结构体
|
|
13583
|
+
|
|
13584
|
+
"""
|
|
13585
|
+
|
|
13586
|
+
def __init__(self):
|
|
13587
|
+
r"""
|
|
13588
|
+
:param _DataEngineBasicInfos: 集群基础信息
|
|
13589
|
+
:type DataEngineBasicInfos: list of DataEngineBasicInfo
|
|
13590
|
+
:param _TotalCount: 集群个数
|
|
13591
|
+
:type TotalCount: int
|
|
13592
|
+
:param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
13593
|
+
:type RequestId: str
|
|
13594
|
+
"""
|
|
13595
|
+
self._DataEngineBasicInfos = None
|
|
13596
|
+
self._TotalCount = None
|
|
13597
|
+
self._RequestId = None
|
|
13598
|
+
|
|
13599
|
+
@property
|
|
13600
|
+
def DataEngineBasicInfos(self):
|
|
13601
|
+
return self._DataEngineBasicInfos
|
|
13602
|
+
|
|
13603
|
+
@DataEngineBasicInfos.setter
|
|
13604
|
+
def DataEngineBasicInfos(self, DataEngineBasicInfos):
|
|
13605
|
+
self._DataEngineBasicInfos = DataEngineBasicInfos
|
|
13606
|
+
|
|
13607
|
+
@property
|
|
13608
|
+
def TotalCount(self):
|
|
13609
|
+
return self._TotalCount
|
|
13610
|
+
|
|
13611
|
+
@TotalCount.setter
|
|
13612
|
+
def TotalCount(self, TotalCount):
|
|
13613
|
+
self._TotalCount = TotalCount
|
|
13614
|
+
|
|
13615
|
+
@property
|
|
13616
|
+
def RequestId(self):
|
|
13617
|
+
return self._RequestId
|
|
13618
|
+
|
|
13619
|
+
@RequestId.setter
|
|
13620
|
+
def RequestId(self, RequestId):
|
|
13621
|
+
self._RequestId = RequestId
|
|
13622
|
+
|
|
13623
|
+
|
|
13624
|
+
def _deserialize(self, params):
|
|
13625
|
+
if params.get("DataEngineBasicInfos") is not None:
|
|
13626
|
+
self._DataEngineBasicInfos = []
|
|
13627
|
+
for item in params.get("DataEngineBasicInfos"):
|
|
13628
|
+
obj = DataEngineBasicInfo()
|
|
13629
|
+
obj._deserialize(item)
|
|
13630
|
+
self._DataEngineBasicInfos.append(obj)
|
|
13631
|
+
self._TotalCount = params.get("TotalCount")
|
|
13632
|
+
self._RequestId = params.get("RequestId")
|
|
13633
|
+
|
|
13634
|
+
|
|
13341
13635
|
class DescribeUserDataEngineConfigRequest(AbstractModel):
|
|
13342
13636
|
"""DescribeUserDataEngineConfig请求参数结构体
|
|
13343
13637
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1031
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1028
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|