tencentcloud-sdk-python-postgres 3.0.1378__tar.gz → 3.0.1379__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.1378 → tencentcloud-sdk-python-postgres-3.0.1379}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-postgres-3.0.1378 → tencentcloud-sdk-python-postgres-3.0.1379}/setup.py +1 -1
- {tencentcloud-sdk-python-postgres-3.0.1378 → tencentcloud-sdk-python-postgres-3.0.1379}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-postgres-3.0.1378 → tencentcloud-sdk-python-postgres-3.0.1379}/tencentcloud/postgres/v20170312/models.py +12 -4
- {tencentcloud-sdk-python-postgres-3.0.1378 → tencentcloud-sdk-python-postgres-3.0.1379}/tencentcloud_sdk_python_postgres.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-postgres-3.0.1379/tencentcloud_sdk_python_postgres.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-postgres-3.0.1378/tencentcloud_sdk_python_postgres.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-postgres-3.0.1378 → tencentcloud-sdk-python-postgres-3.0.1379}/README.rst +0 -0
- {tencentcloud-sdk-python-postgres-3.0.1378 → tencentcloud-sdk-python-postgres-3.0.1379}/setup.cfg +0 -0
- {tencentcloud-sdk-python-postgres-3.0.1378 → tencentcloud-sdk-python-postgres-3.0.1379}/tencentcloud/postgres/__init__.py +0 -0
- {tencentcloud-sdk-python-postgres-3.0.1378 → tencentcloud-sdk-python-postgres-3.0.1379}/tencentcloud/postgres/v20170312/__init__.py +0 -0
- {tencentcloud-sdk-python-postgres-3.0.1378 → tencentcloud-sdk-python-postgres-3.0.1379}/tencentcloud/postgres/v20170312/errorcodes.py +0 -0
- {tencentcloud-sdk-python-postgres-3.0.1378 → tencentcloud-sdk-python-postgres-3.0.1379}/tencentcloud/postgres/v20170312/postgres_client.py +0 -0
- {tencentcloud-sdk-python-postgres-3.0.1378 → tencentcloud-sdk-python-postgres-3.0.1379}/tencentcloud_sdk_python_postgres.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-postgres-3.0.1378 → tencentcloud-sdk-python-postgres-3.0.1379}/tencentcloud_sdk_python_postgres.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-postgres-3.0.1378 → tencentcloud-sdk-python-postgres-3.0.1379}/tencentcloud_sdk_python_postgres.egg-info/top_level.txt +0 -0
{tencentcloud-sdk-python-postgres-3.0.1378 → tencentcloud-sdk-python-postgres-3.0.1379}/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.1379"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Postgres SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -3699,7 +3699,7 @@ class CreateReadOnlyDBInstanceRequest(AbstractModel):
|
|
|
3699
3699
|
:type NeedSupportIpv6: int
|
|
3700
3700
|
:param _Name: 实例名(后续支持)
|
|
3701
3701
|
:type Name: str
|
|
3702
|
-
:param _DBVersion:
|
|
3702
|
+
:param _DBVersion: 不再需要指定,内核版本号与主实例保持一致
|
|
3703
3703
|
:type DBVersion: str
|
|
3704
3704
|
:param _DedicatedClusterId: 专属集群ID
|
|
3705
3705
|
:type DedicatedClusterId: str
|
|
@@ -3953,13 +3953,17 @@ class CreateReadOnlyDBInstanceRequest(AbstractModel):
|
|
|
3953
3953
|
|
|
3954
3954
|
@property
|
|
3955
3955
|
def DBVersion(self):
|
|
3956
|
-
""
|
|
3956
|
+
warnings.warn("parameter `DBVersion` is deprecated", DeprecationWarning)
|
|
3957
|
+
|
|
3958
|
+
"""不再需要指定,内核版本号与主实例保持一致
|
|
3957
3959
|
:rtype: str
|
|
3958
3960
|
"""
|
|
3959
3961
|
return self._DBVersion
|
|
3960
3962
|
|
|
3961
3963
|
@DBVersion.setter
|
|
3962
3964
|
def DBVersion(self, DBVersion):
|
|
3965
|
+
warnings.warn("parameter `DBVersion` is deprecated", DeprecationWarning)
|
|
3966
|
+
|
|
3963
3967
|
self._DBVersion = DBVersion
|
|
3964
3968
|
|
|
3965
3969
|
@property
|
|
@@ -14012,7 +14016,7 @@ class InquiryPriceUpgradeDBInstanceRequest(AbstractModel):
|
|
|
14012
14016
|
:type Memory: int
|
|
14013
14017
|
:param _DBInstanceId: 实例ID,形如postgres-hez4fh0v
|
|
14014
14018
|
:type DBInstanceId: str
|
|
14015
|
-
:param _InstanceChargeType:
|
|
14019
|
+
:param _InstanceChargeType: 实例计费类型。
|
|
14016
14020
|
:type InstanceChargeType: str
|
|
14017
14021
|
:param _Cpu: 实例的Cpu大小,单位Core
|
|
14018
14022
|
:type Cpu: int
|
|
@@ -14058,13 +14062,17 @@ class InquiryPriceUpgradeDBInstanceRequest(AbstractModel):
|
|
|
14058
14062
|
|
|
14059
14063
|
@property
|
|
14060
14064
|
def InstanceChargeType(self):
|
|
14061
|
-
""
|
|
14065
|
+
warnings.warn("parameter `InstanceChargeType` is deprecated", DeprecationWarning)
|
|
14066
|
+
|
|
14067
|
+
"""实例计费类型。
|
|
14062
14068
|
:rtype: str
|
|
14063
14069
|
"""
|
|
14064
14070
|
return self._InstanceChargeType
|
|
14065
14071
|
|
|
14066
14072
|
@InstanceChargeType.setter
|
|
14067
14073
|
def InstanceChargeType(self, InstanceChargeType):
|
|
14074
|
+
warnings.warn("parameter `InstanceChargeType` is deprecated", DeprecationWarning)
|
|
14075
|
+
|
|
14068
14076
|
self._InstanceChargeType = InstanceChargeType
|
|
14069
14077
|
|
|
14070
14078
|
@property
|
tencentcloud-sdk-python-postgres-3.0.1379/tencentcloud_sdk_python_postgres.egg-info/requires.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1379
|
tencentcloud-sdk-python-postgres-3.0.1378/tencentcloud_sdk_python_postgres.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1378
|
{tencentcloud-sdk-python-postgres-3.0.1378 → tencentcloud-sdk-python-postgres-3.0.1379}/README.rst
RENAMED
|
File without changes
|
{tencentcloud-sdk-python-postgres-3.0.1378 → tencentcloud-sdk-python-postgres-3.0.1379}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|