tencentcloud-sdk-python-dlc 3.1.4__tar.gz → 3.1.18__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 (17) hide show
  1. {tencentcloud_sdk_python_dlc-3.1.4 → tencentcloud_sdk_python_dlc-3.1.18}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_dlc-3.1.4 → tencentcloud_sdk_python_dlc-3.1.18}/setup.py +1 -1
  3. {tencentcloud_sdk_python_dlc-3.1.4 → tencentcloud_sdk_python_dlc-3.1.18}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_dlc-3.1.4 → tencentcloud_sdk_python_dlc-3.1.18}/tencentcloud/dlc/v20210125/models.py +30 -0
  5. {tencentcloud_sdk_python_dlc-3.1.4 → tencentcloud_sdk_python_dlc-3.1.18}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_dlc-3.1.18/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_dlc-3.1.4/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_dlc-3.1.4 → tencentcloud_sdk_python_dlc-3.1.18}/README.rst +0 -0
  9. {tencentcloud_sdk_python_dlc-3.1.4 → tencentcloud_sdk_python_dlc-3.1.18}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_dlc-3.1.4 → tencentcloud_sdk_python_dlc-3.1.18}/tencentcloud/dlc/__init__.py +0 -0
  11. {tencentcloud_sdk_python_dlc-3.1.4 → tencentcloud_sdk_python_dlc-3.1.18}/tencentcloud/dlc/v20210125/__init__.py +0 -0
  12. {tencentcloud_sdk_python_dlc-3.1.4 → tencentcloud_sdk_python_dlc-3.1.18}/tencentcloud/dlc/v20210125/dlc_client.py +0 -0
  13. {tencentcloud_sdk_python_dlc-3.1.4 → tencentcloud_sdk_python_dlc-3.1.18}/tencentcloud/dlc/v20210125/dlc_client_async.py +0 -0
  14. {tencentcloud_sdk_python_dlc-3.1.4 → tencentcloud_sdk_python_dlc-3.1.18}/tencentcloud/dlc/v20210125/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_dlc-3.1.4 → tencentcloud_sdk_python_dlc-3.1.18}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_dlc-3.1.4 → tencentcloud_sdk_python_dlc-3.1.18}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_dlc-3.1.4 → tencentcloud_sdk_python_dlc-3.1.18}/tencentcloud_sdk_python_dlc.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-dlc
3
- Version: 3.1.4
3
+ Version: 3.1.18
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
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.4
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.18
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -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.1.4,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.18,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Dlc SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.4'
17
+ __version__ = '3.1.18'
@@ -19263,9 +19263,15 @@ class DescribeNativeSparkSessionsRequest(AbstractModel):
19263
19263
  :type DataEngineId: str
19264
19264
  :param _ResourceGroupId: 资源组ID
19265
19265
  :type ResourceGroupId: str
19266
+ :param _ProjectId: 项目ID
19267
+ :type ProjectId: str
19268
+ :param _UserUin: 用户Uin
19269
+ :type UserUin: str
19266
19270
  """
19267
19271
  self._DataEngineId = None
19268
19272
  self._ResourceGroupId = None
19273
+ self._ProjectId = None
19274
+ self._UserUin = None
19269
19275
 
19270
19276
  @property
19271
19277
  def DataEngineId(self):
@@ -19289,10 +19295,34 @@ class DescribeNativeSparkSessionsRequest(AbstractModel):
19289
19295
  def ResourceGroupId(self, ResourceGroupId):
19290
19296
  self._ResourceGroupId = ResourceGroupId
19291
19297
 
19298
+ @property
19299
+ def ProjectId(self):
19300
+ r"""项目ID
19301
+ :rtype: str
19302
+ """
19303
+ return self._ProjectId
19304
+
19305
+ @ProjectId.setter
19306
+ def ProjectId(self, ProjectId):
19307
+ self._ProjectId = ProjectId
19308
+
19309
+ @property
19310
+ def UserUin(self):
19311
+ r"""用户Uin
19312
+ :rtype: str
19313
+ """
19314
+ return self._UserUin
19315
+
19316
+ @UserUin.setter
19317
+ def UserUin(self, UserUin):
19318
+ self._UserUin = UserUin
19319
+
19292
19320
 
19293
19321
  def _deserialize(self, params):
19294
19322
  self._DataEngineId = params.get("DataEngineId")
19295
19323
  self._ResourceGroupId = params.get("ResourceGroupId")
19324
+ self._ProjectId = params.get("ProjectId")
19325
+ self._UserUin = params.get("UserUin")
19296
19326
  memeber_set = set(params.keys())
19297
19327
  for name, value in vars(self).items():
19298
19328
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-dlc
3
- Version: 3.1.4
3
+ Version: 3.1.18
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
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.4
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.18
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.18
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.4