tencentcloud-sdk-python-postgres 3.0.1459__tar.gz → 3.0.1470__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.1459 → tencentcloud-sdk-python-postgres-3.0.1470}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-postgres-3.0.1459 → tencentcloud-sdk-python-postgres-3.0.1470}/setup.py +1 -1
- {tencentcloud-sdk-python-postgres-3.0.1459 → tencentcloud-sdk-python-postgres-3.0.1470}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-postgres-3.0.1459 → tencentcloud-sdk-python-postgres-3.0.1470}/tencentcloud/postgres/v20170312/models.py +33 -16
- {tencentcloud-sdk-python-postgres-3.0.1459 → tencentcloud-sdk-python-postgres-3.0.1470}/tencentcloud_sdk_python_postgres.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-postgres-3.0.1470/tencentcloud_sdk_python_postgres.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-postgres-3.0.1459/tencentcloud_sdk_python_postgres.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-postgres-3.0.1459 → tencentcloud-sdk-python-postgres-3.0.1470}/README.rst +0 -0
- {tencentcloud-sdk-python-postgres-3.0.1459 → tencentcloud-sdk-python-postgres-3.0.1470}/setup.cfg +0 -0
- {tencentcloud-sdk-python-postgres-3.0.1459 → tencentcloud-sdk-python-postgres-3.0.1470}/tencentcloud/postgres/__init__.py +0 -0
- {tencentcloud-sdk-python-postgres-3.0.1459 → tencentcloud-sdk-python-postgres-3.0.1470}/tencentcloud/postgres/v20170312/__init__.py +0 -0
- {tencentcloud-sdk-python-postgres-3.0.1459 → tencentcloud-sdk-python-postgres-3.0.1470}/tencentcloud/postgres/v20170312/errorcodes.py +0 -0
- {tencentcloud-sdk-python-postgres-3.0.1459 → tencentcloud-sdk-python-postgres-3.0.1470}/tencentcloud/postgres/v20170312/postgres_client.py +0 -0
- {tencentcloud-sdk-python-postgres-3.0.1459 → tencentcloud-sdk-python-postgres-3.0.1470}/tencentcloud_sdk_python_postgres.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-postgres-3.0.1459 → tencentcloud-sdk-python-postgres-3.0.1470}/tencentcloud_sdk_python_postgres.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-postgres-3.0.1459 → tencentcloud-sdk-python-postgres-3.0.1470}/tencentcloud_sdk_python_postgres.egg-info/top_level.txt +0 -0
{tencentcloud-sdk-python-postgres-3.0.1459 → tencentcloud-sdk-python-postgres-3.0.1470}/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.1470,<4.0.0"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Postgres SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -4308,6 +4308,8 @@ mssql_compatible引擎:
|
|
|
4308
4308
|
<li>1:是</li>
|
|
4309
4309
|
默认值:0
|
|
4310
4310
|
:type SupportIpv6: int
|
|
4311
|
+
:param _ExpandedCpu: 实例已经弹性扩容的cpu核数
|
|
4312
|
+
:type ExpandedCpu: int
|
|
4311
4313
|
"""
|
|
4312
4314
|
self._Region = None
|
|
4313
4315
|
self._Zone = None
|
|
@@ -4348,6 +4350,7 @@ mssql_compatible引擎:
|
|
|
4348
4350
|
self._DBEngineConfig = None
|
|
4349
4351
|
self._NetworkAccessList = None
|
|
4350
4352
|
self._SupportIpv6 = None
|
|
4353
|
+
self._ExpandedCpu = None
|
|
4351
4354
|
|
|
4352
4355
|
@property
|
|
4353
4356
|
def Region(self):
|
|
@@ -4808,6 +4811,17 @@ mssql_compatible引擎:
|
|
|
4808
4811
|
def SupportIpv6(self, SupportIpv6):
|
|
4809
4812
|
self._SupportIpv6 = SupportIpv6
|
|
4810
4813
|
|
|
4814
|
+
@property
|
|
4815
|
+
def ExpandedCpu(self):
|
|
4816
|
+
r"""实例已经弹性扩容的cpu核数
|
|
4817
|
+
:rtype: int
|
|
4818
|
+
"""
|
|
4819
|
+
return self._ExpandedCpu
|
|
4820
|
+
|
|
4821
|
+
@ExpandedCpu.setter
|
|
4822
|
+
def ExpandedCpu(self, ExpandedCpu):
|
|
4823
|
+
self._ExpandedCpu = ExpandedCpu
|
|
4824
|
+
|
|
4811
4825
|
|
|
4812
4826
|
def _deserialize(self, params):
|
|
4813
4827
|
self._Region = params.get("Region")
|
|
@@ -4869,6 +4883,7 @@ mssql_compatible引擎:
|
|
|
4869
4883
|
obj._deserialize(item)
|
|
4870
4884
|
self._NetworkAccessList.append(obj)
|
|
4871
4885
|
self._SupportIpv6 = params.get("SupportIpv6")
|
|
4886
|
+
self._ExpandedCpu = params.get("ExpandedCpu")
|
|
4872
4887
|
memeber_set = set(params.keys())
|
|
4873
4888
|
for name, value in vars(self).items():
|
|
4874
4889
|
property_name = name[1:]
|
|
@@ -10716,14 +10731,15 @@ class DescribeReadOnlyGroupsRequest(AbstractModel):
|
|
|
10716
10731
|
:param _Filters: 按照一个或者多个过滤条件进行查询,目前支持的过滤条件有:
|
|
10717
10732
|
db-master-instance-id:按照主实例过滤,类型为string。
|
|
10718
10733
|
read-only-group-id:按照只读组ID过滤,类型为string。
|
|
10734
|
+
注:该参数的过滤条件中,db-master-instance-id为必须指定项。
|
|
10719
10735
|
:type Filters: list of Filter
|
|
10720
|
-
:param _PageSize: 查询每一页的条数,默认为10
|
|
10736
|
+
:param _PageSize: 查询每一页的条数,默认为10,最大值99。
|
|
10721
10737
|
:type PageSize: int
|
|
10722
10738
|
:param _PageNumber: 查询的页码,默认为1
|
|
10723
10739
|
:type PageNumber: int
|
|
10724
|
-
:param _OrderBy: 查询排序依据,目前支持:ROGroupId,CreateTime,Name
|
|
10740
|
+
:param _OrderBy: 查询排序依据,目前支持:ROGroupId,CreateTime,Name。默认值CreateTime
|
|
10725
10741
|
:type OrderBy: str
|
|
10726
|
-
:param _OrderByType: 查询排序依据类型,目前支持:desc,asc
|
|
10742
|
+
:param _OrderByType: 查询排序依据类型,目前支持:desc,asc。默认值asc。
|
|
10727
10743
|
:type OrderByType: str
|
|
10728
10744
|
"""
|
|
10729
10745
|
self._Filters = None
|
|
@@ -10737,6 +10753,7 @@ read-only-group-id:按照只读组ID过滤,类型为string。
|
|
|
10737
10753
|
r"""按照一个或者多个过滤条件进行查询,目前支持的过滤条件有:
|
|
10738
10754
|
db-master-instance-id:按照主实例过滤,类型为string。
|
|
10739
10755
|
read-only-group-id:按照只读组ID过滤,类型为string。
|
|
10756
|
+
注:该参数的过滤条件中,db-master-instance-id为必须指定项。
|
|
10740
10757
|
:rtype: list of Filter
|
|
10741
10758
|
"""
|
|
10742
10759
|
return self._Filters
|
|
@@ -10747,7 +10764,7 @@ read-only-group-id:按照只读组ID过滤,类型为string。
|
|
|
10747
10764
|
|
|
10748
10765
|
@property
|
|
10749
10766
|
def PageSize(self):
|
|
10750
|
-
r"""查询每一页的条数,默认为10
|
|
10767
|
+
r"""查询每一页的条数,默认为10,最大值99。
|
|
10751
10768
|
:rtype: int
|
|
10752
10769
|
"""
|
|
10753
10770
|
return self._PageSize
|
|
@@ -10769,7 +10786,7 @@ read-only-group-id:按照只读组ID过滤,类型为string。
|
|
|
10769
10786
|
|
|
10770
10787
|
@property
|
|
10771
10788
|
def OrderBy(self):
|
|
10772
|
-
r"""查询排序依据,目前支持:ROGroupId,CreateTime,Name
|
|
10789
|
+
r"""查询排序依据,目前支持:ROGroupId,CreateTime,Name。默认值CreateTime
|
|
10773
10790
|
:rtype: str
|
|
10774
10791
|
"""
|
|
10775
10792
|
return self._OrderBy
|
|
@@ -10780,7 +10797,7 @@ read-only-group-id:按照只读组ID过滤,类型为string。
|
|
|
10780
10797
|
|
|
10781
10798
|
@property
|
|
10782
10799
|
def OrderByType(self):
|
|
10783
|
-
r"""查询排序依据类型,目前支持:desc,asc
|
|
10800
|
+
r"""查询排序依据类型,目前支持:desc,asc。默认值asc。
|
|
10784
10801
|
:rtype: str
|
|
10785
10802
|
"""
|
|
10786
10803
|
return self._OrderByType
|
|
@@ -17184,13 +17201,13 @@ class ReadOnlyGroup(AbstractModel):
|
|
|
17184
17201
|
:type MasterDBInstanceId: str
|
|
17185
17202
|
:param _MinDelayEliminateReserve: 最小保留实例数
|
|
17186
17203
|
:type MinDelayEliminateReserve: int
|
|
17187
|
-
:param _MaxReplayLatency:
|
|
17204
|
+
:param _MaxReplayLatency: 延迟空间大小阈值。单位MB。
|
|
17188
17205
|
:type MaxReplayLatency: int
|
|
17189
|
-
:param _ReplayLatencyEliminate:
|
|
17206
|
+
:param _ReplayLatencyEliminate: 延迟大小开关。0 - 关闭; 1 - 开启。
|
|
17190
17207
|
:type ReplayLatencyEliminate: int
|
|
17191
|
-
:param _MaxReplayLag:
|
|
17208
|
+
:param _MaxReplayLag: 延迟时间大小阈值,单位:秒。
|
|
17192
17209
|
:type MaxReplayLag: float
|
|
17193
|
-
:param _ReplayLagEliminate:
|
|
17210
|
+
:param _ReplayLagEliminate: 延迟时间开关。0 - 关闭; 1 - 开启。
|
|
17194
17211
|
:type ReplayLagEliminate: int
|
|
17195
17212
|
:param _VpcId: 虚拟网络id
|
|
17196
17213
|
:type VpcId: str
|
|
@@ -17200,7 +17217,7 @@ class ReadOnlyGroup(AbstractModel):
|
|
|
17200
17217
|
:type Region: str
|
|
17201
17218
|
:param _Zone: 地区id
|
|
17202
17219
|
:type Zone: str
|
|
17203
|
-
:param _Status:
|
|
17220
|
+
:param _Status: 状态。枚举值:creating、ok、modifying、deleting、deleted
|
|
17204
17221
|
:type Status: str
|
|
17205
17222
|
:param _ReadOnlyDBInstanceList: 实例详细信息
|
|
17206
17223
|
:type ReadOnlyDBInstanceList: list of DBInstance
|
|
@@ -17288,7 +17305,7 @@ class ReadOnlyGroup(AbstractModel):
|
|
|
17288
17305
|
|
|
17289
17306
|
@property
|
|
17290
17307
|
def MaxReplayLatency(self):
|
|
17291
|
-
r"""
|
|
17308
|
+
r"""延迟空间大小阈值。单位MB。
|
|
17292
17309
|
:rtype: int
|
|
17293
17310
|
"""
|
|
17294
17311
|
return self._MaxReplayLatency
|
|
@@ -17299,7 +17316,7 @@ class ReadOnlyGroup(AbstractModel):
|
|
|
17299
17316
|
|
|
17300
17317
|
@property
|
|
17301
17318
|
def ReplayLatencyEliminate(self):
|
|
17302
|
-
r"""
|
|
17319
|
+
r"""延迟大小开关。0 - 关闭; 1 - 开启。
|
|
17303
17320
|
:rtype: int
|
|
17304
17321
|
"""
|
|
17305
17322
|
return self._ReplayLatencyEliminate
|
|
@@ -17310,7 +17327,7 @@ class ReadOnlyGroup(AbstractModel):
|
|
|
17310
17327
|
|
|
17311
17328
|
@property
|
|
17312
17329
|
def MaxReplayLag(self):
|
|
17313
|
-
r"""
|
|
17330
|
+
r"""延迟时间大小阈值,单位:秒。
|
|
17314
17331
|
:rtype: float
|
|
17315
17332
|
"""
|
|
17316
17333
|
return self._MaxReplayLag
|
|
@@ -17321,7 +17338,7 @@ class ReadOnlyGroup(AbstractModel):
|
|
|
17321
17338
|
|
|
17322
17339
|
@property
|
|
17323
17340
|
def ReplayLagEliminate(self):
|
|
17324
|
-
r"""
|
|
17341
|
+
r"""延迟时间开关。0 - 关闭; 1 - 开启。
|
|
17325
17342
|
:rtype: int
|
|
17326
17343
|
"""
|
|
17327
17344
|
return self._ReplayLagEliminate
|
|
@@ -17376,7 +17393,7 @@ class ReadOnlyGroup(AbstractModel):
|
|
|
17376
17393
|
|
|
17377
17394
|
@property
|
|
17378
17395
|
def Status(self):
|
|
17379
|
-
r"""
|
|
17396
|
+
r"""状态。枚举值:creating、ok、modifying、deleting、deleted
|
|
17380
17397
|
:rtype: str
|
|
17381
17398
|
"""
|
|
17382
17399
|
return self._Status
|
tencentcloud-sdk-python-postgres-3.0.1470/tencentcloud_sdk_python_postgres.egg-info/requires.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1470
|
tencentcloud-sdk-python-postgres-3.0.1459/tencentcloud_sdk_python_postgres.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.0.1459
|
{tencentcloud-sdk-python-postgres-3.0.1459 → tencentcloud-sdk-python-postgres-3.0.1470}/README.rst
RENAMED
|
File without changes
|
{tencentcloud-sdk-python-postgres-3.0.1459 → tencentcloud-sdk-python-postgres-3.0.1470}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|