tencentcloud-sdk-python-autoscaling 3.0.1235__tar.gz → 3.0.1237__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-autoscaling-3.0.1235 → tencentcloud-sdk-python-autoscaling-3.0.1237}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-autoscaling-3.0.1235 → tencentcloud-sdk-python-autoscaling-3.0.1237}/setup.py +1 -1
- {tencentcloud-sdk-python-autoscaling-3.0.1235 → tencentcloud-sdk-python-autoscaling-3.0.1237}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-autoscaling-3.0.1235 → tencentcloud-sdk-python-autoscaling-3.0.1237}/tencentcloud/autoscaling/v20180419/models.py +16 -0
- {tencentcloud-sdk-python-autoscaling-3.0.1235 → tencentcloud-sdk-python-autoscaling-3.0.1237}/tencentcloud_sdk_python_autoscaling.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-autoscaling-3.0.1237/tencentcloud_sdk_python_autoscaling.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-autoscaling-3.0.1235/tencentcloud_sdk_python_autoscaling.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-autoscaling-3.0.1235 → tencentcloud-sdk-python-autoscaling-3.0.1237}/README.rst +0 -0
- {tencentcloud-sdk-python-autoscaling-3.0.1235 → tencentcloud-sdk-python-autoscaling-3.0.1237}/setup.cfg +0 -0
- {tencentcloud-sdk-python-autoscaling-3.0.1235 → tencentcloud-sdk-python-autoscaling-3.0.1237}/tencentcloud/autoscaling/__init__.py +0 -0
- {tencentcloud-sdk-python-autoscaling-3.0.1235 → tencentcloud-sdk-python-autoscaling-3.0.1237}/tencentcloud/autoscaling/v20180419/__init__.py +0 -0
- {tencentcloud-sdk-python-autoscaling-3.0.1235 → tencentcloud-sdk-python-autoscaling-3.0.1237}/tencentcloud/autoscaling/v20180419/autoscaling_client.py +0 -0
- {tencentcloud-sdk-python-autoscaling-3.0.1235 → tencentcloud-sdk-python-autoscaling-3.0.1237}/tencentcloud/autoscaling/v20180419/errorcodes.py +0 -0
- {tencentcloud-sdk-python-autoscaling-3.0.1235 → tencentcloud-sdk-python-autoscaling-3.0.1237}/tencentcloud_sdk_python_autoscaling.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-autoscaling-3.0.1235 → tencentcloud-sdk-python-autoscaling-3.0.1237}/tencentcloud_sdk_python_autoscaling.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-autoscaling-3.0.1235 → tencentcloud-sdk-python-autoscaling-3.0.1237}/tencentcloud_sdk_python_autoscaling.egg-info/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-autoscaling',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1237"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Autoscaling SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -10707,10 +10707,17 @@ WAKE_UP_STOPPED_SCALING:扩容优先开机。扩容时优先对已关机的实
|
|
|
10707
10707
|
:type ScalingMode: str
|
|
10708
10708
|
:param _ReplaceLoadBalancerUnhealthy: 开启负载均衡不健康替换服务。若开启则对于负载均衡健康检查判断不健康的实例,弹性伸缩服务会进行替换。若不指定该参数,则默认为 False。
|
|
10709
10709
|
:type ReplaceLoadBalancerUnhealthy: bool
|
|
10710
|
+
:param _ReplaceMode: 不健康替换服务的替换模式。取值范围:
|
|
10711
|
+
RECREATE:重建实例替代原有不健康实例;
|
|
10712
|
+
RESET:对原有不健康实例进行重装系统操作,可保持数据盘、内网IP、实例id等信息不发生变化,实例登录设置、主机名、增强服务和 UserData 与当前启动配置保持一致。
|
|
10713
|
+
默认取值:RECREATE
|
|
10714
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10715
|
+
:type ReplaceMode: str
|
|
10710
10716
|
"""
|
|
10711
10717
|
self._ReplaceMonitorUnhealthy = None
|
|
10712
10718
|
self._ScalingMode = None
|
|
10713
10719
|
self._ReplaceLoadBalancerUnhealthy = None
|
|
10720
|
+
self._ReplaceMode = None
|
|
10714
10721
|
|
|
10715
10722
|
@property
|
|
10716
10723
|
def ReplaceMonitorUnhealthy(self):
|
|
@@ -10736,11 +10743,20 @@ WAKE_UP_STOPPED_SCALING:扩容优先开机。扩容时优先对已关机的实
|
|
|
10736
10743
|
def ReplaceLoadBalancerUnhealthy(self, ReplaceLoadBalancerUnhealthy):
|
|
10737
10744
|
self._ReplaceLoadBalancerUnhealthy = ReplaceLoadBalancerUnhealthy
|
|
10738
10745
|
|
|
10746
|
+
@property
|
|
10747
|
+
def ReplaceMode(self):
|
|
10748
|
+
return self._ReplaceMode
|
|
10749
|
+
|
|
10750
|
+
@ReplaceMode.setter
|
|
10751
|
+
def ReplaceMode(self, ReplaceMode):
|
|
10752
|
+
self._ReplaceMode = ReplaceMode
|
|
10753
|
+
|
|
10739
10754
|
|
|
10740
10755
|
def _deserialize(self, params):
|
|
10741
10756
|
self._ReplaceMonitorUnhealthy = params.get("ReplaceMonitorUnhealthy")
|
|
10742
10757
|
self._ScalingMode = params.get("ScalingMode")
|
|
10743
10758
|
self._ReplaceLoadBalancerUnhealthy = params.get("ReplaceLoadBalancerUnhealthy")
|
|
10759
|
+
self._ReplaceMode = params.get("ReplaceMode")
|
|
10744
10760
|
memeber_set = set(params.keys())
|
|
10745
10761
|
for name, value in vars(self).items():
|
|
10746
10762
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1237
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1235
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|