tencentcloud-sdk-python-cbs 3.0.1377__tar.gz → 3.0.1379__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.1377 → tencentcloud-sdk-python-cbs-3.0.1379}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cbs-3.0.1377 → tencentcloud-sdk-python-cbs-3.0.1379}/setup.py +1 -1
- {tencentcloud-sdk-python-cbs-3.0.1377 → tencentcloud-sdk-python-cbs-3.0.1379}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cbs-3.0.1377 → tencentcloud-sdk-python-cbs-3.0.1379}/tencentcloud/cbs/v20170312/cbs_client.py +1 -1
- {tencentcloud-sdk-python-cbs-3.0.1377 → tencentcloud-sdk-python-cbs-3.0.1379}/tencentcloud/cbs/v20170312/models.py +18 -18
- {tencentcloud-sdk-python-cbs-3.0.1377 → tencentcloud-sdk-python-cbs-3.0.1379}/tencentcloud_sdk_python_cbs.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cbs-3.0.1379/tencentcloud_sdk_python_cbs.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cbs-3.0.1377/tencentcloud_sdk_python_cbs.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cbs-3.0.1377 → tencentcloud-sdk-python-cbs-3.0.1379}/README.rst +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1377 → tencentcloud-sdk-python-cbs-3.0.1379}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1377 → tencentcloud-sdk-python-cbs-3.0.1379}/tencentcloud/cbs/__init__.py +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1377 → tencentcloud-sdk-python-cbs-3.0.1379}/tencentcloud/cbs/v20170312/__init__.py +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1377 → tencentcloud-sdk-python-cbs-3.0.1379}/tencentcloud/cbs/v20170312/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1377 → tencentcloud-sdk-python-cbs-3.0.1379}/tencentcloud_sdk_python_cbs.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1377 → tencentcloud-sdk-python-cbs-3.0.1379}/tencentcloud_sdk_python_cbs.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cbs-3.0.1377 → tencentcloud-sdk-python-cbs-3.0.1379}/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.1379"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cbs SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -162,7 +162,7 @@ class CbsClient(AbstractClient):
|
|
|
162
162
|
"""本接口(CopySnapshotCrossRegions)用于快照跨地域复制。
|
|
163
163
|
|
|
164
164
|
* 本接口为异步接口,当跨地域复制的请求下发成功后会返回一个新的快照ID,此时快照未立即复制到目标地域,可请求目标地域的[DescribeSnapshots](/document/product/362/15647)接口查询新快照的状态,判断是否复制完成。如果快照的状态为“NORMAL”,表示快照复制完成。
|
|
165
|
-
* 本接口实现的快照跨地域复制操作将产生跨地域流量,预计
|
|
165
|
+
* 本接口实现的快照跨地域复制操作将产生跨地域流量,预计2025年第三季度会针对此功能进行商业化计费;请留意后续站内信公告,避免产生预期外扣费。
|
|
166
166
|
|
|
167
167
|
:param request: Request instance for CopySnapshotCrossRegions.
|
|
168
168
|
:type request: :class:`tencentcloud.cbs.v20170312.models.CopySnapshotCrossRegionsRequest`
|
|
@@ -384,9 +384,9 @@ class ApplySnapshotRequest(AbstractModel):
|
|
|
384
384
|
:type SnapshotId: str
|
|
385
385
|
:param _DiskId: 快照原云硬盘ID,可通过[DescribeDisks](/document/product/362/16315)接口查询。
|
|
386
386
|
:type DiskId: str
|
|
387
|
-
:param _AutoStopInstance:
|
|
387
|
+
:param _AutoStopInstance: 回滚前是否执行自动关机,仅支持回滚快照至已挂载的云硬盘时传入。
|
|
388
388
|
:type AutoStopInstance: bool
|
|
389
|
-
:param _AutoStartInstance:
|
|
389
|
+
:param _AutoStartInstance: 回滚完成后是否自动开机,仅支持回滚快照至已挂载的云硬盘时传入。该参数传入时,需要同时传入AutoStopInstance参数。
|
|
390
390
|
:type AutoStartInstance: bool
|
|
391
391
|
"""
|
|
392
392
|
self._SnapshotId = None
|
|
@@ -418,7 +418,7 @@ class ApplySnapshotRequest(AbstractModel):
|
|
|
418
418
|
|
|
419
419
|
@property
|
|
420
420
|
def AutoStopInstance(self):
|
|
421
|
-
"""
|
|
421
|
+
"""回滚前是否执行自动关机,仅支持回滚快照至已挂载的云硬盘时传入。
|
|
422
422
|
:rtype: bool
|
|
423
423
|
"""
|
|
424
424
|
return self._AutoStopInstance
|
|
@@ -429,7 +429,7 @@ class ApplySnapshotRequest(AbstractModel):
|
|
|
429
429
|
|
|
430
430
|
@property
|
|
431
431
|
def AutoStartInstance(self):
|
|
432
|
-
"""
|
|
432
|
+
"""回滚完成后是否自动开机,仅支持回滚快照至已挂载的云硬盘时传入。该参数传入时,需要同时传入AutoStopInstance参数。
|
|
433
433
|
:rtype: bool
|
|
434
434
|
"""
|
|
435
435
|
return self._AutoStartInstance
|
|
@@ -2836,14 +2836,14 @@ class DescribeDiskAssociatedAutoSnapshotPolicyRequest(AbstractModel):
|
|
|
2836
2836
|
|
|
2837
2837
|
def __init__(self):
|
|
2838
2838
|
r"""
|
|
2839
|
-
:param _DiskId: 要查询的云硬盘ID
|
|
2839
|
+
:param _DiskId: 要查询的云硬盘ID,通过[DescribeDisks](https://tcloud4api.woa.com/document/product/362/15601?!preview&!document=1)接口查询。
|
|
2840
2840
|
:type DiskId: str
|
|
2841
2841
|
"""
|
|
2842
2842
|
self._DiskId = None
|
|
2843
2843
|
|
|
2844
2844
|
@property
|
|
2845
2845
|
def DiskId(self):
|
|
2846
|
-
"""要查询的云硬盘ID
|
|
2846
|
+
"""要查询的云硬盘ID,通过[DescribeDisks](https://tcloud4api.woa.com/document/product/362/15601?!preview&!document=1)接口查询。
|
|
2847
2847
|
:rtype: str
|
|
2848
2848
|
"""
|
|
2849
2849
|
return self._DiskId
|
|
@@ -4630,7 +4630,7 @@ class Disk(AbstractModel):
|
|
|
4630
4630
|
:type Shareable: bool
|
|
4631
4631
|
:param _CreateTime: 云硬盘的创建时间。
|
|
4632
4632
|
:type CreateTime: str
|
|
4633
|
-
:param _DeleteSnapshot: 销毁云盘时删除关联的非永久保留快照。0 表示非永久快照不随云盘销毁而销毁,1表示非永久快照随云盘销毁而销毁,默认取0。快照是否永久保留可以通过DescribeSnapshots接口返回的快照详情的IsPermanent字段来判断,true表示永久快照,false表示非永久快照。
|
|
4633
|
+
:param _DeleteSnapshot: 销毁云盘时删除关联的非永久保留快照。0 表示非永久快照不随云盘销毁而销毁,1表示非永久快照随云盘销毁而销毁,默认取0。快照是否永久保留可以通过[DescribeSnapshots](https://cloud.tencent.com/document/product/362/15647)接口返回的快照详情的IsPermanent字段来判断,true表示永久快照,false表示非永久快照。
|
|
4634
4634
|
:type DeleteSnapshot: int
|
|
4635
4635
|
:param _DiskBackupQuota: 云硬盘备份点配额。表示最大可以保留的备份点数量。
|
|
4636
4636
|
:type DiskBackupQuota: int
|
|
@@ -5085,7 +5085,7 @@ class Disk(AbstractModel):
|
|
|
5085
5085
|
|
|
5086
5086
|
@property
|
|
5087
5087
|
def DeleteSnapshot(self):
|
|
5088
|
-
"""销毁云盘时删除关联的非永久保留快照。0 表示非永久快照不随云盘销毁而销毁,1表示非永久快照随云盘销毁而销毁,默认取0。快照是否永久保留可以通过DescribeSnapshots接口返回的快照详情的IsPermanent字段来判断,true表示永久快照,false表示非永久快照。
|
|
5088
|
+
"""销毁云盘时删除关联的非永久保留快照。0 表示非永久快照不随云盘销毁而销毁,1表示非永久快照随云盘销毁而销毁,默认取0。快照是否永久保留可以通过[DescribeSnapshots](https://cloud.tencent.com/document/product/362/15647)接口返回的快照详情的IsPermanent字段来判断,true表示永久快照,false表示非永久快照。
|
|
5089
5089
|
:rtype: int
|
|
5090
5090
|
"""
|
|
5091
5091
|
return self._DeleteSnapshot
|
|
@@ -6872,9 +6872,9 @@ class ModifyDiskBackupQuotaRequest(AbstractModel):
|
|
|
6872
6872
|
|
|
6873
6873
|
def __init__(self):
|
|
6874
6874
|
r"""
|
|
6875
|
-
:param _DiskId: 云硬盘ID
|
|
6875
|
+
:param _DiskId: 云硬盘ID。可通过[DescribeDisks](/document/product/362/16315)接口查询。
|
|
6876
6876
|
:type DiskId: str
|
|
6877
|
-
:param _DiskBackupQuota:
|
|
6877
|
+
:param _DiskBackupQuota: 调整之后的云硬盘备份点配额。取值范围为1 ~ 1024。
|
|
6878
6878
|
:type DiskBackupQuota: int
|
|
6879
6879
|
"""
|
|
6880
6880
|
self._DiskId = None
|
|
@@ -6882,7 +6882,7 @@ class ModifyDiskBackupQuotaRequest(AbstractModel):
|
|
|
6882
6882
|
|
|
6883
6883
|
@property
|
|
6884
6884
|
def DiskId(self):
|
|
6885
|
-
"""云硬盘ID
|
|
6885
|
+
"""云硬盘ID。可通过[DescribeDisks](/document/product/362/16315)接口查询。
|
|
6886
6886
|
:rtype: str
|
|
6887
6887
|
"""
|
|
6888
6888
|
return self._DiskId
|
|
@@ -6893,7 +6893,7 @@ class ModifyDiskBackupQuotaRequest(AbstractModel):
|
|
|
6893
6893
|
|
|
6894
6894
|
@property
|
|
6895
6895
|
def DiskBackupQuota(self):
|
|
6896
|
-
"""
|
|
6896
|
+
"""调整之后的云硬盘备份点配额。取值范围为1 ~ 1024。
|
|
6897
6897
|
:rtype: int
|
|
6898
6898
|
"""
|
|
6899
6899
|
return self._DiskBackupQuota
|
|
@@ -6951,9 +6951,9 @@ class ModifyDiskExtraPerformanceRequest(AbstractModel):
|
|
|
6951
6951
|
|
|
6952
6952
|
def __init__(self):
|
|
6953
6953
|
r"""
|
|
6954
|
-
:param _ThroughputPerformance: 额外购买的云硬盘性能值,单位
|
|
6954
|
+
:param _ThroughputPerformance: 额外购买的云硬盘性能值,单位MiB/s。
|
|
6955
6955
|
:type ThroughputPerformance: int
|
|
6956
|
-
:param _DiskId:
|
|
6956
|
+
:param _DiskId: 需要购买额外性能值的云硬盘ID,可通过[DescribeDisks](/document/product/362/16315)接口查询。仅大小超过460GiB的增强型SSD(CLOUD_HSSD)和极速型SSD(CLOUD_TSSD)云硬盘才支持购买额外性能。
|
|
6957
6957
|
:type DiskId: str
|
|
6958
6958
|
"""
|
|
6959
6959
|
self._ThroughputPerformance = None
|
|
@@ -6961,7 +6961,7 @@ class ModifyDiskExtraPerformanceRequest(AbstractModel):
|
|
|
6961
6961
|
|
|
6962
6962
|
@property
|
|
6963
6963
|
def ThroughputPerformance(self):
|
|
6964
|
-
"""额外购买的云硬盘性能值,单位
|
|
6964
|
+
"""额外购买的云硬盘性能值,单位MiB/s。
|
|
6965
6965
|
:rtype: int
|
|
6966
6966
|
"""
|
|
6967
6967
|
return self._ThroughputPerformance
|
|
@@ -6972,7 +6972,7 @@ class ModifyDiskExtraPerformanceRequest(AbstractModel):
|
|
|
6972
6972
|
|
|
6973
6973
|
@property
|
|
6974
6974
|
def DiskId(self):
|
|
6975
|
-
"""
|
|
6975
|
+
"""需要购买额外性能值的云硬盘ID,可通过[DescribeDisks](/document/product/362/16315)接口查询。仅大小超过460GiB的增强型SSD(CLOUD_HSSD)和极速型SSD(CLOUD_TSSD)云硬盘才支持购买额外性能。
|
|
6976
6976
|
:rtype: str
|
|
6977
6977
|
"""
|
|
6978
6978
|
return self._DiskId
|
|
@@ -7226,7 +7226,7 @@ class ModifySnapshotAttributeRequest(AbstractModel):
|
|
|
7226
7226
|
:type IsPermanent: bool
|
|
7227
7227
|
:param _SnapshotName: 新的快照名称。最长为60个字符。
|
|
7228
7228
|
:type SnapshotName: str
|
|
7229
|
-
:param _Deadline:
|
|
7229
|
+
:param _Deadline: 快照的到期时间;设置好快照将会被同时设置为非永久保留方式;超过到期时间后快照将会被自动删除。注:该参数仅在参数IsPermanent为False时生效。
|
|
7230
7230
|
:type Deadline: str
|
|
7231
7231
|
"""
|
|
7232
7232
|
self._SnapshotId = None
|
|
@@ -7269,7 +7269,7 @@ class ModifySnapshotAttributeRequest(AbstractModel):
|
|
|
7269
7269
|
|
|
7270
7270
|
@property
|
|
7271
7271
|
def Deadline(self):
|
|
7272
|
-
"""
|
|
7272
|
+
"""快照的到期时间;设置好快照将会被同时设置为非永久保留方式;超过到期时间后快照将会被自动删除。注:该参数仅在参数IsPermanent为False时生效。
|
|
7273
7273
|
:rtype: str
|
|
7274
7274
|
"""
|
|
7275
7275
|
return self._Deadline
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1379
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1377
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|