tencentcloud-sdk-python-postgres 3.1.52__tar.gz → 3.1.62__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.1.52 → tencentcloud_sdk_python_postgres-3.1.62}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_postgres-3.1.52 → tencentcloud_sdk_python_postgres-3.1.62}/setup.py +1 -1
- {tencentcloud_sdk_python_postgres-3.1.52 → tencentcloud_sdk_python_postgres-3.1.62}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_postgres-3.1.52 → tencentcloud_sdk_python_postgres-3.1.62}/tencentcloud/postgres/v20170312/models.py +105 -0
- {tencentcloud_sdk_python_postgres-3.1.52 → tencentcloud_sdk_python_postgres-3.1.62}/tencentcloud_sdk_python_postgres.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_postgres-3.1.62/tencentcloud_sdk_python_postgres.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_postgres-3.1.52/tencentcloud_sdk_python_postgres.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_postgres-3.1.52 → tencentcloud_sdk_python_postgres-3.1.62}/README.rst +0 -0
- {tencentcloud_sdk_python_postgres-3.1.52 → tencentcloud_sdk_python_postgres-3.1.62}/setup.cfg +0 -0
- {tencentcloud_sdk_python_postgres-3.1.52 → tencentcloud_sdk_python_postgres-3.1.62}/tencentcloud/postgres/__init__.py +0 -0
- {tencentcloud_sdk_python_postgres-3.1.52 → tencentcloud_sdk_python_postgres-3.1.62}/tencentcloud/postgres/v20170312/__init__.py +0 -0
- {tencentcloud_sdk_python_postgres-3.1.52 → tencentcloud_sdk_python_postgres-3.1.62}/tencentcloud/postgres/v20170312/errorcodes.py +0 -0
- {tencentcloud_sdk_python_postgres-3.1.52 → tencentcloud_sdk_python_postgres-3.1.62}/tencentcloud/postgres/v20170312/postgres_client.py +0 -0
- {tencentcloud_sdk_python_postgres-3.1.52 → tencentcloud_sdk_python_postgres-3.1.62}/tencentcloud/postgres/v20170312/postgres_client_async.py +0 -0
- {tencentcloud_sdk_python_postgres-3.1.52 → tencentcloud_sdk_python_postgres-3.1.62}/tencentcloud_sdk_python_postgres.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_postgres-3.1.52 → tencentcloud_sdk_python_postgres-3.1.62}/tencentcloud_sdk_python_postgres.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_postgres-3.1.52 → tencentcloud_sdk_python_postgres-3.1.62}/tencentcloud_sdk_python_postgres.egg-info/top_level.txt +0 -0
{tencentcloud_sdk_python_postgres-3.1.52 → tencentcloud_sdk_python_postgres-3.1.62}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-postgres
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.62
|
|
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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.62
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
{tencentcloud_sdk_python_postgres-3.1.52 → tencentcloud_sdk_python_postgres-3.1.62}/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.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.62,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Postgres SDK for Python',
|
|
@@ -2676,6 +2676,8 @@ class CreateInstancesRequest(AbstractModel):
|
|
|
2676
2676
|
:type NeedSupportIpv6: int
|
|
2677
2677
|
:param _DeletionProtection: <p>实例是否开启删除保护: true-开启删除保护;false-关闭删除保护。</p>
|
|
2678
2678
|
:type DeletionProtection: bool
|
|
2679
|
+
:param _StorageType: <p>实例存储类型,可选值:PHYSICAL_LOCAL_SSD:物理机本地ssd硬盘 CLOUD_PREMIUM:高性能云硬盘 CLOUD_SSD:ssd云硬盘 CLOUD_HSSD:增强型ssd云硬盘</p>
|
|
2680
|
+
:type StorageType: str
|
|
2679
2681
|
"""
|
|
2680
2682
|
self._Zone = None
|
|
2681
2683
|
self._SpecCode = None
|
|
@@ -2709,6 +2711,7 @@ class CreateInstancesRequest(AbstractModel):
|
|
|
2709
2711
|
self._SyncMode = None
|
|
2710
2712
|
self._NeedSupportIpv6 = None
|
|
2711
2713
|
self._DeletionProtection = None
|
|
2714
|
+
self._StorageType = None
|
|
2712
2715
|
|
|
2713
2716
|
@property
|
|
2714
2717
|
def Zone(self):
|
|
@@ -3062,6 +3065,17 @@ class CreateInstancesRequest(AbstractModel):
|
|
|
3062
3065
|
def DeletionProtection(self, DeletionProtection):
|
|
3063
3066
|
self._DeletionProtection = DeletionProtection
|
|
3064
3067
|
|
|
3068
|
+
@property
|
|
3069
|
+
def StorageType(self):
|
|
3070
|
+
r"""<p>实例存储类型,可选值:PHYSICAL_LOCAL_SSD:物理机本地ssd硬盘 CLOUD_PREMIUM:高性能云硬盘 CLOUD_SSD:ssd云硬盘 CLOUD_HSSD:增强型ssd云硬盘</p>
|
|
3071
|
+
:rtype: str
|
|
3072
|
+
"""
|
|
3073
|
+
return self._StorageType
|
|
3074
|
+
|
|
3075
|
+
@StorageType.setter
|
|
3076
|
+
def StorageType(self, StorageType):
|
|
3077
|
+
self._StorageType = StorageType
|
|
3078
|
+
|
|
3065
3079
|
|
|
3066
3080
|
def _deserialize(self, params):
|
|
3067
3081
|
self._Zone = params.get("Zone")
|
|
@@ -3106,6 +3120,7 @@ class CreateInstancesRequest(AbstractModel):
|
|
|
3106
3120
|
self._SyncMode = params.get("SyncMode")
|
|
3107
3121
|
self._NeedSupportIpv6 = params.get("NeedSupportIpv6")
|
|
3108
3122
|
self._DeletionProtection = params.get("DeletionProtection")
|
|
3123
|
+
self._StorageType = params.get("StorageType")
|
|
3109
3124
|
memeber_set = set(params.keys())
|
|
3110
3125
|
for name, value in vars(self).items():
|
|
3111
3126
|
property_name = name[1:]
|
|
@@ -4463,6 +4478,8 @@ class DBInstance(AbstractModel):
|
|
|
4463
4478
|
:type ExpandedCpu: int
|
|
4464
4479
|
:param _DeletionProtection: <p>实例是否开启删除保护,取值如下:</p><ul><li>true:开启删除保护</li><li>false:关闭删除保护</li></ul>
|
|
4465
4480
|
:type DeletionProtection: bool
|
|
4481
|
+
:param _DBInstanceStorageType: <p>实例存储类型,可选值:PHYSICAL_LOCAL_SSD:物理机本地ssd硬盘 CLOUD_PREMIUM:高性能云硬盘 CLOUD_SSD:ssd云硬盘 CLOUD_HSSD:增强型ssd云硬盘</p>
|
|
4482
|
+
:type DBInstanceStorageType: str
|
|
4466
4483
|
"""
|
|
4467
4484
|
self._Region = None
|
|
4468
4485
|
self._Zone = None
|
|
@@ -4505,6 +4522,7 @@ class DBInstance(AbstractModel):
|
|
|
4505
4522
|
self._SupportIpv6 = None
|
|
4506
4523
|
self._ExpandedCpu = None
|
|
4507
4524
|
self._DeletionProtection = None
|
|
4525
|
+
self._DBInstanceStorageType = None
|
|
4508
4526
|
|
|
4509
4527
|
@property
|
|
4510
4528
|
def Region(self):
|
|
@@ -4959,6 +4977,17 @@ class DBInstance(AbstractModel):
|
|
|
4959
4977
|
def DeletionProtection(self, DeletionProtection):
|
|
4960
4978
|
self._DeletionProtection = DeletionProtection
|
|
4961
4979
|
|
|
4980
|
+
@property
|
|
4981
|
+
def DBInstanceStorageType(self):
|
|
4982
|
+
r"""<p>实例存储类型,可选值:PHYSICAL_LOCAL_SSD:物理机本地ssd硬盘 CLOUD_PREMIUM:高性能云硬盘 CLOUD_SSD:ssd云硬盘 CLOUD_HSSD:增强型ssd云硬盘</p>
|
|
4983
|
+
:rtype: str
|
|
4984
|
+
"""
|
|
4985
|
+
return self._DBInstanceStorageType
|
|
4986
|
+
|
|
4987
|
+
@DBInstanceStorageType.setter
|
|
4988
|
+
def DBInstanceStorageType(self, DBInstanceStorageType):
|
|
4989
|
+
self._DBInstanceStorageType = DBInstanceStorageType
|
|
4990
|
+
|
|
4962
4991
|
|
|
4963
4992
|
def _deserialize(self, params):
|
|
4964
4993
|
self._Region = params.get("Region")
|
|
@@ -5022,6 +5051,7 @@ class DBInstance(AbstractModel):
|
|
|
5022
5051
|
self._SupportIpv6 = params.get("SupportIpv6")
|
|
5023
5052
|
self._ExpandedCpu = params.get("ExpandedCpu")
|
|
5024
5053
|
self._DeletionProtection = params.get("DeletionProtection")
|
|
5054
|
+
self._DBInstanceStorageType = params.get("DBInstanceStorageType")
|
|
5025
5055
|
memeber_set = set(params.keys())
|
|
5026
5056
|
for name, value in vars(self).items():
|
|
5027
5057
|
property_name = name[1:]
|
|
@@ -7726,10 +7756,13 @@ class DescribeClassesRequest(AbstractModel):
|
|
|
7726
7756
|
:type DBEngine: str
|
|
7727
7757
|
:param _DBMajorVersion: <p>数据库主版本号。例如12,13,可以通过接口<a href="https://cloud.tencent.com/document/product/409/89018">DescribeDBVersions</a>获取。</p>
|
|
7728
7758
|
:type DBMajorVersion: str
|
|
7759
|
+
:param _StorageType: <p>实例存储类型,根据存储类型返回支持的规格。</p><p>枚举值:</p><ul><li>PHYSICAL_LOCAL_SSD: 物理机本地ssd硬盘</li><li>CLOUD_PREMIUM: 高性能云硬盘</li><li>CLOUD_SSD: ssd云硬盘</li><li>CLOUD_HSSD: 增强型ssd云硬盘</li></ul><p>默认值:PHYSICAL_LOCAL_SSD</p>
|
|
7760
|
+
:type StorageType: str
|
|
7729
7761
|
"""
|
|
7730
7762
|
self._Zone = None
|
|
7731
7763
|
self._DBEngine = None
|
|
7732
7764
|
self._DBMajorVersion = None
|
|
7765
|
+
self._StorageType = None
|
|
7733
7766
|
|
|
7734
7767
|
@property
|
|
7735
7768
|
def Zone(self):
|
|
@@ -7764,11 +7797,23 @@ class DescribeClassesRequest(AbstractModel):
|
|
|
7764
7797
|
def DBMajorVersion(self, DBMajorVersion):
|
|
7765
7798
|
self._DBMajorVersion = DBMajorVersion
|
|
7766
7799
|
|
|
7800
|
+
@property
|
|
7801
|
+
def StorageType(self):
|
|
7802
|
+
r"""<p>实例存储类型,根据存储类型返回支持的规格。</p><p>枚举值:</p><ul><li>PHYSICAL_LOCAL_SSD: 物理机本地ssd硬盘</li><li>CLOUD_PREMIUM: 高性能云硬盘</li><li>CLOUD_SSD: ssd云硬盘</li><li>CLOUD_HSSD: 增强型ssd云硬盘</li></ul><p>默认值:PHYSICAL_LOCAL_SSD</p>
|
|
7803
|
+
:rtype: str
|
|
7804
|
+
"""
|
|
7805
|
+
return self._StorageType
|
|
7806
|
+
|
|
7807
|
+
@StorageType.setter
|
|
7808
|
+
def StorageType(self, StorageType):
|
|
7809
|
+
self._StorageType = StorageType
|
|
7810
|
+
|
|
7767
7811
|
|
|
7768
7812
|
def _deserialize(self, params):
|
|
7769
7813
|
self._Zone = params.get("Zone")
|
|
7770
7814
|
self._DBEngine = params.get("DBEngine")
|
|
7771
7815
|
self._DBMajorVersion = params.get("DBMajorVersion")
|
|
7816
|
+
self._StorageType = params.get("StorageType")
|
|
7772
7817
|
memeber_set = set(params.keys())
|
|
7773
7818
|
for name, value in vars(self).items():
|
|
7774
7819
|
property_name = name[1:]
|
|
@@ -9069,6 +9114,36 @@ class DescribeDBVersionsRequest(AbstractModel):
|
|
|
9069
9114
|
|
|
9070
9115
|
"""
|
|
9071
9116
|
|
|
9117
|
+
def __init__(self):
|
|
9118
|
+
r"""
|
|
9119
|
+
:param _StorageType: <p>实例存储类型,根据磁盘类型返回支持的版本</p><p>枚举值:</p><ul><li>PHYSICAL_LOCAL_SSD: 物理机本地ssd硬盘</li><li>CLOUD_PREMIUM: 高性能云硬盘</li><li>CLOUD_SSD: ssd云硬盘</li><li>CLOUD_HSSD: 增强型ssd云硬盘</li></ul><p>默认值:PHYSICAL_LOCAL_SSD</p>
|
|
9120
|
+
:type StorageType: str
|
|
9121
|
+
"""
|
|
9122
|
+
self._StorageType = None
|
|
9123
|
+
|
|
9124
|
+
@property
|
|
9125
|
+
def StorageType(self):
|
|
9126
|
+
r"""<p>实例存储类型,根据磁盘类型返回支持的版本</p><p>枚举值:</p><ul><li>PHYSICAL_LOCAL_SSD: 物理机本地ssd硬盘</li><li>CLOUD_PREMIUM: 高性能云硬盘</li><li>CLOUD_SSD: ssd云硬盘</li><li>CLOUD_HSSD: 增强型ssd云硬盘</li></ul><p>默认值:PHYSICAL_LOCAL_SSD</p>
|
|
9127
|
+
:rtype: str
|
|
9128
|
+
"""
|
|
9129
|
+
return self._StorageType
|
|
9130
|
+
|
|
9131
|
+
@StorageType.setter
|
|
9132
|
+
def StorageType(self, StorageType):
|
|
9133
|
+
self._StorageType = StorageType
|
|
9134
|
+
|
|
9135
|
+
|
|
9136
|
+
def _deserialize(self, params):
|
|
9137
|
+
self._StorageType = params.get("StorageType")
|
|
9138
|
+
memeber_set = set(params.keys())
|
|
9139
|
+
for name, value in vars(self).items():
|
|
9140
|
+
property_name = name[1:]
|
|
9141
|
+
if property_name in memeber_set:
|
|
9142
|
+
memeber_set.remove(property_name)
|
|
9143
|
+
if len(memeber_set) > 0:
|
|
9144
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
9145
|
+
|
|
9146
|
+
|
|
9072
9147
|
|
|
9073
9148
|
class DescribeDBVersionsResponse(AbstractModel):
|
|
9074
9149
|
r"""DescribeDBVersions返回参数结构体
|
|
@@ -10795,9 +10870,12 @@ class DescribeProductConfigRequest(AbstractModel):
|
|
|
10795
10870
|
:type Zone: str
|
|
10796
10871
|
:param _DBEngine: <p>数据库引擎,支持:<br>1、postgresql(云数据库PostgreSQL);<br>2、mssql_compatible(MSSQL兼容-云数据库PostgreSQL);<br>如不指定默认使用postgresql。</p>
|
|
10797
10872
|
:type DBEngine: str
|
|
10873
|
+
:param _StorageType: <p>实例存储类型,根据存储类型返回支持的版本和规格</p><p>枚举值:</p><ul><li>PHYSICAL_LOCAL_SSD: 物理机本地ssd硬盘</li><li>CLOUD_PREMIUM: 高性能云硬盘</li><li>CLOUD_SSD: ssd云硬盘</li><li>CLOUD_HSSD: 增强型ssd云硬盘</li></ul><p>默认值:PHYSICAL_LOCAL_SSD</p>
|
|
10874
|
+
:type StorageType: str
|
|
10798
10875
|
"""
|
|
10799
10876
|
self._Zone = None
|
|
10800
10877
|
self._DBEngine = None
|
|
10878
|
+
self._StorageType = None
|
|
10801
10879
|
|
|
10802
10880
|
@property
|
|
10803
10881
|
def Zone(self):
|
|
@@ -10821,10 +10899,22 @@ class DescribeProductConfigRequest(AbstractModel):
|
|
|
10821
10899
|
def DBEngine(self, DBEngine):
|
|
10822
10900
|
self._DBEngine = DBEngine
|
|
10823
10901
|
|
|
10902
|
+
@property
|
|
10903
|
+
def StorageType(self):
|
|
10904
|
+
r"""<p>实例存储类型,根据存储类型返回支持的版本和规格</p><p>枚举值:</p><ul><li>PHYSICAL_LOCAL_SSD: 物理机本地ssd硬盘</li><li>CLOUD_PREMIUM: 高性能云硬盘</li><li>CLOUD_SSD: ssd云硬盘</li><li>CLOUD_HSSD: 增强型ssd云硬盘</li></ul><p>默认值:PHYSICAL_LOCAL_SSD</p>
|
|
10905
|
+
:rtype: str
|
|
10906
|
+
"""
|
|
10907
|
+
return self._StorageType
|
|
10908
|
+
|
|
10909
|
+
@StorageType.setter
|
|
10910
|
+
def StorageType(self, StorageType):
|
|
10911
|
+
self._StorageType = StorageType
|
|
10912
|
+
|
|
10824
10913
|
|
|
10825
10914
|
def _deserialize(self, params):
|
|
10826
10915
|
self._Zone = params.get("Zone")
|
|
10827
10916
|
self._DBEngine = params.get("DBEngine")
|
|
10917
|
+
self._StorageType = params.get("StorageType")
|
|
10828
10918
|
memeber_set = set(params.keys())
|
|
10829
10919
|
for name, value in vars(self).items():
|
|
10830
10920
|
property_name = name[1:]
|
|
@@ -12607,6 +12697,8 @@ class InquiryPriceCreateDBInstancesRequest(AbstractModel):
|
|
|
12607
12697
|
:type InstanceType: str
|
|
12608
12698
|
:param _DBEngine: <p>DB引擎,默认postgresql,支持如下:<br>postgresql(云数据库PostgreSQL)<br>mssql_compatible(MSSQL兼容-云数据库PostgreSQL)</p>
|
|
12609
12699
|
:type DBEngine: str
|
|
12700
|
+
:param _StorageType: <p>实例存储类型,可选值:PHYSICAL_LOCAL_SSD:物理机本地ssd硬盘 CLOUD_PREMIUM:高性能云硬盘 CLOUD_SSD:ssd云硬盘 CLOUD_HSSD:增强型ssd云硬盘</p>
|
|
12701
|
+
:type StorageType: str
|
|
12610
12702
|
"""
|
|
12611
12703
|
self._Zone = None
|
|
12612
12704
|
self._SpecCode = None
|
|
@@ -12617,6 +12709,7 @@ class InquiryPriceCreateDBInstancesRequest(AbstractModel):
|
|
|
12617
12709
|
self._InstanceChargeType = None
|
|
12618
12710
|
self._InstanceType = None
|
|
12619
12711
|
self._DBEngine = None
|
|
12712
|
+
self._StorageType = None
|
|
12620
12713
|
|
|
12621
12714
|
@property
|
|
12622
12715
|
def Zone(self):
|
|
@@ -12717,6 +12810,17 @@ class InquiryPriceCreateDBInstancesRequest(AbstractModel):
|
|
|
12717
12810
|
def DBEngine(self, DBEngine):
|
|
12718
12811
|
self._DBEngine = DBEngine
|
|
12719
12812
|
|
|
12813
|
+
@property
|
|
12814
|
+
def StorageType(self):
|
|
12815
|
+
r"""<p>实例存储类型,可选值:PHYSICAL_LOCAL_SSD:物理机本地ssd硬盘 CLOUD_PREMIUM:高性能云硬盘 CLOUD_SSD:ssd云硬盘 CLOUD_HSSD:增强型ssd云硬盘</p>
|
|
12816
|
+
:rtype: str
|
|
12817
|
+
"""
|
|
12818
|
+
return self._StorageType
|
|
12819
|
+
|
|
12820
|
+
@StorageType.setter
|
|
12821
|
+
def StorageType(self, StorageType):
|
|
12822
|
+
self._StorageType = StorageType
|
|
12823
|
+
|
|
12720
12824
|
|
|
12721
12825
|
def _deserialize(self, params):
|
|
12722
12826
|
self._Zone = params.get("Zone")
|
|
@@ -12728,6 +12832,7 @@ class InquiryPriceCreateDBInstancesRequest(AbstractModel):
|
|
|
12728
12832
|
self._InstanceChargeType = params.get("InstanceChargeType")
|
|
12729
12833
|
self._InstanceType = params.get("InstanceType")
|
|
12730
12834
|
self._DBEngine = params.get("DBEngine")
|
|
12835
|
+
self._StorageType = params.get("StorageType")
|
|
12731
12836
|
memeber_set = set(params.keys())
|
|
12732
12837
|
for name, value in vars(self).items():
|
|
12733
12838
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-postgres
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.62
|
|
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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.62
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
tencentcloud_sdk_python_postgres-3.1.62/tencentcloud_sdk_python_postgres.egg-info/requires.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.62
|
tencentcloud_sdk_python_postgres-3.1.52/tencentcloud_sdk_python_postgres.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.52
|
{tencentcloud_sdk_python_postgres-3.1.52 → tencentcloud_sdk_python_postgres-3.1.62}/README.rst
RENAMED
|
File without changes
|
{tencentcloud_sdk_python_postgres-3.1.52 → tencentcloud_sdk_python_postgres-3.1.62}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|