tencentcloud-sdk-python-clb 3.0.1430__tar.gz → 3.0.1433__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.1430 → tencentcloud-sdk-python-clb-3.0.1433}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-clb-3.0.1430 → tencentcloud-sdk-python-clb-3.0.1433}/setup.py +1 -1
  3. {tencentcloud-sdk-python-clb-3.0.1430 → tencentcloud-sdk-python-clb-3.0.1433}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-clb-3.0.1430 → tencentcloud-sdk-python-clb-3.0.1433}/tencentcloud/clb/v20180317/models.py +45 -0
  5. {tencentcloud-sdk-python-clb-3.0.1430 → tencentcloud-sdk-python-clb-3.0.1433}/tencentcloud_sdk_python_clb.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-clb-3.0.1433/tencentcloud_sdk_python_clb.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-clb-3.0.1430/tencentcloud_sdk_python_clb.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-clb-3.0.1430 → tencentcloud-sdk-python-clb-3.0.1433}/README.rst +0 -0
  9. {tencentcloud-sdk-python-clb-3.0.1430 → tencentcloud-sdk-python-clb-3.0.1433}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-clb-3.0.1430 → tencentcloud-sdk-python-clb-3.0.1433}/tencentcloud/clb/__init__.py +0 -0
  11. {tencentcloud-sdk-python-clb-3.0.1430 → tencentcloud-sdk-python-clb-3.0.1433}/tencentcloud/clb/v20180317/__init__.py +0 -0
  12. {tencentcloud-sdk-python-clb-3.0.1430 → tencentcloud-sdk-python-clb-3.0.1433}/tencentcloud/clb/v20180317/clb_client.py +0 -0
  13. {tencentcloud-sdk-python-clb-3.0.1430 → tencentcloud-sdk-python-clb-3.0.1433}/tencentcloud/clb/v20180317/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-clb-3.0.1430 → tencentcloud-sdk-python-clb-3.0.1433}/tencentcloud_sdk_python_clb.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-clb-3.0.1430 → tencentcloud-sdk-python-clb-3.0.1433}/tencentcloud_sdk_python_clb.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-clb-3.0.1430 → tencentcloud-sdk-python-clb-3.0.1433}/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.1430
3
+ Version: 3.0.1433
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.1430,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.0.1433,<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.1430'
17
+ __version__ = '3.0.1433'
@@ -314,6 +314,8 @@ class AssociationItem(AbstractModel):
314
314
  :type ListenerName: str
315
315
  :param _Weight: 关联目标组的权重, 该参数只有v2新版目标组生效。
316
316
  :type Weight: int
317
+ :param _RuleId: 高级路由规则ID
318
+ :type RuleId: str
317
319
  """
318
320
  self._LoadBalancerId = None
319
321
  self._ListenerId = None
@@ -325,6 +327,7 @@ class AssociationItem(AbstractModel):
325
327
  self._LoadBalancerName = None
326
328
  self._ListenerName = None
327
329
  self._Weight = None
330
+ self._RuleId = None
328
331
 
329
332
  @property
330
333
  def LoadBalancerId(self):
@@ -439,6 +442,17 @@ class AssociationItem(AbstractModel):
439
442
  def Weight(self, Weight):
440
443
  self._Weight = Weight
441
444
 
445
+ @property
446
+ def RuleId(self):
447
+ """高级路由规则ID
448
+ :rtype: str
449
+ """
450
+ return self._RuleId
451
+
452
+ @RuleId.setter
453
+ def RuleId(self, RuleId):
454
+ self._RuleId = RuleId
455
+
442
456
 
443
457
  def _deserialize(self, params):
444
458
  self._LoadBalancerId = params.get("LoadBalancerId")
@@ -451,6 +465,7 @@ class AssociationItem(AbstractModel):
451
465
  self._LoadBalancerName = params.get("LoadBalancerName")
452
466
  self._ListenerName = params.get("ListenerName")
453
467
  self._Weight = params.get("Weight")
468
+ self._RuleId = params.get("RuleId")
454
469
  memeber_set = set(params.keys())
455
470
  for name, value in vars(self).items():
456
471
  property_name = name[1:]
@@ -4471,6 +4486,8 @@ OPEN:公网属性, INTERNAL:内网属性。
4471
4486
  :type LBChargeType: str
4472
4487
  :param _AccessLogTopicId: 七层访问日志主题ID
4473
4488
  :type AccessLogTopicId: str
4489
+ :param _AdvancedRoute: 是否开启七层高级路由
4490
+ :type AdvancedRoute: bool
4474
4491
  """
4475
4492
  self._LoadBalancerType = None
4476
4493
  self._Forward = None
@@ -4502,6 +4519,7 @@ OPEN:公网属性, INTERNAL:内网属性。
4502
4519
  self._LBChargePrepaid = None
4503
4520
  self._LBChargeType = None
4504
4521
  self._AccessLogTopicId = None
4522
+ self._AdvancedRoute = None
4505
4523
 
4506
4524
  @property
4507
4525
  def LoadBalancerType(self):
@@ -4839,6 +4857,17 @@ OPEN:公网属性, INTERNAL:内网属性。
4839
4857
  def AccessLogTopicId(self, AccessLogTopicId):
4840
4858
  self._AccessLogTopicId = AccessLogTopicId
4841
4859
 
4860
+ @property
4861
+ def AdvancedRoute(self):
4862
+ """是否开启七层高级路由
4863
+ :rtype: bool
4864
+ """
4865
+ return self._AdvancedRoute
4866
+
4867
+ @AdvancedRoute.setter
4868
+ def AdvancedRoute(self, AdvancedRoute):
4869
+ self._AdvancedRoute = AdvancedRoute
4870
+
4842
4871
 
4843
4872
  def _deserialize(self, params):
4844
4873
  self._LoadBalancerType = params.get("LoadBalancerType")
@@ -4887,6 +4916,7 @@ OPEN:公网属性, INTERNAL:内网属性。
4887
4916
  self._LBChargePrepaid._deserialize(params.get("LBChargePrepaid"))
4888
4917
  self._LBChargeType = params.get("LBChargeType")
4889
4918
  self._AccessLogTopicId = params.get("AccessLogTopicId")
4919
+ self._AdvancedRoute = params.get("AdvancedRoute")
4890
4920
  memeber_set = set(params.keys())
4891
4921
  for name, value in vars(self).items():
4892
4922
  property_name = name[1:]
@@ -19710,12 +19740,15 @@ class RuleHealth(AbstractModel):
19710
19740
  :param _Url: 转发规则的Url
19711
19741
  注意:此字段可能返回 null,表示取不到有效值。
19712
19742
  :type Url: str
19743
+ :param _RuleId: 高级路由规则ID
19744
+ :type RuleId: str
19713
19745
  :param _Targets: 本规则上绑定的后端服务的健康检查状态
19714
19746
  :type Targets: list of TargetHealth
19715
19747
  """
19716
19748
  self._LocationId = None
19717
19749
  self._Domain = None
19718
19750
  self._Url = None
19751
+ self._RuleId = None
19719
19752
  self._Targets = None
19720
19753
 
19721
19754
  @property
@@ -19753,6 +19786,17 @@ class RuleHealth(AbstractModel):
19753
19786
  def Url(self, Url):
19754
19787
  self._Url = Url
19755
19788
 
19789
+ @property
19790
+ def RuleId(self):
19791
+ """高级路由规则ID
19792
+ :rtype: str
19793
+ """
19794
+ return self._RuleId
19795
+
19796
+ @RuleId.setter
19797
+ def RuleId(self, RuleId):
19798
+ self._RuleId = RuleId
19799
+
19756
19800
  @property
19757
19801
  def Targets(self):
19758
19802
  """本规则上绑定的后端服务的健康检查状态
@@ -19769,6 +19813,7 @@ class RuleHealth(AbstractModel):
19769
19813
  self._LocationId = params.get("LocationId")
19770
19814
  self._Domain = params.get("Domain")
19771
19815
  self._Url = params.get("Url")
19816
+ self._RuleId = params.get("RuleId")
19772
19817
  if params.get("Targets") is not None:
19773
19818
  self._Targets = []
19774
19819
  for item in params.get("Targets"):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-clb
3
- Version: 3.0.1430
3
+ Version: 3.0.1433
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.1433
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.0.1430