tencentcloud-sdk-python-cvm 3.0.1344__tar.gz → 3.0.1345__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-cvm-3.0.1344 → tencentcloud-sdk-python-cvm-3.0.1345}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cvm-3.0.1344 → tencentcloud-sdk-python-cvm-3.0.1345}/setup.py +1 -1
- {tencentcloud-sdk-python-cvm-3.0.1344 → tencentcloud-sdk-python-cvm-3.0.1345}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cvm-3.0.1344 → tencentcloud-sdk-python-cvm-3.0.1345}/tencentcloud/cvm/v20170312/models.py +15 -0
- {tencentcloud-sdk-python-cvm-3.0.1344 → tencentcloud-sdk-python-cvm-3.0.1345}/tencentcloud_sdk_python_cvm.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cvm-3.0.1345/tencentcloud_sdk_python_cvm.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cvm-3.0.1344/tencentcloud_sdk_python_cvm.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cvm-3.0.1344 → tencentcloud-sdk-python-cvm-3.0.1345}/README.rst +0 -0
- {tencentcloud-sdk-python-cvm-3.0.1344 → tencentcloud-sdk-python-cvm-3.0.1345}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cvm-3.0.1344 → tencentcloud-sdk-python-cvm-3.0.1345}/tencentcloud/cvm/__init__.py +0 -0
- {tencentcloud-sdk-python-cvm-3.0.1344 → tencentcloud-sdk-python-cvm-3.0.1345}/tencentcloud/cvm/v20170312/__init__.py +0 -0
- {tencentcloud-sdk-python-cvm-3.0.1344 → tencentcloud-sdk-python-cvm-3.0.1345}/tencentcloud/cvm/v20170312/cvm_client.py +0 -0
- {tencentcloud-sdk-python-cvm-3.0.1344 → tencentcloud-sdk-python-cvm-3.0.1345}/tencentcloud/cvm/v20170312/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cvm-3.0.1344 → tencentcloud-sdk-python-cvm-3.0.1345}/tencentcloud_sdk_python_cvm.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cvm-3.0.1344 → tencentcloud-sdk-python-cvm-3.0.1345}/tencentcloud_sdk_python_cvm.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cvm-3.0.1344 → tencentcloud-sdk-python-cvm-3.0.1345}/tencentcloud_sdk_python_cvm.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-cvm',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1345"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cvm SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -8778,6 +8778,8 @@ class DisasterRecoverGroup(AbstractModel):
|
|
|
8778
8778
|
:type InstanceIds: list of str
|
|
8779
8779
|
:param _CreateTime: 分散置放群组创建时间。
|
|
8780
8780
|
:type CreateTime: str
|
|
8781
|
+
:param _Affinity: 置放群组亲和度
|
|
8782
|
+
:type Affinity: int
|
|
8781
8783
|
:param _Tags: 置放群组关联的标签列表。
|
|
8782
8784
|
:type Tags: list of Tag
|
|
8783
8785
|
"""
|
|
@@ -8788,6 +8790,7 @@ class DisasterRecoverGroup(AbstractModel):
|
|
|
8788
8790
|
self._CurrentNum = None
|
|
8789
8791
|
self._InstanceIds = None
|
|
8790
8792
|
self._CreateTime = None
|
|
8793
|
+
self._Affinity = None
|
|
8791
8794
|
self._Tags = None
|
|
8792
8795
|
|
|
8793
8796
|
@property
|
|
@@ -8870,6 +8873,17 @@ class DisasterRecoverGroup(AbstractModel):
|
|
|
8870
8873
|
def CreateTime(self, CreateTime):
|
|
8871
8874
|
self._CreateTime = CreateTime
|
|
8872
8875
|
|
|
8876
|
+
@property
|
|
8877
|
+
def Affinity(self):
|
|
8878
|
+
"""置放群组亲和度
|
|
8879
|
+
:rtype: int
|
|
8880
|
+
"""
|
|
8881
|
+
return self._Affinity
|
|
8882
|
+
|
|
8883
|
+
@Affinity.setter
|
|
8884
|
+
def Affinity(self, Affinity):
|
|
8885
|
+
self._Affinity = Affinity
|
|
8886
|
+
|
|
8873
8887
|
@property
|
|
8874
8888
|
def Tags(self):
|
|
8875
8889
|
"""置放群组关联的标签列表。
|
|
@@ -8890,6 +8904,7 @@ class DisasterRecoverGroup(AbstractModel):
|
|
|
8890
8904
|
self._CurrentNum = params.get("CurrentNum")
|
|
8891
8905
|
self._InstanceIds = params.get("InstanceIds")
|
|
8892
8906
|
self._CreateTime = params.get("CreateTime")
|
|
8907
|
+
self._Affinity = params.get("Affinity")
|
|
8893
8908
|
if params.get("Tags") is not None:
|
|
8894
8909
|
self._Tags = []
|
|
8895
8910
|
for item in params.get("Tags"):
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1345
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1344
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|