tencentcloud-sdk-python-dlc 3.0.1133__tar.gz → 3.0.1137__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.1133 → tencentcloud-sdk-python-dlc-3.0.1137}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-dlc-3.0.1133 → tencentcloud-sdk-python-dlc-3.0.1137}/setup.py +1 -1
  3. {tencentcloud-sdk-python-dlc-3.0.1133 → tencentcloud-sdk-python-dlc-3.0.1137}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-dlc-3.0.1133 → tencentcloud-sdk-python-dlc-3.0.1137}/tencentcloud/dlc/v20210125/models.py +39 -0
  5. {tencentcloud-sdk-python-dlc-3.0.1133 → tencentcloud-sdk-python-dlc-3.0.1137}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-dlc-3.0.1137/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-dlc-3.0.1133/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-dlc-3.0.1133 → tencentcloud-sdk-python-dlc-3.0.1137}/README.rst +0 -0
  9. {tencentcloud-sdk-python-dlc-3.0.1133 → tencentcloud-sdk-python-dlc-3.0.1137}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-dlc-3.0.1133 → tencentcloud-sdk-python-dlc-3.0.1137}/tencentcloud/dlc/__init__.py +0 -0
  11. {tencentcloud-sdk-python-dlc-3.0.1133 → tencentcloud-sdk-python-dlc-3.0.1137}/tencentcloud/dlc/v20210125/__init__.py +0 -0
  12. {tencentcloud-sdk-python-dlc-3.0.1133 → tencentcloud-sdk-python-dlc-3.0.1137}/tencentcloud/dlc/v20210125/dlc_client.py +0 -0
  13. {tencentcloud-sdk-python-dlc-3.0.1133 → tencentcloud-sdk-python-dlc-3.0.1137}/tencentcloud/dlc/v20210125/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-dlc-3.0.1133 → tencentcloud-sdk-python-dlc-3.0.1137}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-dlc-3.0.1133 → tencentcloud-sdk-python-dlc-3.0.1137}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-dlc-3.0.1133 → tencentcloud-sdk-python-dlc-3.0.1137}/tencentcloud_sdk_python_dlc.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-dlc
3
- Version: 3.0.1133
3
+ Version: 3.0.1137
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.1133"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1137"],
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.1133'
17
+ __version__ = '3.0.1137'
@@ -11811,6 +11811,15 @@ class DescribeNotebookSessionStatementSqlResultResponse(AbstractModel):
11811
11811
  :param _OutputPath: 存储结果地址
11812
11812
  注意:此字段可能返回 null,表示取不到有效值。
11813
11813
  :type OutputPath: str
11814
+ :param _UseTime: 引擎计算耗时
11815
+ 注意:此字段可能返回 null,表示取不到有效值。
11816
+ :type UseTime: int
11817
+ :param _AffectRows: 结果条数
11818
+ 注意:此字段可能返回 null,表示取不到有效值。
11819
+ :type AffectRows: int
11820
+ :param _DataAmount: 数据扫描量
11821
+ 注意:此字段可能返回 null,表示取不到有效值。
11822
+ :type DataAmount: int
11814
11823
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
11815
11824
  :type RequestId: str
11816
11825
  """
@@ -11819,6 +11828,9 @@ class DescribeNotebookSessionStatementSqlResultResponse(AbstractModel):
11819
11828
  self._ResultSchema = None
11820
11829
  self._NextToken = None
11821
11830
  self._OutputPath = None
11831
+ self._UseTime = None
11832
+ self._AffectRows = None
11833
+ self._DataAmount = None
11822
11834
  self._RequestId = None
11823
11835
 
11824
11836
  @property
@@ -11861,6 +11873,30 @@ class DescribeNotebookSessionStatementSqlResultResponse(AbstractModel):
11861
11873
  def OutputPath(self, OutputPath):
11862
11874
  self._OutputPath = OutputPath
11863
11875
 
11876
+ @property
11877
+ def UseTime(self):
11878
+ return self._UseTime
11879
+
11880
+ @UseTime.setter
11881
+ def UseTime(self, UseTime):
11882
+ self._UseTime = UseTime
11883
+
11884
+ @property
11885
+ def AffectRows(self):
11886
+ return self._AffectRows
11887
+
11888
+ @AffectRows.setter
11889
+ def AffectRows(self, AffectRows):
11890
+ self._AffectRows = AffectRows
11891
+
11892
+ @property
11893
+ def DataAmount(self):
11894
+ return self._DataAmount
11895
+
11896
+ @DataAmount.setter
11897
+ def DataAmount(self, DataAmount):
11898
+ self._DataAmount = DataAmount
11899
+
11864
11900
  @property
11865
11901
  def RequestId(self):
11866
11902
  return self._RequestId
@@ -11881,6 +11917,9 @@ class DescribeNotebookSessionStatementSqlResultResponse(AbstractModel):
11881
11917
  self._ResultSchema.append(obj)
11882
11918
  self._NextToken = params.get("NextToken")
11883
11919
  self._OutputPath = params.get("OutputPath")
11920
+ self._UseTime = params.get("UseTime")
11921
+ self._AffectRows = params.get("AffectRows")
11922
+ self._DataAmount = params.get("DataAmount")
11884
11923
  self._RequestId = params.get("RequestId")
11885
11924
 
11886
11925
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-dlc
3
- Version: 3.0.1133
3
+ Version: 3.0.1137
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.1137
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1133