tencentcloud-sdk-python-clb 3.1.63__py2.py3-none-any.whl → 3.1.82__py2.py3-none-any.whl
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/__init__.py +1 -1
- tencentcloud/clb/v20180317/clb_client.py +0 -1
- tencentcloud/clb/v20180317/clb_client_async.py +0 -1
- tencentcloud/clb/v20180317/models.py +19 -4
- {tencentcloud_sdk_python_clb-3.1.63.dist-info → tencentcloud_sdk_python_clb-3.1.82.dist-info}/METADATA +2 -2
- tencentcloud_sdk_python_clb-3.1.82.dist-info/RECORD +11 -0
- tencentcloud_sdk_python_clb-3.1.63.dist-info/RECORD +0 -11
- {tencentcloud_sdk_python_clb-3.1.63.dist-info → tencentcloud_sdk_python_clb-3.1.82.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_clb-3.1.63.dist-info → tencentcloud_sdk_python_clb-3.1.82.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -1747,7 +1747,6 @@ class ClbClient(AbstractClient):
|
|
|
1747
1747
|
def ModifyLoadBalancerSla(self, request):
|
|
1748
1748
|
r"""本接口(ModifyLoadBalancerSla)用于调整按量计费模式实例的性能容量型规格,如共享型升级性能容量型,性能容量型实例规格调整。<br/>
|
|
1749
1749
|
限制条件:
|
|
1750
|
-
- 本接口只支持调整按量计费的CLB实例,包年包月的CLB实例升级请通过控制台进行调整。
|
|
1751
1750
|
- 共享型升级为性能容量型实例后,不支持再回退到共享型实例。
|
|
1752
1751
|
- 传统型负载均衡实例不支持升级为性能容量型实例。
|
|
1753
1752
|
|
|
@@ -1391,7 +1391,6 @@ class ClbClient(AbstractClient):
|
|
|
1391
1391
|
"""
|
|
1392
1392
|
本接口(ModifyLoadBalancerSla)用于调整按量计费模式实例的性能容量型规格,如共享型升级性能容量型,性能容量型实例规格调整。<br/>
|
|
1393
1393
|
限制条件:
|
|
1394
|
-
- 本接口只支持调整按量计费的CLB实例,包年包月的CLB实例升级请通过控制台进行调整。
|
|
1395
1394
|
- 共享型升级为性能容量型实例后,不支持再回退到共享型实例。
|
|
1396
1395
|
- 传统型负载均衡实例不支持升级为性能容量型实例。
|
|
1397
1396
|
"""
|
|
@@ -11422,9 +11422,9 @@ class Filter(AbstractModel):
|
|
|
11422
11422
|
|
|
11423
11423
|
def __init__(self):
|
|
11424
11424
|
r"""
|
|
11425
|
-
:param _Name:
|
|
11425
|
+
:param _Name: <p>过滤器的名称</p>
|
|
11426
11426
|
:type Name: str
|
|
11427
|
-
:param _Values:
|
|
11427
|
+
:param _Values: <p>过滤器的值数组</p>
|
|
11428
11428
|
:type Values: list of str
|
|
11429
11429
|
"""
|
|
11430
11430
|
self._Name = None
|
|
@@ -11432,7 +11432,7 @@ class Filter(AbstractModel):
|
|
|
11432
11432
|
|
|
11433
11433
|
@property
|
|
11434
11434
|
def Name(self):
|
|
11435
|
-
r"""
|
|
11435
|
+
r"""<p>过滤器的名称</p>
|
|
11436
11436
|
:rtype: str
|
|
11437
11437
|
"""
|
|
11438
11438
|
return self._Name
|
|
@@ -11443,7 +11443,7 @@ class Filter(AbstractModel):
|
|
|
11443
11443
|
|
|
11444
11444
|
@property
|
|
11445
11445
|
def Values(self):
|
|
11446
|
-
r"""
|
|
11446
|
+
r"""<p>过滤器的值数组</p>
|
|
11447
11447
|
:rtype: list of str
|
|
11448
11448
|
"""
|
|
11449
11449
|
return self._Values
|
|
@@ -17540,11 +17540,25 @@ class ModifyLoadBalancerSlaResponse(AbstractModel):
|
|
|
17540
17540
|
|
|
17541
17541
|
def __init__(self):
|
|
17542
17542
|
r"""
|
|
17543
|
+
:param _DealName: 订单号。
|
|
17544
|
+
:type DealName: str
|
|
17543
17545
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
17544
17546
|
:type RequestId: str
|
|
17545
17547
|
"""
|
|
17548
|
+
self._DealName = None
|
|
17546
17549
|
self._RequestId = None
|
|
17547
17550
|
|
|
17551
|
+
@property
|
|
17552
|
+
def DealName(self):
|
|
17553
|
+
r"""订单号。
|
|
17554
|
+
:rtype: str
|
|
17555
|
+
"""
|
|
17556
|
+
return self._DealName
|
|
17557
|
+
|
|
17558
|
+
@DealName.setter
|
|
17559
|
+
def DealName(self, DealName):
|
|
17560
|
+
self._DealName = DealName
|
|
17561
|
+
|
|
17548
17562
|
@property
|
|
17549
17563
|
def RequestId(self):
|
|
17550
17564
|
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -17558,6 +17572,7 @@ class ModifyLoadBalancerSlaResponse(AbstractModel):
|
|
|
17558
17572
|
|
|
17559
17573
|
|
|
17560
17574
|
def _deserialize(self, params):
|
|
17575
|
+
self._DealName = params.get("DealName")
|
|
17561
17576
|
self._RequestId = params.get("RequestId")
|
|
17562
17577
|
|
|
17563
17578
|
|
|
@@ -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.82
|
|
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.82
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
tencentcloud/__init__.py,sha256=qPaClau-ISWk1CLHYlJbaO-q6wxXcMr-OesRVfrfvuM,629
|
|
2
|
+
tencentcloud/clb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
tencentcloud/clb/v20180317/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
tencentcloud/clb/v20180317/clb_client.py,sha256=-j3HCz9mybC6OpiInlrv0tncPOnKynga3fzI_WFhYaY,104728
|
|
5
|
+
tencentcloud/clb/v20180317/clb_client_async.py,sha256=dxAX7zJp-oIdw3dPC31HzNpB18EPqldgwmTWCoWD9_Q,76939
|
|
6
|
+
tencentcloud/clb/v20180317/errorcodes.py,sha256=DWBTc63K2Gw4bCEmPH6ACc1qJMdCP_80qbZqnXL6Ka8,4800
|
|
7
|
+
tencentcloud/clb/v20180317/models.py,sha256=HWdDrego24YrsOzEQYX9nk1SZZrV5ygM4O42mdTggkw,828138
|
|
8
|
+
tencentcloud_sdk_python_clb-3.1.82.dist-info/METADATA,sha256=j2DZ60tBkZ17YKlZUjYPSj-gvU9zF8qj4HN4i5_9Xe4,1495
|
|
9
|
+
tencentcloud_sdk_python_clb-3.1.82.dist-info/WHEEL,sha256=a5ogxI61vGGBHYbAAwISCXsfU7mxKr76gTpCEmSNOI8,109
|
|
10
|
+
tencentcloud_sdk_python_clb-3.1.82.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
11
|
+
tencentcloud_sdk_python_clb-3.1.82.dist-info/RECORD,,
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=ksDT-mgQf68aath5ZNpe6wz7WmhDdGwc3IvAk5lHQK4,629
|
|
2
|
-
tencentcloud/clb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
tencentcloud/clb/v20180317/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
tencentcloud/clb/v20180317/clb_client.py,sha256=x5fnEZB-LerkqlI3oSpUdzu_uS7QpDTJhi1PA4oG3Qg,104853
|
|
5
|
-
tencentcloud/clb/v20180317/clb_client_async.py,sha256=_K8833XJY5irYmiqm3oOIQ30aWRRTD7ANS8M8NAB_eY,77064
|
|
6
|
-
tencentcloud/clb/v20180317/errorcodes.py,sha256=DWBTc63K2Gw4bCEmPH6ACc1qJMdCP_80qbZqnXL6Ka8,4800
|
|
7
|
-
tencentcloud/clb/v20180317/models.py,sha256=wGnOO7NjkhnMSJwl7RKc2LFbmwnIgAzJP6ir9uTaNaI,827749
|
|
8
|
-
tencentcloud_sdk_python_clb-3.1.63.dist-info/METADATA,sha256=gP7kumXzTctbn7P_mhBQU2ldbPjUNuKtyvRd9vJTv4M,1495
|
|
9
|
-
tencentcloud_sdk_python_clb-3.1.63.dist-info/WHEEL,sha256=a5ogxI61vGGBHYbAAwISCXsfU7mxKr76gTpCEmSNOI8,109
|
|
10
|
-
tencentcloud_sdk_python_clb-3.1.63.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
11
|
-
tencentcloud_sdk_python_clb-3.1.63.dist-info/RECORD,,
|
{tencentcloud_sdk_python_clb-3.1.63.dist-info → tencentcloud_sdk_python_clb-3.1.82.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|