tencentcloud-sdk-python 3.0.1381__py2.py3-none-any.whl → 3.0.1383__py2.py3-none-any.whl
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/__init__.py +1 -1
- tencentcloud/cbs/v20170312/cbs_client.py +3 -3
- tencentcloud/cbs/v20170312/errorcodes.py +9 -0
- tencentcloud/cbs/v20170312/models.py +76 -55
- tencentcloud/cdb/v20170320/cdb_client.py +1 -1
- tencentcloud/cdb/v20170320/models.py +20 -0
- tencentcloud/cdwdoris/v20211228/models.py +30 -0
- tencentcloud/cfs/v20190719/cfs_client.py +2 -2
- tencentcloud/cfs/v20190719/models.py +46 -48
- tencentcloud/cfw/v20190904/cfw_client.py +1 -1
- tencentcloud/cfw/v20190904/models.py +2 -2
- tencentcloud/cvm/v20170312/models.py +36 -16
- tencentcloud/cynosdb/v20190107/models.py +252 -0
- tencentcloud/dnspod/v20210323/models.py +0 -2
- tencentcloud/emr/v20190103/models.py +15 -0
- tencentcloud/ess/v20201111/errorcodes.py +9 -0
- tencentcloud/ess/v20201111/models.py +54 -26
- tencentcloud/essbasic/v20210526/errorcodes.py +3 -0
- tencentcloud/essbasic/v20210526/essbasic_client.py +1 -1
- tencentcloud/essbasic/v20210526/models.py +40 -6
- tencentcloud/gs/v20191118/models.py +30 -0
- tencentcloud/hai/v20230812/hai_client.py +8 -6
- tencentcloud/hai/v20230812/models.py +72 -84
- tencentcloud/lke/v20231130/models.py +671 -2
- tencentcloud/mps/v20190612/models.py +887 -0
- tencentcloud/mps/v20190612/mps_client.py +70 -0
- tencentcloud/postgres/v20170312/models.py +0 -158
- tencentcloud/postgres/v20170312/postgres_client.py +0 -50
- tencentcloud/privatedns/v20201028/errorcodes.py +2 -2
- tencentcloud/privatedns/v20201028/models.py +8 -8
- tencentcloud/pts/v20210728/models.py +15 -0
- tencentcloud/ssl/v20191205/errorcodes.py +24 -0
- tencentcloud/ssl/v20191205/models.py +176 -6
- tencentcloud/teo/v20220901/teo_client.py +5 -0
- tencentcloud/tke/v20180525/errorcodes.py +3 -0
- tencentcloud/tke/v20180525/models.py +15 -184
- tencentcloud/tke/v20180525/tke_client.py +0 -23
- tencentcloud/tms/v20201229/errorcodes.py +3 -0
- tencentcloud/tms/v20201229/models.py +36 -4
- tencentcloud/vpc/v20170312/errorcodes.py +6 -0
- tencentcloud/vpc/v20170312/models.py +18 -18
- {tencentcloud_sdk_python-3.0.1381.dist-info → tencentcloud_sdk_python-3.0.1383.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1381.dist-info → tencentcloud_sdk_python-3.0.1383.dist-info}/RECORD +46 -46
- {tencentcloud_sdk_python-3.0.1381.dist-info → tencentcloud_sdk_python-3.0.1383.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1381.dist-info → tencentcloud_sdk_python-3.0.1383.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1381.dist-info → tencentcloud_sdk_python-3.0.1383.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -29,9 +29,9 @@ class CbsClient(AbstractClient):
|
|
29
29
|
def ApplyDiskBackup(self, request):
|
30
30
|
"""本接口(ApplyDiskBackup)用于回滚备份点到原云硬盘。
|
31
31
|
|
32
|
-
* 仅支持回滚到原云硬盘上。对于数据盘备份点,如果您需要复制备份点数据到其它云硬盘上,请先使用
|
33
|
-
* 用于回滚的备份点必须处于NORMAL状态。备份点状态可以通过DescribeDiskBackups接口查询,见输出参数中BackupState字段解释。
|
34
|
-
*
|
32
|
+
* 仅支持回滚到原云硬盘上。对于数据盘备份点,如果您需要复制备份点数据到其它云硬盘上,请先使用[CreateSnapshot](/document/product/362/15648) 将备份点转换为快照,然后使用[CreateDisks](/document/product/362/16312) 接口创建新的弹性云硬盘,将快照数据复制到新购云硬盘上。
|
33
|
+
* 用于回滚的备份点必须处于NORMAL状态。备份点状态可以通过[DescribeDiskBackups](/document/product/362/80278)接口查询,见输出参数中BackupState字段解释。
|
34
|
+
* 如果是弹性云硬盘,则云硬盘必须处于未挂载状态,云硬盘挂载状态可以通[DescribeDisks](/document/product/362/16315)接口查询,见Attached字段解释;如果是随实例一起购买的非弹性云硬盘,则实例必须处于关机状态,实例状态可以通过[DescribeInstancesStatus](/document/product/213/15738)接口查询。
|
35
35
|
|
36
36
|
:param request: Request instance for ApplyDiskBackup.
|
37
37
|
:type request: :class:`tencentcloud.cbs.v20170312.models.ApplyDiskBackupRequest`
|
@@ -113,6 +113,9 @@ LIMITEXCEEDED_AUTOSNAPSHOTPOLICYOUTOFQUOTA = 'LimitExceeded.AutoSnapshotPolicyOu
|
|
113
113
|
# 实例挂载云盘数量超过限制。
|
114
114
|
LIMITEXCEEDED_INSTANCEATTACHEDDISK = 'LimitExceeded.InstanceAttachedDisk'
|
115
115
|
|
116
|
+
# 调用标签服务超过了频率限制。
|
117
|
+
LIMITEXCEEDED_TAGQUOTALIMITEXCEEDED = 'LimitExceeded.TagQuotaLimitExceeded'
|
118
|
+
|
116
119
|
# 缺少参数错误。
|
117
120
|
MISSINGPARAMETER = 'MissingParameter'
|
118
121
|
|
@@ -152,6 +155,9 @@ RESOURCEUNAVAILABLE = 'ResourceUnavailable'
|
|
152
155
|
# 云硬盘已挂载至其他云服务器上。
|
153
156
|
RESOURCEUNAVAILABLE_ATTACHED = 'ResourceUnavailable.Attached'
|
154
157
|
|
158
|
+
# 数据备份点尚未创建完成,暂时不可使用。
|
159
|
+
RESOURCEUNAVAILABLE_DISKBACKUPCREATING = 'ResourceUnavailable.DiskBackupCreating'
|
160
|
+
|
155
161
|
# 云硬盘快照链长度过长,拒绝创建快照。
|
156
162
|
RESOURCEUNAVAILABLE_DISKSNAPSHOTCHAINTOOLARGE = 'ResourceUnavailable.DiskSnapshotChainTooLarge'
|
157
163
|
|
@@ -188,6 +194,9 @@ TRADEDEALCONFLICT = 'TradeDealConflict'
|
|
188
194
|
# 未授权操作。
|
189
195
|
UNAUTHORIZEDOPERATION = 'UnauthorizedOperation'
|
190
196
|
|
197
|
+
# CAM鉴权Token不可用。
|
198
|
+
UNAUTHORIZEDOPERATION_INVALIDTOKEN = 'UnauthorizedOperation.InvalidToken'
|
199
|
+
|
191
200
|
# MFA鉴权过期,请重试。
|
192
201
|
UNAUTHORIZEDOPERATION_MFAEXPIRED = 'UnauthorizedOperation.MFAExpired'
|
193
202
|
|
@@ -157,13 +157,13 @@ class ApplyDiskBackupRequest(AbstractModel):
|
|
157
157
|
|
158
158
|
def __init__(self):
|
159
159
|
r"""
|
160
|
-
:param _DiskBackupId: 云硬盘备份点ID
|
160
|
+
:param _DiskBackupId: 云硬盘备份点ID,可以通过[DescribeDiskBackups](/document/product/362/80278)接口查询。
|
161
161
|
:type DiskBackupId: str
|
162
|
-
:param _DiskId: 云硬盘备份点原云硬盘ID
|
162
|
+
:param _DiskId: 云硬盘备份点原云硬盘ID,可以通过[DescribeDisks](/document/product/362/16315)接口查。
|
163
163
|
:type DiskId: str
|
164
164
|
:param _AutoStopInstance: 回滚云硬盘备份点前是否自动关机,默认为FALSE,表示不自动关机
|
165
165
|
:type AutoStopInstance: bool
|
166
|
-
:param _AutoStartInstance: 回滚云硬盘备份点完成后是否自动开机,默认为FALSE
|
166
|
+
:param _AutoStartInstance: 回滚云硬盘备份点完成后是否自动开机,默认为FALSE,表示不自动开机; AutoStartInstance参数需要在AutoStopInstance为true时才能为true。
|
167
167
|
:type AutoStartInstance: bool
|
168
168
|
"""
|
169
169
|
self._DiskBackupId = None
|
@@ -173,7 +173,7 @@ class ApplyDiskBackupRequest(AbstractModel):
|
|
173
173
|
|
174
174
|
@property
|
175
175
|
def DiskBackupId(self):
|
176
|
-
"""云硬盘备份点ID
|
176
|
+
"""云硬盘备份点ID,可以通过[DescribeDiskBackups](/document/product/362/80278)接口查询。
|
177
177
|
:rtype: str
|
178
178
|
"""
|
179
179
|
return self._DiskBackupId
|
@@ -184,7 +184,7 @@ class ApplyDiskBackupRequest(AbstractModel):
|
|
184
184
|
|
185
185
|
@property
|
186
186
|
def DiskId(self):
|
187
|
-
"""云硬盘备份点原云硬盘ID
|
187
|
+
"""云硬盘备份点原云硬盘ID,可以通过[DescribeDisks](/document/product/362/16315)接口查。
|
188
188
|
:rtype: str
|
189
189
|
"""
|
190
190
|
return self._DiskId
|
@@ -206,7 +206,7 @@ class ApplyDiskBackupRequest(AbstractModel):
|
|
206
206
|
|
207
207
|
@property
|
208
208
|
def AutoStartInstance(self):
|
209
|
-
"""回滚云硬盘备份点完成后是否自动开机,默认为FALSE
|
209
|
+
"""回滚云硬盘备份点完成后是否自动开机,默认为FALSE,表示不自动开机; AutoStartInstance参数需要在AutoStopInstance为true时才能为true。
|
210
210
|
:rtype: bool
|
211
211
|
"""
|
212
212
|
return self._AutoStartInstance
|
@@ -1047,7 +1047,7 @@ class BindAutoSnapshotPolicyRequest(AbstractModel):
|
|
1047
1047
|
|
1048
1048
|
def __init__(self):
|
1049
1049
|
r"""
|
1050
|
-
:param _AutoSnapshotPolicyId: 要绑定的定期快照策略ID
|
1050
|
+
:param _AutoSnapshotPolicyId: 要绑定的定期快照策略ID,通过[ DescribeAutoSnapshotPolicies](https://cloud.tencent.com/document/api/362/33556)接口查询。
|
1051
1051
|
:type AutoSnapshotPolicyId: str
|
1052
1052
|
:param _DiskIds: 要绑定的云硬盘ID列表,一次请求最多绑定80块云盘。
|
1053
1053
|
:type DiskIds: list of str
|
@@ -1057,7 +1057,7 @@ class BindAutoSnapshotPolicyRequest(AbstractModel):
|
|
1057
1057
|
|
1058
1058
|
@property
|
1059
1059
|
def AutoSnapshotPolicyId(self):
|
1060
|
-
"""要绑定的定期快照策略ID
|
1060
|
+
"""要绑定的定期快照策略ID,通过[ DescribeAutoSnapshotPolicies](https://cloud.tencent.com/document/api/362/33556)接口查询。
|
1061
1061
|
:rtype: str
|
1062
1062
|
"""
|
1063
1063
|
return self._AutoSnapshotPolicyId
|
@@ -1738,7 +1738,7 @@ class CreateDisksRequest(AbstractModel):
|
|
1738
1738
|
:type Placement: :class:`tencentcloud.cbs.v20170312.models.Placement`
|
1739
1739
|
:param _DiskChargeType: 云硬盘计费类型。<br><li>PREPAID:预付费,即包年包月</li><br><li>POSTPAID_BY_HOUR:按小时后付费</li><br><li>CDCPAID:独享集群付费<br>各类型价格请参考云硬盘[价格总览](/document/product/362/2413)。</li>
|
1740
1740
|
:type DiskChargeType: str
|
1741
|
-
:param _DiskType: 硬盘介质类型。取值范围:<br><li>
|
1741
|
+
:param _DiskType: 硬盘介质类型。取值范围:<br><li>CLOUD_PREMIUM:表示高性能云硬盘</li><br><li>CLOUD_BSSD:表示通用型SSD云硬盘</li><br><li>CLOUD_SSD:表示SSD云硬盘</li><br><li>CLOUD_HSSD:表示增强型SSD云硬盘</li><br><li>CLOUD_TSSD:表示极速型SSD云硬盘。</li>极速型SSD云硬盘(CLOUD_TSSD)仅支持随部分实例类型一同购买,暂不支持单独创建。
|
1742
1742
|
:type DiskType: str
|
1743
1743
|
:param _DiskName: 云盘显示名称。不传则默认为“未命名”。最大长度不能超60个字节。
|
1744
1744
|
:type DiskName: str
|
@@ -1748,27 +1748,27 @@ class CreateDisksRequest(AbstractModel):
|
|
1748
1748
|
:type SnapshotId: str
|
1749
1749
|
:param _DiskCount: 创建云硬盘数量,不传则默认为1。单次请求最多可创建的云盘数有限制,具体参见[云硬盘使用限制](https://cloud.tencent.com/doc/product/362/5145)。
|
1750
1750
|
:type DiskCount: int
|
1751
|
-
:param _ThroughputPerformance:
|
1751
|
+
:param _ThroughputPerformance: 使用此参数可给云硬盘购买额外的性能,单位MB/s。<br>当前仅支持极速型云盘(CLOUD_TSSD)和增强型SSD云硬盘(CLOUD_HSSD)。
|
1752
1752
|
:type ThroughputPerformance: int
|
1753
|
-
:param _KmsKeyId:
|
1753
|
+
:param _KmsKeyId: 购买加密盘时自定义密钥,当传入该参数时,Encrypt参数不得为空。
|
1754
1754
|
:type KmsKeyId: str
|
1755
1755
|
:param _DiskSize: 云硬盘大小,单位为GiB。<br><li>如果传入`SnapshotId`则可不传`DiskSize`,此时新建云盘的大小为快照大小</li><br><li>如果传入`SnapshotId`同时传入`DiskSize`,则云盘大小必须大于或等于快照大小</li><br><li>云盘大小取值范围参见云硬盘[产品分类](/document/product/362/2353)的说明。</li>
|
1756
1756
|
:type DiskSize: int
|
1757
|
-
:param _Shareable:
|
1757
|
+
:param _Shareable: 传入True时,云盘将创建为共享型云盘,默认为False。因共享型云盘不支持加密,此参数与Encrypt参数不可同时传入。
|
1758
1758
|
:type Shareable: bool
|
1759
1759
|
:param _ClientToken: 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。
|
1760
1760
|
:type ClientToken: str
|
1761
|
-
:param _Encrypt: 传入该参数用于创建加密云盘,取值固定为ENCRYPT
|
1761
|
+
:param _Encrypt: 传入该参数用于创建加密云盘,取值固定为ENCRYPT。因共享型云盘不支持加密,此参数与Shareable参数不可同时传入。
|
1762
1762
|
:type Encrypt: str
|
1763
1763
|
:param _DiskChargePrepaid: 预付费模式,即包年包月相关参数设置。通过该参数指定包年包月云盘的购买时长、是否设置自动续费等属性。<br>创建预付费云盘该参数必传,创建按小时后付费云盘无需传该参数。
|
1764
1764
|
:type DiskChargePrepaid: :class:`tencentcloud.cbs.v20170312.models.DiskChargePrepaid`
|
1765
|
-
:param _DeleteSnapshot: 销毁云盘时删除关联的非永久保留快照。0 表示非永久快照不随云盘销毁而销毁,1表示非永久快照随云盘销毁而销毁,默认取0。快照是否永久保留可以通过DescribeSnapshots接口返回的快照详情的IsPermanent字段来判断,
|
1765
|
+
:param _DeleteSnapshot: 销毁云盘时删除关联的非永久保留快照。0 表示非永久快照不随云盘销毁而销毁,1表示非永久快照随云盘销毁而销毁,默认取0。快照是否永久保留可以通过[DescribeSnapshots](document/api/362/15647)接口返回的快照详情的IsPermanent字段来判断,True表示永久快照,False表示非永久快照。
|
1766
1766
|
:type DeleteSnapshot: int
|
1767
|
-
:param _AutoMountConfiguration:
|
1767
|
+
:param _AutoMountConfiguration: 创建云盘时指定自动挂载并初始化该数据盘。因加密盘不支持自动挂载及初始化,此参数与Encrypt参数不可同时传入。
|
1768
1768
|
:type AutoMountConfiguration: :class:`tencentcloud.cbs.v20170312.models.AutoMountConfiguration`
|
1769
1769
|
:param _DiskBackupQuota: 指定云硬盘备份点配额。
|
1770
1770
|
:type DiskBackupQuota: int
|
1771
|
-
:param _BurstPerformance:
|
1771
|
+
:param _BurstPerformance: 创建云盘时是否开启性能突发。
|
1772
1772
|
:type BurstPerformance: bool
|
1773
1773
|
:param _EncryptType: 指定云硬盘加密类型,取值为ENCRYPT_V1和ENCRYPT_V2,分别表示第一代和第二代加密技术,两种加密技术互不兼容。推荐优先使用第二代加密技术ENCRYPT_V2,第一代加密技术仅支持在部分老旧机型使用。该参数仅当创建加密云硬盘时有效。
|
1774
1774
|
:type EncryptType: str
|
@@ -1817,7 +1817,7 @@ class CreateDisksRequest(AbstractModel):
|
|
1817
1817
|
|
1818
1818
|
@property
|
1819
1819
|
def DiskType(self):
|
1820
|
-
"""硬盘介质类型。取值范围:<br><li>
|
1820
|
+
"""硬盘介质类型。取值范围:<br><li>CLOUD_PREMIUM:表示高性能云硬盘</li><br><li>CLOUD_BSSD:表示通用型SSD云硬盘</li><br><li>CLOUD_SSD:表示SSD云硬盘</li><br><li>CLOUD_HSSD:表示增强型SSD云硬盘</li><br><li>CLOUD_TSSD:表示极速型SSD云硬盘。</li>极速型SSD云硬盘(CLOUD_TSSD)仅支持随部分实例类型一同购买,暂不支持单独创建。
|
1821
1821
|
:rtype: str
|
1822
1822
|
"""
|
1823
1823
|
return self._DiskType
|
@@ -1872,7 +1872,7 @@ class CreateDisksRequest(AbstractModel):
|
|
1872
1872
|
|
1873
1873
|
@property
|
1874
1874
|
def ThroughputPerformance(self):
|
1875
|
-
"""
|
1875
|
+
"""使用此参数可给云硬盘购买额外的性能,单位MB/s。<br>当前仅支持极速型云盘(CLOUD_TSSD)和增强型SSD云硬盘(CLOUD_HSSD)。
|
1876
1876
|
:rtype: int
|
1877
1877
|
"""
|
1878
1878
|
return self._ThroughputPerformance
|
@@ -1883,7 +1883,7 @@ class CreateDisksRequest(AbstractModel):
|
|
1883
1883
|
|
1884
1884
|
@property
|
1885
1885
|
def KmsKeyId(self):
|
1886
|
-
"""
|
1886
|
+
"""购买加密盘时自定义密钥,当传入该参数时,Encrypt参数不得为空。
|
1887
1887
|
:rtype: str
|
1888
1888
|
"""
|
1889
1889
|
return self._KmsKeyId
|
@@ -1905,7 +1905,7 @@ class CreateDisksRequest(AbstractModel):
|
|
1905
1905
|
|
1906
1906
|
@property
|
1907
1907
|
def Shareable(self):
|
1908
|
-
"""
|
1908
|
+
"""传入True时,云盘将创建为共享型云盘,默认为False。因共享型云盘不支持加密,此参数与Encrypt参数不可同时传入。
|
1909
1909
|
:rtype: bool
|
1910
1910
|
"""
|
1911
1911
|
return self._Shareable
|
@@ -1927,7 +1927,7 @@ class CreateDisksRequest(AbstractModel):
|
|
1927
1927
|
|
1928
1928
|
@property
|
1929
1929
|
def Encrypt(self):
|
1930
|
-
"""传入该参数用于创建加密云盘,取值固定为ENCRYPT
|
1930
|
+
"""传入该参数用于创建加密云盘,取值固定为ENCRYPT。因共享型云盘不支持加密,此参数与Shareable参数不可同时传入。
|
1931
1931
|
:rtype: str
|
1932
1932
|
"""
|
1933
1933
|
return self._Encrypt
|
@@ -1949,7 +1949,7 @@ class CreateDisksRequest(AbstractModel):
|
|
1949
1949
|
|
1950
1950
|
@property
|
1951
1951
|
def DeleteSnapshot(self):
|
1952
|
-
"""销毁云盘时删除关联的非永久保留快照。0 表示非永久快照不随云盘销毁而销毁,1表示非永久快照随云盘销毁而销毁,默认取0。快照是否永久保留可以通过DescribeSnapshots接口返回的快照详情的IsPermanent字段来判断,
|
1952
|
+
"""销毁云盘时删除关联的非永久保留快照。0 表示非永久快照不随云盘销毁而销毁,1表示非永久快照随云盘销毁而销毁,默认取0。快照是否永久保留可以通过[DescribeSnapshots](document/api/362/15647)接口返回的快照详情的IsPermanent字段来判断,True表示永久快照,False表示非永久快照。
|
1953
1953
|
:rtype: int
|
1954
1954
|
"""
|
1955
1955
|
return self._DeleteSnapshot
|
@@ -1960,7 +1960,7 @@ class CreateDisksRequest(AbstractModel):
|
|
1960
1960
|
|
1961
1961
|
@property
|
1962
1962
|
def AutoMountConfiguration(self):
|
1963
|
-
"""
|
1963
|
+
"""创建云盘时指定自动挂载并初始化该数据盘。因加密盘不支持自动挂载及初始化,此参数与Encrypt参数不可同时传入。
|
1964
1964
|
:rtype: :class:`tencentcloud.cbs.v20170312.models.AutoMountConfiguration`
|
1965
1965
|
"""
|
1966
1966
|
return self._AutoMountConfiguration
|
@@ -1982,7 +1982,7 @@ class CreateDisksRequest(AbstractModel):
|
|
1982
1982
|
|
1983
1983
|
@property
|
1984
1984
|
def BurstPerformance(self):
|
1985
|
-
"""
|
1985
|
+
"""创建云盘时是否开启性能突发。
|
1986
1986
|
:rtype: bool
|
1987
1987
|
"""
|
1988
1988
|
return self._BurstPerformance
|
@@ -2356,14 +2356,14 @@ class DeleteAutoSnapshotPoliciesRequest(AbstractModel):
|
|
2356
2356
|
|
2357
2357
|
def __init__(self):
|
2358
2358
|
r"""
|
2359
|
-
:param _AutoSnapshotPolicyIds: 要删除的定期快照策略ID
|
2359
|
+
:param _AutoSnapshotPolicyIds: 要删除的定期快照策略ID列表,通过[ DescribeAutoSnapshotPolicies](https://cloud.tencent.com/document/api/362/33556)接口查询。
|
2360
2360
|
:type AutoSnapshotPolicyIds: list of str
|
2361
2361
|
"""
|
2362
2362
|
self._AutoSnapshotPolicyIds = None
|
2363
2363
|
|
2364
2364
|
@property
|
2365
2365
|
def AutoSnapshotPolicyIds(self):
|
2366
|
-
"""要删除的定期快照策略ID
|
2366
|
+
"""要删除的定期快照策略ID列表,通过[ DescribeAutoSnapshotPolicies](https://cloud.tencent.com/document/api/362/33556)接口查询。
|
2367
2367
|
:rtype: list of str
|
2368
2368
|
"""
|
2369
2369
|
return self._AutoSnapshotPolicyIds
|
@@ -2420,14 +2420,14 @@ class DeleteDiskBackupsRequest(AbstractModel):
|
|
2420
2420
|
|
2421
2421
|
def __init__(self):
|
2422
2422
|
r"""
|
2423
|
-
:param _DiskBackupIds: 待删除的云硬盘备份点ID
|
2423
|
+
:param _DiskBackupIds: 待删除的云硬盘备份点ID,可以通过[DescribeDiskBackups](/document/product/362/80278)接口查询。
|
2424
2424
|
:type DiskBackupIds: list of str
|
2425
2425
|
"""
|
2426
2426
|
self._DiskBackupIds = None
|
2427
2427
|
|
2428
2428
|
@property
|
2429
2429
|
def DiskBackupIds(self):
|
2430
|
-
"""待删除的云硬盘备份点ID
|
2430
|
+
"""待删除的云硬盘备份点ID,可以通过[DescribeDiskBackups](/document/product/362/80278)接口查询。
|
2431
2431
|
:rtype: list of str
|
2432
2432
|
"""
|
2433
2433
|
return self._DiskBackupIds
|
@@ -2659,15 +2659,18 @@ class DescribeAutoSnapshotPoliciesRequest(AbstractModel):
|
|
2659
2659
|
r"""
|
2660
2660
|
:param _AutoSnapshotPolicyIds: 要查询的定期快照策略ID列表。参数不支持同时指定`AutoSnapshotPolicyIds`和`Filters`。
|
2661
2661
|
:type AutoSnapshotPolicyIds: list of str
|
2662
|
-
:param _Filters: 过滤条件。参数不支持同时指定`AutoSnapshotPolicyIds`和`Filters`。<br
|
2662
|
+
:param _Filters: 过滤条件。参数不支持同时指定`AutoSnapshotPolicyIds`和`Filters`。<br>
|
2663
|
+
<li>auto-snapshot-policy-id - Array of String - 是否必填:否 -(过滤条件)按定期快照策略ID进行过滤。定期快照策略ID形如:`asp-3stvwfxx`。</li>
|
2664
|
+
<li>auto-snapshot-policy-state - Array of String - 是否必填:否 -(过滤条件)按定期快照策略的状态进行过滤。定期快照策略ID形如:`asp-3stvwfxx`。(NORMAL:正常 | ISOLATED:已隔离。)</li>
|
2665
|
+
<li>auto-snapshot-policy-name - Array of String - 是否必填:否 -(过滤条件)按定期快照策略名称进行过滤。</li>
|
2663
2666
|
:type Filters: list of Filter
|
2664
2667
|
:param _Limit: 返回数量,默认为20,最大值为100。关于`Limit`的更进一步介绍请参考 API [简介](/document/product/362/15633)中的相关小节。
|
2665
2668
|
:type Limit: int
|
2666
2669
|
:param _Offset: 偏移量,默认为0。关于`Offset`的更进一步介绍请参考API[简介](/document/product/362/15633)中的相关小节。
|
2667
2670
|
:type Offset: int
|
2668
|
-
:param _Order: 输出定期快照列表的排列顺序。取值范围:<br><li>ASC:升序排列<br><li>DESC
|
2671
|
+
:param _Order: 输出定期快照列表的排列顺序。取值范围:<br><li>ASC:升序排列<br></li><li>DESC:降序排列。</li>
|
2669
2672
|
:type Order: str
|
2670
|
-
:param _OrderField: 定期快照列表排序的依据字段。取值范围:<br><li>
|
2673
|
+
:param _OrderField: 定期快照列表排序的依据字段。取值范围:<br><li>CREATE_TIME:依据定期快照的创建时间排序,默认按创建时间排序。</li>
|
2671
2674
|
:type OrderField: str
|
2672
2675
|
"""
|
2673
2676
|
self._AutoSnapshotPolicyIds = None
|
@@ -2690,7 +2693,10 @@ class DescribeAutoSnapshotPoliciesRequest(AbstractModel):
|
|
2690
2693
|
|
2691
2694
|
@property
|
2692
2695
|
def Filters(self):
|
2693
|
-
"""过滤条件。参数不支持同时指定`AutoSnapshotPolicyIds`和`Filters`。<br
|
2696
|
+
"""过滤条件。参数不支持同时指定`AutoSnapshotPolicyIds`和`Filters`。<br>
|
2697
|
+
<li>auto-snapshot-policy-id - Array of String - 是否必填:否 -(过滤条件)按定期快照策略ID进行过滤。定期快照策略ID形如:`asp-3stvwfxx`。</li>
|
2698
|
+
<li>auto-snapshot-policy-state - Array of String - 是否必填:否 -(过滤条件)按定期快照策略的状态进行过滤。定期快照策略ID形如:`asp-3stvwfxx`。(NORMAL:正常 | ISOLATED:已隔离。)</li>
|
2699
|
+
<li>auto-snapshot-policy-name - Array of String - 是否必填:否 -(过滤条件)按定期快照策略名称进行过滤。</li>
|
2694
2700
|
:rtype: list of Filter
|
2695
2701
|
"""
|
2696
2702
|
return self._Filters
|
@@ -2723,7 +2729,7 @@ class DescribeAutoSnapshotPoliciesRequest(AbstractModel):
|
|
2723
2729
|
|
2724
2730
|
@property
|
2725
2731
|
def Order(self):
|
2726
|
-
"""输出定期快照列表的排列顺序。取值范围:<br><li>ASC:升序排列<br><li>DESC
|
2732
|
+
"""输出定期快照列表的排列顺序。取值范围:<br><li>ASC:升序排列<br></li><li>DESC:降序排列。</li>
|
2727
2733
|
:rtype: str
|
2728
2734
|
"""
|
2729
2735
|
return self._Order
|
@@ -2734,7 +2740,7 @@ class DescribeAutoSnapshotPoliciesRequest(AbstractModel):
|
|
2734
2740
|
|
2735
2741
|
@property
|
2736
2742
|
def OrderField(self):
|
2737
|
-
"""定期快照列表排序的依据字段。取值范围:<br><li>
|
2743
|
+
"""定期快照列表排序的依据字段。取值范围:<br><li>CREATE_TIME:依据定期快照的创建时间排序,默认按创建时间排序。</li>
|
2738
2744
|
:rtype: str
|
2739
2745
|
"""
|
2740
2746
|
return self._OrderField
|
@@ -2836,14 +2842,14 @@ class DescribeDiskAssociatedAutoSnapshotPolicyRequest(AbstractModel):
|
|
2836
2842
|
|
2837
2843
|
def __init__(self):
|
2838
2844
|
r"""
|
2839
|
-
:param _DiskId: 要查询的云硬盘ID,通过[DescribeDisks](https://
|
2845
|
+
:param _DiskId: 要查询的云硬盘ID,通过[DescribeDisks](https://cloud.tencent.com/document/api/362/16315)接口查询。
|
2840
2846
|
:type DiskId: str
|
2841
2847
|
"""
|
2842
2848
|
self._DiskId = None
|
2843
2849
|
|
2844
2850
|
@property
|
2845
2851
|
def DiskId(self):
|
2846
|
-
"""要查询的云硬盘ID,通过[DescribeDisks](https://
|
2852
|
+
"""要查询的云硬盘ID,通过[DescribeDisks](https://cloud.tencent.com/document/api/362/16315)接口查询。
|
2847
2853
|
:rtype: str
|
2848
2854
|
"""
|
2849
2855
|
return self._DiskId
|
@@ -5944,7 +5950,7 @@ class InquirePriceModifyDiskBackupQuotaRequest(AbstractModel):
|
|
5944
5950
|
|
5945
5951
|
def __init__(self):
|
5946
5952
|
r"""
|
5947
|
-
:param _DiskId: 云硬盘ID, 通过DescribeDisks
|
5953
|
+
:param _DiskId: 云硬盘ID, 通过[DescribeDisks](/document/product/362/16315)接口查询。
|
5948
5954
|
:type DiskId: str
|
5949
5955
|
:param _DiskBackupQuota: 修改后的云硬盘备份点配额,即云盘可以拥有的备份点数量,单位为个。
|
5950
5956
|
:type DiskBackupQuota: int
|
@@ -5954,7 +5960,7 @@ class InquirePriceModifyDiskBackupQuotaRequest(AbstractModel):
|
|
5954
5960
|
|
5955
5961
|
@property
|
5956
5962
|
def DiskId(self):
|
5957
|
-
"""云硬盘ID, 通过DescribeDisks
|
5963
|
+
"""云硬盘ID, 通过[DescribeDisks](/document/product/362/16315)接口查询。
|
5958
5964
|
:rtype: str
|
5959
5965
|
"""
|
5960
5966
|
return self._DiskId
|
@@ -6568,9 +6574,9 @@ class ModifyAutoSnapshotPolicyAttributeRequest(AbstractModel):
|
|
6568
6574
|
r"""
|
6569
6575
|
:param _AutoSnapshotPolicyId: 定期快照策略ID。可以通过[查询定期快照策略](https://cloud.tencent.com/document/product/362/33556)API查询。
|
6570
6576
|
:type AutoSnapshotPolicyId: str
|
6571
|
-
:param _IsActivated:
|
6577
|
+
:param _IsActivated: 是否激活定期快照策略,`false`表示未激活,`true`表示激活;默认为`true`。
|
6572
6578
|
:type IsActivated: bool
|
6573
|
-
:param _IsPermanent:
|
6579
|
+
:param _IsPermanent: 通过该定期快照策略创建的快照是否永久保留。`false`表示非永久保留,`true`表示永久保留,默认为`false`。
|
6574
6580
|
:type IsPermanent: bool
|
6575
6581
|
:param _AutoSnapshotPolicyName: 要创建的定期快照策略名。不传则默认为“未命名”。最大长度不能超60个字节。
|
6576
6582
|
:type AutoSnapshotPolicyName: str
|
@@ -6599,7 +6605,7 @@ class ModifyAutoSnapshotPolicyAttributeRequest(AbstractModel):
|
|
6599
6605
|
|
6600
6606
|
@property
|
6601
6607
|
def IsActivated(self):
|
6602
|
-
"""
|
6608
|
+
"""是否激活定期快照策略,`false`表示未激活,`true`表示激活;默认为`true`。
|
6603
6609
|
:rtype: bool
|
6604
6610
|
"""
|
6605
6611
|
return self._IsActivated
|
@@ -6610,7 +6616,7 @@ class ModifyAutoSnapshotPolicyAttributeRequest(AbstractModel):
|
|
6610
6616
|
|
6611
6617
|
@property
|
6612
6618
|
def IsPermanent(self):
|
6613
|
-
"""
|
6619
|
+
"""通过该定期快照策略创建的快照是否永久保留。`false`表示非永久保留,`true`表示永久保留,默认为`false`。
|
6614
6620
|
:rtype: bool
|
6615
6621
|
"""
|
6616
6622
|
return self._IsPermanent
|
@@ -7030,7 +7036,7 @@ class ModifyDisksChargeTypeRequest(AbstractModel):
|
|
7030
7036
|
|
7031
7037
|
def __init__(self):
|
7032
7038
|
r"""
|
7033
|
-
:param _DiskIds: 一个或多个待操作的云硬盘ID
|
7039
|
+
:param _DiskIds: 一个或多个待操作的云硬盘ID,可以通过[DescribeDisks](/document/product/362/16315)接口查询。每次请求批量云硬盘上限为100。
|
7034
7040
|
:type DiskIds: list of str
|
7035
7041
|
:param _DiskChargePrepaid: 设置为预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月实例的购买时长、是否设置自动续费等属性。
|
7036
7042
|
:type DiskChargePrepaid: :class:`tencentcloud.cbs.v20170312.models.DiskChargePrepaid`
|
@@ -7043,7 +7049,7 @@ class ModifyDisksChargeTypeRequest(AbstractModel):
|
|
7043
7049
|
|
7044
7050
|
@property
|
7045
7051
|
def DiskIds(self):
|
7046
|
-
"""一个或多个待操作的云硬盘ID
|
7052
|
+
"""一个或多个待操作的云硬盘ID,可以通过[DescribeDisks](/document/product/362/16315)接口查询。每次请求批量云硬盘上限为100。
|
7047
7053
|
:rtype: list of str
|
7048
7054
|
"""
|
7049
7055
|
return self._DiskIds
|
@@ -7220,7 +7226,7 @@ class ModifySnapshotAttributeRequest(AbstractModel):
|
|
7220
7226
|
|
7221
7227
|
def __init__(self):
|
7222
7228
|
r"""
|
7223
|
-
:param _SnapshotId: 快照ID, 可通过[DescribeSnapshots](/document/
|
7229
|
+
:param _SnapshotId: 快照ID, 可通过[DescribeSnapshots](https://cloud.tencent.com/document/api/362/15647)查询。
|
7224
7230
|
:type SnapshotId: str
|
7225
7231
|
:param _IsPermanent: 快照的保留方式,FALSE表示非永久保留,TRUE表示永久保留。
|
7226
7232
|
:type IsPermanent: bool
|
@@ -7236,7 +7242,7 @@ class ModifySnapshotAttributeRequest(AbstractModel):
|
|
7236
7242
|
|
7237
7243
|
@property
|
7238
7244
|
def SnapshotId(self):
|
7239
|
-
"""快照ID, 可通过[DescribeSnapshots](/document/
|
7245
|
+
"""快照ID, 可通过[DescribeSnapshots](https://cloud.tencent.com/document/api/362/15647)查询。
|
7240
7246
|
:rtype: str
|
7241
7247
|
"""
|
7242
7248
|
return self._SnapshotId
|
@@ -7551,7 +7557,7 @@ class Placement(AbstractModel):
|
|
7551
7557
|
|
7552
7558
|
|
7553
7559
|
class Policy(AbstractModel):
|
7554
|
-
"""描述了定期快照的执行策略。可理解为在DayOfWeek/DayOfMonth指定的几天中,或者是IntervalDays设定的间隔的几天,在Hour指定的时刻点执行该条定期快照策。注:DayOfWeek/DayOfMonth/IntervalDays
|
7560
|
+
"""描述了定期快照的执行策略。可理解为在DayOfWeek/DayOfMonth指定的几天中,或者是IntervalDays设定的间隔的几天,在Hour指定的时刻点执行该条定期快照策。注:DayOfWeek/DayOfMonth/IntervalDays为互斥规则,必填且仅可设置其中一条策略规则。如果同时传入互斥规则,则只有一条生效,优先级为上文列出顺序:例如将三条规则全部设置,只有 DayOfWeek 生效。
|
7555
7561
|
|
7556
7562
|
"""
|
7557
7563
|
|
@@ -8251,13 +8257,13 @@ class Snapshot(AbstractModel):
|
|
8251
8257
|
:type Images: list of Image
|
8252
8258
|
:param _ShareReference: 快照当前被共享数。
|
8253
8259
|
:type ShareReference: int
|
8254
|
-
:param _SnapshotType:
|
8260
|
+
:param _SnapshotType: 快照类型,目前该项取值可以为`PRIVATE_SNAPSHOT`(私有快照)或者`SHARED_SNAPSHOT`(共享快照)
|
8255
8261
|
:type SnapshotType: str
|
8256
|
-
:param _DiskSize: 创建此快照的云硬盘大小,单位
|
8262
|
+
:param _DiskSize: 创建此快照的云硬盘大小,单位GiB。
|
8257
8263
|
:type DiskSize: int
|
8258
8264
|
:param _DiskId: 创建此快照的云硬盘ID。
|
8259
8265
|
:type DiskId: str
|
8260
|
-
:param _CopyingToRegions:
|
8266
|
+
:param _CopyingToRegions: 快照正在跨地域复制的目的地域,若没有则返回`[]`。
|
8261
8267
|
:type CopyingToRegions: list of str
|
8262
8268
|
:param _Encrypt: 是否为加密盘创建的快照。取值范围:
|
8263
8269
|
<ul>
|
@@ -8421,7 +8427,7 @@ class Snapshot(AbstractModel):
|
|
8421
8427
|
|
8422
8428
|
@property
|
8423
8429
|
def SnapshotType(self):
|
8424
|
-
"""
|
8430
|
+
"""快照类型,目前该项取值可以为`PRIVATE_SNAPSHOT`(私有快照)或者`SHARED_SNAPSHOT`(共享快照)
|
8425
8431
|
:rtype: str
|
8426
8432
|
"""
|
8427
8433
|
return self._SnapshotType
|
@@ -8432,7 +8438,7 @@ class Snapshot(AbstractModel):
|
|
8432
8438
|
|
8433
8439
|
@property
|
8434
8440
|
def DiskSize(self):
|
8435
|
-
"""创建此快照的云硬盘大小,单位
|
8441
|
+
"""创建此快照的云硬盘大小,单位GiB。
|
8436
8442
|
:rtype: int
|
8437
8443
|
"""
|
8438
8444
|
return self._DiskSize
|
@@ -8454,7 +8460,7 @@ class Snapshot(AbstractModel):
|
|
8454
8460
|
|
8455
8461
|
@property
|
8456
8462
|
def CopyingToRegions(self):
|
8457
|
-
"""
|
8463
|
+
"""快照正在跨地域复制的目的地域,若没有则返回`[]`。
|
8458
8464
|
:rtype: list of str
|
8459
8465
|
"""
|
8460
8466
|
return self._CopyingToRegions
|
@@ -9061,11 +9067,14 @@ class UnbindAutoSnapshotPolicyRequest(AbstractModel):
|
|
9061
9067
|
r"""
|
9062
9068
|
:param _AutoSnapshotPolicyId: 要解绑的定期快照策略ID。
|
9063
9069
|
:type AutoSnapshotPolicyId: str
|
9064
|
-
:param _DiskIds: 要解绑定期快照策略的云盘ID
|
9070
|
+
:param _DiskIds: 要解绑定期快照策略的云盘ID列表。此参数与 InstanceIds 参数至少需要传入一个。
|
9065
9071
|
:type DiskIds: list of str
|
9072
|
+
:param _InstanceIds: 要解绑定期快照策略的实例ID列表。此参数与 DiskIds 参数至少需要传入一个。
|
9073
|
+
:type InstanceIds: list of str
|
9066
9074
|
"""
|
9067
9075
|
self._AutoSnapshotPolicyId = None
|
9068
9076
|
self._DiskIds = None
|
9077
|
+
self._InstanceIds = None
|
9069
9078
|
|
9070
9079
|
@property
|
9071
9080
|
def AutoSnapshotPolicyId(self):
|
@@ -9080,7 +9089,7 @@ class UnbindAutoSnapshotPolicyRequest(AbstractModel):
|
|
9080
9089
|
|
9081
9090
|
@property
|
9082
9091
|
def DiskIds(self):
|
9083
|
-
"""要解绑定期快照策略的云盘ID
|
9092
|
+
"""要解绑定期快照策略的云盘ID列表。此参数与 InstanceIds 参数至少需要传入一个。
|
9084
9093
|
:rtype: list of str
|
9085
9094
|
"""
|
9086
9095
|
return self._DiskIds
|
@@ -9089,10 +9098,22 @@ class UnbindAutoSnapshotPolicyRequest(AbstractModel):
|
|
9089
9098
|
def DiskIds(self, DiskIds):
|
9090
9099
|
self._DiskIds = DiskIds
|
9091
9100
|
|
9101
|
+
@property
|
9102
|
+
def InstanceIds(self):
|
9103
|
+
"""要解绑定期快照策略的实例ID列表。此参数与 DiskIds 参数至少需要传入一个。
|
9104
|
+
:rtype: list of str
|
9105
|
+
"""
|
9106
|
+
return self._InstanceIds
|
9107
|
+
|
9108
|
+
@InstanceIds.setter
|
9109
|
+
def InstanceIds(self, InstanceIds):
|
9110
|
+
self._InstanceIds = InstanceIds
|
9111
|
+
|
9092
9112
|
|
9093
9113
|
def _deserialize(self, params):
|
9094
9114
|
self._AutoSnapshotPolicyId = params.get("AutoSnapshotPolicyId")
|
9095
9115
|
self._DiskIds = params.get("DiskIds")
|
9116
|
+
self._InstanceIds = params.get("InstanceIds")
|
9096
9117
|
memeber_set = set(params.keys())
|
9097
9118
|
for name, value in vars(self).items():
|
9098
9119
|
property_name = name[1:]
|
@@ -1222,7 +1222,7 @@ class CdbClient(AbstractClient):
|
|
1222
1222
|
|
1223
1223
|
|
1224
1224
|
def DescribeBackupConfig(self, request):
|
1225
|
-
"""
|
1225
|
+
"""本接口(DescribeBackupConfig)用于查询数据库备份配置信息。
|
1226
1226
|
|
1227
1227
|
:param request: Request instance for DescribeBackupConfig.
|
1228
1228
|
:type request: :class:`tencentcloud.cdb.v20170320.models.DescribeBackupConfigRequest`
|
@@ -13451,6 +13451,8 @@ class DescribeBackupConfigResponse(AbstractModel):
|
|
13451
13451
|
|
13452
13452
|
@property
|
13453
13453
|
def StartTimeMin(self):
|
13454
|
+
warnings.warn("parameter `StartTimeMin` is deprecated", DeprecationWarning)
|
13455
|
+
|
13454
13456
|
"""自动备份开始的最早时间点,单位为时刻。例如,2 - 凌晨 2:00。(该字段已废弃,建议使用 BackupTimeWindow 字段)
|
13455
13457
|
:rtype: int
|
13456
13458
|
"""
|
@@ -13458,10 +13460,14 @@ class DescribeBackupConfigResponse(AbstractModel):
|
|
13458
13460
|
|
13459
13461
|
@StartTimeMin.setter
|
13460
13462
|
def StartTimeMin(self, StartTimeMin):
|
13463
|
+
warnings.warn("parameter `StartTimeMin` is deprecated", DeprecationWarning)
|
13464
|
+
|
13461
13465
|
self._StartTimeMin = StartTimeMin
|
13462
13466
|
|
13463
13467
|
@property
|
13464
13468
|
def StartTimeMax(self):
|
13469
|
+
warnings.warn("parameter `StartTimeMax` is deprecated", DeprecationWarning)
|
13470
|
+
|
13465
13471
|
"""自动备份开始的最晚时间点,单位为时刻。例如,6 - 凌晨 6:00。(该字段已废弃,建议使用 BackupTimeWindow 字段)
|
13466
13472
|
:rtype: int
|
13467
13473
|
"""
|
@@ -13469,6 +13475,8 @@ class DescribeBackupConfigResponse(AbstractModel):
|
|
13469
13475
|
|
13470
13476
|
@StartTimeMax.setter
|
13471
13477
|
def StartTimeMax(self, StartTimeMax):
|
13478
|
+
warnings.warn("parameter `StartTimeMax` is deprecated", DeprecationWarning)
|
13479
|
+
|
13472
13480
|
self._StartTimeMax = StartTimeMax
|
13473
13481
|
|
13474
13482
|
@property
|
@@ -25173,6 +25181,8 @@ class IsolateDBInstanceResponse(AbstractModel):
|
|
25173
25181
|
|
25174
25182
|
@property
|
25175
25183
|
def AsyncRequestId(self):
|
25184
|
+
warnings.warn("parameter `AsyncRequestId` is deprecated", DeprecationWarning)
|
25185
|
+
|
25176
25186
|
"""异步任务的请求 ID,可使用此 ID 查询异步任务的执行结果。(该返回字段目前已废弃,可以通过 DescribeDBInstances 接口查询实例的隔离状态)
|
25177
25187
|
:rtype: str
|
25178
25188
|
"""
|
@@ -25180,6 +25190,8 @@ class IsolateDBInstanceResponse(AbstractModel):
|
|
25180
25190
|
|
25181
25191
|
@AsyncRequestId.setter
|
25182
25192
|
def AsyncRequestId(self, AsyncRequestId):
|
25193
|
+
warnings.warn("parameter `AsyncRequestId` is deprecated", DeprecationWarning)
|
25194
|
+
|
25183
25195
|
self._AsyncRequestId = AsyncRequestId
|
25184
25196
|
|
25185
25197
|
@property
|
@@ -28817,6 +28829,8 @@ class ModifyDBInstanceVipVportResponse(AbstractModel):
|
|
28817
28829
|
|
28818
28830
|
@property
|
28819
28831
|
def AsyncRequestId(self):
|
28832
|
+
warnings.warn("parameter `AsyncRequestId` is deprecated", DeprecationWarning)
|
28833
|
+
|
28820
28834
|
"""异步任务ID。(该返回字段目前已废弃)
|
28821
28835
|
:rtype: str
|
28822
28836
|
"""
|
@@ -28824,6 +28838,8 @@ class ModifyDBInstanceVipVportResponse(AbstractModel):
|
|
28824
28838
|
|
28825
28839
|
@AsyncRequestId.setter
|
28826
28840
|
def AsyncRequestId(self, AsyncRequestId):
|
28841
|
+
warnings.warn("parameter `AsyncRequestId` is deprecated", DeprecationWarning)
|
28842
|
+
|
28827
28843
|
self._AsyncRequestId = AsyncRequestId
|
28828
28844
|
|
28829
28845
|
@property
|
@@ -29808,6 +29824,8 @@ class ModifyRoGroupInfoRequest(AbstractModel):
|
|
29808
29824
|
|
29809
29825
|
@property
|
29810
29826
|
def ReplicationDelayTime(self):
|
29827
|
+
warnings.warn("parameter `ReplicationDelayTime` is deprecated", DeprecationWarning)
|
29828
|
+
|
29811
29829
|
"""废弃参数,无意义。
|
29812
29830
|
:rtype: int
|
29813
29831
|
"""
|
@@ -29815,6 +29833,8 @@ class ModifyRoGroupInfoRequest(AbstractModel):
|
|
29815
29833
|
|
29816
29834
|
@ReplicationDelayTime.setter
|
29817
29835
|
def ReplicationDelayTime(self, ReplicationDelayTime):
|
29836
|
+
warnings.warn("parameter `ReplicationDelayTime` is deprecated", DeprecationWarning)
|
29837
|
+
|
29818
29838
|
self._ReplicationDelayTime = ReplicationDelayTime
|
29819
29839
|
|
29820
29840
|
|