tencentcloud-sdk-python-cbs 3.0.1432__tar.gz → 3.0.1446__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.1432 → tencentcloud-sdk-python-cbs-3.0.1446}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cbs-3.0.1432 → tencentcloud-sdk-python-cbs-3.0.1446}/setup.py +1 -1
- {tencentcloud-sdk-python-cbs-3.0.1432 → tencentcloud-sdk-python-cbs-3.0.1446}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cbs-3.0.1432 → tencentcloud-sdk-python-cbs-3.0.1446}/tencentcloud/cbs/v20170312/models.py +17 -2
- {tencentcloud-sdk-python-cbs-3.0.1432 → tencentcloud-sdk-python-cbs-3.0.1446}/tencentcloud_sdk_python_cbs.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cbs-3.0.1446/tencentcloud_sdk_python_cbs.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cbs-3.0.1432/tencentcloud_sdk_python_cbs.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cbs-3.0.1432 → tencentcloud-sdk-python-cbs-3.0.1446}/README.rst +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1432 → tencentcloud-sdk-python-cbs-3.0.1446}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1432 → tencentcloud-sdk-python-cbs-3.0.1446}/tencentcloud/cbs/__init__.py +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1432 → tencentcloud-sdk-python-cbs-3.0.1446}/tencentcloud/cbs/v20170312/__init__.py +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1432 → tencentcloud-sdk-python-cbs-3.0.1446}/tencentcloud/cbs/v20170312/cbs_client.py +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1432 → tencentcloud-sdk-python-cbs-3.0.1446}/tencentcloud/cbs/v20170312/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1432 → tencentcloud-sdk-python-cbs-3.0.1446}/tencentcloud_sdk_python_cbs.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1432 → tencentcloud-sdk-python-cbs-3.0.1446}/tencentcloud_sdk_python_cbs.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1432 → tencentcloud-sdk-python-cbs-3.0.1446}/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.1446,<4.0.0"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cbs SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -6520,14 +6520,17 @@ class InquiryPriceResizeDiskRequest(AbstractModel):
|
|
|
6520
6520
|
r"""
|
|
6521
6521
|
:param _DiskSize: 云硬盘扩容后的大小,单位为GiB,不得小于当前云硬盘大小。云盘大小取值范围参见云硬盘[产品分类](/document/product/362/2353)的说明。
|
|
6522
6522
|
:type DiskSize: int
|
|
6523
|
-
:param _DiskId: 云硬盘ID, 通过[DescribeDisks](/document/product/362/16315)
|
|
6523
|
+
:param _DiskId: 云硬盘ID, 通过[DescribeDisks](/document/product/362/16315)接口查询。与参数DiskIds互斥。
|
|
6524
6524
|
:type DiskId: str
|
|
6525
6525
|
:param _ProjectId: 云硬盘所属项目ID。该参数可以通过调用[DescribeProject](https://cloud.tencent.com/document/api/651/78725) 的返回值中的 projectId 字段来获取。 如传入则仅用于鉴权。
|
|
6526
6526
|
:type ProjectId: int
|
|
6527
|
+
:param _DiskIds: 云硬盘ID列表, 通过[DescribeDisks](/document/product/362/16315)接口查询。与参数DiskId互斥。
|
|
6528
|
+
:type DiskIds: list of str
|
|
6527
6529
|
"""
|
|
6528
6530
|
self._DiskSize = None
|
|
6529
6531
|
self._DiskId = None
|
|
6530
6532
|
self._ProjectId = None
|
|
6533
|
+
self._DiskIds = None
|
|
6531
6534
|
|
|
6532
6535
|
@property
|
|
6533
6536
|
def DiskSize(self):
|
|
@@ -6542,7 +6545,7 @@ class InquiryPriceResizeDiskRequest(AbstractModel):
|
|
|
6542
6545
|
|
|
6543
6546
|
@property
|
|
6544
6547
|
def DiskId(self):
|
|
6545
|
-
"""云硬盘ID, 通过[DescribeDisks](/document/product/362/16315)
|
|
6548
|
+
"""云硬盘ID, 通过[DescribeDisks](/document/product/362/16315)接口查询。与参数DiskIds互斥。
|
|
6546
6549
|
:rtype: str
|
|
6547
6550
|
"""
|
|
6548
6551
|
return self._DiskId
|
|
@@ -6562,11 +6565,23 @@ class InquiryPriceResizeDiskRequest(AbstractModel):
|
|
|
6562
6565
|
def ProjectId(self, ProjectId):
|
|
6563
6566
|
self._ProjectId = ProjectId
|
|
6564
6567
|
|
|
6568
|
+
@property
|
|
6569
|
+
def DiskIds(self):
|
|
6570
|
+
"""云硬盘ID列表, 通过[DescribeDisks](/document/product/362/16315)接口查询。与参数DiskId互斥。
|
|
6571
|
+
:rtype: list of str
|
|
6572
|
+
"""
|
|
6573
|
+
return self._DiskIds
|
|
6574
|
+
|
|
6575
|
+
@DiskIds.setter
|
|
6576
|
+
def DiskIds(self, DiskIds):
|
|
6577
|
+
self._DiskIds = DiskIds
|
|
6578
|
+
|
|
6565
6579
|
|
|
6566
6580
|
def _deserialize(self, params):
|
|
6567
6581
|
self._DiskSize = params.get("DiskSize")
|
|
6568
6582
|
self._DiskId = params.get("DiskId")
|
|
6569
6583
|
self._ProjectId = params.get("ProjectId")
|
|
6584
|
+
self._DiskIds = params.get("DiskIds")
|
|
6570
6585
|
memeber_set = set(params.keys())
|
|
6571
6586
|
for name, value in vars(self).items():
|
|
6572
6587
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1446
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.0.1432
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|