tencentcloud-sdk-python-clb 3.0.1461__tar.gz → 3.0.1463__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.
Potentially problematic release.
This version of tencentcloud-sdk-python-clb might be problematic. Click here for more details.
- {tencentcloud-sdk-python-clb-3.0.1461 → tencentcloud-sdk-python-clb-3.0.1463}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-clb-3.0.1461 → tencentcloud-sdk-python-clb-3.0.1463}/setup.py +1 -1
- {tencentcloud-sdk-python-clb-3.0.1461 → tencentcloud-sdk-python-clb-3.0.1463}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-clb-3.0.1461 → tencentcloud-sdk-python-clb-3.0.1463}/tencentcloud/clb/v20180317/models.py +20 -0
- {tencentcloud-sdk-python-clb-3.0.1461 → tencentcloud-sdk-python-clb-3.0.1463}/tencentcloud_sdk_python_clb.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-clb-3.0.1463/tencentcloud_sdk_python_clb.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-clb-3.0.1461/tencentcloud_sdk_python_clb.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-clb-3.0.1461 → tencentcloud-sdk-python-clb-3.0.1463}/README.rst +0 -0
- {tencentcloud-sdk-python-clb-3.0.1461 → tencentcloud-sdk-python-clb-3.0.1463}/setup.cfg +0 -0
- {tencentcloud-sdk-python-clb-3.0.1461 → tencentcloud-sdk-python-clb-3.0.1463}/tencentcloud/clb/__init__.py +0 -0
- {tencentcloud-sdk-python-clb-3.0.1461 → tencentcloud-sdk-python-clb-3.0.1463}/tencentcloud/clb/v20180317/__init__.py +0 -0
- {tencentcloud-sdk-python-clb-3.0.1461 → tencentcloud-sdk-python-clb-3.0.1463}/tencentcloud/clb/v20180317/clb_client.py +0 -0
- {tencentcloud-sdk-python-clb-3.0.1461 → tencentcloud-sdk-python-clb-3.0.1463}/tencentcloud/clb/v20180317/errorcodes.py +0 -0
- {tencentcloud-sdk-python-clb-3.0.1461 → tencentcloud-sdk-python-clb-3.0.1463}/tencentcloud_sdk_python_clb.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-clb-3.0.1461 → tencentcloud-sdk-python-clb-3.0.1463}/tencentcloud_sdk_python_clb.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-clb-3.0.1461 → tencentcloud-sdk-python-clb-3.0.1463}/tencentcloud_sdk_python_clb.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-clb',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.0.1463,<4.0.0"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Clb SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -31,10 +31,13 @@ class AddCustomizedConfigRequest(AbstractModel):
|
|
|
31
31
|
:type ConfigType: str
|
|
32
32
|
:param _ConfigContent: 配置内容
|
|
33
33
|
:type ConfigContent: str
|
|
34
|
+
:param _Tags: 标签
|
|
35
|
+
:type Tags: list of TagInfo
|
|
34
36
|
"""
|
|
35
37
|
self._ConfigName = None
|
|
36
38
|
self._ConfigType = None
|
|
37
39
|
self._ConfigContent = None
|
|
40
|
+
self._Tags = None
|
|
38
41
|
|
|
39
42
|
@property
|
|
40
43
|
def ConfigName(self):
|
|
@@ -69,11 +72,28 @@ class AddCustomizedConfigRequest(AbstractModel):
|
|
|
69
72
|
def ConfigContent(self, ConfigContent):
|
|
70
73
|
self._ConfigContent = ConfigContent
|
|
71
74
|
|
|
75
|
+
@property
|
|
76
|
+
def Tags(self):
|
|
77
|
+
r"""标签
|
|
78
|
+
:rtype: list of TagInfo
|
|
79
|
+
"""
|
|
80
|
+
return self._Tags
|
|
81
|
+
|
|
82
|
+
@Tags.setter
|
|
83
|
+
def Tags(self, Tags):
|
|
84
|
+
self._Tags = Tags
|
|
85
|
+
|
|
72
86
|
|
|
73
87
|
def _deserialize(self, params):
|
|
74
88
|
self._ConfigName = params.get("ConfigName")
|
|
75
89
|
self._ConfigType = params.get("ConfigType")
|
|
76
90
|
self._ConfigContent = params.get("ConfigContent")
|
|
91
|
+
if params.get("Tags") is not None:
|
|
92
|
+
self._Tags = []
|
|
93
|
+
for item in params.get("Tags"):
|
|
94
|
+
obj = TagInfo()
|
|
95
|
+
obj._deserialize(item)
|
|
96
|
+
self._Tags.append(obj)
|
|
77
97
|
memeber_set = set(params.keys())
|
|
78
98
|
for name, value in vars(self).items():
|
|
79
99
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1463
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.0.1461
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|