tencentcloud-sdk-python-postgres 3.1.88__tar.gz → 3.1.112__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.88 → tencentcloud_sdk_python_postgres-3.1.112}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_postgres-3.1.88 → tencentcloud_sdk_python_postgres-3.1.112}/setup.py +1 -1
  3. {tencentcloud_sdk_python_postgres-3.1.88 → tencentcloud_sdk_python_postgres-3.1.112}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_postgres-3.1.88 → tencentcloud_sdk_python_postgres-3.1.112}/tencentcloud/postgres/v20170312/models.py +34 -4
  5. {tencentcloud_sdk_python_postgres-3.1.88 → tencentcloud_sdk_python_postgres-3.1.112}/tencentcloud_sdk_python_postgres.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_postgres-3.1.112/tencentcloud_sdk_python_postgres.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_postgres-3.1.88/tencentcloud_sdk_python_postgres.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_postgres-3.1.88 → tencentcloud_sdk_python_postgres-3.1.112}/README.rst +0 -0
  9. {tencentcloud_sdk_python_postgres-3.1.88 → tencentcloud_sdk_python_postgres-3.1.112}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_postgres-3.1.88 → tencentcloud_sdk_python_postgres-3.1.112}/tencentcloud/postgres/__init__.py +0 -0
  11. {tencentcloud_sdk_python_postgres-3.1.88 → tencentcloud_sdk_python_postgres-3.1.112}/tencentcloud/postgres/v20170312/__init__.py +0 -0
  12. {tencentcloud_sdk_python_postgres-3.1.88 → tencentcloud_sdk_python_postgres-3.1.112}/tencentcloud/postgres/v20170312/errorcodes.py +0 -0
  13. {tencentcloud_sdk_python_postgres-3.1.88 → tencentcloud_sdk_python_postgres-3.1.112}/tencentcloud/postgres/v20170312/postgres_client.py +0 -0
  14. {tencentcloud_sdk_python_postgres-3.1.88 → tencentcloud_sdk_python_postgres-3.1.112}/tencentcloud/postgres/v20170312/postgres_client_async.py +0 -0
  15. {tencentcloud_sdk_python_postgres-3.1.88 → tencentcloud_sdk_python_postgres-3.1.112}/tencentcloud_sdk_python_postgres.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_postgres-3.1.88 → tencentcloud_sdk_python_postgres-3.1.112}/tencentcloud_sdk_python_postgres.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_postgres-3.1.88 → tencentcloud_sdk_python_postgres-3.1.112}/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.88
3
+ Version: 3.1.112
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.88
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.112
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.88,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.112,<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.88'
17
+ __version__ = '3.1.112'
@@ -13517,6 +13517,36 @@ class DescribeZonesRequest(AbstractModel):
13517
13517
 
13518
13518
  """
13519
13519
 
13520
+ def __init__(self):
13521
+ r"""
13522
+ :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>
13523
+ :type StorageType: str
13524
+ """
13525
+ self._StorageType = None
13526
+
13527
+ @property
13528
+ def StorageType(self):
13529
+ 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>
13530
+ :rtype: str
13531
+ """
13532
+ return self._StorageType
13533
+
13534
+ @StorageType.setter
13535
+ def StorageType(self, StorageType):
13536
+ self._StorageType = StorageType
13537
+
13538
+
13539
+ def _deserialize(self, params):
13540
+ self._StorageType = params.get("StorageType")
13541
+ memeber_set = set(params.keys())
13542
+ for name, value in vars(self).items():
13543
+ property_name = name[1:]
13544
+ if property_name in memeber_set:
13545
+ memeber_set.remove(property_name)
13546
+ if len(memeber_set) > 0:
13547
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
13548
+
13549
+
13520
13550
 
13521
13551
  class DescribeZonesResponse(AbstractModel):
13522
13552
  r"""DescribeZones返回参数结构体
@@ -13525,9 +13555,9 @@ class DescribeZonesResponse(AbstractModel):
13525
13555
 
13526
13556
  def __init__(self):
13527
13557
  r"""
13528
- :param _TotalCount: 返回的结果数量。
13558
+ :param _TotalCount: <p>返回的结果数量。</p>
13529
13559
  :type TotalCount: int
13530
- :param _ZoneSet: 可用区信息集合。
13560
+ :param _ZoneSet: <p>可用区信息集合。</p>
13531
13561
  :type ZoneSet: list of ZoneInfo
13532
13562
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
13533
13563
  :type RequestId: str
@@ -13538,7 +13568,7 @@ class DescribeZonesResponse(AbstractModel):
13538
13568
 
13539
13569
  @property
13540
13570
  def TotalCount(self):
13541
- r"""返回的结果数量。
13571
+ r"""<p>返回的结果数量。</p>
13542
13572
  :rtype: int
13543
13573
  """
13544
13574
  return self._TotalCount
@@ -13549,7 +13579,7 @@ class DescribeZonesResponse(AbstractModel):
13549
13579
 
13550
13580
  @property
13551
13581
  def ZoneSet(self):
13552
- r"""可用区信息集合。
13582
+ r"""<p>可用区信息集合。</p>
13553
13583
  :rtype: list of ZoneInfo
13554
13584
  """
13555
13585
  return self._ZoneSet
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-postgres
3
- Version: 3.1.88
3
+ Version: 3.1.112
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.88
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.112
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.112
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.88