tencentcloud-sdk-python-clb 3.0.1444__tar.gz → 3.0.1447__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.1444 → tencentcloud-sdk-python-clb-3.0.1447}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-clb-3.0.1444 → tencentcloud-sdk-python-clb-3.0.1447}/setup.py +1 -1
- {tencentcloud-sdk-python-clb-3.0.1444 → tencentcloud-sdk-python-clb-3.0.1447}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-clb-3.0.1444 → tencentcloud-sdk-python-clb-3.0.1447}/tencentcloud/clb/v20180317/models.py +30 -0
- {tencentcloud-sdk-python-clb-3.0.1444 → tencentcloud-sdk-python-clb-3.0.1447}/tencentcloud_sdk_python_clb.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-clb-3.0.1447/tencentcloud_sdk_python_clb.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-clb-3.0.1444/tencentcloud_sdk_python_clb.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-clb-3.0.1444 → tencentcloud-sdk-python-clb-3.0.1447}/README.rst +0 -0
- {tencentcloud-sdk-python-clb-3.0.1444 → tencentcloud-sdk-python-clb-3.0.1447}/setup.cfg +0 -0
- {tencentcloud-sdk-python-clb-3.0.1444 → tencentcloud-sdk-python-clb-3.0.1447}/tencentcloud/clb/__init__.py +0 -0
- {tencentcloud-sdk-python-clb-3.0.1444 → tencentcloud-sdk-python-clb-3.0.1447}/tencentcloud/clb/v20180317/__init__.py +0 -0
- {tencentcloud-sdk-python-clb-3.0.1444 → tencentcloud-sdk-python-clb-3.0.1447}/tencentcloud/clb/v20180317/clb_client.py +0 -0
- {tencentcloud-sdk-python-clb-3.0.1444 → tencentcloud-sdk-python-clb-3.0.1447}/tencentcloud/clb/v20180317/errorcodes.py +0 -0
- {tencentcloud-sdk-python-clb-3.0.1444 → tencentcloud-sdk-python-clb-3.0.1447}/tencentcloud_sdk_python_clb.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-clb-3.0.1444 → tencentcloud-sdk-python-clb-3.0.1447}/tencentcloud_sdk_python_clb.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-clb-3.0.1444 → tencentcloud-sdk-python-clb-3.0.1447}/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.1447,<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(),
|
|
@@ -14014,6 +14014,8 @@ ToaClean: TOA(TCP Option Address)清理,清除TCP选项中的地址信息
|
|
|
14014
14014
|
:type Exclusive: int
|
|
14015
14015
|
:param _TargetCount: 已绑定的后端服务数量。
|
|
14016
14016
|
:type TargetCount: int
|
|
14017
|
+
:param _AssociateEndpoint: 负载均衡实例关联的Endpoint id。
|
|
14018
|
+
:type AssociateEndpoint: str
|
|
14017
14019
|
"""
|
|
14018
14020
|
self._LoadBalancerId = None
|
|
14019
14021
|
self._LoadBalancerName = None
|
|
@@ -14072,6 +14074,7 @@ ToaClean: TOA(TCP Option Address)清理,清除TCP选项中的地址信息
|
|
|
14072
14074
|
self._Egress = None
|
|
14073
14075
|
self._Exclusive = None
|
|
14074
14076
|
self._TargetCount = None
|
|
14077
|
+
self._AssociateEndpoint = None
|
|
14075
14078
|
|
|
14076
14079
|
@property
|
|
14077
14080
|
def LoadBalancerId(self):
|
|
@@ -14757,6 +14760,17 @@ ToaClean: TOA(TCP Option Address)清理,清除TCP选项中的地址信息
|
|
|
14757
14760
|
def TargetCount(self, TargetCount):
|
|
14758
14761
|
self._TargetCount = TargetCount
|
|
14759
14762
|
|
|
14763
|
+
@property
|
|
14764
|
+
def AssociateEndpoint(self):
|
|
14765
|
+
"""负载均衡实例关联的Endpoint id。
|
|
14766
|
+
:rtype: str
|
|
14767
|
+
"""
|
|
14768
|
+
return self._AssociateEndpoint
|
|
14769
|
+
|
|
14770
|
+
@AssociateEndpoint.setter
|
|
14771
|
+
def AssociateEndpoint(self, AssociateEndpoint):
|
|
14772
|
+
self._AssociateEndpoint = AssociateEndpoint
|
|
14773
|
+
|
|
14760
14774
|
|
|
14761
14775
|
def _deserialize(self, params):
|
|
14762
14776
|
self._LoadBalancerId = params.get("LoadBalancerId")
|
|
@@ -14843,6 +14857,7 @@ ToaClean: TOA(TCP Option Address)清理,清除TCP选项中的地址信息
|
|
|
14843
14857
|
self._Egress = params.get("Egress")
|
|
14844
14858
|
self._Exclusive = params.get("Exclusive")
|
|
14845
14859
|
self._TargetCount = params.get("TargetCount")
|
|
14860
|
+
self._AssociateEndpoint = params.get("AssociateEndpoint")
|
|
14846
14861
|
memeber_set = set(params.keys())
|
|
14847
14862
|
for name, value in vars(self).items():
|
|
14848
14863
|
property_name = name[1:]
|
|
@@ -17099,6 +17114,8 @@ class ModifyLoadBalancerAttributesRequest(AbstractModel):
|
|
|
17099
17114
|
:type DeleteProtect: bool
|
|
17100
17115
|
:param _ModifyClassicDomain: 将负载均衡二级域名由mycloud.com改为tencentclb.com,子域名也会变换,修改后mycloud.com域名将失效。不填则不修改。
|
|
17101
17116
|
:type ModifyClassicDomain: bool
|
|
17117
|
+
:param _AssociateEndpoint: 关联的终端节点Id,可通过[DescribeVpcEndPoint](https://cloud.tencent.com/document/product/215/54679)接口查询。传空字符串代表解除关联。
|
|
17118
|
+
:type AssociateEndpoint: str
|
|
17102
17119
|
"""
|
|
17103
17120
|
self._LoadBalancerId = None
|
|
17104
17121
|
self._LoadBalancerName = None
|
|
@@ -17108,6 +17125,7 @@ class ModifyLoadBalancerAttributesRequest(AbstractModel):
|
|
|
17108
17125
|
self._SnatPro = None
|
|
17109
17126
|
self._DeleteProtect = None
|
|
17110
17127
|
self._ModifyClassicDomain = None
|
|
17128
|
+
self._AssociateEndpoint = None
|
|
17111
17129
|
|
|
17112
17130
|
@property
|
|
17113
17131
|
def LoadBalancerId(self):
|
|
@@ -17200,6 +17218,17 @@ class ModifyLoadBalancerAttributesRequest(AbstractModel):
|
|
|
17200
17218
|
def ModifyClassicDomain(self, ModifyClassicDomain):
|
|
17201
17219
|
self._ModifyClassicDomain = ModifyClassicDomain
|
|
17202
17220
|
|
|
17221
|
+
@property
|
|
17222
|
+
def AssociateEndpoint(self):
|
|
17223
|
+
"""关联的终端节点Id,可通过[DescribeVpcEndPoint](https://cloud.tencent.com/document/product/215/54679)接口查询。传空字符串代表解除关联。
|
|
17224
|
+
:rtype: str
|
|
17225
|
+
"""
|
|
17226
|
+
return self._AssociateEndpoint
|
|
17227
|
+
|
|
17228
|
+
@AssociateEndpoint.setter
|
|
17229
|
+
def AssociateEndpoint(self, AssociateEndpoint):
|
|
17230
|
+
self._AssociateEndpoint = AssociateEndpoint
|
|
17231
|
+
|
|
17203
17232
|
|
|
17204
17233
|
def _deserialize(self, params):
|
|
17205
17234
|
self._LoadBalancerId = params.get("LoadBalancerId")
|
|
@@ -17214,6 +17243,7 @@ class ModifyLoadBalancerAttributesRequest(AbstractModel):
|
|
|
17214
17243
|
self._SnatPro = params.get("SnatPro")
|
|
17215
17244
|
self._DeleteProtect = params.get("DeleteProtect")
|
|
17216
17245
|
self._ModifyClassicDomain = params.get("ModifyClassicDomain")
|
|
17246
|
+
self._AssociateEndpoint = params.get("AssociateEndpoint")
|
|
17217
17247
|
memeber_set = set(params.keys())
|
|
17218
17248
|
for name, value in vars(self).items():
|
|
17219
17249
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1447
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.0.1444
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|