tencentcloud-sdk-python-autoscaling 3.0.1416__tar.gz → 3.0.1421__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.1416 → tencentcloud-sdk-python-autoscaling-3.0.1421}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-autoscaling-3.0.1416 → tencentcloud-sdk-python-autoscaling-3.0.1421}/setup.py +1 -1
- {tencentcloud-sdk-python-autoscaling-3.0.1416 → tencentcloud-sdk-python-autoscaling-3.0.1421}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-autoscaling-3.0.1416 → tencentcloud-sdk-python-autoscaling-3.0.1421}/tencentcloud/autoscaling/v20180419/errorcodes.py +3 -0
- {tencentcloud-sdk-python-autoscaling-3.0.1416 → tencentcloud-sdk-python-autoscaling-3.0.1421}/tencentcloud/autoscaling/v20180419/models.py +15 -0
- {tencentcloud-sdk-python-autoscaling-3.0.1416 → tencentcloud-sdk-python-autoscaling-3.0.1421}/tencentcloud_sdk_python_autoscaling.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-autoscaling-3.0.1421/tencentcloud_sdk_python_autoscaling.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-autoscaling-3.0.1416/tencentcloud_sdk_python_autoscaling.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-autoscaling-3.0.1416 → tencentcloud-sdk-python-autoscaling-3.0.1421}/README.rst +0 -0
- {tencentcloud-sdk-python-autoscaling-3.0.1416 → tencentcloud-sdk-python-autoscaling-3.0.1421}/setup.cfg +0 -0
- {tencentcloud-sdk-python-autoscaling-3.0.1416 → tencentcloud-sdk-python-autoscaling-3.0.1421}/tencentcloud/autoscaling/__init__.py +0 -0
- {tencentcloud-sdk-python-autoscaling-3.0.1416 → tencentcloud-sdk-python-autoscaling-3.0.1421}/tencentcloud/autoscaling/v20180419/__init__.py +0 -0
- {tencentcloud-sdk-python-autoscaling-3.0.1416 → tencentcloud-sdk-python-autoscaling-3.0.1421}/tencentcloud/autoscaling/v20180419/autoscaling_client.py +0 -0
- {tencentcloud-sdk-python-autoscaling-3.0.1416 → tencentcloud-sdk-python-autoscaling-3.0.1421}/tencentcloud_sdk_python_autoscaling.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-autoscaling-3.0.1416 → tencentcloud-sdk-python-autoscaling-3.0.1421}/tencentcloud_sdk_python_autoscaling.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-autoscaling-3.0.1416 → tencentcloud-sdk-python-autoscaling-3.0.1421}/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
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.0.1421,<4.0.0"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Autoscaling SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -401,6 +401,9 @@ RESOURCENOTFOUND_AUTOSCALINGNOTIFICATIONNOTFOUND = 'ResourceNotFound.AutoScaling
|
|
|
401
401
|
# 指定的带宽包ID不存在。
|
|
402
402
|
RESOURCENOTFOUND_BANDWIDTHPACKAGEIDNOTFOUND = 'ResourceNotFound.BandwidthPackageIdNotFound'
|
|
403
403
|
|
|
404
|
+
# 指定的传统型负载均衡器ID不存在。
|
|
405
|
+
RESOURCENOTFOUND_CLASSICLOADBALANCERNOTFOUND = 'ResourceNotFound.ClassicLoadBalancerNotFound'
|
|
406
|
+
|
|
404
407
|
# 指定的 CMQ queue 不存在。
|
|
405
408
|
RESOURCENOTFOUND_CMQQUEUENOTFOUND = 'ResourceNotFound.CmqQueueNotFound'
|
|
406
409
|
|
|
@@ -12195,9 +12195,12 @@ class RefreshSettings(AbstractModel):
|
|
|
12195
12195
|
:type RollingUpdateSettings: :class:`tencentcloud.autoscaling.v20180419.models.RollingUpdateSettings`
|
|
12196
12196
|
:param _CheckInstanceTargetHealth: 实例后端服务健康状态检查,默认为 FALSE。仅针对绑定应用型负载均衡器的伸缩组生效,开启该检查后,如刷新后实例未通过检查,负载均衡器端口权重始终为 0,且标记为刷新失败。取值范围如下:<li>TRUE:开启检查</li><li>FALSE:不开启检查</li>
|
|
12197
12197
|
:type CheckInstanceTargetHealth: bool
|
|
12198
|
+
:param _CheckInstanceTargetHealthTimeout: 实例后端服务健康状态检查的超时时间,单位为秒,取值范围[60,7200],默认时间1800秒。仅在CheckInstanceTargetHealth参数开启后生效,若实例健康检查超时,则标记为刷新失败。
|
|
12199
|
+
:type CheckInstanceTargetHealthTimeout: int
|
|
12198
12200
|
"""
|
|
12199
12201
|
self._RollingUpdateSettings = None
|
|
12200
12202
|
self._CheckInstanceTargetHealth = None
|
|
12203
|
+
self._CheckInstanceTargetHealthTimeout = None
|
|
12201
12204
|
|
|
12202
12205
|
@property
|
|
12203
12206
|
def RollingUpdateSettings(self):
|
|
@@ -12221,12 +12224,24 @@ class RefreshSettings(AbstractModel):
|
|
|
12221
12224
|
def CheckInstanceTargetHealth(self, CheckInstanceTargetHealth):
|
|
12222
12225
|
self._CheckInstanceTargetHealth = CheckInstanceTargetHealth
|
|
12223
12226
|
|
|
12227
|
+
@property
|
|
12228
|
+
def CheckInstanceTargetHealthTimeout(self):
|
|
12229
|
+
"""实例后端服务健康状态检查的超时时间,单位为秒,取值范围[60,7200],默认时间1800秒。仅在CheckInstanceTargetHealth参数开启后生效,若实例健康检查超时,则标记为刷新失败。
|
|
12230
|
+
:rtype: int
|
|
12231
|
+
"""
|
|
12232
|
+
return self._CheckInstanceTargetHealthTimeout
|
|
12233
|
+
|
|
12234
|
+
@CheckInstanceTargetHealthTimeout.setter
|
|
12235
|
+
def CheckInstanceTargetHealthTimeout(self, CheckInstanceTargetHealthTimeout):
|
|
12236
|
+
self._CheckInstanceTargetHealthTimeout = CheckInstanceTargetHealthTimeout
|
|
12237
|
+
|
|
12224
12238
|
|
|
12225
12239
|
def _deserialize(self, params):
|
|
12226
12240
|
if params.get("RollingUpdateSettings") is not None:
|
|
12227
12241
|
self._RollingUpdateSettings = RollingUpdateSettings()
|
|
12228
12242
|
self._RollingUpdateSettings._deserialize(params.get("RollingUpdateSettings"))
|
|
12229
12243
|
self._CheckInstanceTargetHealth = params.get("CheckInstanceTargetHealth")
|
|
12244
|
+
self._CheckInstanceTargetHealthTimeout = params.get("CheckInstanceTargetHealthTimeout")
|
|
12230
12245
|
memeber_set = set(params.keys())
|
|
12231
12246
|
for name, value in vars(self).items():
|
|
12232
12247
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1421
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1416
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|