tencentcloud-sdk-python-dlc 3.0.1391__tar.gz → 3.0.1393__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.
Files changed (16) hide show
  1. {tencentcloud-sdk-python-dlc-3.0.1391 → tencentcloud-sdk-python-dlc-3.0.1393}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-dlc-3.0.1391 → tencentcloud-sdk-python-dlc-3.0.1393}/setup.py +1 -1
  3. {tencentcloud-sdk-python-dlc-3.0.1391 → tencentcloud-sdk-python-dlc-3.0.1393}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-dlc-3.0.1391 → tencentcloud-sdk-python-dlc-3.0.1393}/tencentcloud/dlc/v20210125/dlc_client.py +23 -0
  5. {tencentcloud-sdk-python-dlc-3.0.1391 → tencentcloud-sdk-python-dlc-3.0.1393}/tencentcloud/dlc/v20210125/models.py +85 -0
  6. {tencentcloud-sdk-python-dlc-3.0.1391 → tencentcloud-sdk-python-dlc-3.0.1393}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +1 -1
  7. tencentcloud-sdk-python-dlc-3.0.1393/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
  8. tencentcloud-sdk-python-dlc-3.0.1391/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
  9. {tencentcloud-sdk-python-dlc-3.0.1391 → tencentcloud-sdk-python-dlc-3.0.1393}/README.rst +0 -0
  10. {tencentcloud-sdk-python-dlc-3.0.1391 → tencentcloud-sdk-python-dlc-3.0.1393}/setup.cfg +0 -0
  11. {tencentcloud-sdk-python-dlc-3.0.1391 → tencentcloud-sdk-python-dlc-3.0.1393}/tencentcloud/dlc/__init__.py +0 -0
  12. {tencentcloud-sdk-python-dlc-3.0.1391 → tencentcloud-sdk-python-dlc-3.0.1393}/tencentcloud/dlc/v20210125/__init__.py +0 -0
  13. {tencentcloud-sdk-python-dlc-3.0.1391 → tencentcloud-sdk-python-dlc-3.0.1393}/tencentcloud/dlc/v20210125/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-dlc-3.0.1391 → tencentcloud-sdk-python-dlc-3.0.1393}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-dlc-3.0.1391 → tencentcloud-sdk-python-dlc-3.0.1393}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-dlc-3.0.1391 → tencentcloud-sdk-python-dlc-3.0.1393}/tencentcloud_sdk_python_dlc.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-dlc
3
- Version: 3.0.1391
3
+ Version: 3.0.1393
4
4
  Summary: Tencent Cloud Dlc SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -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.1391"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1393"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Dlc SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1391'
17
+ __version__ = '3.0.1393'
@@ -2096,6 +2096,29 @@ class DlcClient(AbstractClient):
2096
2096
  raise TencentCloudSDKException(type(e).__name__, str(e))
2097
2097
 
2098
2098
 
2099
+ def DescribeTablePartitions(self, request):
2100
+ """本接口(DescribeTablePartitions)用于查询数据表分区信息
2101
+
2102
+ :param request: Request instance for DescribeTablePartitions.
2103
+ :type request: :class:`tencentcloud.dlc.v20210125.models.DescribeTablePartitionsRequest`
2104
+ :rtype: :class:`tencentcloud.dlc.v20210125.models.DescribeTablePartitionsResponse`
2105
+
2106
+ """
2107
+ try:
2108
+ params = request._serialize()
2109
+ headers = request.headers
2110
+ body = self.call("DescribeTablePartitions", params, headers=headers)
2111
+ response = json.loads(body)
2112
+ model = models.DescribeTablePartitionsResponse()
2113
+ model._deserialize(response["Response"])
2114
+ return model
2115
+ except Exception as e:
2116
+ if isinstance(e, TencentCloudSDKException):
2117
+ raise
2118
+ else:
2119
+ raise TencentCloudSDKException(type(e).__name__, str(e))
2120
+
2121
+
2099
2122
  def DescribeTables(self, request):
2100
2123
  """本接口(DescribeTables)用于查询数据表列表。
2101
2124
 
@@ -15653,6 +15653,9 @@ class DescribeDatabasesRequest(AbstractModel):
15653
15653
  :type Sort: str
15654
15654
  :param _Asc: 排序类型:false:降序(默认)、true:升序
15655
15655
  :type Asc: bool
15656
+ :param _DescribeType: 查询类型:all:全部数据(默认)、permission:有权限的数据
15657
+ 注意:此字段需要开启白名单使用,如果需要使用,请提交工单联系我们。
15658
+ :type DescribeType: str
15656
15659
  """
15657
15660
  self._Limit = None
15658
15661
  self._Offset = None
@@ -15660,6 +15663,7 @@ class DescribeDatabasesRequest(AbstractModel):
15660
15663
  self._DatasourceConnectionName = None
15661
15664
  self._Sort = None
15662
15665
  self._Asc = None
15666
+ self._DescribeType = None
15663
15667
 
15664
15668
  @property
15665
15669
  def Limit(self):
@@ -15727,6 +15731,18 @@ class DescribeDatabasesRequest(AbstractModel):
15727
15731
  def Asc(self, Asc):
15728
15732
  self._Asc = Asc
15729
15733
 
15734
+ @property
15735
+ def DescribeType(self):
15736
+ """查询类型:all:全部数据(默认)、permission:有权限的数据
15737
+ 注意:此字段需要开启白名单使用,如果需要使用,请提交工单联系我们。
15738
+ :rtype: str
15739
+ """
15740
+ return self._DescribeType
15741
+
15742
+ @DescribeType.setter
15743
+ def DescribeType(self, DescribeType):
15744
+ self._DescribeType = DescribeType
15745
+
15730
15746
 
15731
15747
  def _deserialize(self, params):
15732
15748
  self._Limit = params.get("Limit")
@@ -15735,6 +15751,7 @@ class DescribeDatabasesRequest(AbstractModel):
15735
15751
  self._DatasourceConnectionName = params.get("DatasourceConnectionName")
15736
15752
  self._Sort = params.get("Sort")
15737
15753
  self._Asc = params.get("Asc")
15754
+ self._DescribeType = params.get("DescribeType")
15738
15755
  memeber_set = set(params.keys())
15739
15756
  for name, value in vars(self).items():
15740
15757
  property_name = name[1:]
@@ -18684,6 +18701,40 @@ class DescribeSubUserAccessPolicyResponse(AbstractModel):
18684
18701
  self._RequestId = params.get("RequestId")
18685
18702
 
18686
18703
 
18704
+ class DescribeTablePartitionsRequest(AbstractModel):
18705
+ """DescribeTablePartitions请求参数结构体
18706
+
18707
+ """
18708
+
18709
+
18710
+ class DescribeTablePartitionsResponse(AbstractModel):
18711
+ """DescribeTablePartitions返回参数结构体
18712
+
18713
+ """
18714
+
18715
+ def __init__(self):
18716
+ r"""
18717
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
18718
+ :type RequestId: str
18719
+ """
18720
+ self._RequestId = None
18721
+
18722
+ @property
18723
+ def RequestId(self):
18724
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
18725
+ :rtype: str
18726
+ """
18727
+ return self._RequestId
18728
+
18729
+ @RequestId.setter
18730
+ def RequestId(self, RequestId):
18731
+ self._RequestId = RequestId
18732
+
18733
+
18734
+ def _deserialize(self, params):
18735
+ self._RequestId = params.get("RequestId")
18736
+
18737
+
18687
18738
  class DescribeTableRequest(AbstractModel):
18688
18739
  """DescribeTable请求参数结构体
18689
18740
 
@@ -19079,6 +19130,9 @@ table-id - String - (过滤条件)table id形如:12342。
19079
19130
  :type TableType: str
19080
19131
  :param _TableFormat: 筛选字段-表格式:不传(默认)为查全部;LAKEFS:托管表;ICEBERG:非托管iceberg表;HIVE:非托管hive表;OTHER:非托管其它;
19081
19132
  :type TableFormat: str
19133
+ :param _DescribeType: 查询类型:all:全部数据(默认)、permission:有权限的数据
19134
+ 注意:此字段需要开启白名单使用,如果需要使用,请提交工单联系我们。
19135
+ :type DescribeType: str
19082
19136
  """
19083
19137
  self._DatabaseName = None
19084
19138
  self._Limit = None
@@ -19091,6 +19145,7 @@ table-id - String - (过滤条件)table id形如:12342。
19091
19145
  self._Asc = None
19092
19146
  self._TableType = None
19093
19147
  self._TableFormat = None
19148
+ self._DescribeType = None
19094
19149
 
19095
19150
  @property
19096
19151
  def DatabaseName(self):
@@ -19215,6 +19270,18 @@ table-id - String - (过滤条件)table id形如:12342。
19215
19270
  def TableFormat(self, TableFormat):
19216
19271
  self._TableFormat = TableFormat
19217
19272
 
19273
+ @property
19274
+ def DescribeType(self):
19275
+ """查询类型:all:全部数据(默认)、permission:有权限的数据
19276
+ 注意:此字段需要开启白名单使用,如果需要使用,请提交工单联系我们。
19277
+ :rtype: str
19278
+ """
19279
+ return self._DescribeType
19280
+
19281
+ @DescribeType.setter
19282
+ def DescribeType(self, DescribeType):
19283
+ self._DescribeType = DescribeType
19284
+
19218
19285
 
19219
19286
  def _deserialize(self, params):
19220
19287
  self._DatabaseName = params.get("DatabaseName")
@@ -19233,6 +19300,7 @@ table-id - String - (过滤条件)table id形如:12342。
19233
19300
  self._Asc = params.get("Asc")
19234
19301
  self._TableType = params.get("TableType")
19235
19302
  self._TableFormat = params.get("TableFormat")
19303
+ self._DescribeType = params.get("DescribeType")
19236
19304
  memeber_set = set(params.keys())
19237
19305
  for name, value in vars(self).items():
19238
19306
  property_name = name[1:]
@@ -21685,6 +21753,9 @@ view-id - String - (过滤条件)view id形如:12342。
21685
21753
  :type StartTime: str
21686
21754
  :param _EndTime: 按视图更新时间筛选,结束时间,如2021-11-12 00:00:00
21687
21755
  :type EndTime: str
21756
+ :param _DescribeType: 查询类型:all:全部数据(默认)、permission:有权限的数据
21757
+ 注意:此字段需要开启白名单使用,如果需要使用,请提交工单联系我们。
21758
+ :type DescribeType: str
21688
21759
  """
21689
21760
  self._DatabaseName = None
21690
21761
  self._Limit = None
@@ -21695,6 +21766,7 @@ view-id - String - (过滤条件)view id形如:12342。
21695
21766
  self._Asc = None
21696
21767
  self._StartTime = None
21697
21768
  self._EndTime = None
21769
+ self._DescribeType = None
21698
21770
 
21699
21771
  @property
21700
21772
  def DatabaseName(self):
@@ -21797,6 +21869,18 @@ view-id - String - (过滤条件)view id形如:12342。
21797
21869
  def EndTime(self, EndTime):
21798
21870
  self._EndTime = EndTime
21799
21871
 
21872
+ @property
21873
+ def DescribeType(self):
21874
+ """查询类型:all:全部数据(默认)、permission:有权限的数据
21875
+ 注意:此字段需要开启白名单使用,如果需要使用,请提交工单联系我们。
21876
+ :rtype: str
21877
+ """
21878
+ return self._DescribeType
21879
+
21880
+ @DescribeType.setter
21881
+ def DescribeType(self, DescribeType):
21882
+ self._DescribeType = DescribeType
21883
+
21800
21884
 
21801
21885
  def _deserialize(self, params):
21802
21886
  self._DatabaseName = params.get("DatabaseName")
@@ -21813,6 +21897,7 @@ view-id - String - (过滤条件)view id形如:12342。
21813
21897
  self._Asc = params.get("Asc")
21814
21898
  self._StartTime = params.get("StartTime")
21815
21899
  self._EndTime = params.get("EndTime")
21900
+ self._DescribeType = params.get("DescribeType")
21816
21901
  memeber_set = set(params.keys())
21817
21902
  for name, value in vars(self).items():
21818
21903
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-dlc
3
- Version: 3.0.1391
3
+ Version: 3.0.1393
4
4
  Summary: Tencent Cloud Dlc SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1393
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1391