tencentcloud-sdk-python-cdb 3.0.1301__tar.gz → 3.0.1304__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-cdb-3.0.1301 → tencentcloud-sdk-python-cdb-3.0.1304}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cdb-3.0.1301 → tencentcloud-sdk-python-cdb-3.0.1304}/setup.py +1 -1
- {tencentcloud-sdk-python-cdb-3.0.1301 → tencentcloud-sdk-python-cdb-3.0.1304}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cdb-3.0.1301 → tencentcloud-sdk-python-cdb-3.0.1304}/tencentcloud/cdb/v20170320/models.py +15 -0
- {tencentcloud-sdk-python-cdb-3.0.1301 → tencentcloud-sdk-python-cdb-3.0.1304}/tencentcloud_sdk_python_cdb.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cdb-3.0.1304/tencentcloud_sdk_python_cdb.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cdb-3.0.1301/tencentcloud_sdk_python_cdb.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cdb-3.0.1301 → tencentcloud-sdk-python-cdb-3.0.1304}/README.rst +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1301 → tencentcloud-sdk-python-cdb-3.0.1304}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1301 → tencentcloud-sdk-python-cdb-3.0.1304}/tencentcloud/cdb/__init__.py +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1301 → tencentcloud-sdk-python-cdb-3.0.1304}/tencentcloud/cdb/v20170320/__init__.py +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1301 → tencentcloud-sdk-python-cdb-3.0.1304}/tencentcloud/cdb/v20170320/cdb_client.py +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1301 → tencentcloud-sdk-python-cdb-3.0.1304}/tencentcloud/cdb/v20170320/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1301 → tencentcloud-sdk-python-cdb-3.0.1304}/tencentcloud_sdk_python_cdb.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1301 → tencentcloud-sdk-python-cdb-3.0.1304}/tencentcloud_sdk_python_cdb.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1301 → tencentcloud-sdk-python-cdb-3.0.1304}/tencentcloud_sdk_python_cdb.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-cdb',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1304"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cdb SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -3088,6 +3088,8 @@ class BackupInfo(AbstractModel):
|
|
|
3088
3088
|
:type EncryptionFlag: str
|
|
3089
3089
|
:param _ExecutedGTIDSet: 备份GTID点位
|
|
3090
3090
|
:type ExecutedGTIDSet: str
|
|
3091
|
+
:param _MD5: 备份文件MD5值
|
|
3092
|
+
:type MD5: str
|
|
3091
3093
|
"""
|
|
3092
3094
|
self._Name = None
|
|
3093
3095
|
self._Size = None
|
|
@@ -3110,6 +3112,7 @@ class BackupInfo(AbstractModel):
|
|
|
3110
3112
|
self._InstanceId = None
|
|
3111
3113
|
self._EncryptionFlag = None
|
|
3112
3114
|
self._ExecutedGTIDSet = None
|
|
3115
|
+
self._MD5 = None
|
|
3113
3116
|
|
|
3114
3117
|
@property
|
|
3115
3118
|
def Name(self):
|
|
@@ -3342,6 +3345,17 @@ class BackupInfo(AbstractModel):
|
|
|
3342
3345
|
def ExecutedGTIDSet(self, ExecutedGTIDSet):
|
|
3343
3346
|
self._ExecutedGTIDSet = ExecutedGTIDSet
|
|
3344
3347
|
|
|
3348
|
+
@property
|
|
3349
|
+
def MD5(self):
|
|
3350
|
+
"""备份文件MD5值
|
|
3351
|
+
:rtype: str
|
|
3352
|
+
"""
|
|
3353
|
+
return self._MD5
|
|
3354
|
+
|
|
3355
|
+
@MD5.setter
|
|
3356
|
+
def MD5(self, MD5):
|
|
3357
|
+
self._MD5 = MD5
|
|
3358
|
+
|
|
3345
3359
|
|
|
3346
3360
|
def _deserialize(self, params):
|
|
3347
3361
|
self._Name = params.get("Name")
|
|
@@ -3370,6 +3384,7 @@ class BackupInfo(AbstractModel):
|
|
|
3370
3384
|
self._InstanceId = params.get("InstanceId")
|
|
3371
3385
|
self._EncryptionFlag = params.get("EncryptionFlag")
|
|
3372
3386
|
self._ExecutedGTIDSet = params.get("ExecutedGTIDSet")
|
|
3387
|
+
self._MD5 = params.get("MD5")
|
|
3373
3388
|
memeber_set = set(params.keys())
|
|
3374
3389
|
for name, value in vars(self).items():
|
|
3375
3390
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1304
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1301
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|