tencentcloud-sdk-python-autoscaling 3.0.1275__tar.gz → 3.0.1279__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.1275 → tencentcloud-sdk-python-autoscaling-3.0.1279}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-autoscaling-3.0.1275 → tencentcloud-sdk-python-autoscaling-3.0.1279}/setup.py +1 -1
- {tencentcloud-sdk-python-autoscaling-3.0.1275 → tencentcloud-sdk-python-autoscaling-3.0.1279}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-autoscaling-3.0.1275 → tencentcloud-sdk-python-autoscaling-3.0.1279}/tencentcloud/autoscaling/v20180419/models.py +15 -0
- {tencentcloud-sdk-python-autoscaling-3.0.1275 → tencentcloud-sdk-python-autoscaling-3.0.1279}/tencentcloud_sdk_python_autoscaling.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-autoscaling-3.0.1279/tencentcloud_sdk_python_autoscaling.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-autoscaling-3.0.1275/tencentcloud_sdk_python_autoscaling.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-autoscaling-3.0.1275 → tencentcloud-sdk-python-autoscaling-3.0.1279}/README.rst +0 -0
- {tencentcloud-sdk-python-autoscaling-3.0.1275 → tencentcloud-sdk-python-autoscaling-3.0.1279}/setup.cfg +0 -0
- {tencentcloud-sdk-python-autoscaling-3.0.1275 → tencentcloud-sdk-python-autoscaling-3.0.1279}/tencentcloud/autoscaling/__init__.py +0 -0
- {tencentcloud-sdk-python-autoscaling-3.0.1275 → tencentcloud-sdk-python-autoscaling-3.0.1279}/tencentcloud/autoscaling/v20180419/__init__.py +0 -0
- {tencentcloud-sdk-python-autoscaling-3.0.1275 → tencentcloud-sdk-python-autoscaling-3.0.1279}/tencentcloud/autoscaling/v20180419/autoscaling_client.py +0 -0
- {tencentcloud-sdk-python-autoscaling-3.0.1275 → tencentcloud-sdk-python-autoscaling-3.0.1279}/tencentcloud/autoscaling/v20180419/errorcodes.py +0 -0
- {tencentcloud-sdk-python-autoscaling-3.0.1275 → tencentcloud-sdk-python-autoscaling-3.0.1279}/tencentcloud_sdk_python_autoscaling.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-autoscaling-3.0.1275 → tencentcloud-sdk-python-autoscaling-3.0.1279}/tencentcloud_sdk_python_autoscaling.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-autoscaling-3.0.1275 → tencentcloud-sdk-python-autoscaling-3.0.1279}/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.1279"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Autoscaling SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -13110,11 +13110,14 @@ RESET:对原有不健康实例进行重装系统操作,可保持数据盘、
|
|
|
13110
13110
|
默认取值:RECREATE
|
|
13111
13111
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
13112
13112
|
:type ReplaceMode: str
|
|
13113
|
+
:param _AutoUpdateInstanceTags: 自动更新实例标签。默认取值为 false,配置后如伸缩组标签发生更新,会同步更新(同步更新仅支持新增、修改标签,暂不支持删除标签)伸缩组内运行中状态实例的标签,同步更新非立即生效,存在一定延迟。
|
|
13114
|
+
:type AutoUpdateInstanceTags: bool
|
|
13113
13115
|
"""
|
|
13114
13116
|
self._ReplaceMonitorUnhealthy = None
|
|
13115
13117
|
self._ScalingMode = None
|
|
13116
13118
|
self._ReplaceLoadBalancerUnhealthy = None
|
|
13117
13119
|
self._ReplaceMode = None
|
|
13120
|
+
self._AutoUpdateInstanceTags = None
|
|
13118
13121
|
|
|
13119
13122
|
@property
|
|
13120
13123
|
def ReplaceMonitorUnhealthy(self):
|
|
@@ -13167,12 +13170,24 @@ RESET:对原有不健康实例进行重装系统操作,可保持数据盘、
|
|
|
13167
13170
|
def ReplaceMode(self, ReplaceMode):
|
|
13168
13171
|
self._ReplaceMode = ReplaceMode
|
|
13169
13172
|
|
|
13173
|
+
@property
|
|
13174
|
+
def AutoUpdateInstanceTags(self):
|
|
13175
|
+
"""自动更新实例标签。默认取值为 false,配置后如伸缩组标签发生更新,会同步更新(同步更新仅支持新增、修改标签,暂不支持删除标签)伸缩组内运行中状态实例的标签,同步更新非立即生效,存在一定延迟。
|
|
13176
|
+
:rtype: bool
|
|
13177
|
+
"""
|
|
13178
|
+
return self._AutoUpdateInstanceTags
|
|
13179
|
+
|
|
13180
|
+
@AutoUpdateInstanceTags.setter
|
|
13181
|
+
def AutoUpdateInstanceTags(self, AutoUpdateInstanceTags):
|
|
13182
|
+
self._AutoUpdateInstanceTags = AutoUpdateInstanceTags
|
|
13183
|
+
|
|
13170
13184
|
|
|
13171
13185
|
def _deserialize(self, params):
|
|
13172
13186
|
self._ReplaceMonitorUnhealthy = params.get("ReplaceMonitorUnhealthy")
|
|
13173
13187
|
self._ScalingMode = params.get("ScalingMode")
|
|
13174
13188
|
self._ReplaceLoadBalancerUnhealthy = params.get("ReplaceLoadBalancerUnhealthy")
|
|
13175
13189
|
self._ReplaceMode = params.get("ReplaceMode")
|
|
13190
|
+
self._AutoUpdateInstanceTags = params.get("AutoUpdateInstanceTags")
|
|
13176
13191
|
memeber_set = set(params.keys())
|
|
13177
13192
|
for name, value in vars(self).items():
|
|
13178
13193
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1279
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1275
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|