tencentcloud-sdk-python-dcdb 3.0.1212__tar.gz → 3.0.1222__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-dcdb-3.0.1212 → tencentcloud-sdk-python-dcdb-3.0.1222}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dcdb-3.0.1212 → tencentcloud-sdk-python-dcdb-3.0.1222}/setup.py +1 -1
- {tencentcloud-sdk-python-dcdb-3.0.1212 → tencentcloud-sdk-python-dcdb-3.0.1222}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dcdb-3.0.1212 → tencentcloud-sdk-python-dcdb-3.0.1222}/tencentcloud/dcdb/v20180411/models.py +36 -0
- {tencentcloud-sdk-python-dcdb-3.0.1212 → tencentcloud-sdk-python-dcdb-3.0.1222}/tencentcloud_sdk_python_dcdb.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-dcdb-3.0.1222/tencentcloud_sdk_python_dcdb.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-dcdb-3.0.1212/tencentcloud_sdk_python_dcdb.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-dcdb-3.0.1212 → tencentcloud-sdk-python-dcdb-3.0.1222}/README.rst +0 -0
- {tencentcloud-sdk-python-dcdb-3.0.1212 → tencentcloud-sdk-python-dcdb-3.0.1222}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dcdb-3.0.1212 → tencentcloud-sdk-python-dcdb-3.0.1222}/tencentcloud/dcdb/__init__.py +0 -0
- {tencentcloud-sdk-python-dcdb-3.0.1212 → tencentcloud-sdk-python-dcdb-3.0.1222}/tencentcloud/dcdb/v20180411/__init__.py +0 -0
- {tencentcloud-sdk-python-dcdb-3.0.1212 → tencentcloud-sdk-python-dcdb-3.0.1222}/tencentcloud/dcdb/v20180411/dcdb_client.py +0 -0
- {tencentcloud-sdk-python-dcdb-3.0.1212 → tencentcloud-sdk-python-dcdb-3.0.1222}/tencentcloud/dcdb/v20180411/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dcdb-3.0.1212 → tencentcloud-sdk-python-dcdb-3.0.1222}/tencentcloud_sdk_python_dcdb.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-dcdb-3.0.1212 → tencentcloud-sdk-python-dcdb-3.0.1222}/tencentcloud_sdk_python_dcdb.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dcdb-3.0.1212 → tencentcloud-sdk-python-dcdb-3.0.1222}/tencentcloud_sdk_python_dcdb.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-dcdb',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1222"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Dcdb SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -13508,6 +13508,12 @@ class UpgradeDCDBInstanceRequest(AbstractModel):
|
|
|
13508
13508
|
:type VoucherIds: list of str
|
|
13509
13509
|
:param _Zones: 变更部署时指定的新可用区列表,第1个为主可用区,其余为从可用区
|
|
13510
13510
|
:type Zones: list of str
|
|
13511
|
+
:param _SwitchStartTime: 切换开始时间,格式如: "2019-12-12 07:00:00"。开始时间必须在当前时间一个小时以后,3天以内。
|
|
13512
|
+
:type SwitchStartTime: str
|
|
13513
|
+
:param _SwitchEndTime: 切换结束时间, 格式如: "2019-12-12 07:15:00",结束时间必须大于开始时间。
|
|
13514
|
+
:type SwitchEndTime: str
|
|
13515
|
+
:param _SwitchAutoRetry: 是否自动重试。 0:不自动重试 1:自动重试
|
|
13516
|
+
:type SwitchAutoRetry: int
|
|
13511
13517
|
"""
|
|
13512
13518
|
self._InstanceId = None
|
|
13513
13519
|
self._UpgradeType = None
|
|
@@ -13517,6 +13523,9 @@ class UpgradeDCDBInstanceRequest(AbstractModel):
|
|
|
13517
13523
|
self._AutoVoucher = None
|
|
13518
13524
|
self._VoucherIds = None
|
|
13519
13525
|
self._Zones = None
|
|
13526
|
+
self._SwitchStartTime = None
|
|
13527
|
+
self._SwitchEndTime = None
|
|
13528
|
+
self._SwitchAutoRetry = None
|
|
13520
13529
|
|
|
13521
13530
|
@property
|
|
13522
13531
|
def InstanceId(self):
|
|
@@ -13582,6 +13591,30 @@ class UpgradeDCDBInstanceRequest(AbstractModel):
|
|
|
13582
13591
|
def Zones(self, Zones):
|
|
13583
13592
|
self._Zones = Zones
|
|
13584
13593
|
|
|
13594
|
+
@property
|
|
13595
|
+
def SwitchStartTime(self):
|
|
13596
|
+
return self._SwitchStartTime
|
|
13597
|
+
|
|
13598
|
+
@SwitchStartTime.setter
|
|
13599
|
+
def SwitchStartTime(self, SwitchStartTime):
|
|
13600
|
+
self._SwitchStartTime = SwitchStartTime
|
|
13601
|
+
|
|
13602
|
+
@property
|
|
13603
|
+
def SwitchEndTime(self):
|
|
13604
|
+
return self._SwitchEndTime
|
|
13605
|
+
|
|
13606
|
+
@SwitchEndTime.setter
|
|
13607
|
+
def SwitchEndTime(self, SwitchEndTime):
|
|
13608
|
+
self._SwitchEndTime = SwitchEndTime
|
|
13609
|
+
|
|
13610
|
+
@property
|
|
13611
|
+
def SwitchAutoRetry(self):
|
|
13612
|
+
return self._SwitchAutoRetry
|
|
13613
|
+
|
|
13614
|
+
@SwitchAutoRetry.setter
|
|
13615
|
+
def SwitchAutoRetry(self, SwitchAutoRetry):
|
|
13616
|
+
self._SwitchAutoRetry = SwitchAutoRetry
|
|
13617
|
+
|
|
13585
13618
|
|
|
13586
13619
|
def _deserialize(self, params):
|
|
13587
13620
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -13598,6 +13631,9 @@ class UpgradeDCDBInstanceRequest(AbstractModel):
|
|
|
13598
13631
|
self._AutoVoucher = params.get("AutoVoucher")
|
|
13599
13632
|
self._VoucherIds = params.get("VoucherIds")
|
|
13600
13633
|
self._Zones = params.get("Zones")
|
|
13634
|
+
self._SwitchStartTime = params.get("SwitchStartTime")
|
|
13635
|
+
self._SwitchEndTime = params.get("SwitchEndTime")
|
|
13636
|
+
self._SwitchAutoRetry = params.get("SwitchAutoRetry")
|
|
13601
13637
|
memeber_set = set(params.keys())
|
|
13602
13638
|
for name, value in vars(self).items():
|
|
13603
13639
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1222
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1212
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|