tencentcloud-sdk-python-cdb 3.0.1382__tar.gz → 3.0.1383__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.
Files changed (16) hide show
  1. {tencentcloud-sdk-python-cdb-3.0.1382 → tencentcloud-sdk-python-cdb-3.0.1383}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-cdb-3.0.1382 → tencentcloud-sdk-python-cdb-3.0.1383}/setup.py +1 -1
  3. {tencentcloud-sdk-python-cdb-3.0.1382 → tencentcloud-sdk-python-cdb-3.0.1383}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-cdb-3.0.1382 → tencentcloud-sdk-python-cdb-3.0.1383}/tencentcloud/cdb/v20170320/cdb_client.py +1 -1
  5. {tencentcloud-sdk-python-cdb-3.0.1382 → tencentcloud-sdk-python-cdb-3.0.1383}/tencentcloud/cdb/v20170320/models.py +20 -0
  6. {tencentcloud-sdk-python-cdb-3.0.1382 → tencentcloud-sdk-python-cdb-3.0.1383}/tencentcloud_sdk_python_cdb.egg-info/PKG-INFO +1 -1
  7. tencentcloud-sdk-python-cdb-3.0.1383/tencentcloud_sdk_python_cdb.egg-info/requires.txt +1 -0
  8. tencentcloud-sdk-python-cdb-3.0.1382/tencentcloud_sdk_python_cdb.egg-info/requires.txt +0 -1
  9. {tencentcloud-sdk-python-cdb-3.0.1382 → tencentcloud-sdk-python-cdb-3.0.1383}/README.rst +0 -0
  10. {tencentcloud-sdk-python-cdb-3.0.1382 → tencentcloud-sdk-python-cdb-3.0.1383}/setup.cfg +0 -0
  11. {tencentcloud-sdk-python-cdb-3.0.1382 → tencentcloud-sdk-python-cdb-3.0.1383}/tencentcloud/cdb/__init__.py +0 -0
  12. {tencentcloud-sdk-python-cdb-3.0.1382 → tencentcloud-sdk-python-cdb-3.0.1383}/tencentcloud/cdb/v20170320/__init__.py +0 -0
  13. {tencentcloud-sdk-python-cdb-3.0.1382 → tencentcloud-sdk-python-cdb-3.0.1383}/tencentcloud/cdb/v20170320/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-cdb-3.0.1382 → tencentcloud-sdk-python-cdb-3.0.1383}/tencentcloud_sdk_python_cdb.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-cdb-3.0.1382 → tencentcloud-sdk-python-cdb-3.0.1383}/tencentcloud_sdk_python_cdb.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-cdb-3.0.1382 → tencentcloud-sdk-python-cdb-3.0.1383}/tencentcloud_sdk_python_cdb.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-cdb
3
- Version: 3.0.1382
3
+ Version: 3.0.1383
4
4
  Summary: Tencent Cloud Cdb SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-cdb',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1382"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1383"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Cdb SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1382'
17
+ __version__ = '3.0.1383'
@@ -1222,7 +1222,7 @@ class CdbClient(AbstractClient):
1222
1222
 
1223
1223
 
1224
1224
  def DescribeBackupConfig(self, request):
1225
- """本接口(DescribeBackupConfig)用于查询数据库备份配置信息。
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
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-cdb
3
- Version: 3.0.1382
3
+ Version: 3.0.1383
4
4
  Summary: Tencent Cloud Cdb SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1383
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1382