tencentcloud-sdk-python-cbs 3.1.39__tar.gz → 3.1.95__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_cbs-3.1.39 → tencentcloud_sdk_python_cbs-3.1.95}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_cbs-3.1.39 → tencentcloud_sdk_python_cbs-3.1.95}/setup.py +1 -1
- {tencentcloud_sdk_python_cbs-3.1.39 → tencentcloud_sdk_python_cbs-3.1.95}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_cbs-3.1.39 → tencentcloud_sdk_python_cbs-3.1.95}/tencentcloud/cbs/v20170312/models.py +4 -4
- {tencentcloud_sdk_python_cbs-3.1.39 → tencentcloud_sdk_python_cbs-3.1.95}/tencentcloud_sdk_python_cbs.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_cbs-3.1.95/tencentcloud_sdk_python_cbs.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_cbs-3.1.39/tencentcloud_sdk_python_cbs.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_cbs-3.1.39 → tencentcloud_sdk_python_cbs-3.1.95}/README.rst +0 -0
- {tencentcloud_sdk_python_cbs-3.1.39 → tencentcloud_sdk_python_cbs-3.1.95}/setup.cfg +0 -0
- {tencentcloud_sdk_python_cbs-3.1.39 → tencentcloud_sdk_python_cbs-3.1.95}/tencentcloud/cbs/__init__.py +0 -0
- {tencentcloud_sdk_python_cbs-3.1.39 → tencentcloud_sdk_python_cbs-3.1.95}/tencentcloud/cbs/v20170312/__init__.py +0 -0
- {tencentcloud_sdk_python_cbs-3.1.39 → tencentcloud_sdk_python_cbs-3.1.95}/tencentcloud/cbs/v20170312/cbs_client.py +0 -0
- {tencentcloud_sdk_python_cbs-3.1.39 → tencentcloud_sdk_python_cbs-3.1.95}/tencentcloud/cbs/v20170312/cbs_client_async.py +0 -0
- {tencentcloud_sdk_python_cbs-3.1.39 → tencentcloud_sdk_python_cbs-3.1.95}/tencentcloud/cbs/v20170312/errorcodes.py +0 -0
- {tencentcloud_sdk_python_cbs-3.1.39 → tencentcloud_sdk_python_cbs-3.1.95}/tencentcloud_sdk_python_cbs.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_cbs-3.1.39 → tencentcloud_sdk_python_cbs-3.1.95}/tencentcloud_sdk_python_cbs.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_cbs-3.1.39 → tencentcloud_sdk_python_cbs-3.1.95}/tencentcloud_sdk_python_cbs.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cbs
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.95
|
|
4
4
|
Summary: Tencent Cloud Cbs 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.95
|
|
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-cbs',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.95,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Cbs SDK for Python',
|
|
@@ -3817,14 +3817,14 @@ class DescribeInstancesDiskNumRequest(AbstractModel):
|
|
|
3817
3817
|
|
|
3818
3818
|
def __init__(self):
|
|
3819
3819
|
r"""
|
|
3820
|
-
:param _InstanceIds:
|
|
3820
|
+
:param _InstanceIds: <p>云服务器实例ID,通过<a href="/document/product/213/15728">DescribeInstances</a>接口查询。</p>
|
|
3821
3821
|
:type InstanceIds: list of str
|
|
3822
3822
|
"""
|
|
3823
3823
|
self._InstanceIds = None
|
|
3824
3824
|
|
|
3825
3825
|
@property
|
|
3826
3826
|
def InstanceIds(self):
|
|
3827
|
-
r"""
|
|
3827
|
+
r"""<p>云服务器实例ID,通过<a href="/document/product/213/15728">DescribeInstances</a>接口查询。</p>
|
|
3828
3828
|
:rtype: list of str
|
|
3829
3829
|
"""
|
|
3830
3830
|
return self._InstanceIds
|
|
@@ -3853,7 +3853,7 @@ class DescribeInstancesDiskNumResponse(AbstractModel):
|
|
|
3853
3853
|
|
|
3854
3854
|
def __init__(self):
|
|
3855
3855
|
r"""
|
|
3856
|
-
:param _AttachDetail:
|
|
3856
|
+
:param _AttachDetail: <p>各个云服务器已挂载和可挂载弹性云盘的数量。</p>
|
|
3857
3857
|
:type AttachDetail: list of AttachDetail
|
|
3858
3858
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3859
3859
|
:type RequestId: str
|
|
@@ -3863,7 +3863,7 @@ class DescribeInstancesDiskNumResponse(AbstractModel):
|
|
|
3863
3863
|
|
|
3864
3864
|
@property
|
|
3865
3865
|
def AttachDetail(self):
|
|
3866
|
-
r"""
|
|
3866
|
+
r"""<p>各个云服务器已挂载和可挂载弹性云盘的数量。</p>
|
|
3867
3867
|
:rtype: list of AttachDetail
|
|
3868
3868
|
"""
|
|
3869
3869
|
return self._AttachDetail
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cbs
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.95
|
|
4
4
|
Summary: Tencent Cloud Cbs 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.95
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.95
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.39
|
|
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
|