tencentcloud-sdk-python-cbs 3.0.1384__tar.gz → 3.0.1386__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.1384 → tencentcloud-sdk-python-cbs-3.0.1386}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cbs-3.0.1384 → tencentcloud-sdk-python-cbs-3.0.1386}/setup.py +1 -1
- {tencentcloud-sdk-python-cbs-3.0.1384 → tencentcloud-sdk-python-cbs-3.0.1386}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cbs-3.0.1384 → tencentcloud-sdk-python-cbs-3.0.1386}/tencentcloud/cbs/v20170312/errorcodes.py +3 -0
- {tencentcloud-sdk-python-cbs-3.0.1384 → tencentcloud-sdk-python-cbs-3.0.1386}/tencentcloud/cbs/v20170312/models.py +2 -2
- {tencentcloud-sdk-python-cbs-3.0.1384 → tencentcloud-sdk-python-cbs-3.0.1386}/tencentcloud_sdk_python_cbs.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cbs-3.0.1386/tencentcloud_sdk_python_cbs.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cbs-3.0.1384/tencentcloud_sdk_python_cbs.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cbs-3.0.1384 → tencentcloud-sdk-python-cbs-3.0.1386}/README.rst +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1384 → tencentcloud-sdk-python-cbs-3.0.1386}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1384 → tencentcloud-sdk-python-cbs-3.0.1386}/tencentcloud/cbs/__init__.py +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1384 → tencentcloud-sdk-python-cbs-3.0.1386}/tencentcloud/cbs/v20170312/__init__.py +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1384 → tencentcloud-sdk-python-cbs-3.0.1386}/tencentcloud/cbs/v20170312/cbs_client.py +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1384 → tencentcloud-sdk-python-cbs-3.0.1386}/tencentcloud_sdk_python_cbs.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1384 → tencentcloud-sdk-python-cbs-3.0.1386}/tencentcloud_sdk_python_cbs.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1384 → tencentcloud-sdk-python-cbs-3.0.1386}/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.1386"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cbs SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -86,6 +86,9 @@ INVALIDPARAMETER_DISKCONFIGNOTSUPPORTED = 'InvalidParameter.DiskConfigNotSupport
|
|
|
86
86
|
# 云硬盘大小与快照大小不匹配。
|
|
87
87
|
INVALIDPARAMETER_DISKSIZENOTMATCH = 'InvalidParameter.DiskSizeNotMatch'
|
|
88
88
|
|
|
89
|
+
# ClientToken不可用。
|
|
90
|
+
INVALIDPARAMETER_INVALIDCLIENTTOKEN = 'InvalidParameter.InvalidClientToken'
|
|
91
|
+
|
|
89
92
|
# 项目ID不存在。
|
|
90
93
|
INVALIDPARAMETER_PROJECTIDNOTEXIST = 'InvalidParameter.ProjectIdNotExist'
|
|
91
94
|
|
|
@@ -2216,7 +2216,7 @@ class CreateSnapshotRequest(AbstractModel):
|
|
|
2216
2216
|
:type SnapshotName: str
|
|
2217
2217
|
:param _Deadline: 快照的到期时间,到期后该快照将会自动删除,需要传入UTC时间下的ISO-8601标准时间格式,例如:2022-01-08T09:47:55+00:00,。到期时间最小可设置为一天后的当前时间。
|
|
2218
2218
|
:type Deadline: str
|
|
2219
|
-
:param _DiskBackupId: 云硬盘备份点ID
|
|
2219
|
+
:param _DiskBackupId: 云硬盘备份点ID。传入此参数时,将通过备份点创建快照。备份点 ID 可以通过[DescribeDiskBackups](document/product/362/80278)接口查询。
|
|
2220
2220
|
:type DiskBackupId: str
|
|
2221
2221
|
:param _Tags: 快照绑定的标签。
|
|
2222
2222
|
:type Tags: list of Tag
|
|
@@ -2262,7 +2262,7 @@ class CreateSnapshotRequest(AbstractModel):
|
|
|
2262
2262
|
|
|
2263
2263
|
@property
|
|
2264
2264
|
def DiskBackupId(self):
|
|
2265
|
-
"""云硬盘备份点ID
|
|
2265
|
+
"""云硬盘备份点ID。传入此参数时,将通过备份点创建快照。备份点 ID 可以通过[DescribeDiskBackups](document/product/362/80278)接口查询。
|
|
2266
2266
|
:rtype: str
|
|
2267
2267
|
"""
|
|
2268
2268
|
return self._DiskBackupId
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1386
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1384
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|