tencentcloud-sdk-python-emr 3.1.79__tar.gz → 3.1.81__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_emr-3.1.79 → tencentcloud_sdk_python_emr-3.1.81}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_emr-3.1.79 → tencentcloud_sdk_python_emr-3.1.81}/setup.py +1 -1
- {tencentcloud_sdk_python_emr-3.1.79 → tencentcloud_sdk_python_emr-3.1.81}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_emr-3.1.79 → tencentcloud_sdk_python_emr-3.1.81}/tencentcloud/emr/v20190103/models.py +30 -0
- {tencentcloud_sdk_python_emr-3.1.79 → tencentcloud_sdk_python_emr-3.1.81}/tencentcloud_sdk_python_emr.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_emr-3.1.81/tencentcloud_sdk_python_emr.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_emr-3.1.79/tencentcloud_sdk_python_emr.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_emr-3.1.79 → tencentcloud_sdk_python_emr-3.1.81}/README.rst +0 -0
- {tencentcloud_sdk_python_emr-3.1.79 → tencentcloud_sdk_python_emr-3.1.81}/setup.cfg +0 -0
- {tencentcloud_sdk_python_emr-3.1.79 → tencentcloud_sdk_python_emr-3.1.81}/tencentcloud/emr/__init__.py +0 -0
- {tencentcloud_sdk_python_emr-3.1.79 → tencentcloud_sdk_python_emr-3.1.81}/tencentcloud/emr/v20190103/__init__.py +0 -0
- {tencentcloud_sdk_python_emr-3.1.79 → tencentcloud_sdk_python_emr-3.1.81}/tencentcloud/emr/v20190103/emr_client.py +0 -0
- {tencentcloud_sdk_python_emr-3.1.79 → tencentcloud_sdk_python_emr-3.1.81}/tencentcloud/emr/v20190103/emr_client_async.py +0 -0
- {tencentcloud_sdk_python_emr-3.1.79 → tencentcloud_sdk_python_emr-3.1.81}/tencentcloud/emr/v20190103/errorcodes.py +0 -0
- {tencentcloud_sdk_python_emr-3.1.79 → tencentcloud_sdk_python_emr-3.1.81}/tencentcloud_sdk_python_emr.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_emr-3.1.79 → tencentcloud_sdk_python_emr-3.1.81}/tencentcloud_sdk_python_emr.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_emr-3.1.79 → tencentcloud_sdk_python_emr-3.1.81}/tencentcloud_sdk_python_emr.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-emr
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.81
|
|
4
4
|
Summary: Tencent Cloud Emr 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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.81
|
|
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-emr',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.81,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Emr SDK for Python',
|
|
@@ -5075,6 +5075,8 @@ class CreateClusterRequest(AbstractModel):
|
|
|
5075
5075
|
:type SgIP: str
|
|
5076
5076
|
:param _PartitionNumber: <p>分区置放群组分区</p>
|
|
5077
5077
|
:type PartitionNumber: int
|
|
5078
|
+
:param _WebUiVersion: <p>服务ui地址</p><p>枚举值:</p><ul><li>0: 服务ui地址,只返回1条服务ui地址</li><li>1: 服务ui地址,如果服务含有多个ui地址将全部返回,例如impala的Impalad、StateStore、Catalogd</li></ul><p>默认值:0</p>
|
|
5079
|
+
:type WebUiVersion: int
|
|
5078
5080
|
"""
|
|
5079
5081
|
self._ProductVersion = None
|
|
5080
5082
|
self._EnableSupportHAFlag = None
|
|
@@ -5103,6 +5105,7 @@ class CreateClusterRequest(AbstractModel):
|
|
|
5103
5105
|
self._NeedCdbAudit = None
|
|
5104
5106
|
self._SgIP = None
|
|
5105
5107
|
self._PartitionNumber = None
|
|
5108
|
+
self._WebUiVersion = None
|
|
5106
5109
|
|
|
5107
5110
|
@property
|
|
5108
5111
|
def ProductVersion(self):
|
|
@@ -5401,6 +5404,17 @@ class CreateClusterRequest(AbstractModel):
|
|
|
5401
5404
|
def PartitionNumber(self, PartitionNumber):
|
|
5402
5405
|
self._PartitionNumber = PartitionNumber
|
|
5403
5406
|
|
|
5407
|
+
@property
|
|
5408
|
+
def WebUiVersion(self):
|
|
5409
|
+
r"""<p>服务ui地址</p><p>枚举值:</p><ul><li>0: 服务ui地址,只返回1条服务ui地址</li><li>1: 服务ui地址,如果服务含有多个ui地址将全部返回,例如impala的Impalad、StateStore、Catalogd</li></ul><p>默认值:0</p>
|
|
5410
|
+
:rtype: int
|
|
5411
|
+
"""
|
|
5412
|
+
return self._WebUiVersion
|
|
5413
|
+
|
|
5414
|
+
@WebUiVersion.setter
|
|
5415
|
+
def WebUiVersion(self, WebUiVersion):
|
|
5416
|
+
self._WebUiVersion = WebUiVersion
|
|
5417
|
+
|
|
5404
5418
|
|
|
5405
5419
|
def _deserialize(self, params):
|
|
5406
5420
|
self._ProductVersion = params.get("ProductVersion")
|
|
@@ -5463,6 +5477,7 @@ class CreateClusterRequest(AbstractModel):
|
|
|
5463
5477
|
self._NeedCdbAudit = params.get("NeedCdbAudit")
|
|
5464
5478
|
self._SgIP = params.get("SgIP")
|
|
5465
5479
|
self._PartitionNumber = params.get("PartitionNumber")
|
|
5480
|
+
self._WebUiVersion = params.get("WebUiVersion")
|
|
5466
5481
|
memeber_set = set(params.keys())
|
|
5467
5482
|
for name, value in vars(self).items():
|
|
5468
5483
|
property_name = name[1:]
|
|
@@ -5705,6 +5720,8 @@ class CreateInstanceRequest(AbstractModel):
|
|
|
5705
5720
|
:type SgIP: str
|
|
5706
5721
|
:param _PartitionNumber: <p>分区置放群组分区</p>
|
|
5707
5722
|
:type PartitionNumber: int
|
|
5723
|
+
:param _WebUiVersion: <p>服务ui地址</p><p>枚举值:</p><ul><li>0: 服务ui地址,只返回1条服务ui地址</li><li>1: 服务ui地址,如果服务含有多个ui地址将全部返回,例如impala的Impalad、StateStore、Catalogd</li></ul><p>默认值:0</p>
|
|
5724
|
+
:type WebUiVersion: int
|
|
5708
5725
|
"""
|
|
5709
5726
|
self._ProductId = None
|
|
5710
5727
|
self._Software = None
|
|
@@ -5745,6 +5762,7 @@ class CreateInstanceRequest(AbstractModel):
|
|
|
5745
5762
|
self._NeedCdbAudit = None
|
|
5746
5763
|
self._SgIP = None
|
|
5747
5764
|
self._PartitionNumber = None
|
|
5765
|
+
self._WebUiVersion = None
|
|
5748
5766
|
|
|
5749
5767
|
@property
|
|
5750
5768
|
def ProductId(self):
|
|
@@ -6175,6 +6193,17 @@ class CreateInstanceRequest(AbstractModel):
|
|
|
6175
6193
|
def PartitionNumber(self, PartitionNumber):
|
|
6176
6194
|
self._PartitionNumber = PartitionNumber
|
|
6177
6195
|
|
|
6196
|
+
@property
|
|
6197
|
+
def WebUiVersion(self):
|
|
6198
|
+
r"""<p>服务ui地址</p><p>枚举值:</p><ul><li>0: 服务ui地址,只返回1条服务ui地址</li><li>1: 服务ui地址,如果服务含有多个ui地址将全部返回,例如impala的Impalad、StateStore、Catalogd</li></ul><p>默认值:0</p>
|
|
6199
|
+
:rtype: int
|
|
6200
|
+
"""
|
|
6201
|
+
return self._WebUiVersion
|
|
6202
|
+
|
|
6203
|
+
@WebUiVersion.setter
|
|
6204
|
+
def WebUiVersion(self, WebUiVersion):
|
|
6205
|
+
self._WebUiVersion = WebUiVersion
|
|
6206
|
+
|
|
6178
6207
|
|
|
6179
6208
|
def _deserialize(self, params):
|
|
6180
6209
|
self._ProductId = params.get("ProductId")
|
|
@@ -6253,6 +6282,7 @@ class CreateInstanceRequest(AbstractModel):
|
|
|
6253
6282
|
self._NeedCdbAudit = params.get("NeedCdbAudit")
|
|
6254
6283
|
self._SgIP = params.get("SgIP")
|
|
6255
6284
|
self._PartitionNumber = params.get("PartitionNumber")
|
|
6285
|
+
self._WebUiVersion = params.get("WebUiVersion")
|
|
6256
6286
|
memeber_set = set(params.keys())
|
|
6257
6287
|
for name, value in vars(self).items():
|
|
6258
6288
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-emr
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.81
|
|
4
4
|
Summary: Tencent Cloud Emr 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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.81
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.81
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.79
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|