tencentcloud-sdk-python-dlc 3.0.1195__tar.gz → 3.0.1237__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.1195 → tencentcloud-sdk-python-dlc-3.0.1237}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1195 → tencentcloud-sdk-python-dlc-3.0.1237}/setup.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1195 → tencentcloud-sdk-python-dlc-3.0.1237}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1195 → tencentcloud-sdk-python-dlc-3.0.1237}/tencentcloud/dlc/v20210125/dlc_client.py +48 -2
- {tencentcloud-sdk-python-dlc-3.0.1195 → tencentcloud-sdk-python-dlc-3.0.1237}/tencentcloud/dlc/v20210125/errorcodes.py +3 -0
- {tencentcloud-sdk-python-dlc-3.0.1195 → tencentcloud-sdk-python-dlc-3.0.1237}/tencentcloud/dlc/v20210125/models.py +715 -7
- {tencentcloud-sdk-python-dlc-3.0.1195 → tencentcloud-sdk-python-dlc-3.0.1237}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-dlc-3.0.1237/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-dlc-3.0.1195/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-dlc-3.0.1195 → tencentcloud-sdk-python-dlc-3.0.1237}/README.rst +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1195 → tencentcloud-sdk-python-dlc-3.0.1237}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1195 → tencentcloud-sdk-python-dlc-3.0.1237}/tencentcloud/dlc/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1195 → tencentcloud-sdk-python-dlc-3.0.1237}/tencentcloud/dlc/v20210125/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1195 → tencentcloud-sdk-python-dlc-3.0.1237}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1195 → tencentcloud-sdk-python-dlc-3.0.1237}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1195 → tencentcloud-sdk-python-dlc-3.0.1237}/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.1237"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Dlc SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -1084,6 +1084,29 @@ class DlcClient(AbstractClient):
|
|
|
1084
1084
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1085
1085
|
|
|
1086
1086
|
|
|
1087
|
+
def DeleteTable(self, request):
|
|
1088
|
+
"""删除表
|
|
1089
|
+
|
|
1090
|
+
:param request: Request instance for DeleteTable.
|
|
1091
|
+
:type request: :class:`tencentcloud.dlc.v20210125.models.DeleteTableRequest`
|
|
1092
|
+
:rtype: :class:`tencentcloud.dlc.v20210125.models.DeleteTableResponse`
|
|
1093
|
+
|
|
1094
|
+
"""
|
|
1095
|
+
try:
|
|
1096
|
+
params = request._serialize()
|
|
1097
|
+
headers = request.headers
|
|
1098
|
+
body = self.call("DeleteTable", params, headers=headers)
|
|
1099
|
+
response = json.loads(body)
|
|
1100
|
+
model = models.DeleteTableResponse()
|
|
1101
|
+
model._deserialize(response["Response"])
|
|
1102
|
+
return model
|
|
1103
|
+
except Exception as e:
|
|
1104
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1105
|
+
raise
|
|
1106
|
+
else:
|
|
1107
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1108
|
+
|
|
1109
|
+
|
|
1087
1110
|
def DeleteThirdPartyAccessUser(self, request):
|
|
1088
1111
|
"""本接口(RegisterThirdPartyAccessUser)用于移除第三方平台访问
|
|
1089
1112
|
|
|
@@ -1407,7 +1430,7 @@ class DlcClient(AbstractClient):
|
|
|
1407
1430
|
|
|
1408
1431
|
|
|
1409
1432
|
def DescribeDataEngines(self, request):
|
|
1410
|
-
"""本接口(DescribeDataEngines)用于查询DataEngines
|
|
1433
|
+
"""本接口(DescribeDataEngines)用于查询DataEngines信息列表.
|
|
1411
1434
|
|
|
1412
1435
|
:param request: Request instance for DescribeDataEngines.
|
|
1413
1436
|
:type request: :class:`tencentcloud.dlc.v20210125.models.DescribeDataEnginesRequest`
|
|
@@ -2097,7 +2120,7 @@ class DlcClient(AbstractClient):
|
|
|
2097
2120
|
|
|
2098
2121
|
|
|
2099
2122
|
def DescribeTaskResult(self, request):
|
|
2100
|
-
"""
|
|
2123
|
+
"""查询任务结果,仅支持30天以内的任务查询结果,且返回数据大小超过近50M会进行截断。
|
|
2101
2124
|
|
|
2102
2125
|
:param request: Request instance for DescribeTaskResult.
|
|
2103
2126
|
:type request: :class:`tencentcloud.dlc.v20210125.models.DescribeTaskResultRequest`
|
|
@@ -2855,6 +2878,29 @@ class DlcClient(AbstractClient):
|
|
|
2855
2878
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2856
2879
|
|
|
2857
2880
|
|
|
2881
|
+
def QueryInternalTableWarehouse(self, request):
|
|
2882
|
+
"""本接口(QueryInternalTableWarehouse)用于获取原生表warehouse路径
|
|
2883
|
+
|
|
2884
|
+
:param request: Request instance for QueryInternalTableWarehouse.
|
|
2885
|
+
:type request: :class:`tencentcloud.dlc.v20210125.models.QueryInternalTableWarehouseRequest`
|
|
2886
|
+
:rtype: :class:`tencentcloud.dlc.v20210125.models.QueryInternalTableWarehouseResponse`
|
|
2887
|
+
|
|
2888
|
+
"""
|
|
2889
|
+
try:
|
|
2890
|
+
params = request._serialize()
|
|
2891
|
+
headers = request.headers
|
|
2892
|
+
body = self.call("QueryInternalTableWarehouse", params, headers=headers)
|
|
2893
|
+
response = json.loads(body)
|
|
2894
|
+
model = models.QueryInternalTableWarehouseResponse()
|
|
2895
|
+
model._deserialize(response["Response"])
|
|
2896
|
+
return model
|
|
2897
|
+
except Exception as e:
|
|
2898
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2899
|
+
raise
|
|
2900
|
+
else:
|
|
2901
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2902
|
+
|
|
2903
|
+
|
|
2858
2904
|
def QueryResult(self, request):
|
|
2859
2905
|
"""获取任务结果查询
|
|
2860
2906
|
|
|
@@ -680,6 +680,9 @@ UNAUTHORIZEDOPERATION_RENEWCOMPUTINGENGINE = 'UnauthorizedOperation.RenewComputi
|
|
|
680
680
|
# 子用户无权取消特定权限。
|
|
681
681
|
UNAUTHORIZEDOPERATION_REVOKEPOLICY = 'UnauthorizedOperation.RevokePolicy'
|
|
682
682
|
|
|
683
|
+
# 无引擎cam权限
|
|
684
|
+
UNAUTHORIZEDOPERATION_UNAUTHORIZEDOPERATIONCODE_NOENGINECAMPERMISSIONS = 'UnauthorizedOperation.UnauthorizedOperationCode_NoEngineCamPermissions'
|
|
685
|
+
|
|
683
686
|
# 子用户不是管理员,无权将工作组和用户解绑。
|
|
684
687
|
UNAUTHORIZEDOPERATION_UNBINDWORKGROUPSFROMUSER = 'UnauthorizedOperation.UnbindWorkgroupsFromUser'
|
|
685
688
|
|
|
@@ -1034,11 +1034,22 @@ class AssignMangedTablePropertiesResponse(AbstractModel):
|
|
|
1034
1034
|
|
|
1035
1035
|
def __init__(self):
|
|
1036
1036
|
r"""
|
|
1037
|
+
:param _Properties: 分配的原生表表属性
|
|
1038
|
+
:type Properties: list of Property
|
|
1037
1039
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1038
1040
|
:type RequestId: str
|
|
1039
1041
|
"""
|
|
1042
|
+
self._Properties = None
|
|
1040
1043
|
self._RequestId = None
|
|
1041
1044
|
|
|
1045
|
+
@property
|
|
1046
|
+
def Properties(self):
|
|
1047
|
+
return self._Properties
|
|
1048
|
+
|
|
1049
|
+
@Properties.setter
|
|
1050
|
+
def Properties(self, Properties):
|
|
1051
|
+
self._Properties = Properties
|
|
1052
|
+
|
|
1042
1053
|
@property
|
|
1043
1054
|
def RequestId(self):
|
|
1044
1055
|
return self._RequestId
|
|
@@ -1049,6 +1060,12 @@ class AssignMangedTablePropertiesResponse(AbstractModel):
|
|
|
1049
1060
|
|
|
1050
1061
|
|
|
1051
1062
|
def _deserialize(self, params):
|
|
1063
|
+
if params.get("Properties") is not None:
|
|
1064
|
+
self._Properties = []
|
|
1065
|
+
for item in params.get("Properties"):
|
|
1066
|
+
obj = Property()
|
|
1067
|
+
obj._deserialize(item)
|
|
1068
|
+
self._Properties.append(obj)
|
|
1052
1069
|
self._RequestId = params.get("RequestId")
|
|
1053
1070
|
|
|
1054
1071
|
|
|
@@ -2324,8 +2341,7 @@ class Column(AbstractModel):
|
|
|
2324
2341
|
r"""
|
|
2325
2342
|
:param _Name: 列名称,不区分大小写,最大支持25个字符。
|
|
2326
2343
|
:type Name: str
|
|
2327
|
-
:param _Type:
|
|
2328
|
-
string|tinyint|smallint|int|bigint|boolean|float|double|decimal|timestamp|date|binary|array<data_type>|map<primitive_type, data_type>|struct<col_name : data_type [COMMENT col_comment], ...>|uniontype<data_type, data_type, ...>。
|
|
2344
|
+
:param _Type: string|tinyint|smallint|int|bigint|boolean|float|double|decimal|timestamp|date|binary|array|map|struct|uniontype
|
|
2329
2345
|
:type Type: str
|
|
2330
2346
|
:param _Comment: 对该类的注释。
|
|
2331
2347
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -2351,6 +2367,9 @@ string|tinyint|smallint|int|bigint|boolean|float|double|decimal|timestamp|date|b
|
|
|
2351
2367
|
:param _IsPartition: 是否为分区字段
|
|
2352
2368
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2353
2369
|
:type IsPartition: bool
|
|
2370
|
+
:param _DataMaskStrategyInfo: 数据脱敏策略信息
|
|
2371
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2372
|
+
:type DataMaskStrategyInfo: :class:`tencentcloud.dlc.v20210125.models.DataMaskStrategyInfo`
|
|
2354
2373
|
"""
|
|
2355
2374
|
self._Name = None
|
|
2356
2375
|
self._Type = None
|
|
@@ -2362,6 +2381,7 @@ string|tinyint|smallint|int|bigint|boolean|float|double|decimal|timestamp|date|b
|
|
|
2362
2381
|
self._CreateTime = None
|
|
2363
2382
|
self._ModifiedTime = None
|
|
2364
2383
|
self._IsPartition = None
|
|
2384
|
+
self._DataMaskStrategyInfo = None
|
|
2365
2385
|
|
|
2366
2386
|
@property
|
|
2367
2387
|
def Name(self):
|
|
@@ -2443,6 +2463,14 @@ string|tinyint|smallint|int|bigint|boolean|float|double|decimal|timestamp|date|b
|
|
|
2443
2463
|
def IsPartition(self, IsPartition):
|
|
2444
2464
|
self._IsPartition = IsPartition
|
|
2445
2465
|
|
|
2466
|
+
@property
|
|
2467
|
+
def DataMaskStrategyInfo(self):
|
|
2468
|
+
return self._DataMaskStrategyInfo
|
|
2469
|
+
|
|
2470
|
+
@DataMaskStrategyInfo.setter
|
|
2471
|
+
def DataMaskStrategyInfo(self, DataMaskStrategyInfo):
|
|
2472
|
+
self._DataMaskStrategyInfo = DataMaskStrategyInfo
|
|
2473
|
+
|
|
2446
2474
|
|
|
2447
2475
|
def _deserialize(self, params):
|
|
2448
2476
|
self._Name = params.get("Name")
|
|
@@ -2455,6 +2483,9 @@ string|tinyint|smallint|int|bigint|boolean|float|double|decimal|timestamp|date|b
|
|
|
2455
2483
|
self._CreateTime = params.get("CreateTime")
|
|
2456
2484
|
self._ModifiedTime = params.get("ModifiedTime")
|
|
2457
2485
|
self._IsPartition = params.get("IsPartition")
|
|
2486
|
+
if params.get("DataMaskStrategyInfo") is not None:
|
|
2487
|
+
self._DataMaskStrategyInfo = DataMaskStrategyInfo()
|
|
2488
|
+
self._DataMaskStrategyInfo._deserialize(params.get("DataMaskStrategyInfo"))
|
|
2458
2489
|
memeber_set = set(params.keys())
|
|
2459
2490
|
for name, value in vars(self).items():
|
|
2460
2491
|
property_name = name[1:]
|
|
@@ -4569,7 +4600,7 @@ class CreateResultDownloadRequest(AbstractModel):
|
|
|
4569
4600
|
:type TaskId: str
|
|
4570
4601
|
:param _Format: 下载格式
|
|
4571
4602
|
:type Format: str
|
|
4572
|
-
:param _Force:
|
|
4603
|
+
:param _Force: 是否重新生成下载文件,仅当之前任务状态为 timeout | error 时有效
|
|
4573
4604
|
:type Force: bool
|
|
4574
4605
|
"""
|
|
4575
4606
|
self._TaskId = None
|
|
@@ -5852,12 +5883,15 @@ class CreateTasksRequest(AbstractModel):
|
|
|
5852
5883
|
:type DataEngineName: str
|
|
5853
5884
|
:param _ResourceGroupName: spark集群资源组名称
|
|
5854
5885
|
:type ResourceGroupName: str
|
|
5886
|
+
:param _IsMultiStatement: 是否使用multi- statement方式运行一批次任务,true: 是,false: 否
|
|
5887
|
+
:type IsMultiStatement: bool
|
|
5855
5888
|
"""
|
|
5856
5889
|
self._DatabaseName = None
|
|
5857
5890
|
self._Tasks = None
|
|
5858
5891
|
self._DatasourceConnectionName = None
|
|
5859
5892
|
self._DataEngineName = None
|
|
5860
5893
|
self._ResourceGroupName = None
|
|
5894
|
+
self._IsMultiStatement = None
|
|
5861
5895
|
|
|
5862
5896
|
@property
|
|
5863
5897
|
def DatabaseName(self):
|
|
@@ -5899,6 +5933,14 @@ class CreateTasksRequest(AbstractModel):
|
|
|
5899
5933
|
def ResourceGroupName(self, ResourceGroupName):
|
|
5900
5934
|
self._ResourceGroupName = ResourceGroupName
|
|
5901
5935
|
|
|
5936
|
+
@property
|
|
5937
|
+
def IsMultiStatement(self):
|
|
5938
|
+
return self._IsMultiStatement
|
|
5939
|
+
|
|
5940
|
+
@IsMultiStatement.setter
|
|
5941
|
+
def IsMultiStatement(self, IsMultiStatement):
|
|
5942
|
+
self._IsMultiStatement = IsMultiStatement
|
|
5943
|
+
|
|
5902
5944
|
|
|
5903
5945
|
def _deserialize(self, params):
|
|
5904
5946
|
self._DatabaseName = params.get("DatabaseName")
|
|
@@ -5908,6 +5950,7 @@ class CreateTasksRequest(AbstractModel):
|
|
|
5908
5950
|
self._DatasourceConnectionName = params.get("DatasourceConnectionName")
|
|
5909
5951
|
self._DataEngineName = params.get("DataEngineName")
|
|
5910
5952
|
self._ResourceGroupName = params.get("ResourceGroupName")
|
|
5953
|
+
self._IsMultiStatement = params.get("IsMultiStatement")
|
|
5911
5954
|
memeber_set = set(params.keys())
|
|
5912
5955
|
for name, value in vars(self).items():
|
|
5913
5956
|
property_name = name[1:]
|
|
@@ -8596,6 +8639,110 @@ class DataGovernPolicy(AbstractModel):
|
|
|
8596
8639
|
|
|
8597
8640
|
|
|
8598
8641
|
|
|
8642
|
+
class DataMaskStrategyInfo(AbstractModel):
|
|
8643
|
+
"""数据脱敏策略信息
|
|
8644
|
+
|
|
8645
|
+
"""
|
|
8646
|
+
|
|
8647
|
+
def __init__(self):
|
|
8648
|
+
r"""
|
|
8649
|
+
:param _StrategyName: 策略名称
|
|
8650
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8651
|
+
:type StrategyName: str
|
|
8652
|
+
:param _StrategyType: MASK_SHOW_FIRST_4; MASK_SHOW_LAST_4;MASK_HASH; MASK_DATE_SHOW_YEAR; MASK_NULL; MASK_DEFAULT 等
|
|
8653
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8654
|
+
:type StrategyType: str
|
|
8655
|
+
:param _StrategyDesc: 策略描述
|
|
8656
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8657
|
+
:type StrategyDesc: str
|
|
8658
|
+
:param _Groups: 用户组策略列表
|
|
8659
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8660
|
+
:type Groups: list of GroupInfo
|
|
8661
|
+
:param _Users: 用户子账号uin列表,按;拼接
|
|
8662
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8663
|
+
:type Users: str
|
|
8664
|
+
:param _StrategyId: 策略Id
|
|
8665
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8666
|
+
:type StrategyId: str
|
|
8667
|
+
"""
|
|
8668
|
+
self._StrategyName = None
|
|
8669
|
+
self._StrategyType = None
|
|
8670
|
+
self._StrategyDesc = None
|
|
8671
|
+
self._Groups = None
|
|
8672
|
+
self._Users = None
|
|
8673
|
+
self._StrategyId = None
|
|
8674
|
+
|
|
8675
|
+
@property
|
|
8676
|
+
def StrategyName(self):
|
|
8677
|
+
return self._StrategyName
|
|
8678
|
+
|
|
8679
|
+
@StrategyName.setter
|
|
8680
|
+
def StrategyName(self, StrategyName):
|
|
8681
|
+
self._StrategyName = StrategyName
|
|
8682
|
+
|
|
8683
|
+
@property
|
|
8684
|
+
def StrategyType(self):
|
|
8685
|
+
return self._StrategyType
|
|
8686
|
+
|
|
8687
|
+
@StrategyType.setter
|
|
8688
|
+
def StrategyType(self, StrategyType):
|
|
8689
|
+
self._StrategyType = StrategyType
|
|
8690
|
+
|
|
8691
|
+
@property
|
|
8692
|
+
def StrategyDesc(self):
|
|
8693
|
+
return self._StrategyDesc
|
|
8694
|
+
|
|
8695
|
+
@StrategyDesc.setter
|
|
8696
|
+
def StrategyDesc(self, StrategyDesc):
|
|
8697
|
+
self._StrategyDesc = StrategyDesc
|
|
8698
|
+
|
|
8699
|
+
@property
|
|
8700
|
+
def Groups(self):
|
|
8701
|
+
return self._Groups
|
|
8702
|
+
|
|
8703
|
+
@Groups.setter
|
|
8704
|
+
def Groups(self, Groups):
|
|
8705
|
+
self._Groups = Groups
|
|
8706
|
+
|
|
8707
|
+
@property
|
|
8708
|
+
def Users(self):
|
|
8709
|
+
return self._Users
|
|
8710
|
+
|
|
8711
|
+
@Users.setter
|
|
8712
|
+
def Users(self, Users):
|
|
8713
|
+
self._Users = Users
|
|
8714
|
+
|
|
8715
|
+
@property
|
|
8716
|
+
def StrategyId(self):
|
|
8717
|
+
return self._StrategyId
|
|
8718
|
+
|
|
8719
|
+
@StrategyId.setter
|
|
8720
|
+
def StrategyId(self, StrategyId):
|
|
8721
|
+
self._StrategyId = StrategyId
|
|
8722
|
+
|
|
8723
|
+
|
|
8724
|
+
def _deserialize(self, params):
|
|
8725
|
+
self._StrategyName = params.get("StrategyName")
|
|
8726
|
+
self._StrategyType = params.get("StrategyType")
|
|
8727
|
+
self._StrategyDesc = params.get("StrategyDesc")
|
|
8728
|
+
if params.get("Groups") is not None:
|
|
8729
|
+
self._Groups = []
|
|
8730
|
+
for item in params.get("Groups"):
|
|
8731
|
+
obj = GroupInfo()
|
|
8732
|
+
obj._deserialize(item)
|
|
8733
|
+
self._Groups.append(obj)
|
|
8734
|
+
self._Users = params.get("Users")
|
|
8735
|
+
self._StrategyId = params.get("StrategyId")
|
|
8736
|
+
memeber_set = set(params.keys())
|
|
8737
|
+
for name, value in vars(self).items():
|
|
8738
|
+
property_name = name[1:]
|
|
8739
|
+
if property_name in memeber_set:
|
|
8740
|
+
memeber_set.remove(property_name)
|
|
8741
|
+
if len(memeber_set) > 0:
|
|
8742
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
8743
|
+
|
|
8744
|
+
|
|
8745
|
+
|
|
8599
8746
|
class DataSourceInfo(AbstractModel):
|
|
8600
8747
|
"""数据源详细信息
|
|
8601
8748
|
|
|
@@ -8978,6 +9125,9 @@ class DatasourceConnectionConfig(AbstractModel):
|
|
|
8978
9125
|
:param _TDSQLPostgreSql: TDSQL-PostgreSQL数据源连接的属性
|
|
8979
9126
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
8980
9127
|
:type TDSQLPostgreSql: :class:`tencentcloud.dlc.v20210125.models.DataSourceInfo`
|
|
9128
|
+
:param _TCHouseD: Doris数据源连接的属性
|
|
9129
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9130
|
+
:type TCHouseD: :class:`tencentcloud.dlc.v20210125.models.TCHouseD`
|
|
8981
9131
|
"""
|
|
8982
9132
|
self._Mysql = None
|
|
8983
9133
|
self._Hive = None
|
|
@@ -8988,6 +9138,7 @@ class DatasourceConnectionConfig(AbstractModel):
|
|
|
8988
9138
|
self._ClickHouse = None
|
|
8989
9139
|
self._Elasticsearch = None
|
|
8990
9140
|
self._TDSQLPostgreSql = None
|
|
9141
|
+
self._TCHouseD = None
|
|
8991
9142
|
|
|
8992
9143
|
@property
|
|
8993
9144
|
def Mysql(self):
|
|
@@ -9061,6 +9212,14 @@ class DatasourceConnectionConfig(AbstractModel):
|
|
|
9061
9212
|
def TDSQLPostgreSql(self, TDSQLPostgreSql):
|
|
9062
9213
|
self._TDSQLPostgreSql = TDSQLPostgreSql
|
|
9063
9214
|
|
|
9215
|
+
@property
|
|
9216
|
+
def TCHouseD(self):
|
|
9217
|
+
return self._TCHouseD
|
|
9218
|
+
|
|
9219
|
+
@TCHouseD.setter
|
|
9220
|
+
def TCHouseD(self, TCHouseD):
|
|
9221
|
+
self._TCHouseD = TCHouseD
|
|
9222
|
+
|
|
9064
9223
|
|
|
9065
9224
|
def _deserialize(self, params):
|
|
9066
9225
|
if params.get("Mysql") is not None:
|
|
@@ -9090,6 +9249,9 @@ class DatasourceConnectionConfig(AbstractModel):
|
|
|
9090
9249
|
if params.get("TDSQLPostgreSql") is not None:
|
|
9091
9250
|
self._TDSQLPostgreSql = DataSourceInfo()
|
|
9092
9251
|
self._TDSQLPostgreSql._deserialize(params.get("TDSQLPostgreSql"))
|
|
9252
|
+
if params.get("TCHouseD") is not None:
|
|
9253
|
+
self._TCHouseD = TCHouseD()
|
|
9254
|
+
self._TCHouseD._deserialize(params.get("TCHouseD"))
|
|
9093
9255
|
memeber_set = set(params.keys())
|
|
9094
9256
|
for name, value in vars(self).items():
|
|
9095
9257
|
property_name = name[1:]
|
|
@@ -9767,6 +9929,66 @@ class DeleteSparkAppResponse(AbstractModel):
|
|
|
9767
9929
|
self._RequestId = params.get("RequestId")
|
|
9768
9930
|
|
|
9769
9931
|
|
|
9932
|
+
class DeleteTableRequest(AbstractModel):
|
|
9933
|
+
"""DeleteTable请求参数结构体
|
|
9934
|
+
|
|
9935
|
+
"""
|
|
9936
|
+
|
|
9937
|
+
def __init__(self):
|
|
9938
|
+
r"""
|
|
9939
|
+
:param _TableBaseInfo: 表基本信息
|
|
9940
|
+
:type TableBaseInfo: :class:`tencentcloud.dlc.v20210125.models.TableBaseInfo`
|
|
9941
|
+
"""
|
|
9942
|
+
self._TableBaseInfo = None
|
|
9943
|
+
|
|
9944
|
+
@property
|
|
9945
|
+
def TableBaseInfo(self):
|
|
9946
|
+
return self._TableBaseInfo
|
|
9947
|
+
|
|
9948
|
+
@TableBaseInfo.setter
|
|
9949
|
+
def TableBaseInfo(self, TableBaseInfo):
|
|
9950
|
+
self._TableBaseInfo = TableBaseInfo
|
|
9951
|
+
|
|
9952
|
+
|
|
9953
|
+
def _deserialize(self, params):
|
|
9954
|
+
if params.get("TableBaseInfo") is not None:
|
|
9955
|
+
self._TableBaseInfo = TableBaseInfo()
|
|
9956
|
+
self._TableBaseInfo._deserialize(params.get("TableBaseInfo"))
|
|
9957
|
+
memeber_set = set(params.keys())
|
|
9958
|
+
for name, value in vars(self).items():
|
|
9959
|
+
property_name = name[1:]
|
|
9960
|
+
if property_name in memeber_set:
|
|
9961
|
+
memeber_set.remove(property_name)
|
|
9962
|
+
if len(memeber_set) > 0:
|
|
9963
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
9964
|
+
|
|
9965
|
+
|
|
9966
|
+
|
|
9967
|
+
class DeleteTableResponse(AbstractModel):
|
|
9968
|
+
"""DeleteTable返回参数结构体
|
|
9969
|
+
|
|
9970
|
+
"""
|
|
9971
|
+
|
|
9972
|
+
def __init__(self):
|
|
9973
|
+
r"""
|
|
9974
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
9975
|
+
:type RequestId: str
|
|
9976
|
+
"""
|
|
9977
|
+
self._RequestId = None
|
|
9978
|
+
|
|
9979
|
+
@property
|
|
9980
|
+
def RequestId(self):
|
|
9981
|
+
return self._RequestId
|
|
9982
|
+
|
|
9983
|
+
@RequestId.setter
|
|
9984
|
+
def RequestId(self, RequestId):
|
|
9985
|
+
self._RequestId = RequestId
|
|
9986
|
+
|
|
9987
|
+
|
|
9988
|
+
def _deserialize(self, params):
|
|
9989
|
+
self._RequestId = params.get("RequestId")
|
|
9990
|
+
|
|
9991
|
+
|
|
9770
9992
|
class DeleteThirdPartyAccessUserRequest(AbstractModel):
|
|
9771
9993
|
"""DeleteThirdPartyAccessUser请求参数结构体
|
|
9772
9994
|
|
|
@@ -13100,6 +13322,8 @@ class DescribeNotebookSessionsRequest(AbstractModel):
|
|
|
13100
13322
|
:type Limit: int
|
|
13101
13323
|
:param _Offset: 分页参数,默认0
|
|
13102
13324
|
:type Offset: int
|
|
13325
|
+
:param _Filters: 过滤类型,支持如下的过滤类型,传参Name应为以下其中一个, engine-generation - String(引擎时代: supersql:supersql引擎,native:标准引擎):notebook-keyword - String(数据引擎名称或sessionid或sessionname的模糊搜索)
|
|
13326
|
+
:type Filters: list of Filter
|
|
13103
13327
|
"""
|
|
13104
13328
|
self._DataEngineName = None
|
|
13105
13329
|
self._State = None
|
|
@@ -13107,6 +13331,7 @@ class DescribeNotebookSessionsRequest(AbstractModel):
|
|
|
13107
13331
|
self._Asc = None
|
|
13108
13332
|
self._Limit = None
|
|
13109
13333
|
self._Offset = None
|
|
13334
|
+
self._Filters = None
|
|
13110
13335
|
|
|
13111
13336
|
@property
|
|
13112
13337
|
def DataEngineName(self):
|
|
@@ -13156,6 +13381,14 @@ class DescribeNotebookSessionsRequest(AbstractModel):
|
|
|
13156
13381
|
def Offset(self, Offset):
|
|
13157
13382
|
self._Offset = Offset
|
|
13158
13383
|
|
|
13384
|
+
@property
|
|
13385
|
+
def Filters(self):
|
|
13386
|
+
return self._Filters
|
|
13387
|
+
|
|
13388
|
+
@Filters.setter
|
|
13389
|
+
def Filters(self, Filters):
|
|
13390
|
+
self._Filters = Filters
|
|
13391
|
+
|
|
13159
13392
|
|
|
13160
13393
|
def _deserialize(self, params):
|
|
13161
13394
|
self._DataEngineName = params.get("DataEngineName")
|
|
@@ -13164,6 +13397,12 @@ class DescribeNotebookSessionsRequest(AbstractModel):
|
|
|
13164
13397
|
self._Asc = params.get("Asc")
|
|
13165
13398
|
self._Limit = params.get("Limit")
|
|
13166
13399
|
self._Offset = params.get("Offset")
|
|
13400
|
+
if params.get("Filters") is not None:
|
|
13401
|
+
self._Filters = []
|
|
13402
|
+
for item in params.get("Filters"):
|
|
13403
|
+
obj = Filter()
|
|
13404
|
+
obj._deserialize(item)
|
|
13405
|
+
self._Filters.append(obj)
|
|
13167
13406
|
memeber_set = set(params.keys())
|
|
13168
13407
|
for name, value in vars(self).items():
|
|
13169
13408
|
property_name = name[1:]
|
|
@@ -13399,10 +13638,10 @@ class DescribeResultDownloadResponse(AbstractModel):
|
|
|
13399
13638
|
:param _Reason: 任务异常原因
|
|
13400
13639
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
13401
13640
|
:type Reason: str
|
|
13402
|
-
:param _SecretId: 临时
|
|
13641
|
+
:param _SecretId: 临时SecretId
|
|
13403
13642
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
13404
13643
|
:type SecretId: str
|
|
13405
|
-
:param _SecretKey: 临时
|
|
13644
|
+
:param _SecretKey: 临时SecretKey
|
|
13406
13645
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
13407
13646
|
:type SecretKey: str
|
|
13408
13647
|
:param _Token: 临时Token
|
|
@@ -15175,7 +15414,7 @@ class DescribeTaskResultRequest(AbstractModel):
|
|
|
15175
15414
|
|
|
15176
15415
|
def __init__(self):
|
|
15177
15416
|
r"""
|
|
15178
|
-
:param _TaskId: 任务唯一ID
|
|
15417
|
+
:param _TaskId: 任务唯一ID,仅支持30天内的任务
|
|
15179
15418
|
:type TaskId: str
|
|
15180
15419
|
:param _NextToken: 上一次请求响应返回的分页信息。第一次可以不带,从头开始返回数据,每次返回MaxResults字段设置的数据量。
|
|
15181
15420
|
:type NextToken: str
|
|
@@ -15805,8 +16044,14 @@ class DescribeUpdatableDataEnginesRequest(AbstractModel):
|
|
|
15805
16044
|
r"""
|
|
15806
16045
|
:param _DataEngineConfigCommand: 引擎配置操作命令,UpdateSparkSQLLakefsPath 更新托管表路径,UpdateSparkSQLResultPath 更新结果桶路径
|
|
15807
16046
|
:type DataEngineConfigCommand: str
|
|
16047
|
+
:param _UseLakeFs: 是否使用托管存储作为结果存储
|
|
16048
|
+
:type UseLakeFs: bool
|
|
16049
|
+
:param _CustomResultPath: 用户自定义结果存储路径
|
|
16050
|
+
:type CustomResultPath: str
|
|
15808
16051
|
"""
|
|
15809
16052
|
self._DataEngineConfigCommand = None
|
|
16053
|
+
self._UseLakeFs = None
|
|
16054
|
+
self._CustomResultPath = None
|
|
15810
16055
|
|
|
15811
16056
|
@property
|
|
15812
16057
|
def DataEngineConfigCommand(self):
|
|
@@ -15816,9 +16061,27 @@ class DescribeUpdatableDataEnginesRequest(AbstractModel):
|
|
|
15816
16061
|
def DataEngineConfigCommand(self, DataEngineConfigCommand):
|
|
15817
16062
|
self._DataEngineConfigCommand = DataEngineConfigCommand
|
|
15818
16063
|
|
|
16064
|
+
@property
|
|
16065
|
+
def UseLakeFs(self):
|
|
16066
|
+
return self._UseLakeFs
|
|
16067
|
+
|
|
16068
|
+
@UseLakeFs.setter
|
|
16069
|
+
def UseLakeFs(self, UseLakeFs):
|
|
16070
|
+
self._UseLakeFs = UseLakeFs
|
|
16071
|
+
|
|
16072
|
+
@property
|
|
16073
|
+
def CustomResultPath(self):
|
|
16074
|
+
return self._CustomResultPath
|
|
16075
|
+
|
|
16076
|
+
@CustomResultPath.setter
|
|
16077
|
+
def CustomResultPath(self, CustomResultPath):
|
|
16078
|
+
self._CustomResultPath = CustomResultPath
|
|
16079
|
+
|
|
15819
16080
|
|
|
15820
16081
|
def _deserialize(self, params):
|
|
15821
16082
|
self._DataEngineConfigCommand = params.get("DataEngineConfigCommand")
|
|
16083
|
+
self._UseLakeFs = params.get("UseLakeFs")
|
|
16084
|
+
self._CustomResultPath = params.get("CustomResultPath")
|
|
15822
16085
|
memeber_set = set(params.keys())
|
|
15823
16086
|
for name, value in vars(self).items():
|
|
15824
16087
|
property_name = name[1:]
|
|
@@ -16035,7 +16298,7 @@ class DescribeUserInfoRequest(AbstractModel):
|
|
|
16035
16298
|
r"""
|
|
16036
16299
|
:param _UserId: 用户Id
|
|
16037
16300
|
:type UserId: str
|
|
16038
|
-
:param _Type:
|
|
16301
|
+
:param _Type: 必传字段,查询的信息类型,Group:工作组 DataAuth:数据权限 EngineAuth:引擎权限 RowFilter:行级别权限
|
|
16039
16302
|
:type Type: str
|
|
16040
16303
|
:param _Filters: 查询的过滤条件。
|
|
16041
16304
|
|
|
@@ -18119,6 +18382,53 @@ class GrantDLCCatalogAccessResponse(AbstractModel):
|
|
|
18119
18382
|
self._RequestId = params.get("RequestId")
|
|
18120
18383
|
|
|
18121
18384
|
|
|
18385
|
+
class GroupInfo(AbstractModel):
|
|
18386
|
+
"""数据脱敏用户组信息
|
|
18387
|
+
|
|
18388
|
+
"""
|
|
18389
|
+
|
|
18390
|
+
def __init__(self):
|
|
18391
|
+
r"""
|
|
18392
|
+
:param _WorkGroupId: 用户组ID
|
|
18393
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
18394
|
+
:type WorkGroupId: int
|
|
18395
|
+
:param _StrategyType: 策略类型
|
|
18396
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
18397
|
+
:type StrategyType: str
|
|
18398
|
+
"""
|
|
18399
|
+
self._WorkGroupId = None
|
|
18400
|
+
self._StrategyType = None
|
|
18401
|
+
|
|
18402
|
+
@property
|
|
18403
|
+
def WorkGroupId(self):
|
|
18404
|
+
return self._WorkGroupId
|
|
18405
|
+
|
|
18406
|
+
@WorkGroupId.setter
|
|
18407
|
+
def WorkGroupId(self, WorkGroupId):
|
|
18408
|
+
self._WorkGroupId = WorkGroupId
|
|
18409
|
+
|
|
18410
|
+
@property
|
|
18411
|
+
def StrategyType(self):
|
|
18412
|
+
return self._StrategyType
|
|
18413
|
+
|
|
18414
|
+
@StrategyType.setter
|
|
18415
|
+
def StrategyType(self, StrategyType):
|
|
18416
|
+
self._StrategyType = StrategyType
|
|
18417
|
+
|
|
18418
|
+
|
|
18419
|
+
def _deserialize(self, params):
|
|
18420
|
+
self._WorkGroupId = params.get("WorkGroupId")
|
|
18421
|
+
self._StrategyType = params.get("StrategyType")
|
|
18422
|
+
memeber_set = set(params.keys())
|
|
18423
|
+
for name, value in vars(self).items():
|
|
18424
|
+
property_name = name[1:]
|
|
18425
|
+
if property_name in memeber_set:
|
|
18426
|
+
memeber_set.remove(property_name)
|
|
18427
|
+
if len(memeber_set) > 0:
|
|
18428
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
18429
|
+
|
|
18430
|
+
|
|
18431
|
+
|
|
18122
18432
|
class HiveInfo(AbstractModel):
|
|
18123
18433
|
"""hive类型数据源的信息
|
|
18124
18434
|
|
|
@@ -18748,11 +19058,27 @@ class LakeFsInfo(AbstractModel):
|
|
|
18748
19058
|
:type SpaceUsedSize: float
|
|
18749
19059
|
:param _CreateTimeStamp: 创建时候的时间戳
|
|
18750
19060
|
:type CreateTimeStamp: int
|
|
19061
|
+
:param _DefaultBucket: 是否是用户默认桶,0:默认桶,1:非默认桶
|
|
19062
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
19063
|
+
:type DefaultBucket: int
|
|
19064
|
+
:param _ShortName: 托管存储short name
|
|
19065
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
19066
|
+
:type ShortName: str
|
|
19067
|
+
:param _Description: 桶描述信息
|
|
19068
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
19069
|
+
:type Description: str
|
|
19070
|
+
:param _Status: 托管桶状态,当前取值为:creating、bind、readOnly、isolate
|
|
19071
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
19072
|
+
:type Status: str
|
|
18751
19073
|
"""
|
|
18752
19074
|
self._Name = None
|
|
18753
19075
|
self._Type = None
|
|
18754
19076
|
self._SpaceUsedSize = None
|
|
18755
19077
|
self._CreateTimeStamp = None
|
|
19078
|
+
self._DefaultBucket = None
|
|
19079
|
+
self._ShortName = None
|
|
19080
|
+
self._Description = None
|
|
19081
|
+
self._Status = None
|
|
18756
19082
|
|
|
18757
19083
|
@property
|
|
18758
19084
|
def Name(self):
|
|
@@ -18786,12 +19112,48 @@ class LakeFsInfo(AbstractModel):
|
|
|
18786
19112
|
def CreateTimeStamp(self, CreateTimeStamp):
|
|
18787
19113
|
self._CreateTimeStamp = CreateTimeStamp
|
|
18788
19114
|
|
|
19115
|
+
@property
|
|
19116
|
+
def DefaultBucket(self):
|
|
19117
|
+
return self._DefaultBucket
|
|
19118
|
+
|
|
19119
|
+
@DefaultBucket.setter
|
|
19120
|
+
def DefaultBucket(self, DefaultBucket):
|
|
19121
|
+
self._DefaultBucket = DefaultBucket
|
|
19122
|
+
|
|
19123
|
+
@property
|
|
19124
|
+
def ShortName(self):
|
|
19125
|
+
return self._ShortName
|
|
19126
|
+
|
|
19127
|
+
@ShortName.setter
|
|
19128
|
+
def ShortName(self, ShortName):
|
|
19129
|
+
self._ShortName = ShortName
|
|
19130
|
+
|
|
19131
|
+
@property
|
|
19132
|
+
def Description(self):
|
|
19133
|
+
return self._Description
|
|
19134
|
+
|
|
19135
|
+
@Description.setter
|
|
19136
|
+
def Description(self, Description):
|
|
19137
|
+
self._Description = Description
|
|
19138
|
+
|
|
19139
|
+
@property
|
|
19140
|
+
def Status(self):
|
|
19141
|
+
return self._Status
|
|
19142
|
+
|
|
19143
|
+
@Status.setter
|
|
19144
|
+
def Status(self, Status):
|
|
19145
|
+
self._Status = Status
|
|
19146
|
+
|
|
18789
19147
|
|
|
18790
19148
|
def _deserialize(self, params):
|
|
18791
19149
|
self._Name = params.get("Name")
|
|
18792
19150
|
self._Type = params.get("Type")
|
|
18793
19151
|
self._SpaceUsedSize = params.get("SpaceUsedSize")
|
|
18794
19152
|
self._CreateTimeStamp = params.get("CreateTimeStamp")
|
|
19153
|
+
self._DefaultBucket = params.get("DefaultBucket")
|
|
19154
|
+
self._ShortName = params.get("ShortName")
|
|
19155
|
+
self._Description = params.get("Description")
|
|
19156
|
+
self._Status = params.get("Status")
|
|
18795
19157
|
memeber_set = set(params.keys())
|
|
18796
19158
|
for name, value in vars(self).items():
|
|
18797
19159
|
property_name = name[1:]
|
|
@@ -22155,6 +22517,88 @@ class PythonSparkImage(AbstractModel):
|
|
|
22155
22517
|
|
|
22156
22518
|
|
|
22157
22519
|
|
|
22520
|
+
class QueryInternalTableWarehouseRequest(AbstractModel):
|
|
22521
|
+
"""QueryInternalTableWarehouse请求参数结构体
|
|
22522
|
+
|
|
22523
|
+
"""
|
|
22524
|
+
|
|
22525
|
+
def __init__(self):
|
|
22526
|
+
r"""
|
|
22527
|
+
:param _DatabaseName: 库名
|
|
22528
|
+
:type DatabaseName: str
|
|
22529
|
+
:param _TableName: 表名
|
|
22530
|
+
:type TableName: str
|
|
22531
|
+
"""
|
|
22532
|
+
self._DatabaseName = None
|
|
22533
|
+
self._TableName = None
|
|
22534
|
+
|
|
22535
|
+
@property
|
|
22536
|
+
def DatabaseName(self):
|
|
22537
|
+
return self._DatabaseName
|
|
22538
|
+
|
|
22539
|
+
@DatabaseName.setter
|
|
22540
|
+
def DatabaseName(self, DatabaseName):
|
|
22541
|
+
self._DatabaseName = DatabaseName
|
|
22542
|
+
|
|
22543
|
+
@property
|
|
22544
|
+
def TableName(self):
|
|
22545
|
+
return self._TableName
|
|
22546
|
+
|
|
22547
|
+
@TableName.setter
|
|
22548
|
+
def TableName(self, TableName):
|
|
22549
|
+
self._TableName = TableName
|
|
22550
|
+
|
|
22551
|
+
|
|
22552
|
+
def _deserialize(self, params):
|
|
22553
|
+
self._DatabaseName = params.get("DatabaseName")
|
|
22554
|
+
self._TableName = params.get("TableName")
|
|
22555
|
+
memeber_set = set(params.keys())
|
|
22556
|
+
for name, value in vars(self).items():
|
|
22557
|
+
property_name = name[1:]
|
|
22558
|
+
if property_name in memeber_set:
|
|
22559
|
+
memeber_set.remove(property_name)
|
|
22560
|
+
if len(memeber_set) > 0:
|
|
22561
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
22562
|
+
|
|
22563
|
+
|
|
22564
|
+
|
|
22565
|
+
class QueryInternalTableWarehouseResponse(AbstractModel):
|
|
22566
|
+
"""QueryInternalTableWarehouse返回参数结构体
|
|
22567
|
+
|
|
22568
|
+
"""
|
|
22569
|
+
|
|
22570
|
+
def __init__(self):
|
|
22571
|
+
r"""
|
|
22572
|
+
:param _WarehousePath: warehouse路径
|
|
22573
|
+
:type WarehousePath: str
|
|
22574
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
22575
|
+
:type RequestId: str
|
|
22576
|
+
"""
|
|
22577
|
+
self._WarehousePath = None
|
|
22578
|
+
self._RequestId = None
|
|
22579
|
+
|
|
22580
|
+
@property
|
|
22581
|
+
def WarehousePath(self):
|
|
22582
|
+
return self._WarehousePath
|
|
22583
|
+
|
|
22584
|
+
@WarehousePath.setter
|
|
22585
|
+
def WarehousePath(self, WarehousePath):
|
|
22586
|
+
self._WarehousePath = WarehousePath
|
|
22587
|
+
|
|
22588
|
+
@property
|
|
22589
|
+
def RequestId(self):
|
|
22590
|
+
return self._RequestId
|
|
22591
|
+
|
|
22592
|
+
@RequestId.setter
|
|
22593
|
+
def RequestId(self, RequestId):
|
|
22594
|
+
self._RequestId = RequestId
|
|
22595
|
+
|
|
22596
|
+
|
|
22597
|
+
def _deserialize(self, params):
|
|
22598
|
+
self._WarehousePath = params.get("WarehousePath")
|
|
22599
|
+
self._RequestId = params.get("RequestId")
|
|
22600
|
+
|
|
22601
|
+
|
|
22158
22602
|
class QueryResultRequest(AbstractModel):
|
|
22159
22603
|
"""QueryResult请求参数结构体
|
|
22160
22604
|
|
|
@@ -22676,6 +23120,9 @@ class ResourceInfo(AbstractModel):
|
|
|
22676
23120
|
:param _Status: 状态
|
|
22677
23121
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
22678
23122
|
:type Status: int
|
|
23123
|
+
:param _ResourceGroupName: 标准引擎资源组信息
|
|
23124
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
23125
|
+
:type ResourceGroupName: str
|
|
22679
23126
|
"""
|
|
22680
23127
|
self._AttributionType = None
|
|
22681
23128
|
self._ResourceType = None
|
|
@@ -22683,6 +23130,7 @@ class ResourceInfo(AbstractModel):
|
|
|
22683
23130
|
self._Instance = None
|
|
22684
23131
|
self._Favor = None
|
|
22685
23132
|
self._Status = None
|
|
23133
|
+
self._ResourceGroupName = None
|
|
22686
23134
|
|
|
22687
23135
|
@property
|
|
22688
23136
|
def AttributionType(self):
|
|
@@ -22732,6 +23180,14 @@ class ResourceInfo(AbstractModel):
|
|
|
22732
23180
|
def Status(self, Status):
|
|
22733
23181
|
self._Status = Status
|
|
22734
23182
|
|
|
23183
|
+
@property
|
|
23184
|
+
def ResourceGroupName(self):
|
|
23185
|
+
return self._ResourceGroupName
|
|
23186
|
+
|
|
23187
|
+
@ResourceGroupName.setter
|
|
23188
|
+
def ResourceGroupName(self, ResourceGroupName):
|
|
23189
|
+
self._ResourceGroupName = ResourceGroupName
|
|
23190
|
+
|
|
22735
23191
|
|
|
22736
23192
|
def _deserialize(self, params):
|
|
22737
23193
|
self._AttributionType = params.get("AttributionType")
|
|
@@ -22745,6 +23201,7 @@ class ResourceInfo(AbstractModel):
|
|
|
22745
23201
|
obj._deserialize(item)
|
|
22746
23202
|
self._Favor.append(obj)
|
|
22747
23203
|
self._Status = params.get("Status")
|
|
23204
|
+
self._ResourceGroupName = params.get("ResourceGroupName")
|
|
22748
23205
|
memeber_set = set(params.keys())
|
|
22749
23206
|
for name, value in vars(self).items():
|
|
22750
23207
|
property_name = name[1:]
|
|
@@ -23237,10 +23694,18 @@ class SmartOptimizerLifecyclePolicy(AbstractModel):
|
|
|
23237
23694
|
:param _DropTable: 是否删表
|
|
23238
23695
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
23239
23696
|
:type DropTable: bool
|
|
23697
|
+
:param _ExpiredField: 过期字段
|
|
23698
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
23699
|
+
:type ExpiredField: str
|
|
23700
|
+
:param _ExpiredFieldFormat: 过期字段格式
|
|
23701
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
23702
|
+
:type ExpiredFieldFormat: str
|
|
23240
23703
|
"""
|
|
23241
23704
|
self._LifecycleEnable = None
|
|
23242
23705
|
self._Expiration = None
|
|
23243
23706
|
self._DropTable = None
|
|
23707
|
+
self._ExpiredField = None
|
|
23708
|
+
self._ExpiredFieldFormat = None
|
|
23244
23709
|
|
|
23245
23710
|
@property
|
|
23246
23711
|
def LifecycleEnable(self):
|
|
@@ -23266,11 +23731,29 @@ class SmartOptimizerLifecyclePolicy(AbstractModel):
|
|
|
23266
23731
|
def DropTable(self, DropTable):
|
|
23267
23732
|
self._DropTable = DropTable
|
|
23268
23733
|
|
|
23734
|
+
@property
|
|
23735
|
+
def ExpiredField(self):
|
|
23736
|
+
return self._ExpiredField
|
|
23737
|
+
|
|
23738
|
+
@ExpiredField.setter
|
|
23739
|
+
def ExpiredField(self, ExpiredField):
|
|
23740
|
+
self._ExpiredField = ExpiredField
|
|
23741
|
+
|
|
23742
|
+
@property
|
|
23743
|
+
def ExpiredFieldFormat(self):
|
|
23744
|
+
return self._ExpiredFieldFormat
|
|
23745
|
+
|
|
23746
|
+
@ExpiredFieldFormat.setter
|
|
23747
|
+
def ExpiredFieldFormat(self, ExpiredFieldFormat):
|
|
23748
|
+
self._ExpiredFieldFormat = ExpiredFieldFormat
|
|
23749
|
+
|
|
23269
23750
|
|
|
23270
23751
|
def _deserialize(self, params):
|
|
23271
23752
|
self._LifecycleEnable = params.get("LifecycleEnable")
|
|
23272
23753
|
self._Expiration = params.get("Expiration")
|
|
23273
23754
|
self._DropTable = params.get("DropTable")
|
|
23755
|
+
self._ExpiredField = params.get("ExpiredField")
|
|
23756
|
+
self._ExpiredFieldFormat = params.get("ExpiredFieldFormat")
|
|
23274
23757
|
memeber_set = set(params.keys())
|
|
23275
23758
|
for name, value in vars(self).items():
|
|
23276
23759
|
property_name = name[1:]
|
|
@@ -23383,6 +23866,34 @@ class SmartOptimizerWrittenPolicy(AbstractModel):
|
|
|
23383
23866
|
|
|
23384
23867
|
"""
|
|
23385
23868
|
|
|
23869
|
+
def __init__(self):
|
|
23870
|
+
r"""
|
|
23871
|
+
:param _WrittenEnable: none/enable/disable/default
|
|
23872
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
23873
|
+
:type WrittenEnable: str
|
|
23874
|
+
"""
|
|
23875
|
+
self._WrittenEnable = None
|
|
23876
|
+
|
|
23877
|
+
@property
|
|
23878
|
+
def WrittenEnable(self):
|
|
23879
|
+
return self._WrittenEnable
|
|
23880
|
+
|
|
23881
|
+
@WrittenEnable.setter
|
|
23882
|
+
def WrittenEnable(self, WrittenEnable):
|
|
23883
|
+
self._WrittenEnable = WrittenEnable
|
|
23884
|
+
|
|
23885
|
+
|
|
23886
|
+
def _deserialize(self, params):
|
|
23887
|
+
self._WrittenEnable = params.get("WrittenEnable")
|
|
23888
|
+
memeber_set = set(params.keys())
|
|
23889
|
+
for name, value in vars(self).items():
|
|
23890
|
+
property_name = name[1:]
|
|
23891
|
+
if property_name in memeber_set:
|
|
23892
|
+
memeber_set.remove(property_name)
|
|
23893
|
+
if len(memeber_set) > 0:
|
|
23894
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
23895
|
+
|
|
23896
|
+
|
|
23386
23897
|
|
|
23387
23898
|
class SmartPolicy(AbstractModel):
|
|
23388
23899
|
"""SmartPolicyRequest
|
|
@@ -24808,6 +25319,133 @@ class SwitchDataEngineResponse(AbstractModel):
|
|
|
24808
25319
|
self._RequestId = params.get("RequestId")
|
|
24809
25320
|
|
|
24810
25321
|
|
|
25322
|
+
class TCHouseD(AbstractModel):
|
|
25323
|
+
"""Doirs数据源详细信息
|
|
25324
|
+
|
|
25325
|
+
"""
|
|
25326
|
+
|
|
25327
|
+
def __init__(self):
|
|
25328
|
+
r"""
|
|
25329
|
+
:param _InstanceId: 数据源实例的唯一ID
|
|
25330
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
25331
|
+
:type InstanceId: str
|
|
25332
|
+
:param _InstanceName: 数据源名称
|
|
25333
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
25334
|
+
:type InstanceName: str
|
|
25335
|
+
:param _JdbcUrl: 数据源的JDBC
|
|
25336
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
25337
|
+
:type JdbcUrl: str
|
|
25338
|
+
:param _User: 用于访问数据源的用户
|
|
25339
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
25340
|
+
:type User: str
|
|
25341
|
+
:param _Password: 数据源访问密码,需要base64编码
|
|
25342
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
25343
|
+
:type Password: str
|
|
25344
|
+
:param _Location: 数据源的VPC和子网信息
|
|
25345
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
25346
|
+
:type Location: :class:`tencentcloud.dlc.v20210125.models.DatasourceConnectionLocation`
|
|
25347
|
+
:param _DbName: 默认数据库名
|
|
25348
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
25349
|
+
:type DbName: str
|
|
25350
|
+
:param _AccessInfo: 访问信息
|
|
25351
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
25352
|
+
:type AccessInfo: str
|
|
25353
|
+
"""
|
|
25354
|
+
self._InstanceId = None
|
|
25355
|
+
self._InstanceName = None
|
|
25356
|
+
self._JdbcUrl = None
|
|
25357
|
+
self._User = None
|
|
25358
|
+
self._Password = None
|
|
25359
|
+
self._Location = None
|
|
25360
|
+
self._DbName = None
|
|
25361
|
+
self._AccessInfo = None
|
|
25362
|
+
|
|
25363
|
+
@property
|
|
25364
|
+
def InstanceId(self):
|
|
25365
|
+
return self._InstanceId
|
|
25366
|
+
|
|
25367
|
+
@InstanceId.setter
|
|
25368
|
+
def InstanceId(self, InstanceId):
|
|
25369
|
+
self._InstanceId = InstanceId
|
|
25370
|
+
|
|
25371
|
+
@property
|
|
25372
|
+
def InstanceName(self):
|
|
25373
|
+
return self._InstanceName
|
|
25374
|
+
|
|
25375
|
+
@InstanceName.setter
|
|
25376
|
+
def InstanceName(self, InstanceName):
|
|
25377
|
+
self._InstanceName = InstanceName
|
|
25378
|
+
|
|
25379
|
+
@property
|
|
25380
|
+
def JdbcUrl(self):
|
|
25381
|
+
return self._JdbcUrl
|
|
25382
|
+
|
|
25383
|
+
@JdbcUrl.setter
|
|
25384
|
+
def JdbcUrl(self, JdbcUrl):
|
|
25385
|
+
self._JdbcUrl = JdbcUrl
|
|
25386
|
+
|
|
25387
|
+
@property
|
|
25388
|
+
def User(self):
|
|
25389
|
+
return self._User
|
|
25390
|
+
|
|
25391
|
+
@User.setter
|
|
25392
|
+
def User(self, User):
|
|
25393
|
+
self._User = User
|
|
25394
|
+
|
|
25395
|
+
@property
|
|
25396
|
+
def Password(self):
|
|
25397
|
+
return self._Password
|
|
25398
|
+
|
|
25399
|
+
@Password.setter
|
|
25400
|
+
def Password(self, Password):
|
|
25401
|
+
self._Password = Password
|
|
25402
|
+
|
|
25403
|
+
@property
|
|
25404
|
+
def Location(self):
|
|
25405
|
+
return self._Location
|
|
25406
|
+
|
|
25407
|
+
@Location.setter
|
|
25408
|
+
def Location(self, Location):
|
|
25409
|
+
self._Location = Location
|
|
25410
|
+
|
|
25411
|
+
@property
|
|
25412
|
+
def DbName(self):
|
|
25413
|
+
return self._DbName
|
|
25414
|
+
|
|
25415
|
+
@DbName.setter
|
|
25416
|
+
def DbName(self, DbName):
|
|
25417
|
+
self._DbName = DbName
|
|
25418
|
+
|
|
25419
|
+
@property
|
|
25420
|
+
def AccessInfo(self):
|
|
25421
|
+
return self._AccessInfo
|
|
25422
|
+
|
|
25423
|
+
@AccessInfo.setter
|
|
25424
|
+
def AccessInfo(self, AccessInfo):
|
|
25425
|
+
self._AccessInfo = AccessInfo
|
|
25426
|
+
|
|
25427
|
+
|
|
25428
|
+
def _deserialize(self, params):
|
|
25429
|
+
self._InstanceId = params.get("InstanceId")
|
|
25430
|
+
self._InstanceName = params.get("InstanceName")
|
|
25431
|
+
self._JdbcUrl = params.get("JdbcUrl")
|
|
25432
|
+
self._User = params.get("User")
|
|
25433
|
+
self._Password = params.get("Password")
|
|
25434
|
+
if params.get("Location") is not None:
|
|
25435
|
+
self._Location = DatasourceConnectionLocation()
|
|
25436
|
+
self._Location._deserialize(params.get("Location"))
|
|
25437
|
+
self._DbName = params.get("DbName")
|
|
25438
|
+
self._AccessInfo = params.get("AccessInfo")
|
|
25439
|
+
memeber_set = set(params.keys())
|
|
25440
|
+
for name, value in vars(self).items():
|
|
25441
|
+
property_name = name[1:]
|
|
25442
|
+
if property_name in memeber_set:
|
|
25443
|
+
memeber_set.remove(property_name)
|
|
25444
|
+
if len(memeber_set) > 0:
|
|
25445
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
25446
|
+
|
|
25447
|
+
|
|
25448
|
+
|
|
24811
25449
|
class TColumn(AbstractModel):
|
|
24812
25450
|
"""表字段描述信息
|
|
24813
25451
|
|
|
@@ -24816,20 +25454,33 @@ class TColumn(AbstractModel):
|
|
|
24816
25454
|
def __init__(self):
|
|
24817
25455
|
r"""
|
|
24818
25456
|
:param _Name: 字段名称
|
|
25457
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
24819
25458
|
:type Name: str
|
|
24820
25459
|
:param _Type: 字段类型
|
|
25460
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
24821
25461
|
:type Type: str
|
|
24822
25462
|
:param _Comment: 字段描述
|
|
25463
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
24823
25464
|
:type Comment: str
|
|
24824
25465
|
:param _Default: 字段默认值
|
|
25466
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
24825
25467
|
:type Default: str
|
|
24826
25468
|
:param _NotNull: 字段是否是非空
|
|
25469
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
24827
25470
|
:type NotNull: bool
|
|
24828
25471
|
:param _Precision: 表示整个 numeric 的长度,取值1-38
|
|
25472
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
24829
25473
|
:type Precision: int
|
|
24830
25474
|
:param _Scale: 表示小数部分的长度
|
|
24831
25475
|
Scale小于Precision
|
|
25476
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
24832
25477
|
:type Scale: int
|
|
25478
|
+
:param _Position: 字段位置,小的在前
|
|
25479
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
25480
|
+
:type Position: int
|
|
25481
|
+
:param _IsPartition: 是否为分区字段
|
|
25482
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
25483
|
+
:type IsPartition: bool
|
|
24833
25484
|
"""
|
|
24834
25485
|
self._Name = None
|
|
24835
25486
|
self._Type = None
|
|
@@ -24838,6 +25489,8 @@ Scale小于Precision
|
|
|
24838
25489
|
self._NotNull = None
|
|
24839
25490
|
self._Precision = None
|
|
24840
25491
|
self._Scale = None
|
|
25492
|
+
self._Position = None
|
|
25493
|
+
self._IsPartition = None
|
|
24841
25494
|
|
|
24842
25495
|
@property
|
|
24843
25496
|
def Name(self):
|
|
@@ -24895,6 +25548,22 @@ Scale小于Precision
|
|
|
24895
25548
|
def Scale(self, Scale):
|
|
24896
25549
|
self._Scale = Scale
|
|
24897
25550
|
|
|
25551
|
+
@property
|
|
25552
|
+
def Position(self):
|
|
25553
|
+
return self._Position
|
|
25554
|
+
|
|
25555
|
+
@Position.setter
|
|
25556
|
+
def Position(self, Position):
|
|
25557
|
+
self._Position = Position
|
|
25558
|
+
|
|
25559
|
+
@property
|
|
25560
|
+
def IsPartition(self):
|
|
25561
|
+
return self._IsPartition
|
|
25562
|
+
|
|
25563
|
+
@IsPartition.setter
|
|
25564
|
+
def IsPartition(self, IsPartition):
|
|
25565
|
+
self._IsPartition = IsPartition
|
|
25566
|
+
|
|
24898
25567
|
|
|
24899
25568
|
def _deserialize(self, params):
|
|
24900
25569
|
self._Name = params.get("Name")
|
|
@@ -24904,6 +25573,8 @@ Scale小于Precision
|
|
|
24904
25573
|
self._NotNull = params.get("NotNull")
|
|
24905
25574
|
self._Precision = params.get("Precision")
|
|
24906
25575
|
self._Scale = params.get("Scale")
|
|
25576
|
+
self._Position = params.get("Position")
|
|
25577
|
+
self._IsPartition = params.get("IsPartition")
|
|
24907
25578
|
memeber_set = set(params.keys())
|
|
24908
25579
|
for name, value in vars(self).items():
|
|
24909
25580
|
property_name = name[1:]
|
|
@@ -26778,9 +27449,15 @@ class UpdateDataEngineConfigRequest(AbstractModel):
|
|
|
26778
27449
|
:type DataEngineIds: list of str
|
|
26779
27450
|
:param _DataEngineConfigCommand: 引擎配置命令,支持UpdateSparkSQLLakefsPath(更新原生表配置)、UpdateSparkSQLResultPath(更新结果路径配置)
|
|
26780
27451
|
:type DataEngineConfigCommand: str
|
|
27452
|
+
:param _UseLakeFs: 是否使用lakefs作为结果存储
|
|
27453
|
+
:type UseLakeFs: bool
|
|
27454
|
+
:param _CustomResultPath: 用户自定义结果路径
|
|
27455
|
+
:type CustomResultPath: str
|
|
26781
27456
|
"""
|
|
26782
27457
|
self._DataEngineIds = None
|
|
26783
27458
|
self._DataEngineConfigCommand = None
|
|
27459
|
+
self._UseLakeFs = None
|
|
27460
|
+
self._CustomResultPath = None
|
|
26784
27461
|
|
|
26785
27462
|
@property
|
|
26786
27463
|
def DataEngineIds(self):
|
|
@@ -26798,10 +27475,28 @@ class UpdateDataEngineConfigRequest(AbstractModel):
|
|
|
26798
27475
|
def DataEngineConfigCommand(self, DataEngineConfigCommand):
|
|
26799
27476
|
self._DataEngineConfigCommand = DataEngineConfigCommand
|
|
26800
27477
|
|
|
27478
|
+
@property
|
|
27479
|
+
def UseLakeFs(self):
|
|
27480
|
+
return self._UseLakeFs
|
|
27481
|
+
|
|
27482
|
+
@UseLakeFs.setter
|
|
27483
|
+
def UseLakeFs(self, UseLakeFs):
|
|
27484
|
+
self._UseLakeFs = UseLakeFs
|
|
27485
|
+
|
|
27486
|
+
@property
|
|
27487
|
+
def CustomResultPath(self):
|
|
27488
|
+
return self._CustomResultPath
|
|
27489
|
+
|
|
27490
|
+
@CustomResultPath.setter
|
|
27491
|
+
def CustomResultPath(self, CustomResultPath):
|
|
27492
|
+
self._CustomResultPath = CustomResultPath
|
|
27493
|
+
|
|
26801
27494
|
|
|
26802
27495
|
def _deserialize(self, params):
|
|
26803
27496
|
self._DataEngineIds = params.get("DataEngineIds")
|
|
26804
27497
|
self._DataEngineConfigCommand = params.get("DataEngineConfigCommand")
|
|
27498
|
+
self._UseLakeFs = params.get("UseLakeFs")
|
|
27499
|
+
self._CustomResultPath = params.get("CustomResultPath")
|
|
26805
27500
|
memeber_set = set(params.keys())
|
|
26806
27501
|
for name, value in vars(self).items():
|
|
26807
27502
|
property_name = name[1:]
|
|
@@ -27320,6 +28015,9 @@ class UserDetailInfo(AbstractModel):
|
|
|
27320
28015
|
:param _RowFilterInfo: 行过滤集合
|
|
27321
28016
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
27322
28017
|
:type RowFilterInfo: :class:`tencentcloud.dlc.v20210125.models.Policys`
|
|
28018
|
+
:param _AccountType: 账号类型
|
|
28019
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
28020
|
+
:type AccountType: str
|
|
27323
28021
|
"""
|
|
27324
28022
|
self._UserId = None
|
|
27325
28023
|
self._Type = None
|
|
@@ -27330,6 +28028,7 @@ class UserDetailInfo(AbstractModel):
|
|
|
27330
28028
|
self._WorkGroupInfo = None
|
|
27331
28029
|
self._UserAlias = None
|
|
27332
28030
|
self._RowFilterInfo = None
|
|
28031
|
+
self._AccountType = None
|
|
27333
28032
|
|
|
27334
28033
|
@property
|
|
27335
28034
|
def UserId(self):
|
|
@@ -27403,6 +28102,14 @@ class UserDetailInfo(AbstractModel):
|
|
|
27403
28102
|
def RowFilterInfo(self, RowFilterInfo):
|
|
27404
28103
|
self._RowFilterInfo = RowFilterInfo
|
|
27405
28104
|
|
|
28105
|
+
@property
|
|
28106
|
+
def AccountType(self):
|
|
28107
|
+
return self._AccountType
|
|
28108
|
+
|
|
28109
|
+
@AccountType.setter
|
|
28110
|
+
def AccountType(self, AccountType):
|
|
28111
|
+
self._AccountType = AccountType
|
|
28112
|
+
|
|
27406
28113
|
|
|
27407
28114
|
def _deserialize(self, params):
|
|
27408
28115
|
self._UserId = params.get("UserId")
|
|
@@ -27422,6 +28129,7 @@ class UserDetailInfo(AbstractModel):
|
|
|
27422
28129
|
if params.get("RowFilterInfo") is not None:
|
|
27423
28130
|
self._RowFilterInfo = Policys()
|
|
27424
28131
|
self._RowFilterInfo._deserialize(params.get("RowFilterInfo"))
|
|
28132
|
+
self._AccountType = params.get("AccountType")
|
|
27425
28133
|
memeber_set = set(params.keys())
|
|
27426
28134
|
for name, value in vars(self).items():
|
|
27427
28135
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1237
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1195
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|