tencentcloud-sdk-python-emr 3.1.35__tar.gz → 3.1.36__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.35 → tencentcloud_sdk_python_emr-3.1.36}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_emr-3.1.35 → tencentcloud_sdk_python_emr-3.1.36}/setup.py +1 -1
- {tencentcloud_sdk_python_emr-3.1.35 → tencentcloud_sdk_python_emr-3.1.36}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_emr-3.1.35 → tencentcloud_sdk_python_emr-3.1.36}/tencentcloud/emr/v20190103/models.py +30 -0
- {tencentcloud_sdk_python_emr-3.1.35 → tencentcloud_sdk_python_emr-3.1.36}/tencentcloud_sdk_python_emr.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_emr-3.1.36/tencentcloud_sdk_python_emr.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_emr-3.1.35/tencentcloud_sdk_python_emr.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_emr-3.1.35 → tencentcloud_sdk_python_emr-3.1.36}/README.rst +0 -0
- {tencentcloud_sdk_python_emr-3.1.35 → tencentcloud_sdk_python_emr-3.1.36}/setup.cfg +0 -0
- {tencentcloud_sdk_python_emr-3.1.35 → tencentcloud_sdk_python_emr-3.1.36}/tencentcloud/emr/__init__.py +0 -0
- {tencentcloud_sdk_python_emr-3.1.35 → tencentcloud_sdk_python_emr-3.1.36}/tencentcloud/emr/v20190103/__init__.py +0 -0
- {tencentcloud_sdk_python_emr-3.1.35 → tencentcloud_sdk_python_emr-3.1.36}/tencentcloud/emr/v20190103/emr_client.py +0 -0
- {tencentcloud_sdk_python_emr-3.1.35 → tencentcloud_sdk_python_emr-3.1.36}/tencentcloud/emr/v20190103/emr_client_async.py +0 -0
- {tencentcloud_sdk_python_emr-3.1.35 → tencentcloud_sdk_python_emr-3.1.36}/tencentcloud/emr/v20190103/errorcodes.py +0 -0
- {tencentcloud_sdk_python_emr-3.1.35 → tencentcloud_sdk_python_emr-3.1.36}/tencentcloud_sdk_python_emr.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_emr-3.1.35 → tencentcloud_sdk_python_emr-3.1.36}/tencentcloud_sdk_python_emr.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_emr-3.1.35 → tencentcloud_sdk_python_emr-3.1.36}/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.36
|
|
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.36
|
|
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.36,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Emr SDK for Python',
|
|
@@ -22053,6 +22053,8 @@ class LoadAutoScaleStrategy(AbstractModel):
|
|
|
22053
22053
|
:type GroupId: int
|
|
22054
22054
|
:param _Soft: soft例如yarn
|
|
22055
22055
|
:type Soft: str
|
|
22056
|
+
:param _GraceDownProtectTime: 任务保护时间
|
|
22057
|
+
:type GraceDownProtectTime: int
|
|
22056
22058
|
"""
|
|
22057
22059
|
self._StrategyId = None
|
|
22058
22060
|
self._StrategyName = None
|
|
@@ -22077,6 +22079,7 @@ class LoadAutoScaleStrategy(AbstractModel):
|
|
|
22077
22079
|
self._LoadMetricsConditions = None
|
|
22078
22080
|
self._GroupId = None
|
|
22079
22081
|
self._Soft = None
|
|
22082
|
+
self._GraceDownProtectTime = None
|
|
22080
22083
|
|
|
22081
22084
|
@property
|
|
22082
22085
|
def StrategyId(self):
|
|
@@ -22340,6 +22343,17 @@ class LoadAutoScaleStrategy(AbstractModel):
|
|
|
22340
22343
|
def Soft(self, Soft):
|
|
22341
22344
|
self._Soft = Soft
|
|
22342
22345
|
|
|
22346
|
+
@property
|
|
22347
|
+
def GraceDownProtectTime(self):
|
|
22348
|
+
r"""任务保护时间
|
|
22349
|
+
:rtype: int
|
|
22350
|
+
"""
|
|
22351
|
+
return self._GraceDownProtectTime
|
|
22352
|
+
|
|
22353
|
+
@GraceDownProtectTime.setter
|
|
22354
|
+
def GraceDownProtectTime(self, GraceDownProtectTime):
|
|
22355
|
+
self._GraceDownProtectTime = GraceDownProtectTime
|
|
22356
|
+
|
|
22343
22357
|
|
|
22344
22358
|
def _deserialize(self, params):
|
|
22345
22359
|
self._StrategyId = params.get("StrategyId")
|
|
@@ -22372,6 +22386,7 @@ class LoadAutoScaleStrategy(AbstractModel):
|
|
|
22372
22386
|
self._LoadMetricsConditions._deserialize(params.get("LoadMetricsConditions"))
|
|
22373
22387
|
self._GroupId = params.get("GroupId")
|
|
22374
22388
|
self._Soft = params.get("Soft")
|
|
22389
|
+
self._GraceDownProtectTime = params.get("GraceDownProtectTime")
|
|
22375
22390
|
memeber_set = set(params.keys())
|
|
22376
22391
|
for name, value in vars(self).items():
|
|
22377
22392
|
property_name = name[1:]
|
|
@@ -38358,6 +38373,8 @@ class TimeAutoScaleStrategy(AbstractModel):
|
|
|
38358
38373
|
:type GroupId: int
|
|
38359
38374
|
:param _GraceDownLabel: 优雅缩容业务pod标签,当node不存在上述pod或超过优雅缩容时间时,缩容节点
|
|
38360
38375
|
:type GraceDownLabel: list of TkeLabel
|
|
38376
|
+
:param _GraceDownProtectTime: 任务保护时间
|
|
38377
|
+
:type GraceDownProtectTime: int
|
|
38361
38378
|
"""
|
|
38362
38379
|
self._StrategyName = None
|
|
38363
38380
|
self._IntervalTime = None
|
|
@@ -38381,6 +38398,7 @@ class TimeAutoScaleStrategy(AbstractModel):
|
|
|
38381
38398
|
self._CompensateFlag = None
|
|
38382
38399
|
self._GroupId = None
|
|
38383
38400
|
self._GraceDownLabel = None
|
|
38401
|
+
self._GraceDownProtectTime = None
|
|
38384
38402
|
|
|
38385
38403
|
@property
|
|
38386
38404
|
def StrategyName(self):
|
|
@@ -38632,6 +38650,17 @@ class TimeAutoScaleStrategy(AbstractModel):
|
|
|
38632
38650
|
def GraceDownLabel(self, GraceDownLabel):
|
|
38633
38651
|
self._GraceDownLabel = GraceDownLabel
|
|
38634
38652
|
|
|
38653
|
+
@property
|
|
38654
|
+
def GraceDownProtectTime(self):
|
|
38655
|
+
r"""任务保护时间
|
|
38656
|
+
:rtype: int
|
|
38657
|
+
"""
|
|
38658
|
+
return self._GraceDownProtectTime
|
|
38659
|
+
|
|
38660
|
+
@GraceDownProtectTime.setter
|
|
38661
|
+
def GraceDownProtectTime(self, GraceDownProtectTime):
|
|
38662
|
+
self._GraceDownProtectTime = GraceDownProtectTime
|
|
38663
|
+
|
|
38635
38664
|
|
|
38636
38665
|
def _deserialize(self, params):
|
|
38637
38666
|
self._StrategyName = params.get("StrategyName")
|
|
@@ -38668,6 +38697,7 @@ class TimeAutoScaleStrategy(AbstractModel):
|
|
|
38668
38697
|
obj = TkeLabel()
|
|
38669
38698
|
obj._deserialize(item)
|
|
38670
38699
|
self._GraceDownLabel.append(obj)
|
|
38700
|
+
self._GraceDownProtectTime = params.get("GraceDownProtectTime")
|
|
38671
38701
|
memeber_set = set(params.keys())
|
|
38672
38702
|
for name, value in vars(self).items():
|
|
38673
38703
|
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.36
|
|
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.36
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.36
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.35
|
|
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
|