tencentcloud-sdk-python-emr 3.1.59__tar.gz → 3.1.67__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.59 → tencentcloud_sdk_python_emr-3.1.67}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_emr-3.1.59 → tencentcloud_sdk_python_emr-3.1.67}/setup.py +1 -1
- {tencentcloud_sdk_python_emr-3.1.59 → tencentcloud_sdk_python_emr-3.1.67}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_emr-3.1.59 → tencentcloud_sdk_python_emr-3.1.67}/tencentcloud/emr/v20190103/models.py +15 -0
- {tencentcloud_sdk_python_emr-3.1.59 → tencentcloud_sdk_python_emr-3.1.67}/tencentcloud_sdk_python_emr.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_emr-3.1.67/tencentcloud_sdk_python_emr.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_emr-3.1.59/tencentcloud_sdk_python_emr.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_emr-3.1.59 → tencentcloud_sdk_python_emr-3.1.67}/README.rst +0 -0
- {tencentcloud_sdk_python_emr-3.1.59 → tencentcloud_sdk_python_emr-3.1.67}/setup.cfg +0 -0
- {tencentcloud_sdk_python_emr-3.1.59 → tencentcloud_sdk_python_emr-3.1.67}/tencentcloud/emr/__init__.py +0 -0
- {tencentcloud_sdk_python_emr-3.1.59 → tencentcloud_sdk_python_emr-3.1.67}/tencentcloud/emr/v20190103/__init__.py +0 -0
- {tencentcloud_sdk_python_emr-3.1.59 → tencentcloud_sdk_python_emr-3.1.67}/tencentcloud/emr/v20190103/emr_client.py +0 -0
- {tencentcloud_sdk_python_emr-3.1.59 → tencentcloud_sdk_python_emr-3.1.67}/tencentcloud/emr/v20190103/emr_client_async.py +0 -0
- {tencentcloud_sdk_python_emr-3.1.59 → tencentcloud_sdk_python_emr-3.1.67}/tencentcloud/emr/v20190103/errorcodes.py +0 -0
- {tencentcloud_sdk_python_emr-3.1.59 → tencentcloud_sdk_python_emr-3.1.67}/tencentcloud_sdk_python_emr.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_emr-3.1.59 → tencentcloud_sdk_python_emr-3.1.67}/tencentcloud_sdk_python_emr.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_emr-3.1.59 → tencentcloud_sdk_python_emr-3.1.67}/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.67
|
|
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.67
|
|
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.67,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Emr SDK for Python',
|
|
@@ -37621,9 +37621,12 @@ class StopParams(AbstractModel):
|
|
|
37621
37621
|
:type StopPolicy: str
|
|
37622
37622
|
:param _ThreadCount: 线程数
|
|
37623
37623
|
:type ThreadCount: int
|
|
37624
|
+
:param _GraceDownTime: 安全停止超时时间,单位秒
|
|
37625
|
+
:type GraceDownTime: int
|
|
37624
37626
|
"""
|
|
37625
37627
|
self._StopPolicy = None
|
|
37626
37628
|
self._ThreadCount = None
|
|
37629
|
+
self._GraceDownTime = None
|
|
37627
37630
|
|
|
37628
37631
|
@property
|
|
37629
37632
|
def StopPolicy(self):
|
|
@@ -37648,10 +37651,22 @@ class StopParams(AbstractModel):
|
|
|
37648
37651
|
def ThreadCount(self, ThreadCount):
|
|
37649
37652
|
self._ThreadCount = ThreadCount
|
|
37650
37653
|
|
|
37654
|
+
@property
|
|
37655
|
+
def GraceDownTime(self):
|
|
37656
|
+
r"""安全停止超时时间,单位秒
|
|
37657
|
+
:rtype: int
|
|
37658
|
+
"""
|
|
37659
|
+
return self._GraceDownTime
|
|
37660
|
+
|
|
37661
|
+
@GraceDownTime.setter
|
|
37662
|
+
def GraceDownTime(self, GraceDownTime):
|
|
37663
|
+
self._GraceDownTime = GraceDownTime
|
|
37664
|
+
|
|
37651
37665
|
|
|
37652
37666
|
def _deserialize(self, params):
|
|
37653
37667
|
self._StopPolicy = params.get("StopPolicy")
|
|
37654
37668
|
self._ThreadCount = params.get("ThreadCount")
|
|
37669
|
+
self._GraceDownTime = params.get("GraceDownTime")
|
|
37655
37670
|
memeber_set = set(params.keys())
|
|
37656
37671
|
for name, value in vars(self).items():
|
|
37657
37672
|
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.67
|
|
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.67
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.67
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.59
|
|
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
|