tencentcloud-sdk-python-dlc 3.0.1333__tar.gz → 3.0.1335__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.1333 → tencentcloud-sdk-python-dlc-3.0.1335}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1333 → tencentcloud-sdk-python-dlc-3.0.1335}/setup.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1333 → tencentcloud-sdk-python-dlc-3.0.1335}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dlc-3.0.1333 → tencentcloud-sdk-python-dlc-3.0.1335}/tencentcloud/dlc/v20210125/models.py +32 -0
- {tencentcloud-sdk-python-dlc-3.0.1333 → tencentcloud-sdk-python-dlc-3.0.1335}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-dlc-3.0.1335/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-dlc-3.0.1333/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-dlc-3.0.1333 → tencentcloud-sdk-python-dlc-3.0.1335}/README.rst +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1333 → tencentcloud-sdk-python-dlc-3.0.1335}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1333 → tencentcloud-sdk-python-dlc-3.0.1335}/tencentcloud/dlc/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1333 → tencentcloud-sdk-python-dlc-3.0.1335}/tencentcloud/dlc/v20210125/__init__.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1333 → tencentcloud-sdk-python-dlc-3.0.1335}/tencentcloud/dlc/v20210125/dlc_client.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1333 → tencentcloud-sdk-python-dlc-3.0.1335}/tencentcloud/dlc/v20210125/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1333 → tencentcloud-sdk-python-dlc-3.0.1335}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1333 → tencentcloud-sdk-python-dlc-3.0.1335}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dlc-3.0.1333 → tencentcloud-sdk-python-dlc-3.0.1335}/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.1335"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Dlc SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -16070,10 +16070,13 @@ class DescribeNotebookSessionStatementSqlResultRequest(AbstractModel):
|
|
|
16070
16070
|
:type MaxResults: int
|
|
16071
16071
|
:param _NextToken: 上一次请求响应返回的分页信息。第一次可以不带,从头开始返回数据,每次返回MaxResults字段设置的数据量。
|
|
16072
16072
|
:type NextToken: str
|
|
16073
|
+
:param _BatchId: 批次Id
|
|
16074
|
+
:type BatchId: str
|
|
16073
16075
|
"""
|
|
16074
16076
|
self._TaskId = None
|
|
16075
16077
|
self._MaxResults = None
|
|
16076
16078
|
self._NextToken = None
|
|
16079
|
+
self._BatchId = None
|
|
16077
16080
|
|
|
16078
16081
|
@property
|
|
16079
16082
|
def TaskId(self):
|
|
@@ -16108,11 +16111,23 @@ class DescribeNotebookSessionStatementSqlResultRequest(AbstractModel):
|
|
|
16108
16111
|
def NextToken(self, NextToken):
|
|
16109
16112
|
self._NextToken = NextToken
|
|
16110
16113
|
|
|
16114
|
+
@property
|
|
16115
|
+
def BatchId(self):
|
|
16116
|
+
"""批次Id
|
|
16117
|
+
:rtype: str
|
|
16118
|
+
"""
|
|
16119
|
+
return self._BatchId
|
|
16120
|
+
|
|
16121
|
+
@BatchId.setter
|
|
16122
|
+
def BatchId(self, BatchId):
|
|
16123
|
+
self._BatchId = BatchId
|
|
16124
|
+
|
|
16111
16125
|
|
|
16112
16126
|
def _deserialize(self, params):
|
|
16113
16127
|
self._TaskId = params.get("TaskId")
|
|
16114
16128
|
self._MaxResults = params.get("MaxResults")
|
|
16115
16129
|
self._NextToken = params.get("NextToken")
|
|
16130
|
+
self._BatchId = params.get("BatchId")
|
|
16116
16131
|
memeber_set = set(params.keys())
|
|
16117
16132
|
for name, value in vars(self).items():
|
|
16118
16133
|
property_name = name[1:]
|
|
@@ -16151,6 +16166,9 @@ class DescribeNotebookSessionStatementSqlResultResponse(AbstractModel):
|
|
|
16151
16166
|
:param _DataAmount: 数据扫描量
|
|
16152
16167
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
16153
16168
|
:type DataAmount: int
|
|
16169
|
+
:param _UiUrl: spark ui地址
|
|
16170
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
16171
|
+
:type UiUrl: str
|
|
16154
16172
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
16155
16173
|
:type RequestId: str
|
|
16156
16174
|
"""
|
|
@@ -16162,6 +16180,7 @@ class DescribeNotebookSessionStatementSqlResultResponse(AbstractModel):
|
|
|
16162
16180
|
self._UseTime = None
|
|
16163
16181
|
self._AffectRows = None
|
|
16164
16182
|
self._DataAmount = None
|
|
16183
|
+
self._UiUrl = None
|
|
16165
16184
|
self._RequestId = None
|
|
16166
16185
|
|
|
16167
16186
|
@property
|
|
@@ -16257,6 +16276,18 @@ class DescribeNotebookSessionStatementSqlResultResponse(AbstractModel):
|
|
|
16257
16276
|
def DataAmount(self, DataAmount):
|
|
16258
16277
|
self._DataAmount = DataAmount
|
|
16259
16278
|
|
|
16279
|
+
@property
|
|
16280
|
+
def UiUrl(self):
|
|
16281
|
+
"""spark ui地址
|
|
16282
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
16283
|
+
:rtype: str
|
|
16284
|
+
"""
|
|
16285
|
+
return self._UiUrl
|
|
16286
|
+
|
|
16287
|
+
@UiUrl.setter
|
|
16288
|
+
def UiUrl(self, UiUrl):
|
|
16289
|
+
self._UiUrl = UiUrl
|
|
16290
|
+
|
|
16260
16291
|
@property
|
|
16261
16292
|
def RequestId(self):
|
|
16262
16293
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -16283,6 +16314,7 @@ class DescribeNotebookSessionStatementSqlResultResponse(AbstractModel):
|
|
|
16283
16314
|
self._UseTime = params.get("UseTime")
|
|
16284
16315
|
self._AffectRows = params.get("AffectRows")
|
|
16285
16316
|
self._DataAmount = params.get("DataAmount")
|
|
16317
|
+
self._UiUrl = params.get("UiUrl")
|
|
16286
16318
|
self._RequestId = params.get("RequestId")
|
|
16287
16319
|
|
|
16288
16320
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1335
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1333
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|