tencentcloud-sdk-python-postgres 3.0.968__tar.gz → 3.0.982__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-postgres-3.0.968 → tencentcloud-sdk-python-postgres-3.0.982}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-postgres-3.0.968 → tencentcloud-sdk-python-postgres-3.0.982}/setup.py +1 -1
  3. {tencentcloud-sdk-python-postgres-3.0.968 → tencentcloud-sdk-python-postgres-3.0.982}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-postgres-3.0.968 → tencentcloud-sdk-python-postgres-3.0.982}/tencentcloud/postgres/v20170312/models.py +6 -3
  5. {tencentcloud-sdk-python-postgres-3.0.968 → tencentcloud-sdk-python-postgres-3.0.982}/tencentcloud_sdk_python_postgres.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-postgres-3.0.982/tencentcloud_sdk_python_postgres.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-postgres-3.0.968/tencentcloud_sdk_python_postgres.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-postgres-3.0.968 → tencentcloud-sdk-python-postgres-3.0.982}/README.rst +0 -0
  9. {tencentcloud-sdk-python-postgres-3.0.968 → tencentcloud-sdk-python-postgres-3.0.982}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-postgres-3.0.968 → tencentcloud-sdk-python-postgres-3.0.982}/tencentcloud/postgres/__init__.py +0 -0
  11. {tencentcloud-sdk-python-postgres-3.0.968 → tencentcloud-sdk-python-postgres-3.0.982}/tencentcloud/postgres/v20170312/__init__.py +0 -0
  12. {tencentcloud-sdk-python-postgres-3.0.968 → tencentcloud-sdk-python-postgres-3.0.982}/tencentcloud/postgres/v20170312/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-postgres-3.0.968 → tencentcloud-sdk-python-postgres-3.0.982}/tencentcloud/postgres/v20170312/postgres_client.py +0 -0
  14. {tencentcloud-sdk-python-postgres-3.0.968 → tencentcloud-sdk-python-postgres-3.0.982}/tencentcloud_sdk_python_postgres.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-postgres-3.0.968 → tencentcloud-sdk-python-postgres-3.0.982}/tencentcloud_sdk_python_postgres.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-postgres-3.0.968 → tencentcloud-sdk-python-postgres-3.0.982}/tencentcloud_sdk_python_postgres.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-postgres
3
- Version: 3.0.968
3
+ Version: 3.0.982
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
@@ -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.968"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.982"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Postgres 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.968'
17
+ __version__ = '3.0.982'
@@ -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版本。当输入该参数时,会基于此版本创建对应的最新内核版本号实例。该参数和DBMajorVersion、DBKernelVersion至少需要传递一个。
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主要版本。当输入该参数时,会基于此版本创建对应的最新内核版本号实例。该参数和DBVersion、DBKernelVersion至少需要传递一个。
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内核版本。当输入该参数时,会创建该内核版本号实例。该参数和DBVersion、DBMajorVersion至少需要传递一个。
1614
+ :param _DBKernelVersion: PostgreSQL内核版本号。
1615
+ 一般场景不推荐传入该参数。如需指定,只能传当前大版本号下最新内核版本号。
1613
1616
  :type DBKernelVersion: str
1614
1617
  """
1615
1618
  self._SpecCode = None
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-postgres
3
- Version: 3.0.968
3
+ Version: 3.0.982
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
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.982
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.968