tencentcloud-sdk-python-postgres 3.1.154__tar.gz → 3.1.155__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 (17) hide show
  1. {tencentcloud_sdk_python_postgres-3.1.154 → tencentcloud_sdk_python_postgres-3.1.155}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_postgres-3.1.154 → tencentcloud_sdk_python_postgres-3.1.155}/setup.py +1 -1
  3. {tencentcloud_sdk_python_postgres-3.1.154 → tencentcloud_sdk_python_postgres-3.1.155}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_postgres-3.1.154 → tencentcloud_sdk_python_postgres-3.1.155}/tencentcloud/postgres/v20170312/models.py +45 -0
  5. {tencentcloud_sdk_python_postgres-3.1.154 → tencentcloud_sdk_python_postgres-3.1.155}/tencentcloud_sdk_python_postgres.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_postgres-3.1.155/tencentcloud_sdk_python_postgres.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_postgres-3.1.154/tencentcloud_sdk_python_postgres.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_postgres-3.1.154 → tencentcloud_sdk_python_postgres-3.1.155}/README.rst +0 -0
  9. {tencentcloud_sdk_python_postgres-3.1.154 → tencentcloud_sdk_python_postgres-3.1.155}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_postgres-3.1.154 → tencentcloud_sdk_python_postgres-3.1.155}/tencentcloud/postgres/__init__.py +0 -0
  11. {tencentcloud_sdk_python_postgres-3.1.154 → tencentcloud_sdk_python_postgres-3.1.155}/tencentcloud/postgres/v20170312/__init__.py +0 -0
  12. {tencentcloud_sdk_python_postgres-3.1.154 → tencentcloud_sdk_python_postgres-3.1.155}/tencentcloud/postgres/v20170312/errorcodes.py +0 -0
  13. {tencentcloud_sdk_python_postgres-3.1.154 → tencentcloud_sdk_python_postgres-3.1.155}/tencentcloud/postgres/v20170312/postgres_client.py +0 -0
  14. {tencentcloud_sdk_python_postgres-3.1.154 → tencentcloud_sdk_python_postgres-3.1.155}/tencentcloud/postgres/v20170312/postgres_client_async.py +0 -0
  15. {tencentcloud_sdk_python_postgres-3.1.154 → tencentcloud_sdk_python_postgres-3.1.155}/tencentcloud_sdk_python_postgres.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_postgres-3.1.154 → tencentcloud_sdk_python_postgres-3.1.155}/tencentcloud_sdk_python_postgres.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_postgres-3.1.154 → tencentcloud_sdk_python_postgres-3.1.155}/tencentcloud_sdk_python_postgres.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-postgres
3
- Version: 3.1.154
3
+ Version: 3.1.155
4
4
  Summary: Tencent Cloud Postgres SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.154
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.155
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-postgres',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.154,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.155,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Postgres SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.154'
17
+ __version__ = '3.1.155'
@@ -7393,6 +7393,51 @@ class DeleteDatabaseRequest(AbstractModel):
7393
7393
 
7394
7394
  """
7395
7395
 
7396
+ def __init__(self):
7397
+ r"""
7398
+ :param _DBInstanceId: <p>实例ID。可通过<a href="https://cloud.tencent.com/document/api/409/16773">DescribeDBInstances</a>接口获取</p>
7399
+ :type DBInstanceId: str
7400
+ :param _DatabaseName: <p>数据库名称</p>
7401
+ :type DatabaseName: str
7402
+ """
7403
+ self._DBInstanceId = None
7404
+ self._DatabaseName = None
7405
+
7406
+ @property
7407
+ def DBInstanceId(self):
7408
+ r"""<p>实例ID。可通过<a href="https://cloud.tencent.com/document/api/409/16773">DescribeDBInstances</a>接口获取</p>
7409
+ :rtype: str
7410
+ """
7411
+ return self._DBInstanceId
7412
+
7413
+ @DBInstanceId.setter
7414
+ def DBInstanceId(self, DBInstanceId):
7415
+ self._DBInstanceId = DBInstanceId
7416
+
7417
+ @property
7418
+ def DatabaseName(self):
7419
+ r"""<p>数据库名称</p>
7420
+ :rtype: str
7421
+ """
7422
+ return self._DatabaseName
7423
+
7424
+ @DatabaseName.setter
7425
+ def DatabaseName(self, DatabaseName):
7426
+ self._DatabaseName = DatabaseName
7427
+
7428
+
7429
+ def _deserialize(self, params):
7430
+ self._DBInstanceId = params.get("DBInstanceId")
7431
+ self._DatabaseName = params.get("DatabaseName")
7432
+ memeber_set = set(params.keys())
7433
+ for name, value in vars(self).items():
7434
+ property_name = name[1:]
7435
+ if property_name in memeber_set:
7436
+ memeber_set.remove(property_name)
7437
+ if len(memeber_set) > 0:
7438
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
7439
+
7440
+
7396
7441
 
7397
7442
  class DeleteDatabaseResponse(AbstractModel):
7398
7443
  r"""DeleteDatabase返回参数结构体
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-postgres
3
- Version: 3.1.154
3
+ Version: 3.1.155
4
4
  Summary: Tencent Cloud Postgres SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.154
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.155
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.155
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.154