tencentcloud-sdk-python-clb 3.0.1144__tar.gz → 3.0.1145__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.
Files changed (16) hide show
  1. {tencentcloud-sdk-python-clb-3.0.1144 → tencentcloud-sdk-python-clb-3.0.1145}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-clb-3.0.1144 → tencentcloud-sdk-python-clb-3.0.1145}/setup.py +1 -1
  3. {tencentcloud-sdk-python-clb-3.0.1144 → tencentcloud-sdk-python-clb-3.0.1145}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-clb-3.0.1144 → tencentcloud-sdk-python-clb-3.0.1145}/tencentcloud/clb/v20180317/models.py +12 -0
  5. {tencentcloud-sdk-python-clb-3.0.1144 → tencentcloud-sdk-python-clb-3.0.1145}/tencentcloud_sdk_python_clb.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-clb-3.0.1145/tencentcloud_sdk_python_clb.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-clb-3.0.1144/tencentcloud_sdk_python_clb.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-clb-3.0.1144 → tencentcloud-sdk-python-clb-3.0.1145}/README.rst +0 -0
  9. {tencentcloud-sdk-python-clb-3.0.1144 → tencentcloud-sdk-python-clb-3.0.1145}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-clb-3.0.1144 → tencentcloud-sdk-python-clb-3.0.1145}/tencentcloud/clb/__init__.py +0 -0
  11. {tencentcloud-sdk-python-clb-3.0.1144 → tencentcloud-sdk-python-clb-3.0.1145}/tencentcloud/clb/v20180317/__init__.py +0 -0
  12. {tencentcloud-sdk-python-clb-3.0.1144 → tencentcloud-sdk-python-clb-3.0.1145}/tencentcloud/clb/v20180317/clb_client.py +0 -0
  13. {tencentcloud-sdk-python-clb-3.0.1144 → tencentcloud-sdk-python-clb-3.0.1145}/tencentcloud/clb/v20180317/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-clb-3.0.1144 → tencentcloud-sdk-python-clb-3.0.1145}/tencentcloud_sdk_python_clb.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-clb-3.0.1144 → tencentcloud-sdk-python-clb-3.0.1145}/tencentcloud_sdk_python_clb.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-clb-3.0.1144 → tencentcloud-sdk-python-clb-3.0.1145}/tencentcloud_sdk_python_clb.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-clb
3
- Version: 3.0.1144
3
+ Version: 3.0.1145
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
@@ -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.1144"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1145"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Clb SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1144'
17
+ __version__ = '3.0.1145'
@@ -16736,11 +16736,14 @@ class TargetGroupAssociation(AbstractModel):
16736
16736
  :type ListenerId: str
16737
16737
  :param _LocationId: 转发规则ID
16738
16738
  :type LocationId: str
16739
+ :param _Weight: 目标组权重,范围[0, 100]。仅绑定v2目标组时生效,如果不存在,则默认为10。
16740
+ :type Weight: int
16739
16741
  """
16740
16742
  self._LoadBalancerId = None
16741
16743
  self._TargetGroupId = None
16742
16744
  self._ListenerId = None
16743
16745
  self._LocationId = None
16746
+ self._Weight = None
16744
16747
 
16745
16748
  @property
16746
16749
  def LoadBalancerId(self):
@@ -16774,12 +16777,21 @@ class TargetGroupAssociation(AbstractModel):
16774
16777
  def LocationId(self, LocationId):
16775
16778
  self._LocationId = LocationId
16776
16779
 
16780
+ @property
16781
+ def Weight(self):
16782
+ return self._Weight
16783
+
16784
+ @Weight.setter
16785
+ def Weight(self, Weight):
16786
+ self._Weight = Weight
16787
+
16777
16788
 
16778
16789
  def _deserialize(self, params):
16779
16790
  self._LoadBalancerId = params.get("LoadBalancerId")
16780
16791
  self._TargetGroupId = params.get("TargetGroupId")
16781
16792
  self._ListenerId = params.get("ListenerId")
16782
16793
  self._LocationId = params.get("LocationId")
16794
+ self._Weight = params.get("Weight")
16783
16795
  memeber_set = set(params.keys())
16784
16796
  for name, value in vars(self).items():
16785
16797
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-clb
3
- Version: 3.0.1144
3
+ Version: 3.0.1145
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
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1145
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1144