tencentcloud-sdk-python-clb 3.1.152__tar.gz → 3.1.154__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.1.152 → tencentcloud_sdk_python_clb-3.1.154}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_clb-3.1.152 → tencentcloud_sdk_python_clb-3.1.154}/setup.py +1 -1
- {tencentcloud_sdk_python_clb-3.1.152 → tencentcloud_sdk_python_clb-3.1.154}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_clb-3.1.152 → tencentcloud_sdk_python_clb-3.1.154}/tencentcloud/clb/v20180317/models.py +128 -2
- {tencentcloud_sdk_python_clb-3.1.152 → tencentcloud_sdk_python_clb-3.1.154}/tencentcloud_sdk_python_clb.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_clb-3.1.154/tencentcloud_sdk_python_clb.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_clb-3.1.152/tencentcloud_sdk_python_clb.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_clb-3.1.152 → tencentcloud_sdk_python_clb-3.1.154}/README.rst +0 -0
- {tencentcloud_sdk_python_clb-3.1.152 → tencentcloud_sdk_python_clb-3.1.154}/setup.cfg +0 -0
- {tencentcloud_sdk_python_clb-3.1.152 → tencentcloud_sdk_python_clb-3.1.154}/tencentcloud/clb/__init__.py +0 -0
- {tencentcloud_sdk_python_clb-3.1.152 → tencentcloud_sdk_python_clb-3.1.154}/tencentcloud/clb/v20180317/__init__.py +0 -0
- {tencentcloud_sdk_python_clb-3.1.152 → tencentcloud_sdk_python_clb-3.1.154}/tencentcloud/clb/v20180317/clb_client.py +0 -0
- {tencentcloud_sdk_python_clb-3.1.152 → tencentcloud_sdk_python_clb-3.1.154}/tencentcloud/clb/v20180317/clb_client_async.py +0 -0
- {tencentcloud_sdk_python_clb-3.1.152 → tencentcloud_sdk_python_clb-3.1.154}/tencentcloud/clb/v20180317/errorcodes.py +0 -0
- {tencentcloud_sdk_python_clb-3.1.152 → tencentcloud_sdk_python_clb-3.1.154}/tencentcloud_sdk_python_clb.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_clb-3.1.152 → tencentcloud_sdk_python_clb-3.1.154}/tencentcloud_sdk_python_clb.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_clb-3.1.152 → tencentcloud_sdk_python_clb-3.1.154}/tencentcloud_sdk_python_clb.egg-info/top_level.txt +0 -0
|
@@ -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.154
|
|
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.154
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -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.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.154,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Clb SDK for Python',
|
|
@@ -7357,6 +7357,8 @@ class CreateModelRequest(AbstractModel):
|
|
|
7357
7357
|
:type Tags: list of TagInfo
|
|
7358
7358
|
:param _VerifySSL: <p>是否校验服务提供商的SSL证书</p>
|
|
7359
7359
|
:type VerifySSL: bool
|
|
7360
|
+
:param _HealthCheckConfig: <p>健康检查配置</p>
|
|
7361
|
+
:type HealthCheckConfig: :class:`tencentcloud.clb.v20180317.models.ServiceProviderHealthCheckConfigInput`
|
|
7360
7362
|
"""
|
|
7361
7363
|
self._AccessType = None
|
|
7362
7364
|
self._ModelProvider = None
|
|
@@ -7371,6 +7373,7 @@ class CreateModelRequest(AbstractModel):
|
|
|
7371
7373
|
self._HostHeader = None
|
|
7372
7374
|
self._Tags = None
|
|
7373
7375
|
self._VerifySSL = None
|
|
7376
|
+
self._HealthCheckConfig = None
|
|
7374
7377
|
|
|
7375
7378
|
@property
|
|
7376
7379
|
def AccessType(self):
|
|
@@ -7515,6 +7518,17 @@ class CreateModelRequest(AbstractModel):
|
|
|
7515
7518
|
def VerifySSL(self, VerifySSL):
|
|
7516
7519
|
self._VerifySSL = VerifySSL
|
|
7517
7520
|
|
|
7521
|
+
@property
|
|
7522
|
+
def HealthCheckConfig(self):
|
|
7523
|
+
r"""<p>健康检查配置</p>
|
|
7524
|
+
:rtype: :class:`tencentcloud.clb.v20180317.models.ServiceProviderHealthCheckConfigInput`
|
|
7525
|
+
"""
|
|
7526
|
+
return self._HealthCheckConfig
|
|
7527
|
+
|
|
7528
|
+
@HealthCheckConfig.setter
|
|
7529
|
+
def HealthCheckConfig(self, HealthCheckConfig):
|
|
7530
|
+
self._HealthCheckConfig = HealthCheckConfig
|
|
7531
|
+
|
|
7518
7532
|
|
|
7519
7533
|
def _deserialize(self, params):
|
|
7520
7534
|
self._AccessType = params.get("AccessType")
|
|
@@ -7545,6 +7559,9 @@ class CreateModelRequest(AbstractModel):
|
|
|
7545
7559
|
obj._deserialize(item)
|
|
7546
7560
|
self._Tags.append(obj)
|
|
7547
7561
|
self._VerifySSL = params.get("VerifySSL")
|
|
7562
|
+
if params.get("HealthCheckConfig") is not None:
|
|
7563
|
+
self._HealthCheckConfig = ServiceProviderHealthCheckConfigInput()
|
|
7564
|
+
self._HealthCheckConfig._deserialize(params.get("HealthCheckConfig"))
|
|
7548
7565
|
memeber_set = set(params.keys())
|
|
7549
7566
|
for name, value in vars(self).items():
|
|
7550
7567
|
property_name = name[1:]
|
|
@@ -14990,10 +15007,13 @@ class DescribeModelNamesRequest(AbstractModel):
|
|
|
14990
15007
|
:type Limit: int
|
|
14991
15008
|
:param _VpcId: <p>过滤PrivateCustom类型自建模型。如果传递了此参数,则只返回具有相同VPC Id的模型。</p>
|
|
14992
15009
|
:type VpcId: str
|
|
15010
|
+
:param _Filters: <p>过滤器,Name取值:</p><ul><li>ModelName:按照模型名称过滤。</li><li>ServiceProviderId:按照BYOK ID过滤。</li><li>InputModalitiesUnion:按照模态过滤。</li></ul>
|
|
15011
|
+
:type Filters: list of Filter
|
|
14993
15012
|
"""
|
|
14994
15013
|
self._Offset = None
|
|
14995
15014
|
self._Limit = None
|
|
14996
15015
|
self._VpcId = None
|
|
15016
|
+
self._Filters = None
|
|
14997
15017
|
|
|
14998
15018
|
@property
|
|
14999
15019
|
def Offset(self):
|
|
@@ -15028,11 +15048,28 @@ class DescribeModelNamesRequest(AbstractModel):
|
|
|
15028
15048
|
def VpcId(self, VpcId):
|
|
15029
15049
|
self._VpcId = VpcId
|
|
15030
15050
|
|
|
15051
|
+
@property
|
|
15052
|
+
def Filters(self):
|
|
15053
|
+
r"""<p>过滤器,Name取值:</p><ul><li>ModelName:按照模型名称过滤。</li><li>ServiceProviderId:按照BYOK ID过滤。</li><li>InputModalitiesUnion:按照模态过滤。</li></ul>
|
|
15054
|
+
:rtype: list of Filter
|
|
15055
|
+
"""
|
|
15056
|
+
return self._Filters
|
|
15057
|
+
|
|
15058
|
+
@Filters.setter
|
|
15059
|
+
def Filters(self, Filters):
|
|
15060
|
+
self._Filters = Filters
|
|
15061
|
+
|
|
15031
15062
|
|
|
15032
15063
|
def _deserialize(self, params):
|
|
15033
15064
|
self._Offset = params.get("Offset")
|
|
15034
15065
|
self._Limit = params.get("Limit")
|
|
15035
15066
|
self._VpcId = params.get("VpcId")
|
|
15067
|
+
if params.get("Filters") is not None:
|
|
15068
|
+
self._Filters = []
|
|
15069
|
+
for item in params.get("Filters"):
|
|
15070
|
+
obj = Filter()
|
|
15071
|
+
obj._deserialize(item)
|
|
15072
|
+
self._Filters.append(obj)
|
|
15036
15073
|
memeber_set = set(params.keys())
|
|
15037
15074
|
for name, value in vars(self).items():
|
|
15038
15075
|
property_name = name[1:]
|
|
@@ -24887,7 +24924,7 @@ class ModelKeyInfoItem(AbstractModel):
|
|
|
24887
24924
|
:param _ServiceProviderName: <p>服务提供商自定义名称</p>
|
|
24888
24925
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
24889
24926
|
:type ServiceProviderName: str
|
|
24890
|
-
:param _Status: <p>模型状态</p><p>枚举值:</p><ul><li>Active: 运行中</li><li>Provisioning: 创建中</li><li>Configuring: 变配中</li
|
|
24927
|
+
:param _Status: <p>模型状态</p><p>枚举值:</p><ul><li>Active: 运行中</li><li>Provisioning: 创建中</li><li>Configuring: 变配中</li></ul>
|
|
24891
24928
|
:type Status: str
|
|
24892
24929
|
:param _SubnetId: <p>子网 ID</p>
|
|
24893
24930
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -24899,6 +24936,8 @@ class ModelKeyInfoItem(AbstractModel):
|
|
|
24899
24936
|
:param _VpcId: <p>VPC 实例 ID</p>
|
|
24900
24937
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
24901
24938
|
:type VpcId: str
|
|
24939
|
+
:param _HealthCheckConfig: <p>健康检查配置</p>
|
|
24940
|
+
:type HealthCheckConfig: :class:`tencentcloud.clb.v20180317.models.ServiceProviderHealthCheckConfigOutput`
|
|
24902
24941
|
"""
|
|
24903
24942
|
self._AccessType = None
|
|
24904
24943
|
self._ApiBase = None
|
|
@@ -24917,6 +24956,7 @@ class ModelKeyInfoItem(AbstractModel):
|
|
|
24917
24956
|
self._Tags = None
|
|
24918
24957
|
self._VerifySSL = None
|
|
24919
24958
|
self._VpcId = None
|
|
24959
|
+
self._HealthCheckConfig = None
|
|
24920
24960
|
|
|
24921
24961
|
@property
|
|
24922
24962
|
def AccessType(self):
|
|
@@ -25056,7 +25096,7 @@ class ModelKeyInfoItem(AbstractModel):
|
|
|
25056
25096
|
|
|
25057
25097
|
@property
|
|
25058
25098
|
def Status(self):
|
|
25059
|
-
r"""<p>模型状态</p><p>枚举值:</p><ul><li>Active: 运行中</li><li>Provisioning: 创建中</li><li>Configuring: 变配中</li
|
|
25099
|
+
r"""<p>模型状态</p><p>枚举值:</p><ul><li>Active: 运行中</li><li>Provisioning: 创建中</li><li>Configuring: 变配中</li></ul>
|
|
25060
25100
|
:rtype: str
|
|
25061
25101
|
"""
|
|
25062
25102
|
return self._Status
|
|
@@ -25111,6 +25151,17 @@ class ModelKeyInfoItem(AbstractModel):
|
|
|
25111
25151
|
def VpcId(self, VpcId):
|
|
25112
25152
|
self._VpcId = VpcId
|
|
25113
25153
|
|
|
25154
|
+
@property
|
|
25155
|
+
def HealthCheckConfig(self):
|
|
25156
|
+
r"""<p>健康检查配置</p>
|
|
25157
|
+
:rtype: :class:`tencentcloud.clb.v20180317.models.ServiceProviderHealthCheckConfigOutput`
|
|
25158
|
+
"""
|
|
25159
|
+
return self._HealthCheckConfig
|
|
25160
|
+
|
|
25161
|
+
@HealthCheckConfig.setter
|
|
25162
|
+
def HealthCheckConfig(self, HealthCheckConfig):
|
|
25163
|
+
self._HealthCheckConfig = HealthCheckConfig
|
|
25164
|
+
|
|
25114
25165
|
|
|
25115
25166
|
def _deserialize(self, params):
|
|
25116
25167
|
self._AccessType = params.get("AccessType")
|
|
@@ -25145,6 +25196,9 @@ class ModelKeyInfoItem(AbstractModel):
|
|
|
25145
25196
|
self._Tags.append(obj)
|
|
25146
25197
|
self._VerifySSL = params.get("VerifySSL")
|
|
25147
25198
|
self._VpcId = params.get("VpcId")
|
|
25199
|
+
if params.get("HealthCheckConfig") is not None:
|
|
25200
|
+
self._HealthCheckConfig = ServiceProviderHealthCheckConfigOutput()
|
|
25201
|
+
self._HealthCheckConfig._deserialize(params.get("HealthCheckConfig"))
|
|
25148
25202
|
memeber_set = set(params.keys())
|
|
25149
25203
|
for name, value in vars(self).items():
|
|
25150
25204
|
property_name = name[1:]
|
|
@@ -34632,6 +34686,78 @@ class ServiceProviderCoefficient(AbstractModel):
|
|
|
34632
34686
|
|
|
34633
34687
|
|
|
34634
34688
|
|
|
34689
|
+
class ServiceProviderHealthCheckConfigInput(AbstractModel):
|
|
34690
|
+
r"""健康检查配置
|
|
34691
|
+
|
|
34692
|
+
"""
|
|
34693
|
+
|
|
34694
|
+
def __init__(self):
|
|
34695
|
+
r"""
|
|
34696
|
+
:param _HealthCheckEnabled: <p>是否开启健康检查</p><p>枚举值:</p><ul><li>true: 是</li><li>false: 否</li></ul>
|
|
34697
|
+
:type HealthCheckEnabled: bool
|
|
34698
|
+
"""
|
|
34699
|
+
self._HealthCheckEnabled = None
|
|
34700
|
+
|
|
34701
|
+
@property
|
|
34702
|
+
def HealthCheckEnabled(self):
|
|
34703
|
+
r"""<p>是否开启健康检查</p><p>枚举值:</p><ul><li>true: 是</li><li>false: 否</li></ul>
|
|
34704
|
+
:rtype: bool
|
|
34705
|
+
"""
|
|
34706
|
+
return self._HealthCheckEnabled
|
|
34707
|
+
|
|
34708
|
+
@HealthCheckEnabled.setter
|
|
34709
|
+
def HealthCheckEnabled(self, HealthCheckEnabled):
|
|
34710
|
+
self._HealthCheckEnabled = HealthCheckEnabled
|
|
34711
|
+
|
|
34712
|
+
|
|
34713
|
+
def _deserialize(self, params):
|
|
34714
|
+
self._HealthCheckEnabled = params.get("HealthCheckEnabled")
|
|
34715
|
+
memeber_set = set(params.keys())
|
|
34716
|
+
for name, value in vars(self).items():
|
|
34717
|
+
property_name = name[1:]
|
|
34718
|
+
if property_name in memeber_set:
|
|
34719
|
+
memeber_set.remove(property_name)
|
|
34720
|
+
if len(memeber_set) > 0:
|
|
34721
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
34722
|
+
|
|
34723
|
+
|
|
34724
|
+
|
|
34725
|
+
class ServiceProviderHealthCheckConfigOutput(AbstractModel):
|
|
34726
|
+
r"""健康检查配置
|
|
34727
|
+
|
|
34728
|
+
"""
|
|
34729
|
+
|
|
34730
|
+
def __init__(self):
|
|
34731
|
+
r"""
|
|
34732
|
+
:param _HealthCheckEnabled: <p>是否开启健康检查</p><p>枚举值:</p><ul><li>true: 是</li><li>false: 否</li></ul>
|
|
34733
|
+
:type HealthCheckEnabled: bool
|
|
34734
|
+
"""
|
|
34735
|
+
self._HealthCheckEnabled = None
|
|
34736
|
+
|
|
34737
|
+
@property
|
|
34738
|
+
def HealthCheckEnabled(self):
|
|
34739
|
+
r"""<p>是否开启健康检查</p><p>枚举值:</p><ul><li>true: 是</li><li>false: 否</li></ul>
|
|
34740
|
+
:rtype: bool
|
|
34741
|
+
"""
|
|
34742
|
+
return self._HealthCheckEnabled
|
|
34743
|
+
|
|
34744
|
+
@HealthCheckEnabled.setter
|
|
34745
|
+
def HealthCheckEnabled(self, HealthCheckEnabled):
|
|
34746
|
+
self._HealthCheckEnabled = HealthCheckEnabled
|
|
34747
|
+
|
|
34748
|
+
|
|
34749
|
+
def _deserialize(self, params):
|
|
34750
|
+
self._HealthCheckEnabled = params.get("HealthCheckEnabled")
|
|
34751
|
+
memeber_set = set(params.keys())
|
|
34752
|
+
for name, value in vars(self).items():
|
|
34753
|
+
property_name = name[1:]
|
|
34754
|
+
if property_name in memeber_set:
|
|
34755
|
+
memeber_set.remove(property_name)
|
|
34756
|
+
if len(memeber_set) > 0:
|
|
34757
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
34758
|
+
|
|
34759
|
+
|
|
34760
|
+
|
|
34635
34761
|
class ServiceProviderItem(AbstractModel):
|
|
34636
34762
|
r"""服务商详情
|
|
34637
34763
|
|
|
@@ -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.154
|
|
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.154
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.154
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.152
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|