tencentcloud-sdk-python-cbs 3.0.1319__tar.gz → 3.0.1322__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.0.1319 → tencentcloud-sdk-python-cbs-3.0.1322}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cbs-3.0.1319 → tencentcloud-sdk-python-cbs-3.0.1322}/setup.py +1 -1
- {tencentcloud-sdk-python-cbs-3.0.1319 → tencentcloud-sdk-python-cbs-3.0.1322}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cbs-3.0.1319 → tencentcloud-sdk-python-cbs-3.0.1322}/tencentcloud/cbs/v20170312/models.py +15 -0
- {tencentcloud-sdk-python-cbs-3.0.1319 → tencentcloud-sdk-python-cbs-3.0.1322}/tencentcloud_sdk_python_cbs.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cbs-3.0.1322/tencentcloud_sdk_python_cbs.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cbs-3.0.1319/tencentcloud_sdk_python_cbs.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cbs-3.0.1319 → tencentcloud-sdk-python-cbs-3.0.1322}/README.rst +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1319 → tencentcloud-sdk-python-cbs-3.0.1322}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1319 → tencentcloud-sdk-python-cbs-3.0.1322}/tencentcloud/cbs/__init__.py +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1319 → tencentcloud-sdk-python-cbs-3.0.1322}/tencentcloud/cbs/v20170312/__init__.py +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1319 → tencentcloud-sdk-python-cbs-3.0.1322}/tencentcloud/cbs/v20170312/cbs_client.py +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1319 → tencentcloud-sdk-python-cbs-3.0.1322}/tencentcloud/cbs/v20170312/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1319 → tencentcloud-sdk-python-cbs-3.0.1322}/tencentcloud_sdk_python_cbs.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1319 → tencentcloud-sdk-python-cbs-3.0.1322}/tencentcloud_sdk_python_cbs.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1319 → tencentcloud-sdk-python-cbs-3.0.1322}/tencentcloud_sdk_python_cbs.egg-info/top_level.txt +0 -0
|
@@ -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.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1322"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cbs SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -1609,6 +1609,8 @@ class CreateDisksRequest(AbstractModel):
|
|
|
1609
1609
|
:type DiskCount: int
|
|
1610
1610
|
:param _ThroughputPerformance: 可选参数。使用此参数可给云硬盘购买额外的性能。<br>当前仅支持极速型云盘(CLOUD_TSSD)和增强型SSD云硬盘(CLOUD_HSSD)
|
|
1611
1611
|
:type ThroughputPerformance: int
|
|
1612
|
+
:param _KmsKeyId: 可选参数。购买加密盘时自定义密钥, 当传入该参数时, Encrypt入参不为空
|
|
1613
|
+
:type KmsKeyId: str
|
|
1612
1614
|
:param _DiskSize: 云硬盘大小,单位为GiB。<br><li>如果传入`SnapshotId`则可不传`DiskSize`,此时新建云盘的大小为快照大小</li><br><li>如果传入`SnapshotId`同时传入`DiskSize`,则云盘大小必须大于或等于快照大小</li><br><li>云盘大小取值范围参见云硬盘[产品分类](/document/product/362/2353)的说明。</li>
|
|
1613
1615
|
:type DiskSize: int
|
|
1614
1616
|
:param _Shareable: 可选参数,默认为False。传入True时,云盘将创建为共享型云盘。
|
|
@@ -1638,6 +1640,7 @@ class CreateDisksRequest(AbstractModel):
|
|
|
1638
1640
|
self._SnapshotId = None
|
|
1639
1641
|
self._DiskCount = None
|
|
1640
1642
|
self._ThroughputPerformance = None
|
|
1643
|
+
self._KmsKeyId = None
|
|
1641
1644
|
self._DiskSize = None
|
|
1642
1645
|
self._Shareable = None
|
|
1643
1646
|
self._ClientToken = None
|
|
@@ -1737,6 +1740,17 @@ class CreateDisksRequest(AbstractModel):
|
|
|
1737
1740
|
def ThroughputPerformance(self, ThroughputPerformance):
|
|
1738
1741
|
self._ThroughputPerformance = ThroughputPerformance
|
|
1739
1742
|
|
|
1743
|
+
@property
|
|
1744
|
+
def KmsKeyId(self):
|
|
1745
|
+
"""可选参数。购买加密盘时自定义密钥, 当传入该参数时, Encrypt入参不为空
|
|
1746
|
+
:rtype: str
|
|
1747
|
+
"""
|
|
1748
|
+
return self._KmsKeyId
|
|
1749
|
+
|
|
1750
|
+
@KmsKeyId.setter
|
|
1751
|
+
def KmsKeyId(self, KmsKeyId):
|
|
1752
|
+
self._KmsKeyId = KmsKeyId
|
|
1753
|
+
|
|
1740
1754
|
@property
|
|
1741
1755
|
def DiskSize(self):
|
|
1742
1756
|
"""云硬盘大小,单位为GiB。<br><li>如果传入`SnapshotId`则可不传`DiskSize`,此时新建云盘的大小为快照大小</li><br><li>如果传入`SnapshotId`同时传入`DiskSize`,则云盘大小必须大于或等于快照大小</li><br><li>云盘大小取值范围参见云硬盘[产品分类](/document/product/362/2353)的说明。</li>
|
|
@@ -1864,6 +1878,7 @@ class CreateDisksRequest(AbstractModel):
|
|
|
1864
1878
|
self._SnapshotId = params.get("SnapshotId")
|
|
1865
1879
|
self._DiskCount = params.get("DiskCount")
|
|
1866
1880
|
self._ThroughputPerformance = params.get("ThroughputPerformance")
|
|
1881
|
+
self._KmsKeyId = params.get("KmsKeyId")
|
|
1867
1882
|
self._DiskSize = params.get("DiskSize")
|
|
1868
1883
|
self._Shareable = params.get("Shareable")
|
|
1869
1884
|
self._ClientToken = params.get("ClientToken")
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1322
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1319
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|