tencentcloud-sdk-python-postgres 3.0.977__tar.gz → 3.0.988__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-postgres-3.0.977 → tencentcloud-sdk-python-postgres-3.0.988}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-postgres-3.0.977 → tencentcloud-sdk-python-postgres-3.0.988}/setup.py +1 -1
- {tencentcloud-sdk-python-postgres-3.0.977 → tencentcloud-sdk-python-postgres-3.0.988}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-postgres-3.0.977 → tencentcloud-sdk-python-postgres-3.0.988}/tencentcloud/postgres/v20170312/models.py +6 -3
- {tencentcloud-sdk-python-postgres-3.0.977 → tencentcloud-sdk-python-postgres-3.0.988}/tencentcloud_sdk_python_postgres.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-postgres-3.0.988/tencentcloud_sdk_python_postgres.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-postgres-3.0.977/tencentcloud_sdk_python_postgres.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-postgres-3.0.977 → tencentcloud-sdk-python-postgres-3.0.988}/README.rst +0 -0
- {tencentcloud-sdk-python-postgres-3.0.977 → tencentcloud-sdk-python-postgres-3.0.988}/setup.cfg +0 -0
- {tencentcloud-sdk-python-postgres-3.0.977 → tencentcloud-sdk-python-postgres-3.0.988}/tencentcloud/postgres/__init__.py +0 -0
- {tencentcloud-sdk-python-postgres-3.0.977 → tencentcloud-sdk-python-postgres-3.0.988}/tencentcloud/postgres/v20170312/__init__.py +0 -0
- {tencentcloud-sdk-python-postgres-3.0.977 → tencentcloud-sdk-python-postgres-3.0.988}/tencentcloud/postgres/v20170312/errorcodes.py +0 -0
- {tencentcloud-sdk-python-postgres-3.0.977 → tencentcloud-sdk-python-postgres-3.0.988}/tencentcloud/postgres/v20170312/postgres_client.py +0 -0
- {tencentcloud-sdk-python-postgres-3.0.977 → tencentcloud-sdk-python-postgres-3.0.988}/tencentcloud_sdk_python_postgres.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-postgres-3.0.977 → tencentcloud-sdk-python-postgres-3.0.988}/tencentcloud_sdk_python_postgres.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-postgres-3.0.977 → tencentcloud-sdk-python-postgres-3.0.988}/tencentcloud_sdk_python_postgres.egg-info/top_level.txt +0 -0
{tencentcloud-sdk-python-postgres-3.0.977 → tencentcloud-sdk-python-postgres-3.0.988}/setup.py
RENAMED
|
@@ -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.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.988"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Postgres SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -1583,7 +1583,8 @@ class CreateDBInstancesRequest(AbstractModel):
|
|
|
1583
1583
|
:type Zone: str
|
|
1584
1584
|
:param _ProjectId: 项目ID。
|
|
1585
1585
|
:type ProjectId: int
|
|
1586
|
-
:param _DBVersion: PostgreSQL
|
|
1586
|
+
:param _DBVersion: PostgreSQL社区大版本+小版本号。
|
|
1587
|
+
一般场景不推荐传入该参数。如需指定,只能传当前大版本号下最新小版本号。
|
|
1587
1588
|
:type DBVersion: str
|
|
1588
1589
|
:param _InstanceChargeType: 实例计费类型。目前支持:PREPAID(预付费,即包年包月),POSTPAID_BY_HOUR(后付费,即按量计费)。默认值:PREPAID。
|
|
1589
1590
|
:type InstanceChargeType: str
|
|
@@ -1607,9 +1608,11 @@ class CreateDBInstancesRequest(AbstractModel):
|
|
|
1607
1608
|
:type TagList: list of Tag
|
|
1608
1609
|
:param _SecurityGroupIds: 安全组id
|
|
1609
1610
|
:type SecurityGroupIds: list of str
|
|
1610
|
-
:param _DBMajorVersion: PostgreSQL
|
|
1611
|
+
:param _DBMajorVersion: PostgreSQL大版本号(该参数当前必传),版本信息可从[DescribeDBVersions](https://cloud.tencent.com/document/api/409/89018)获取。目前支持10,11,12,13,14,15这几个大版本,详情见[内核版本概述](https://cloud.tencent.com/document/product/409/67018)。
|
|
1612
|
+
输入该参数时,会基于此大版本号创建对应的最新小版本的最新内核版本号实例。
|
|
1611
1613
|
:type DBMajorVersion: str
|
|
1612
|
-
:param _DBKernelVersion: PostgreSQL
|
|
1614
|
+
:param _DBKernelVersion: PostgreSQL内核版本号。
|
|
1615
|
+
一般场景不推荐传入该参数。如需指定,只能传当前大版本号下最新内核版本号。
|
|
1613
1616
|
:type DBKernelVersion: str
|
|
1614
1617
|
"""
|
|
1615
1618
|
self._SpecCode = None
|
tencentcloud-sdk-python-postgres-3.0.988/tencentcloud_sdk_python_postgres.egg-info/requires.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.988
|
tencentcloud-sdk-python-postgres-3.0.977/tencentcloud_sdk_python_postgres.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.977
|
{tencentcloud-sdk-python-postgres-3.0.977 → tencentcloud-sdk-python-postgres-3.0.988}/README.rst
RENAMED
|
File without changes
|
{tencentcloud-sdk-python-postgres-3.0.977 → tencentcloud-sdk-python-postgres-3.0.988}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|