tencentcloud-sdk-python-clb 3.0.1222__tar.gz → 3.0.1237__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.1222 → tencentcloud-sdk-python-clb-3.0.1237}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-clb-3.0.1222 → tencentcloud-sdk-python-clb-3.0.1237}/setup.py +1 -1
- {tencentcloud-sdk-python-clb-3.0.1222 → tencentcloud-sdk-python-clb-3.0.1237}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-clb-3.0.1222 → tencentcloud-sdk-python-clb-3.0.1237}/tencentcloud/clb/v20180317/models.py +53 -1
- {tencentcloud-sdk-python-clb-3.0.1222 → tencentcloud-sdk-python-clb-3.0.1237}/tencentcloud_sdk_python_clb.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-clb-3.0.1237/tencentcloud_sdk_python_clb.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-clb-3.0.1222/tencentcloud_sdk_python_clb.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-clb-3.0.1222 → tencentcloud-sdk-python-clb-3.0.1237}/README.rst +0 -0
- {tencentcloud-sdk-python-clb-3.0.1222 → tencentcloud-sdk-python-clb-3.0.1237}/setup.cfg +0 -0
- {tencentcloud-sdk-python-clb-3.0.1222 → tencentcloud-sdk-python-clb-3.0.1237}/tencentcloud/clb/__init__.py +0 -0
- {tencentcloud-sdk-python-clb-3.0.1222 → tencentcloud-sdk-python-clb-3.0.1237}/tencentcloud/clb/v20180317/__init__.py +0 -0
- {tencentcloud-sdk-python-clb-3.0.1222 → tencentcloud-sdk-python-clb-3.0.1237}/tencentcloud/clb/v20180317/clb_client.py +0 -0
- {tencentcloud-sdk-python-clb-3.0.1222 → tencentcloud-sdk-python-clb-3.0.1237}/tencentcloud/clb/v20180317/errorcodes.py +0 -0
- {tencentcloud-sdk-python-clb-3.0.1222 → tencentcloud-sdk-python-clb-3.0.1237}/tencentcloud_sdk_python_clb.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-clb-3.0.1222 → tencentcloud-sdk-python-clb-3.0.1237}/tencentcloud_sdk_python_clb.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-clb-3.0.1222 → tencentcloud-sdk-python-clb-3.0.1237}/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.1237"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Clb SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -3064,6 +3064,8 @@ class CreateListenerRequest(AbstractModel):
|
|
|
3064
3064
|
:type IdleConnectTimeout: int
|
|
3065
3065
|
:param _SnatEnable: 是否开启SNAT。
|
|
3066
3066
|
:type SnatEnable: bool
|
|
3067
|
+
:param _FullEndPorts: 全端口段监听器的结束端口
|
|
3068
|
+
:type FullEndPorts: list of int
|
|
3067
3069
|
"""
|
|
3068
3070
|
self._LoadBalancerId = None
|
|
3069
3071
|
self._Ports = None
|
|
@@ -3084,6 +3086,7 @@ class CreateListenerRequest(AbstractModel):
|
|
|
3084
3086
|
self._MaxCps = None
|
|
3085
3087
|
self._IdleConnectTimeout = None
|
|
3086
3088
|
self._SnatEnable = None
|
|
3089
|
+
self._FullEndPorts = None
|
|
3087
3090
|
|
|
3088
3091
|
@property
|
|
3089
3092
|
def LoadBalancerId(self):
|
|
@@ -3237,6 +3240,14 @@ class CreateListenerRequest(AbstractModel):
|
|
|
3237
3240
|
def SnatEnable(self, SnatEnable):
|
|
3238
3241
|
self._SnatEnable = SnatEnable
|
|
3239
3242
|
|
|
3243
|
+
@property
|
|
3244
|
+
def FullEndPorts(self):
|
|
3245
|
+
return self._FullEndPorts
|
|
3246
|
+
|
|
3247
|
+
@FullEndPorts.setter
|
|
3248
|
+
def FullEndPorts(self, FullEndPorts):
|
|
3249
|
+
self._FullEndPorts = FullEndPorts
|
|
3250
|
+
|
|
3240
3251
|
|
|
3241
3252
|
def _deserialize(self, params):
|
|
3242
3253
|
self._LoadBalancerId = params.get("LoadBalancerId")
|
|
@@ -3264,6 +3275,7 @@ class CreateListenerRequest(AbstractModel):
|
|
|
3264
3275
|
self._MaxCps = params.get("MaxCps")
|
|
3265
3276
|
self._IdleConnectTimeout = params.get("IdleConnectTimeout")
|
|
3266
3277
|
self._SnatEnable = params.get("SnatEnable")
|
|
3278
|
+
self._FullEndPorts = params.get("FullEndPorts")
|
|
3267
3279
|
memeber_set = set(params.keys())
|
|
3268
3280
|
for name, value in vars(self).items():
|
|
3269
3281
|
property_name = name[1:]
|
|
@@ -11406,7 +11418,7 @@ class LoadBalancerDetail(AbstractModel):
|
|
|
11406
11418
|
:param _LoadBalancerName: 负载均衡实例的名称。
|
|
11407
11419
|
:type LoadBalancerName: str
|
|
11408
11420
|
:param _LoadBalancerType: 负载均衡实例的网络类型:
|
|
11409
|
-
|
|
11421
|
+
OPEN:公网属性,INTERNAL:内网属性。
|
|
11410
11422
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11411
11423
|
:type LoadBalancerType: str
|
|
11412
11424
|
:param _Status: 负载均衡实例的状态,包括
|
|
@@ -11518,6 +11530,16 @@ Public:公网属性, Private:内网属性。
|
|
|
11518
11530
|
:param _Egress: 网络出口
|
|
11519
11531
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11520
11532
|
:type Egress: str
|
|
11533
|
+
:param _AttributeFlags: 负载均衡的属性
|
|
11534
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11535
|
+
:type AttributeFlags: list of str
|
|
11536
|
+
:param _SlaType: 负载均衡实例的规格类型信息<ul><li> clb.c1.small:简约型规格 </li><li>clb.c2.medium:标准型规格 </li><li> clb.c3.small:高阶型1规格 </li><li> clb.c3.medium:高阶型2规格 </li><li> clb.c4.small:超强型1规格 </li><li> clb.c4.medium:超强型2规格 </li><li> clb.c4.large:超强型3规格 </li><li> clb.c4.xlarge:超强型4规格 </li><li>"":非性能容量型实例</li></ul>
|
|
11537
|
+
|
|
11538
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11539
|
+
:type SlaType: str
|
|
11540
|
+
:param _Exclusive: 0:表示非独占型实例,1:表示独占型态实例。
|
|
11541
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11542
|
+
:type Exclusive: int
|
|
11521
11543
|
"""
|
|
11522
11544
|
self._LoadBalancerId = None
|
|
11523
11545
|
self._LoadBalancerName = None
|
|
@@ -11558,6 +11580,9 @@ Public:公网属性, Private:内网属性。
|
|
|
11558
11580
|
self._SniSwitch = None
|
|
11559
11581
|
self._LoadBalancerDomain = None
|
|
11560
11582
|
self._Egress = None
|
|
11583
|
+
self._AttributeFlags = None
|
|
11584
|
+
self._SlaType = None
|
|
11585
|
+
self._Exclusive = None
|
|
11561
11586
|
|
|
11562
11587
|
@property
|
|
11563
11588
|
def LoadBalancerId(self):
|
|
@@ -11871,6 +11896,30 @@ Public:公网属性, Private:内网属性。
|
|
|
11871
11896
|
def Egress(self, Egress):
|
|
11872
11897
|
self._Egress = Egress
|
|
11873
11898
|
|
|
11899
|
+
@property
|
|
11900
|
+
def AttributeFlags(self):
|
|
11901
|
+
return self._AttributeFlags
|
|
11902
|
+
|
|
11903
|
+
@AttributeFlags.setter
|
|
11904
|
+
def AttributeFlags(self, AttributeFlags):
|
|
11905
|
+
self._AttributeFlags = AttributeFlags
|
|
11906
|
+
|
|
11907
|
+
@property
|
|
11908
|
+
def SlaType(self):
|
|
11909
|
+
return self._SlaType
|
|
11910
|
+
|
|
11911
|
+
@SlaType.setter
|
|
11912
|
+
def SlaType(self, SlaType):
|
|
11913
|
+
self._SlaType = SlaType
|
|
11914
|
+
|
|
11915
|
+
@property
|
|
11916
|
+
def Exclusive(self):
|
|
11917
|
+
return self._Exclusive
|
|
11918
|
+
|
|
11919
|
+
@Exclusive.setter
|
|
11920
|
+
def Exclusive(self, Exclusive):
|
|
11921
|
+
self._Exclusive = Exclusive
|
|
11922
|
+
|
|
11874
11923
|
|
|
11875
11924
|
def _deserialize(self, params):
|
|
11876
11925
|
self._LoadBalancerId = params.get("LoadBalancerId")
|
|
@@ -11923,6 +11972,9 @@ Public:公网属性, Private:内网属性。
|
|
|
11923
11972
|
self._SniSwitch = params.get("SniSwitch")
|
|
11924
11973
|
self._LoadBalancerDomain = params.get("LoadBalancerDomain")
|
|
11925
11974
|
self._Egress = params.get("Egress")
|
|
11975
|
+
self._AttributeFlags = params.get("AttributeFlags")
|
|
11976
|
+
self._SlaType = params.get("SlaType")
|
|
11977
|
+
self._Exclusive = params.get("Exclusive")
|
|
11926
11978
|
memeber_set = set(params.keys())
|
|
11927
11979
|
for name, value in vars(self).items():
|
|
11928
11980
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1237
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1222
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|