tencentcloud-sdk-python-clb 3.1.129__tar.gz → 3.1.132__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_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.132}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.132}/setup.py +1 -1
- {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.132}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.132}/tencentcloud/clb/v20180317/models.py +15 -0
- {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.132}/tencentcloud_sdk_python_clb.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_clb-3.1.132/tencentcloud_sdk_python_clb.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_clb-3.1.129/tencentcloud_sdk_python_clb.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.132}/README.rst +0 -0
- {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.132}/setup.cfg +0 -0
- {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.132}/tencentcloud/clb/__init__.py +0 -0
- {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.132}/tencentcloud/clb/v20180317/__init__.py +0 -0
- {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.132}/tencentcloud/clb/v20180317/clb_client.py +0 -0
- {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.132}/tencentcloud/clb/v20180317/clb_client_async.py +0 -0
- {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.132}/tencentcloud/clb/v20180317/errorcodes.py +0 -0
- {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.132}/tencentcloud_sdk_python_clb.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.132}/tencentcloud_sdk_python_clb.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_clb-3.1.129 → tencentcloud_sdk_python_clb-3.1.132}/tencentcloud_sdk_python_clb.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-clb
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.132
|
|
4
4
|
Summary: Tencent Cloud Clb 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.132
|
|
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-clb',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.132,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Clb SDK for Python',
|
|
@@ -4732,9 +4732,12 @@ class ClusterInfo(AbstractModel):
|
|
|
4732
4732
|
:type ClusterId: str
|
|
4733
4733
|
:param _Type: <p>集群类型</p><p>枚举值:</p><ul><li>Public: 公有云集群</li><li>Exclusive: 独占集群</li></ul><p>默认值:Public</p>
|
|
4734
4734
|
:type Type: str
|
|
4735
|
+
:param _ClusterName: <p>集群名称</p>
|
|
4736
|
+
:type ClusterName: str
|
|
4735
4737
|
"""
|
|
4736
4738
|
self._ClusterId = None
|
|
4737
4739
|
self._Type = None
|
|
4740
|
+
self._ClusterName = None
|
|
4738
4741
|
|
|
4739
4742
|
@property
|
|
4740
4743
|
def ClusterId(self):
|
|
@@ -4758,10 +4761,22 @@ class ClusterInfo(AbstractModel):
|
|
|
4758
4761
|
def Type(self, Type):
|
|
4759
4762
|
self._Type = Type
|
|
4760
4763
|
|
|
4764
|
+
@property
|
|
4765
|
+
def ClusterName(self):
|
|
4766
|
+
r"""<p>集群名称</p>
|
|
4767
|
+
:rtype: str
|
|
4768
|
+
"""
|
|
4769
|
+
return self._ClusterName
|
|
4770
|
+
|
|
4771
|
+
@ClusterName.setter
|
|
4772
|
+
def ClusterName(self, ClusterName):
|
|
4773
|
+
self._ClusterName = ClusterName
|
|
4774
|
+
|
|
4761
4775
|
|
|
4762
4776
|
def _deserialize(self, params):
|
|
4763
4777
|
self._ClusterId = params.get("ClusterId")
|
|
4764
4778
|
self._Type = params.get("Type")
|
|
4779
|
+
self._ClusterName = params.get("ClusterName")
|
|
4765
4780
|
memeber_set = set(params.keys())
|
|
4766
4781
|
for name, value in vars(self).items():
|
|
4767
4782
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-clb
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.132
|
|
4
4
|
Summary: Tencent Cloud Clb 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.132
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.132
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.129
|
|
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
|