tencentcloud-sdk-python-emr 3.0.1482__tar.gz → 3.0.1487__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.0.1482 → tencentcloud_sdk_python_emr-3.0.1487}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_emr-3.0.1482 → tencentcloud_sdk_python_emr-3.0.1487}/setup.py +1 -1
- {tencentcloud_sdk_python_emr-3.0.1482 → tencentcloud_sdk_python_emr-3.0.1487}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_emr-3.0.1482 → tencentcloud_sdk_python_emr-3.0.1487}/tencentcloud/emr/v20190103/models.py +15 -0
- {tencentcloud_sdk_python_emr-3.0.1482 → tencentcloud_sdk_python_emr-3.0.1487}/tencentcloud_sdk_python_emr.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_emr-3.0.1487/tencentcloud_sdk_python_emr.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_emr-3.0.1482/tencentcloud_sdk_python_emr.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_emr-3.0.1482 → tencentcloud_sdk_python_emr-3.0.1487}/README.rst +0 -0
- {tencentcloud_sdk_python_emr-3.0.1482 → tencentcloud_sdk_python_emr-3.0.1487}/setup.cfg +0 -0
- {tencentcloud_sdk_python_emr-3.0.1482 → tencentcloud_sdk_python_emr-3.0.1487}/tencentcloud/emr/__init__.py +0 -0
- {tencentcloud_sdk_python_emr-3.0.1482 → tencentcloud_sdk_python_emr-3.0.1487}/tencentcloud/emr/v20190103/__init__.py +0 -0
- {tencentcloud_sdk_python_emr-3.0.1482 → tencentcloud_sdk_python_emr-3.0.1487}/tencentcloud/emr/v20190103/emr_client.py +0 -0
- {tencentcloud_sdk_python_emr-3.0.1482 → tencentcloud_sdk_python_emr-3.0.1487}/tencentcloud/emr/v20190103/errorcodes.py +0 -0
- {tencentcloud_sdk_python_emr-3.0.1482 → tencentcloud_sdk_python_emr-3.0.1487}/tencentcloud_sdk_python_emr.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_emr-3.0.1482 → tencentcloud_sdk_python_emr-3.0.1487}/tencentcloud_sdk_python_emr.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_emr-3.0.1482 → tencentcloud_sdk_python_emr-3.0.1487}/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.0.
|
|
3
|
+
Version: 3.0.1487
|
|
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.0.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.0.1487
|
|
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.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.0.1487,<4.0.0"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Emr SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -26619,11 +26619,14 @@ class NodeSpecDisk(AbstractModel):
|
|
|
26619
26619
|
:type DiskType: str
|
|
26620
26620
|
:param _DefaultDiskSize: 指定磁盘大小
|
|
26621
26621
|
:type DefaultDiskSize: int
|
|
26622
|
+
:param _IsSpecialDisk: 是否为特殊的数据盘,如:单副本盘
|
|
26623
|
+
:type IsSpecialDisk: bool
|
|
26622
26624
|
"""
|
|
26623
26625
|
self._Count = None
|
|
26624
26626
|
self._Name = None
|
|
26625
26627
|
self._DiskType = None
|
|
26626
26628
|
self._DefaultDiskSize = None
|
|
26629
|
+
self._IsSpecialDisk = None
|
|
26627
26630
|
|
|
26628
26631
|
@property
|
|
26629
26632
|
def Count(self):
|
|
@@ -26669,12 +26672,24 @@ class NodeSpecDisk(AbstractModel):
|
|
|
26669
26672
|
def DefaultDiskSize(self, DefaultDiskSize):
|
|
26670
26673
|
self._DefaultDiskSize = DefaultDiskSize
|
|
26671
26674
|
|
|
26675
|
+
@property
|
|
26676
|
+
def IsSpecialDisk(self):
|
|
26677
|
+
r"""是否为特殊的数据盘,如:单副本盘
|
|
26678
|
+
:rtype: bool
|
|
26679
|
+
"""
|
|
26680
|
+
return self._IsSpecialDisk
|
|
26681
|
+
|
|
26682
|
+
@IsSpecialDisk.setter
|
|
26683
|
+
def IsSpecialDisk(self, IsSpecialDisk):
|
|
26684
|
+
self._IsSpecialDisk = IsSpecialDisk
|
|
26685
|
+
|
|
26672
26686
|
|
|
26673
26687
|
def _deserialize(self, params):
|
|
26674
26688
|
self._Count = params.get("Count")
|
|
26675
26689
|
self._Name = params.get("Name")
|
|
26676
26690
|
self._DiskType = params.get("DiskType")
|
|
26677
26691
|
self._DefaultDiskSize = params.get("DefaultDiskSize")
|
|
26692
|
+
self._IsSpecialDisk = params.get("IsSpecialDisk")
|
|
26678
26693
|
memeber_set = set(params.keys())
|
|
26679
26694
|
for name, value in vars(self).items():
|
|
26680
26695
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-emr
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1487
|
|
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.0.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.0.1487
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1487
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.0.1482
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|