tencentcloud-sdk-python-cbs 3.0.1432__tar.gz → 3.0.1450__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.1450}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cbs-3.0.1432 → tencentcloud-sdk-python-cbs-3.0.1450}/setup.py +1 -1
- {tencentcloud-sdk-python-cbs-3.0.1432 → tencentcloud-sdk-python-cbs-3.0.1450}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cbs-3.0.1432 → tencentcloud-sdk-python-cbs-3.0.1450}/tencentcloud/cbs/v20170312/models.py +19 -4
- {tencentcloud-sdk-python-cbs-3.0.1432 → tencentcloud-sdk-python-cbs-3.0.1450}/tencentcloud_sdk_python_cbs.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cbs-3.0.1450/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.1450}/README.rst +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1432 → tencentcloud-sdk-python-cbs-3.0.1450}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1432 → tencentcloud-sdk-python-cbs-3.0.1450}/tencentcloud/cbs/__init__.py +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1432 → tencentcloud-sdk-python-cbs-3.0.1450}/tencentcloud/cbs/v20170312/__init__.py +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1432 → tencentcloud-sdk-python-cbs-3.0.1450}/tencentcloud/cbs/v20170312/cbs_client.py +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1432 → tencentcloud-sdk-python-cbs-3.0.1450}/tencentcloud/cbs/v20170312/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1432 → tencentcloud-sdk-python-cbs-3.0.1450}/tencentcloud_sdk_python_cbs.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1432 → tencentcloud-sdk-python-cbs-3.0.1450}/tencentcloud_sdk_python_cbs.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1432 → tencentcloud-sdk-python-cbs-3.0.1450}/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.1450,<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:]
|
|
@@ -7491,7 +7506,7 @@ class Placement(AbstractModel):
|
|
|
7491
7506
|
:param _CageId: 围笼Id,可通过 [DescribeDiskStoragePool](https://cloud.tencent.com/document/api/362/62143) 获取。作为入参时,表示对指定的CageId的资源进行操作,可为空。 作为出参时,表示资源所属围笼ID,可为空。
|
|
7492
7507
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
7493
7508
|
:type CageId: str
|
|
7494
|
-
:param _ProjectId: 实例所属项目ID,可通过
|
|
7509
|
+
:param _ProjectId: 实例所属项目ID,可通过DescribeProject获取。不填默认为0,表示默认项目。
|
|
7495
7510
|
:type ProjectId: int
|
|
7496
7511
|
:param _ProjectName: 实例所属项目名称,可通过[DescribeProject](/document/api/651/78725)获取。
|
|
7497
7512
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -7538,7 +7553,7 @@ class Placement(AbstractModel):
|
|
|
7538
7553
|
|
|
7539
7554
|
@property
|
|
7540
7555
|
def ProjectId(self):
|
|
7541
|
-
"""实例所属项目ID,可通过
|
|
7556
|
+
"""实例所属项目ID,可通过DescribeProject获取。不填默认为0,表示默认项目。
|
|
7542
7557
|
:rtype: int
|
|
7543
7558
|
"""
|
|
7544
7559
|
return self._ProjectId
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1450
|
|
@@ -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
|