tencentcloud-sdk-python-clb 3.0.1459__tar.gz → 3.0.1461__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.

Files changed (16) hide show
  1. {tencentcloud-sdk-python-clb-3.0.1459 → tencentcloud-sdk-python-clb-3.0.1461}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-clb-3.0.1459 → tencentcloud-sdk-python-clb-3.0.1461}/setup.py +1 -1
  3. {tencentcloud-sdk-python-clb-3.0.1459 → tencentcloud-sdk-python-clb-3.0.1461}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-clb-3.0.1459 → tencentcloud-sdk-python-clb-3.0.1461}/tencentcloud/clb/v20180317/models.py +32 -2
  5. {tencentcloud-sdk-python-clb-3.0.1459 → tencentcloud-sdk-python-clb-3.0.1461}/tencentcloud_sdk_python_clb.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-clb-3.0.1461/tencentcloud_sdk_python_clb.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-clb-3.0.1459/tencentcloud_sdk_python_clb.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-clb-3.0.1459 → tencentcloud-sdk-python-clb-3.0.1461}/README.rst +0 -0
  9. {tencentcloud-sdk-python-clb-3.0.1459 → tencentcloud-sdk-python-clb-3.0.1461}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-clb-3.0.1459 → tencentcloud-sdk-python-clb-3.0.1461}/tencentcloud/clb/__init__.py +0 -0
  11. {tencentcloud-sdk-python-clb-3.0.1459 → tencentcloud-sdk-python-clb-3.0.1461}/tencentcloud/clb/v20180317/__init__.py +0 -0
  12. {tencentcloud-sdk-python-clb-3.0.1459 → tencentcloud-sdk-python-clb-3.0.1461}/tencentcloud/clb/v20180317/clb_client.py +0 -0
  13. {tencentcloud-sdk-python-clb-3.0.1459 → tencentcloud-sdk-python-clb-3.0.1461}/tencentcloud/clb/v20180317/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-clb-3.0.1459 → tencentcloud-sdk-python-clb-3.0.1461}/tencentcloud_sdk_python_clb.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-clb-3.0.1459 → tencentcloud-sdk-python-clb-3.0.1461}/tencentcloud_sdk_python_clb.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-clb-3.0.1459 → tencentcloud-sdk-python-clb-3.0.1461}/tencentcloud_sdk_python_clb.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-clb
3
- Version: 3.0.1459
3
+ Version: 3.0.1461
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.1459,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.0.1461,<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(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1459'
17
+ __version__ = '3.0.1461'
@@ -5240,6 +5240,8 @@ class CreateTargetGroupRequest(AbstractModel):
5240
5240
  :type KeepaliveEnable: bool
5241
5241
  :param _SessionExpireTime: 会话保持时间,单位:秒。可选值:30~3600,默认 0,表示不开启。仅V2新版且后端转发协议为HTTP/HTTPS/GRPC目标组支持该参数。
5242
5242
  :type SessionExpireTime: int
5243
+ :param _IpVersion: IP版本类型。
5244
+ :type IpVersion: str
5243
5245
  """
5244
5246
  self._TargetGroupName = None
5245
5247
  self._VpcId = None
@@ -5254,6 +5256,7 @@ class CreateTargetGroupRequest(AbstractModel):
5254
5256
  self._FullListenSwitch = None
5255
5257
  self._KeepaliveEnable = None
5256
5258
  self._SessionExpireTime = None
5259
+ self._IpVersion = None
5257
5260
 
5258
5261
  @property
5259
5262
  def TargetGroupName(self):
@@ -5401,6 +5404,17 @@ class CreateTargetGroupRequest(AbstractModel):
5401
5404
  def SessionExpireTime(self, SessionExpireTime):
5402
5405
  self._SessionExpireTime = SessionExpireTime
5403
5406
 
5407
+ @property
5408
+ def IpVersion(self):
5409
+ r"""IP版本类型。
5410
+ :rtype: str
5411
+ """
5412
+ return self._IpVersion
5413
+
5414
+ @IpVersion.setter
5415
+ def IpVersion(self, IpVersion):
5416
+ self._IpVersion = IpVersion
5417
+
5404
5418
 
5405
5419
  def _deserialize(self, params):
5406
5420
  self._TargetGroupName = params.get("TargetGroupName")
@@ -5428,6 +5442,7 @@ class CreateTargetGroupRequest(AbstractModel):
5428
5442
  self._FullListenSwitch = params.get("FullListenSwitch")
5429
5443
  self._KeepaliveEnable = params.get("KeepaliveEnable")
5430
5444
  self._SessionExpireTime = params.get("SessionExpireTime")
5445
+ self._IpVersion = params.get("IpVersion")
5431
5446
  memeber_set = set(params.keys())
5432
5447
  for name, value in vars(self).items():
5433
5448
  property_name = name[1:]
@@ -19608,7 +19623,7 @@ class RsTagRule(AbstractModel):
19608
19623
  :type Targets: list of Target
19609
19624
  :param _LocationId: 转发规则的ID,七层规则时需要此参数,4层规则不需要。
19610
19625
  :type LocationId: str
19611
- :param _Tag: 后端服务修改后的标签。此参数的优先级低于前述[Target](https://cloud.tencent.com/document/api/214/30694#Target)中的Tag参数,即最终的标签以Target中的Tag参数值为准,仅当Target中的Weight参数为空时,才以RsTagRule中的Tag参数为准。
19626
+ :param _Tag: 后端服务修改后的标签。此参数的优先级低于前述[Target](https://cloud.tencent.com/document/api/214/30694#Target)中的Tag参数,即最终的标签以Target中的Tag参数值为准,仅当Target中的Tag参数为空时,才以RsTagRule中的Tag参数为准。
19612
19627
  :type Tag: str
19613
19628
  """
19614
19629
  self._ListenerId = None
@@ -19651,7 +19666,7 @@ class RsTagRule(AbstractModel):
19651
19666
 
19652
19667
  @property
19653
19668
  def Tag(self):
19654
- r"""后端服务修改后的标签。此参数的优先级低于前述[Target](https://cloud.tencent.com/document/api/214/30694#Target)中的Tag参数,即最终的标签以Target中的Tag参数值为准,仅当Target中的Weight参数为空时,才以RsTagRule中的Tag参数为准。
19669
+ r"""后端服务修改后的标签。此参数的优先级低于前述[Target](https://cloud.tencent.com/document/api/214/30694#Target)中的Tag参数,即最终的标签以Target中的Tag参数值为准,仅当Target中的Tag参数为空时,才以RsTagRule中的Tag参数为准。
19655
19670
  :rtype: str
19656
19671
  """
19657
19672
  return self._Tag
@@ -22289,6 +22304,8 @@ class TargetGroupInfo(AbstractModel):
22289
22304
  :type KeepaliveEnable: bool
22290
22305
  :param _SessionExpireTime: 会话保持时间,仅后端转发协议为HTTP/HTTPS/GRPC目标组返回有效值。
22291
22306
  :type SessionExpireTime: int
22307
+ :param _IpVersion: IP版本。
22308
+ :type IpVersion: str
22292
22309
  """
22293
22310
  self._TargetGroupId = None
22294
22311
  self._VpcId = None
@@ -22308,6 +22325,7 @@ class TargetGroupInfo(AbstractModel):
22308
22325
  self._FullListenSwitch = None
22309
22326
  self._KeepaliveEnable = None
22310
22327
  self._SessionExpireTime = None
22328
+ self._IpVersion = None
22311
22329
 
22312
22330
  @property
22313
22331
  def TargetGroupId(self):
@@ -22519,6 +22537,17 @@ class TargetGroupInfo(AbstractModel):
22519
22537
  def SessionExpireTime(self, SessionExpireTime):
22520
22538
  self._SessionExpireTime = SessionExpireTime
22521
22539
 
22540
+ @property
22541
+ def IpVersion(self):
22542
+ r"""IP版本。
22543
+ :rtype: str
22544
+ """
22545
+ return self._IpVersion
22546
+
22547
+ @IpVersion.setter
22548
+ def IpVersion(self, IpVersion):
22549
+ self._IpVersion = IpVersion
22550
+
22522
22551
 
22523
22552
  def _deserialize(self, params):
22524
22553
  self._TargetGroupId = params.get("TargetGroupId")
@@ -22551,6 +22580,7 @@ class TargetGroupInfo(AbstractModel):
22551
22580
  self._FullListenSwitch = params.get("FullListenSwitch")
22552
22581
  self._KeepaliveEnable = params.get("KeepaliveEnable")
22553
22582
  self._SessionExpireTime = params.get("SessionExpireTime")
22583
+ self._IpVersion = params.get("IpVersion")
22554
22584
  memeber_set = set(params.keys())
22555
22585
  for name, value in vars(self).items():
22556
22586
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-clb
3
- Version: 3.0.1459
3
+ Version: 3.0.1461
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<4.0.0,>=3.0.1461
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.0.1459