tencentcloud-sdk-python-clb 3.0.1328__tar.gz → 3.0.1330__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.
Files changed (16) hide show
  1. {tencentcloud-sdk-python-clb-3.0.1328 → tencentcloud-sdk-python-clb-3.0.1330}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-clb-3.0.1328 → tencentcloud-sdk-python-clb-3.0.1330}/setup.py +1 -1
  3. {tencentcloud-sdk-python-clb-3.0.1328 → tencentcloud-sdk-python-clb-3.0.1330}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-clb-3.0.1328 → tencentcloud-sdk-python-clb-3.0.1330}/tencentcloud/clb/v20180317/models.py +45 -0
  5. {tencentcloud-sdk-python-clb-3.0.1328 → tencentcloud-sdk-python-clb-3.0.1330}/tencentcloud_sdk_python_clb.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-clb-3.0.1330/tencentcloud_sdk_python_clb.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-clb-3.0.1328/tencentcloud_sdk_python_clb.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-clb-3.0.1328 → tencentcloud-sdk-python-clb-3.0.1330}/README.rst +0 -0
  9. {tencentcloud-sdk-python-clb-3.0.1328 → tencentcloud-sdk-python-clb-3.0.1330}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-clb-3.0.1328 → tencentcloud-sdk-python-clb-3.0.1330}/tencentcloud/clb/__init__.py +0 -0
  11. {tencentcloud-sdk-python-clb-3.0.1328 → tencentcloud-sdk-python-clb-3.0.1330}/tencentcloud/clb/v20180317/__init__.py +0 -0
  12. {tencentcloud-sdk-python-clb-3.0.1328 → tencentcloud-sdk-python-clb-3.0.1330}/tencentcloud/clb/v20180317/clb_client.py +0 -0
  13. {tencentcloud-sdk-python-clb-3.0.1328 → tencentcloud-sdk-python-clb-3.0.1330}/tencentcloud/clb/v20180317/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-clb-3.0.1328 → tencentcloud-sdk-python-clb-3.0.1330}/tencentcloud_sdk_python_clb.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-clb-3.0.1328 → tencentcloud-sdk-python-clb-3.0.1330}/tencentcloud_sdk_python_clb.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-clb-3.0.1328 → tencentcloud-sdk-python-clb-3.0.1330}/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.1328
3
+ Version: 3.0.1330
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.1328"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1330"],
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.1328'
17
+ __version__ = '3.0.1330'
@@ -1831,6 +1831,8 @@ class CertificateInput(AbstractModel):
1831
1831
  r"""
1832
1832
  :param _SSLMode: 认证类型,UNIDIRECTIONAL:单向认证,MUTUAL:双向认证
1833
1833
  :type SSLMode: str
1834
+ :param _SSLVerifyClient: 双向认证时,是否开启客户端认证,ON:开启,OPTIONAL:自适应,默认ON。
1835
+ :type SSLVerifyClient: str
1834
1836
  :param _CertId: 服务端证书的 ID,如果不填写此项则必须上传证书,包括 CertContent,CertKey,CertName。
1835
1837
  :type CertId: str
1836
1838
  :param _CertCaId: 客户端证书的 ID,当监听器采用双向认证,即 SSLMode=MUTUAL 时,如果不填写此项则必须上传客户端证书,包括 CertCaContent,CertCaName。
@@ -1847,6 +1849,7 @@ class CertificateInput(AbstractModel):
1847
1849
  :type CertCaContent: str
1848
1850
  """
1849
1851
  self._SSLMode = None
1852
+ self._SSLVerifyClient = None
1850
1853
  self._CertId = None
1851
1854
  self._CertCaId = None
1852
1855
  self._CertName = None
@@ -1866,6 +1869,17 @@ class CertificateInput(AbstractModel):
1866
1869
  def SSLMode(self, SSLMode):
1867
1870
  self._SSLMode = SSLMode
1868
1871
 
1872
+ @property
1873
+ def SSLVerifyClient(self):
1874
+ """双向认证时,是否开启客户端认证,ON:开启,OPTIONAL:自适应,默认ON。
1875
+ :rtype: str
1876
+ """
1877
+ return self._SSLVerifyClient
1878
+
1879
+ @SSLVerifyClient.setter
1880
+ def SSLVerifyClient(self, SSLVerifyClient):
1881
+ self._SSLVerifyClient = SSLVerifyClient
1882
+
1869
1883
  @property
1870
1884
  def CertId(self):
1871
1885
  """服务端证书的 ID,如果不填写此项则必须上传证书,包括 CertContent,CertKey,CertName。
@@ -1946,6 +1960,7 @@ class CertificateInput(AbstractModel):
1946
1960
 
1947
1961
  def _deserialize(self, params):
1948
1962
  self._SSLMode = params.get("SSLMode")
1963
+ self._SSLVerifyClient = params.get("SSLVerifyClient")
1949
1964
  self._CertId = params.get("CertId")
1950
1965
  self._CertCaId = params.get("CertCaId")
1951
1966
  self._CertName = params.get("CertName")
@@ -1972,6 +1987,8 @@ class CertificateOutput(AbstractModel):
1972
1987
  r"""
1973
1988
  :param _SSLMode: 认证类型,UNIDIRECTIONAL:单向认证,MUTUAL:双向认证
1974
1989
  :type SSLMode: str
1990
+ :param _SSLVerifyClient: 是否开启客户端证书验证,只在双向认证时生效。
1991
+ :type SSLVerifyClient: str
1975
1992
  :param _CertId: 服务端证书的ID。
1976
1993
  :type CertId: str
1977
1994
  :param _CertCaId: 客户端证书的 ID。
@@ -1982,6 +1999,7 @@ class CertificateOutput(AbstractModel):
1982
1999
  :type ExtCertIds: list of str
1983
2000
  """
1984
2001
  self._SSLMode = None
2002
+ self._SSLVerifyClient = None
1985
2003
  self._CertId = None
1986
2004
  self._CertCaId = None
1987
2005
  self._ExtCertIds = None
@@ -1997,6 +2015,17 @@ class CertificateOutput(AbstractModel):
1997
2015
  def SSLMode(self, SSLMode):
1998
2016
  self._SSLMode = SSLMode
1999
2017
 
2018
+ @property
2019
+ def SSLVerifyClient(self):
2020
+ """是否开启客户端证书验证,只在双向认证时生效。
2021
+ :rtype: str
2022
+ """
2023
+ return self._SSLVerifyClient
2024
+
2025
+ @SSLVerifyClient.setter
2026
+ def SSLVerifyClient(self, SSLVerifyClient):
2027
+ self._SSLVerifyClient = SSLVerifyClient
2028
+
2000
2029
  @property
2001
2030
  def CertId(self):
2002
2031
  """服务端证书的ID。
@@ -2035,6 +2064,7 @@ class CertificateOutput(AbstractModel):
2035
2064
 
2036
2065
  def _deserialize(self, params):
2037
2066
  self._SSLMode = params.get("SSLMode")
2067
+ self._SSLVerifyClient = params.get("SSLVerifyClient")
2038
2068
  self._CertId = params.get("CertId")
2039
2069
  self._CertCaId = params.get("CertCaId")
2040
2070
  self._ExtCertIds = params.get("ExtCertIds")
@@ -17767,9 +17797,12 @@ class MultiCertInfo(AbstractModel):
17767
17797
  :type SSLMode: str
17768
17798
  :param _CertList: 监听器或规则证书列表,单双向认证,多本服务端证书算法类型不能重复;若SSLMode为双向认证,证书列表必须包含一本ca证书。
17769
17799
  :type CertList: list of CertInfo
17800
+ :param _SSLVerifyClient: 双向认证时,是否开启客户端认证,ON:开启,OPTIONAL:自适应,默认ON
17801
+ :type SSLVerifyClient: str
17770
17802
  """
17771
17803
  self._SSLMode = None
17772
17804
  self._CertList = None
17805
+ self._SSLVerifyClient = None
17773
17806
 
17774
17807
  @property
17775
17808
  def SSLMode(self):
@@ -17793,6 +17826,17 @@ class MultiCertInfo(AbstractModel):
17793
17826
  def CertList(self, CertList):
17794
17827
  self._CertList = CertList
17795
17828
 
17829
+ @property
17830
+ def SSLVerifyClient(self):
17831
+ """双向认证时,是否开启客户端认证,ON:开启,OPTIONAL:自适应,默认ON
17832
+ :rtype: str
17833
+ """
17834
+ return self._SSLVerifyClient
17835
+
17836
+ @SSLVerifyClient.setter
17837
+ def SSLVerifyClient(self, SSLVerifyClient):
17838
+ self._SSLVerifyClient = SSLVerifyClient
17839
+
17796
17840
 
17797
17841
  def _deserialize(self, params):
17798
17842
  self._SSLMode = params.get("SSLMode")
@@ -17802,6 +17846,7 @@ class MultiCertInfo(AbstractModel):
17802
17846
  obj = CertInfo()
17803
17847
  obj._deserialize(item)
17804
17848
  self._CertList.append(obj)
17849
+ self._SSLVerifyClient = params.get("SSLVerifyClient")
17805
17850
  memeber_set = set(params.keys())
17806
17851
  for name, value in vars(self).items():
17807
17852
  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.1328
3
+ Version: 3.0.1330
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==3.0.1330
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1328