tencentcloud-sdk-python-clb 3.0.1285__tar.gz → 3.0.1289__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.0.1285 → tencentcloud-sdk-python-clb-3.0.1289}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-clb-3.0.1285 → tencentcloud-sdk-python-clb-3.0.1289}/setup.py +1 -1
- {tencentcloud-sdk-python-clb-3.0.1285 → tencentcloud-sdk-python-clb-3.0.1289}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-clb-3.0.1285 → tencentcloud-sdk-python-clb-3.0.1289}/tencentcloud/clb/v20180317/clb_client.py +0 -1
- {tencentcloud-sdk-python-clb-3.0.1285 → tencentcloud-sdk-python-clb-3.0.1289}/tencentcloud/clb/v20180317/models.py +17 -0
- {tencentcloud-sdk-python-clb-3.0.1285 → tencentcloud-sdk-python-clb-3.0.1289}/tencentcloud_sdk_python_clb.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-clb-3.0.1289/tencentcloud_sdk_python_clb.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-clb-3.0.1285/tencentcloud_sdk_python_clb.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-clb-3.0.1285 → tencentcloud-sdk-python-clb-3.0.1289}/README.rst +0 -0
- {tencentcloud-sdk-python-clb-3.0.1285 → tencentcloud-sdk-python-clb-3.0.1289}/setup.cfg +0 -0
- {tencentcloud-sdk-python-clb-3.0.1285 → tencentcloud-sdk-python-clb-3.0.1289}/tencentcloud/clb/__init__.py +0 -0
- {tencentcloud-sdk-python-clb-3.0.1285 → tencentcloud-sdk-python-clb-3.0.1289}/tencentcloud/clb/v20180317/__init__.py +0 -0
- {tencentcloud-sdk-python-clb-3.0.1285 → tencentcloud-sdk-python-clb-3.0.1289}/tencentcloud/clb/v20180317/errorcodes.py +0 -0
- {tencentcloud-sdk-python-clb-3.0.1285 → tencentcloud-sdk-python-clb-3.0.1289}/tencentcloud_sdk_python_clb.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-clb-3.0.1285 → tencentcloud-sdk-python-clb-3.0.1289}/tencentcloud_sdk_python_clb.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-clb-3.0.1285 → tencentcloud-sdk-python-clb-3.0.1289}/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.1289"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Clb SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -188,7 +188,6 @@ class ClbClient(AbstractClient):
|
|
|
188
188
|
通过接口调用:
|
|
189
189
|
BGP带宽包必须传带宽包id
|
|
190
190
|
独占集群克隆必须传对应的参数,否则按共享型创建
|
|
191
|
-
功能内测中,请提交 [内测申请](https://cloud.tencent.com/apply/p/1akuvsmyn0g)。
|
|
192
191
|
|
|
193
192
|
:param request: Request instance for CloneLoadBalancer.
|
|
194
193
|
:type request: :class:`tencentcloud.clb.v20180317.models.CloneLoadBalancerRequest`
|
|
@@ -672,10 +672,14 @@ class BatchDeregisterTargetsResponse(AbstractModel):
|
|
|
672
672
|
r"""
|
|
673
673
|
:param _FailListenerIdSet: 解绑失败的监听器ID。
|
|
674
674
|
:type FailListenerIdSet: list of str
|
|
675
|
+
:param _Message: 解绑失败错误原因信息。
|
|
676
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
677
|
+
:type Message: str
|
|
675
678
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
676
679
|
:type RequestId: str
|
|
677
680
|
"""
|
|
678
681
|
self._FailListenerIdSet = None
|
|
682
|
+
self._Message = None
|
|
679
683
|
self._RequestId = None
|
|
680
684
|
|
|
681
685
|
@property
|
|
@@ -689,6 +693,18 @@ class BatchDeregisterTargetsResponse(AbstractModel):
|
|
|
689
693
|
def FailListenerIdSet(self, FailListenerIdSet):
|
|
690
694
|
self._FailListenerIdSet = FailListenerIdSet
|
|
691
695
|
|
|
696
|
+
@property
|
|
697
|
+
def Message(self):
|
|
698
|
+
"""解绑失败错误原因信息。
|
|
699
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
700
|
+
:rtype: str
|
|
701
|
+
"""
|
|
702
|
+
return self._Message
|
|
703
|
+
|
|
704
|
+
@Message.setter
|
|
705
|
+
def Message(self, Message):
|
|
706
|
+
self._Message = Message
|
|
707
|
+
|
|
692
708
|
@property
|
|
693
709
|
def RequestId(self):
|
|
694
710
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -703,6 +719,7 @@ class BatchDeregisterTargetsResponse(AbstractModel):
|
|
|
703
719
|
|
|
704
720
|
def _deserialize(self, params):
|
|
705
721
|
self._FailListenerIdSet = params.get("FailListenerIdSet")
|
|
722
|
+
self._Message = params.get("Message")
|
|
706
723
|
self._RequestId = params.get("RequestId")
|
|
707
724
|
|
|
708
725
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1289
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1285
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|