tencentcloud-sdk-python-ssl 3.0.1459__tar.gz → 3.0.1482__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_ssl-3.0.1482/PKG-INFO +46 -0
- {tencentcloud-sdk-python-ssl-3.0.1459 → tencentcloud_sdk_python_ssl-3.0.1482}/setup.py +1 -1
- {tencentcloud-sdk-python-ssl-3.0.1459 → tencentcloud_sdk_python_ssl-3.0.1482}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-ssl-3.0.1459 → tencentcloud_sdk_python_ssl-3.0.1482}/tencentcloud/ssl/v20191205/models.py +45 -0
- tencentcloud_sdk_python_ssl-3.0.1482/tencentcloud_sdk_python_ssl.egg-info/PKG-INFO +46 -0
- tencentcloud_sdk_python_ssl-3.0.1482/tencentcloud_sdk_python_ssl.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-ssl-3.0.1459/PKG-INFO +0 -45
- tencentcloud-sdk-python-ssl-3.0.1459/tencentcloud_sdk_python_ssl.egg-info/PKG-INFO +0 -45
- tencentcloud-sdk-python-ssl-3.0.1459/tencentcloud_sdk_python_ssl.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-ssl-3.0.1459 → tencentcloud_sdk_python_ssl-3.0.1482}/README.rst +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1459 → tencentcloud_sdk_python_ssl-3.0.1482}/setup.cfg +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1459 → tencentcloud_sdk_python_ssl-3.0.1482}/tencentcloud/ssl/__init__.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1459 → tencentcloud_sdk_python_ssl-3.0.1482}/tencentcloud/ssl/v20191205/__init__.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1459 → tencentcloud_sdk_python_ssl-3.0.1482}/tencentcloud/ssl/v20191205/errorcodes.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1459 → tencentcloud_sdk_python_ssl-3.0.1482}/tencentcloud/ssl/v20191205/ssl_client.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1459 → tencentcloud_sdk_python_ssl-3.0.1482}/tencentcloud_sdk_python_ssl.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1459 → tencentcloud_sdk_python_ssl-3.0.1482}/tencentcloud_sdk_python_ssl.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1459 → tencentcloud_sdk_python_ssl-3.0.1482}/tencentcloud_sdk_python_ssl.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: tencentcloud-sdk-python-ssl
|
|
3
|
+
Version: 3.0.1482
|
|
4
|
+
Summary: Tencent Cloud Ssl SDK for Python
|
|
5
|
+
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
|
+
Author: Tencent Cloud
|
|
7
|
+
Maintainer-email: tencentcloudapi@tencent.com
|
|
8
|
+
License: Apache License 2.0
|
|
9
|
+
Platform: any
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Programming Language :: Python
|
|
14
|
+
Classifier: Programming Language :: Python :: 2.7
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.6
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.0.1482
|
|
19
|
+
|
|
20
|
+
============================
|
|
21
|
+
Tencent Cloud SDK for Python
|
|
22
|
+
============================
|
|
23
|
+
|
|
24
|
+
Tencent Cloud Python Ssl SDK is the official software development kit, which allows Python developers to write software that makes use of Tencent Cloud services like CVM and CBS.
|
|
25
|
+
The SDK works on Python versions:
|
|
26
|
+
|
|
27
|
+
* 2.7 and greater, including 3.x
|
|
28
|
+
|
|
29
|
+
Quick Start
|
|
30
|
+
-----------
|
|
31
|
+
|
|
32
|
+
First, install the library:
|
|
33
|
+
|
|
34
|
+
.. code-block:: sh
|
|
35
|
+
|
|
36
|
+
$ pip install tencentcloud-sdk-python-common
|
|
37
|
+
$ pip install tencentcloud-sdk-python-ssl
|
|
38
|
+
|
|
39
|
+
or download source code from github and install:
|
|
40
|
+
|
|
41
|
+
.. code-block:: sh
|
|
42
|
+
|
|
43
|
+
$ git clone https://github.com/tencentcloud/tencentcloud-sdk-python.git
|
|
44
|
+
$ cd tencentcloud-sdk-python
|
|
45
|
+
$ python package.py --components common ssl
|
|
46
|
+
|
|
@@ -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.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.0.1482,<4.0.0"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Ssl SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -1540,6 +1540,8 @@ FILE:手动添加域名文件验证。 需要用户手动在域名站点根目
|
|
|
1540
1540
|
:type CaType: str
|
|
1541
1541
|
:param _SignAlgo: 签名算法
|
|
1542
1542
|
:type SignAlgo: str
|
|
1543
|
+
:param _UseCrossSignRoot: 是否使用交叉根证书
|
|
1544
|
+
:type UseCrossSignRoot: bool
|
|
1543
1545
|
"""
|
|
1544
1546
|
self._CertId = None
|
|
1545
1547
|
self._GenCsrType = None
|
|
@@ -1582,6 +1584,7 @@ FILE:手动添加域名文件验证。 需要用户手动在域名站点根目
|
|
|
1582
1584
|
self._Type = None
|
|
1583
1585
|
self._CaType = None
|
|
1584
1586
|
self._SignAlgo = None
|
|
1587
|
+
self._UseCrossSignRoot = None
|
|
1585
1588
|
|
|
1586
1589
|
@property
|
|
1587
1590
|
def CertId(self):
|
|
@@ -2059,6 +2062,17 @@ FILE:手动添加域名文件验证。 需要用户手动在域名站点根目
|
|
|
2059
2062
|
def SignAlgo(self, SignAlgo):
|
|
2060
2063
|
self._SignAlgo = SignAlgo
|
|
2061
2064
|
|
|
2065
|
+
@property
|
|
2066
|
+
def UseCrossSignRoot(self):
|
|
2067
|
+
r"""是否使用交叉根证书
|
|
2068
|
+
:rtype: bool
|
|
2069
|
+
"""
|
|
2070
|
+
return self._UseCrossSignRoot
|
|
2071
|
+
|
|
2072
|
+
@UseCrossSignRoot.setter
|
|
2073
|
+
def UseCrossSignRoot(self, UseCrossSignRoot):
|
|
2074
|
+
self._UseCrossSignRoot = UseCrossSignRoot
|
|
2075
|
+
|
|
2062
2076
|
|
|
2063
2077
|
def _deserialize(self, params):
|
|
2064
2078
|
self._CertId = params.get("CertId")
|
|
@@ -2102,6 +2116,7 @@ FILE:手动添加域名文件验证。 需要用户手动在域名站点根目
|
|
|
2102
2116
|
self._Type = params.get("Type")
|
|
2103
2117
|
self._CaType = params.get("CaType")
|
|
2104
2118
|
self._SignAlgo = params.get("SignAlgo")
|
|
2119
|
+
self._UseCrossSignRoot = params.get("UseCrossSignRoot")
|
|
2105
2120
|
memeber_set = set(params.keys())
|
|
2106
2121
|
for name, value in vars(self).items():
|
|
2107
2122
|
property_name = name[1:]
|
|
@@ -8463,6 +8478,8 @@ null:用户上传证书(没有套餐类型),
|
|
|
8463
8478
|
:type DomainType: int
|
|
8464
8479
|
:param _CertType: 证书类型,DV(域名型);OV(企业型);EV(增强型)
|
|
8465
8480
|
:type CertType: str
|
|
8481
|
+
:param _UseCrossSignRoot: 是否使用交叉根
|
|
8482
|
+
:type UseCrossSignRoot: bool
|
|
8466
8483
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
8467
8484
|
:type RequestId: str
|
|
8468
8485
|
"""
|
|
@@ -8510,6 +8527,7 @@ null:用户上传证书(没有套餐类型),
|
|
|
8510
8527
|
self._CertChainInfo = None
|
|
8511
8528
|
self._DomainType = None
|
|
8512
8529
|
self._CertType = None
|
|
8530
|
+
self._UseCrossSignRoot = None
|
|
8513
8531
|
self._RequestId = None
|
|
8514
8532
|
|
|
8515
8533
|
@property
|
|
@@ -9114,6 +9132,17 @@ null:用户上传证书(没有套餐类型),
|
|
|
9114
9132
|
def CertType(self, CertType):
|
|
9115
9133
|
self._CertType = CertType
|
|
9116
9134
|
|
|
9135
|
+
@property
|
|
9136
|
+
def UseCrossSignRoot(self):
|
|
9137
|
+
r"""是否使用交叉根
|
|
9138
|
+
:rtype: bool
|
|
9139
|
+
"""
|
|
9140
|
+
return self._UseCrossSignRoot
|
|
9141
|
+
|
|
9142
|
+
@UseCrossSignRoot.setter
|
|
9143
|
+
def UseCrossSignRoot(self, UseCrossSignRoot):
|
|
9144
|
+
self._UseCrossSignRoot = UseCrossSignRoot
|
|
9145
|
+
|
|
9117
9146
|
@property
|
|
9118
9147
|
def RequestId(self):
|
|
9119
9148
|
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -9194,6 +9223,7 @@ null:用户上传证书(没有套餐类型),
|
|
|
9194
9223
|
self._CertChainInfo.append(obj)
|
|
9195
9224
|
self._DomainType = params.get("DomainType")
|
|
9196
9225
|
self._CertType = params.get("CertType")
|
|
9226
|
+
self._UseCrossSignRoot = params.get("UseCrossSignRoot")
|
|
9197
9227
|
self._RequestId = params.get("RequestId")
|
|
9198
9228
|
|
|
9199
9229
|
|
|
@@ -17560,6 +17590,8 @@ class ReplaceCertificateRequest(AbstractModel):
|
|
|
17560
17590
|
:type CertCSRKeyParameter: str
|
|
17561
17591
|
:param _SignAlgo: 签名算法
|
|
17562
17592
|
:type SignAlgo: str
|
|
17593
|
+
:param _UseCrossSignRoot: 是否使用交叉根证书,默认为true
|
|
17594
|
+
:type UseCrossSignRoot: bool
|
|
17563
17595
|
"""
|
|
17564
17596
|
self._CertificateId = None
|
|
17565
17597
|
self._ValidType = None
|
|
@@ -17570,6 +17602,7 @@ class ReplaceCertificateRequest(AbstractModel):
|
|
|
17570
17602
|
self._CertCSREncryptAlgo = None
|
|
17571
17603
|
self._CertCSRKeyParameter = None
|
|
17572
17604
|
self._SignAlgo = None
|
|
17605
|
+
self._UseCrossSignRoot = None
|
|
17573
17606
|
|
|
17574
17607
|
@property
|
|
17575
17608
|
def CertificateId(self):
|
|
@@ -17671,6 +17704,17 @@ class ReplaceCertificateRequest(AbstractModel):
|
|
|
17671
17704
|
def SignAlgo(self, SignAlgo):
|
|
17672
17705
|
self._SignAlgo = SignAlgo
|
|
17673
17706
|
|
|
17707
|
+
@property
|
|
17708
|
+
def UseCrossSignRoot(self):
|
|
17709
|
+
r"""是否使用交叉根证书,默认为true
|
|
17710
|
+
:rtype: bool
|
|
17711
|
+
"""
|
|
17712
|
+
return self._UseCrossSignRoot
|
|
17713
|
+
|
|
17714
|
+
@UseCrossSignRoot.setter
|
|
17715
|
+
def UseCrossSignRoot(self, UseCrossSignRoot):
|
|
17716
|
+
self._UseCrossSignRoot = UseCrossSignRoot
|
|
17717
|
+
|
|
17674
17718
|
|
|
17675
17719
|
def _deserialize(self, params):
|
|
17676
17720
|
self._CertificateId = params.get("CertificateId")
|
|
@@ -17682,6 +17726,7 @@ class ReplaceCertificateRequest(AbstractModel):
|
|
|
17682
17726
|
self._CertCSREncryptAlgo = params.get("CertCSREncryptAlgo")
|
|
17683
17727
|
self._CertCSRKeyParameter = params.get("CertCSRKeyParameter")
|
|
17684
17728
|
self._SignAlgo = params.get("SignAlgo")
|
|
17729
|
+
self._UseCrossSignRoot = params.get("UseCrossSignRoot")
|
|
17685
17730
|
memeber_set = set(params.keys())
|
|
17686
17731
|
for name, value in vars(self).items():
|
|
17687
17732
|
property_name = name[1:]
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: tencentcloud-sdk-python-ssl
|
|
3
|
+
Version: 3.0.1482
|
|
4
|
+
Summary: Tencent Cloud Ssl SDK for Python
|
|
5
|
+
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
|
+
Author: Tencent Cloud
|
|
7
|
+
Maintainer-email: tencentcloudapi@tencent.com
|
|
8
|
+
License: Apache License 2.0
|
|
9
|
+
Platform: any
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Programming Language :: Python
|
|
14
|
+
Classifier: Programming Language :: Python :: 2.7
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.6
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.0.1482
|
|
19
|
+
|
|
20
|
+
============================
|
|
21
|
+
Tencent Cloud SDK for Python
|
|
22
|
+
============================
|
|
23
|
+
|
|
24
|
+
Tencent Cloud Python Ssl SDK is the official software development kit, which allows Python developers to write software that makes use of Tencent Cloud services like CVM and CBS.
|
|
25
|
+
The SDK works on Python versions:
|
|
26
|
+
|
|
27
|
+
* 2.7 and greater, including 3.x
|
|
28
|
+
|
|
29
|
+
Quick Start
|
|
30
|
+
-----------
|
|
31
|
+
|
|
32
|
+
First, install the library:
|
|
33
|
+
|
|
34
|
+
.. code-block:: sh
|
|
35
|
+
|
|
36
|
+
$ pip install tencentcloud-sdk-python-common
|
|
37
|
+
$ pip install tencentcloud-sdk-python-ssl
|
|
38
|
+
|
|
39
|
+
or download source code from github and install:
|
|
40
|
+
|
|
41
|
+
.. code-block:: sh
|
|
42
|
+
|
|
43
|
+
$ git clone https://github.com/tencentcloud/tencentcloud-sdk-python.git
|
|
44
|
+
$ cd tencentcloud-sdk-python
|
|
45
|
+
$ python package.py --components common ssl
|
|
46
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1482
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 1.2
|
|
2
|
-
Name: tencentcloud-sdk-python-ssl
|
|
3
|
-
Version: 3.0.1459
|
|
4
|
-
Summary: Tencent Cloud Ssl SDK for Python
|
|
5
|
-
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
|
-
Author: Tencent Cloud
|
|
7
|
-
Maintainer-email: tencentcloudapi@tencent.com
|
|
8
|
-
License: Apache License 2.0
|
|
9
|
-
Description: ============================
|
|
10
|
-
Tencent Cloud SDK for Python
|
|
11
|
-
============================
|
|
12
|
-
|
|
13
|
-
Tencent Cloud Python Ssl SDK is the official software development kit, which allows Python developers to write software that makes use of Tencent Cloud services like CVM and CBS.
|
|
14
|
-
The SDK works on Python versions:
|
|
15
|
-
|
|
16
|
-
* 2.7 and greater, including 3.x
|
|
17
|
-
|
|
18
|
-
Quick Start
|
|
19
|
-
-----------
|
|
20
|
-
|
|
21
|
-
First, install the library:
|
|
22
|
-
|
|
23
|
-
.. code-block:: sh
|
|
24
|
-
|
|
25
|
-
$ pip install tencentcloud-sdk-python-common
|
|
26
|
-
$ pip install tencentcloud-sdk-python-ssl
|
|
27
|
-
|
|
28
|
-
or download source code from github and install:
|
|
29
|
-
|
|
30
|
-
.. code-block:: sh
|
|
31
|
-
|
|
32
|
-
$ git clone https://github.com/tencentcloud/tencentcloud-sdk-python.git
|
|
33
|
-
$ cd tencentcloud-sdk-python
|
|
34
|
-
$ python package.py --components common ssl
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
Platform: any
|
|
38
|
-
Classifier: Development Status :: 5 - Production/Stable
|
|
39
|
-
Classifier: Intended Audience :: Developers
|
|
40
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
41
|
-
Classifier: Programming Language :: Python
|
|
42
|
-
Classifier: Programming Language :: Python :: 2.7
|
|
43
|
-
Classifier: Programming Language :: Python :: 3
|
|
44
|
-
Classifier: Programming Language :: Python :: 3.6
|
|
45
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 1.2
|
|
2
|
-
Name: tencentcloud-sdk-python-ssl
|
|
3
|
-
Version: 3.0.1459
|
|
4
|
-
Summary: Tencent Cloud Ssl SDK for Python
|
|
5
|
-
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
|
-
Author: Tencent Cloud
|
|
7
|
-
Maintainer-email: tencentcloudapi@tencent.com
|
|
8
|
-
License: Apache License 2.0
|
|
9
|
-
Description: ============================
|
|
10
|
-
Tencent Cloud SDK for Python
|
|
11
|
-
============================
|
|
12
|
-
|
|
13
|
-
Tencent Cloud Python Ssl SDK is the official software development kit, which allows Python developers to write software that makes use of Tencent Cloud services like CVM and CBS.
|
|
14
|
-
The SDK works on Python versions:
|
|
15
|
-
|
|
16
|
-
* 2.7 and greater, including 3.x
|
|
17
|
-
|
|
18
|
-
Quick Start
|
|
19
|
-
-----------
|
|
20
|
-
|
|
21
|
-
First, install the library:
|
|
22
|
-
|
|
23
|
-
.. code-block:: sh
|
|
24
|
-
|
|
25
|
-
$ pip install tencentcloud-sdk-python-common
|
|
26
|
-
$ pip install tencentcloud-sdk-python-ssl
|
|
27
|
-
|
|
28
|
-
or download source code from github and install:
|
|
29
|
-
|
|
30
|
-
.. code-block:: sh
|
|
31
|
-
|
|
32
|
-
$ git clone https://github.com/tencentcloud/tencentcloud-sdk-python.git
|
|
33
|
-
$ cd tencentcloud-sdk-python
|
|
34
|
-
$ python package.py --components common ssl
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
Platform: any
|
|
38
|
-
Classifier: Development Status :: 5 - Production/Stable
|
|
39
|
-
Classifier: Intended Audience :: Developers
|
|
40
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
41
|
-
Classifier: Programming Language :: Python
|
|
42
|
-
Classifier: Programming Language :: Python :: 2.7
|
|
43
|
-
Classifier: Programming Language :: Python :: 3
|
|
44
|
-
Classifier: Programming Language :: Python :: 3.6
|
|
45
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.0.1459
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|