tencentcloud-sdk-python-clb 3.0.1459__tar.gz → 3.0.1463__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.1459 → tencentcloud-sdk-python-clb-3.0.1463}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-clb-3.0.1459 → tencentcloud-sdk-python-clb-3.0.1463}/setup.py +1 -1
- {tencentcloud-sdk-python-clb-3.0.1459 → tencentcloud-sdk-python-clb-3.0.1463}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-clb-3.0.1459 → tencentcloud-sdk-python-clb-3.0.1463}/tencentcloud/clb/v20180317/models.py +52 -2
- {tencentcloud-sdk-python-clb-3.0.1459 → tencentcloud-sdk-python-clb-3.0.1463}/tencentcloud_sdk_python_clb.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-clb-3.0.1463/tencentcloud_sdk_python_clb.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-clb-3.0.1459/tencentcloud_sdk_python_clb.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-clb-3.0.1459 → tencentcloud-sdk-python-clb-3.0.1463}/README.rst +0 -0
- {tencentcloud-sdk-python-clb-3.0.1459 → tencentcloud-sdk-python-clb-3.0.1463}/setup.cfg +0 -0
- {tencentcloud-sdk-python-clb-3.0.1459 → tencentcloud-sdk-python-clb-3.0.1463}/tencentcloud/clb/__init__.py +0 -0
- {tencentcloud-sdk-python-clb-3.0.1459 → tencentcloud-sdk-python-clb-3.0.1463}/tencentcloud/clb/v20180317/__init__.py +0 -0
- {tencentcloud-sdk-python-clb-3.0.1459 → tencentcloud-sdk-python-clb-3.0.1463}/tencentcloud/clb/v20180317/clb_client.py +0 -0
- {tencentcloud-sdk-python-clb-3.0.1459 → tencentcloud-sdk-python-clb-3.0.1463}/tencentcloud/clb/v20180317/errorcodes.py +0 -0
- {tencentcloud-sdk-python-clb-3.0.1459 → tencentcloud-sdk-python-clb-3.0.1463}/tencentcloud_sdk_python_clb.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-clb-3.0.1459 → tencentcloud-sdk-python-clb-3.0.1463}/tencentcloud_sdk_python_clb.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-clb-3.0.1459 → tencentcloud-sdk-python-clb-3.0.1463}/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.1463,<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(),
|
|
@@ -31,10 +31,13 @@ class AddCustomizedConfigRequest(AbstractModel):
|
|
|
31
31
|
:type ConfigType: str
|
|
32
32
|
:param _ConfigContent: 配置内容
|
|
33
33
|
:type ConfigContent: str
|
|
34
|
+
:param _Tags: 标签
|
|
35
|
+
:type Tags: list of TagInfo
|
|
34
36
|
"""
|
|
35
37
|
self._ConfigName = None
|
|
36
38
|
self._ConfigType = None
|
|
37
39
|
self._ConfigContent = None
|
|
40
|
+
self._Tags = None
|
|
38
41
|
|
|
39
42
|
@property
|
|
40
43
|
def ConfigName(self):
|
|
@@ -69,11 +72,28 @@ class AddCustomizedConfigRequest(AbstractModel):
|
|
|
69
72
|
def ConfigContent(self, ConfigContent):
|
|
70
73
|
self._ConfigContent = ConfigContent
|
|
71
74
|
|
|
75
|
+
@property
|
|
76
|
+
def Tags(self):
|
|
77
|
+
r"""标签
|
|
78
|
+
:rtype: list of TagInfo
|
|
79
|
+
"""
|
|
80
|
+
return self._Tags
|
|
81
|
+
|
|
82
|
+
@Tags.setter
|
|
83
|
+
def Tags(self, Tags):
|
|
84
|
+
self._Tags = Tags
|
|
85
|
+
|
|
72
86
|
|
|
73
87
|
def _deserialize(self, params):
|
|
74
88
|
self._ConfigName = params.get("ConfigName")
|
|
75
89
|
self._ConfigType = params.get("ConfigType")
|
|
76
90
|
self._ConfigContent = params.get("ConfigContent")
|
|
91
|
+
if params.get("Tags") is not None:
|
|
92
|
+
self._Tags = []
|
|
93
|
+
for item in params.get("Tags"):
|
|
94
|
+
obj = TagInfo()
|
|
95
|
+
obj._deserialize(item)
|
|
96
|
+
self._Tags.append(obj)
|
|
77
97
|
memeber_set = set(params.keys())
|
|
78
98
|
for name, value in vars(self).items():
|
|
79
99
|
property_name = name[1:]
|
|
@@ -5240,6 +5260,8 @@ class CreateTargetGroupRequest(AbstractModel):
|
|
|
5240
5260
|
:type KeepaliveEnable: bool
|
|
5241
5261
|
:param _SessionExpireTime: 会话保持时间,单位:秒。可选值:30~3600,默认 0,表示不开启。仅V2新版且后端转发协议为HTTP/HTTPS/GRPC目标组支持该参数。
|
|
5242
5262
|
:type SessionExpireTime: int
|
|
5263
|
+
:param _IpVersion: IP版本类型。
|
|
5264
|
+
:type IpVersion: str
|
|
5243
5265
|
"""
|
|
5244
5266
|
self._TargetGroupName = None
|
|
5245
5267
|
self._VpcId = None
|
|
@@ -5254,6 +5276,7 @@ class CreateTargetGroupRequest(AbstractModel):
|
|
|
5254
5276
|
self._FullListenSwitch = None
|
|
5255
5277
|
self._KeepaliveEnable = None
|
|
5256
5278
|
self._SessionExpireTime = None
|
|
5279
|
+
self._IpVersion = None
|
|
5257
5280
|
|
|
5258
5281
|
@property
|
|
5259
5282
|
def TargetGroupName(self):
|
|
@@ -5401,6 +5424,17 @@ class CreateTargetGroupRequest(AbstractModel):
|
|
|
5401
5424
|
def SessionExpireTime(self, SessionExpireTime):
|
|
5402
5425
|
self._SessionExpireTime = SessionExpireTime
|
|
5403
5426
|
|
|
5427
|
+
@property
|
|
5428
|
+
def IpVersion(self):
|
|
5429
|
+
r"""IP版本类型。
|
|
5430
|
+
:rtype: str
|
|
5431
|
+
"""
|
|
5432
|
+
return self._IpVersion
|
|
5433
|
+
|
|
5434
|
+
@IpVersion.setter
|
|
5435
|
+
def IpVersion(self, IpVersion):
|
|
5436
|
+
self._IpVersion = IpVersion
|
|
5437
|
+
|
|
5404
5438
|
|
|
5405
5439
|
def _deserialize(self, params):
|
|
5406
5440
|
self._TargetGroupName = params.get("TargetGroupName")
|
|
@@ -5428,6 +5462,7 @@ class CreateTargetGroupRequest(AbstractModel):
|
|
|
5428
5462
|
self._FullListenSwitch = params.get("FullListenSwitch")
|
|
5429
5463
|
self._KeepaliveEnable = params.get("KeepaliveEnable")
|
|
5430
5464
|
self._SessionExpireTime = params.get("SessionExpireTime")
|
|
5465
|
+
self._IpVersion = params.get("IpVersion")
|
|
5431
5466
|
memeber_set = set(params.keys())
|
|
5432
5467
|
for name, value in vars(self).items():
|
|
5433
5468
|
property_name = name[1:]
|
|
@@ -19608,7 +19643,7 @@ class RsTagRule(AbstractModel):
|
|
|
19608
19643
|
:type Targets: list of Target
|
|
19609
19644
|
:param _LocationId: 转发规则的ID,七层规则时需要此参数,4层规则不需要。
|
|
19610
19645
|
:type LocationId: str
|
|
19611
|
-
:param _Tag: 后端服务修改后的标签。此参数的优先级低于前述[Target](https://cloud.tencent.com/document/api/214/30694#Target)中的Tag参数,即最终的标签以Target中的Tag参数值为准,仅当Target中的
|
|
19646
|
+
:param _Tag: 后端服务修改后的标签。此参数的优先级低于前述[Target](https://cloud.tencent.com/document/api/214/30694#Target)中的Tag参数,即最终的标签以Target中的Tag参数值为准,仅当Target中的Tag参数为空时,才以RsTagRule中的Tag参数为准。
|
|
19612
19647
|
:type Tag: str
|
|
19613
19648
|
"""
|
|
19614
19649
|
self._ListenerId = None
|
|
@@ -19651,7 +19686,7 @@ class RsTagRule(AbstractModel):
|
|
|
19651
19686
|
|
|
19652
19687
|
@property
|
|
19653
19688
|
def Tag(self):
|
|
19654
|
-
r"""后端服务修改后的标签。此参数的优先级低于前述[Target](https://cloud.tencent.com/document/api/214/30694#Target)中的Tag参数,即最终的标签以Target中的Tag参数值为准,仅当Target中的
|
|
19689
|
+
r"""后端服务修改后的标签。此参数的优先级低于前述[Target](https://cloud.tencent.com/document/api/214/30694#Target)中的Tag参数,即最终的标签以Target中的Tag参数值为准,仅当Target中的Tag参数为空时,才以RsTagRule中的Tag参数为准。
|
|
19655
19690
|
:rtype: str
|
|
19656
19691
|
"""
|
|
19657
19692
|
return self._Tag
|
|
@@ -22289,6 +22324,8 @@ class TargetGroupInfo(AbstractModel):
|
|
|
22289
22324
|
:type KeepaliveEnable: bool
|
|
22290
22325
|
:param _SessionExpireTime: 会话保持时间,仅后端转发协议为HTTP/HTTPS/GRPC目标组返回有效值。
|
|
22291
22326
|
:type SessionExpireTime: int
|
|
22327
|
+
:param _IpVersion: IP版本。
|
|
22328
|
+
:type IpVersion: str
|
|
22292
22329
|
"""
|
|
22293
22330
|
self._TargetGroupId = None
|
|
22294
22331
|
self._VpcId = None
|
|
@@ -22308,6 +22345,7 @@ class TargetGroupInfo(AbstractModel):
|
|
|
22308
22345
|
self._FullListenSwitch = None
|
|
22309
22346
|
self._KeepaliveEnable = None
|
|
22310
22347
|
self._SessionExpireTime = None
|
|
22348
|
+
self._IpVersion = None
|
|
22311
22349
|
|
|
22312
22350
|
@property
|
|
22313
22351
|
def TargetGroupId(self):
|
|
@@ -22519,6 +22557,17 @@ class TargetGroupInfo(AbstractModel):
|
|
|
22519
22557
|
def SessionExpireTime(self, SessionExpireTime):
|
|
22520
22558
|
self._SessionExpireTime = SessionExpireTime
|
|
22521
22559
|
|
|
22560
|
+
@property
|
|
22561
|
+
def IpVersion(self):
|
|
22562
|
+
r"""IP版本。
|
|
22563
|
+
:rtype: str
|
|
22564
|
+
"""
|
|
22565
|
+
return self._IpVersion
|
|
22566
|
+
|
|
22567
|
+
@IpVersion.setter
|
|
22568
|
+
def IpVersion(self, IpVersion):
|
|
22569
|
+
self._IpVersion = IpVersion
|
|
22570
|
+
|
|
22522
22571
|
|
|
22523
22572
|
def _deserialize(self, params):
|
|
22524
22573
|
self._TargetGroupId = params.get("TargetGroupId")
|
|
@@ -22551,6 +22600,7 @@ class TargetGroupInfo(AbstractModel):
|
|
|
22551
22600
|
self._FullListenSwitch = params.get("FullListenSwitch")
|
|
22552
22601
|
self._KeepaliveEnable = params.get("KeepaliveEnable")
|
|
22553
22602
|
self._SessionExpireTime = params.get("SessionExpireTime")
|
|
22603
|
+
self._IpVersion = params.get("IpVersion")
|
|
22554
22604
|
memeber_set = set(params.keys())
|
|
22555
22605
|
for name, value in vars(self).items():
|
|
22556
22606
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1463
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.0.1459
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|