tencentcloud-sdk-python-ssl 3.0.1304__tar.gz → 3.0.1306__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-ssl-3.0.1304 → tencentcloud-sdk-python-ssl-3.0.1306}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-ssl-3.0.1304 → tencentcloud-sdk-python-ssl-3.0.1306}/setup.py +1 -1
  3. {tencentcloud-sdk-python-ssl-3.0.1304 → tencentcloud-sdk-python-ssl-3.0.1306}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-ssl-3.0.1304 → tencentcloud-sdk-python-ssl-3.0.1306}/tencentcloud/ssl/v20191205/models.py +15 -0
  5. {tencentcloud-sdk-python-ssl-3.0.1304 → tencentcloud-sdk-python-ssl-3.0.1306}/tencentcloud_sdk_python_ssl.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-ssl-3.0.1306/tencentcloud_sdk_python_ssl.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-ssl-3.0.1304/tencentcloud_sdk_python_ssl.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-ssl-3.0.1304 → tencentcloud-sdk-python-ssl-3.0.1306}/README.rst +0 -0
  9. {tencentcloud-sdk-python-ssl-3.0.1304 → tencentcloud-sdk-python-ssl-3.0.1306}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-ssl-3.0.1304 → tencentcloud-sdk-python-ssl-3.0.1306}/tencentcloud/ssl/__init__.py +0 -0
  11. {tencentcloud-sdk-python-ssl-3.0.1304 → tencentcloud-sdk-python-ssl-3.0.1306}/tencentcloud/ssl/v20191205/__init__.py +0 -0
  12. {tencentcloud-sdk-python-ssl-3.0.1304 → tencentcloud-sdk-python-ssl-3.0.1306}/tencentcloud/ssl/v20191205/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-ssl-3.0.1304 → tencentcloud-sdk-python-ssl-3.0.1306}/tencentcloud/ssl/v20191205/ssl_client.py +0 -0
  14. {tencentcloud-sdk-python-ssl-3.0.1304 → tencentcloud-sdk-python-ssl-3.0.1306}/tencentcloud_sdk_python_ssl.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-ssl-3.0.1304 → tencentcloud-sdk-python-ssl-3.0.1306}/tencentcloud_sdk_python_ssl.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-ssl-3.0.1304 → tencentcloud-sdk-python-ssl-3.0.1306}/tencentcloud_sdk_python_ssl.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-ssl
3
- Version: 3.0.1304
3
+ Version: 3.0.1306
4
4
  Summary: Tencent Cloud Ssl 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-ssl',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1304"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1306"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Ssl 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.1304'
17
+ __version__ = '3.0.1306'
@@ -7938,6 +7938,8 @@ class DescribeCertificatesRequest(AbstractModel):
7938
7938
  :type Tags: list of Tags
7939
7939
  :param _IsPendingIssue: 是否筛选等待签发的证书,传1是筛选,0和null不筛选
7940
7940
  :type IsPendingIssue: int
7941
+ :param _CertIds: 筛选指定证书ID的证书,只支持有权限的证书ID
7942
+ :type CertIds: list of str
7941
7943
  """
7942
7944
  self._Offset = None
7943
7945
  self._Limit = None
@@ -7955,6 +7957,7 @@ class DescribeCertificatesRequest(AbstractModel):
7955
7957
  self._Hostable = None
7956
7958
  self._Tags = None
7957
7959
  self._IsPendingIssue = None
7960
+ self._CertIds = None
7958
7961
 
7959
7962
  @property
7960
7963
  def Offset(self):
@@ -8132,6 +8135,17 @@ class DescribeCertificatesRequest(AbstractModel):
8132
8135
  def IsPendingIssue(self, IsPendingIssue):
8133
8136
  self._IsPendingIssue = IsPendingIssue
8134
8137
 
8138
+ @property
8139
+ def CertIds(self):
8140
+ """筛选指定证书ID的证书,只支持有权限的证书ID
8141
+ :rtype: list of str
8142
+ """
8143
+ return self._CertIds
8144
+
8145
+ @CertIds.setter
8146
+ def CertIds(self, CertIds):
8147
+ self._CertIds = CertIds
8148
+
8135
8149
 
8136
8150
  def _deserialize(self, params):
8137
8151
  self._Offset = params.get("Offset")
@@ -8155,6 +8169,7 @@ class DescribeCertificatesRequest(AbstractModel):
8155
8169
  obj._deserialize(item)
8156
8170
  self._Tags.append(obj)
8157
8171
  self._IsPendingIssue = params.get("IsPendingIssue")
8172
+ self._CertIds = params.get("CertIds")
8158
8173
  memeber_set = set(params.keys())
8159
8174
  for name, value in vars(self).items():
8160
8175
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-ssl
3
- Version: 3.0.1304
3
+ Version: 3.0.1306
4
4
  Summary: Tencent Cloud Ssl 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.1306
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1304