tencentcloud-sdk-python-cynosdb 3.0.1394__py2.py3-none-any.whl → 3.0.1411__py2.py3-none-any.whl

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.

Potentially problematic release.


This version of tencentcloud-sdk-python-cynosdb might be problematic. Click here for more details.

tencentcloud/__init__.py CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1394'
17
+ __version__ = '3.0.1411'
@@ -317,6 +317,9 @@ OPERATIONDENIED_PROXYNOTRUNNINGERROR = 'OperationDenied.ProxyNotRunningError'
317
317
  # 可用区不存在
318
318
  OPERATIONDENIED_PROXYSALEZONECHECKERROR = 'OperationDenied.ProxySaleZoneCheckError'
319
319
 
320
+ # proxy库存不足
321
+ OPERATIONDENIED_PROXYSTOCKCHECKERROR = 'OperationDenied.ProxyStockCheckError'
322
+
320
323
  # 代理版本检查失败
321
324
  OPERATIONDENIED_PROXYVERSIONCHECKERROR = 'OperationDenied.ProxyVersionCheckError'
322
325
 
@@ -6200,6 +6200,10 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
6200
6200
  :type GdnId: str
6201
6201
  :param _ProxyConfig: 数据库代理配置
6202
6202
  :type ProxyConfig: :class:`tencentcloud.cynosdb.v20190107.models.ProxyConfig`
6203
+ :param _AutoArchive: 是否自动归档
6204
+ :type AutoArchive: str
6205
+ :param _AutoArchiveDelayHours: 暂停后的归档处理时间
6206
+ :type AutoArchiveDelayHours: int
6203
6207
  """
6204
6208
  self._Zone = None
6205
6209
  self._VpcId = None
@@ -6244,6 +6248,8 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
6244
6248
  self._InstanceInitInfos = None
6245
6249
  self._GdnId = None
6246
6250
  self._ProxyConfig = None
6251
+ self._AutoArchive = None
6252
+ self._AutoArchiveDelayHours = None
6247
6253
 
6248
6254
  @property
6249
6255
  def Zone(self):
@@ -6740,6 +6746,28 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
6740
6746
  def ProxyConfig(self, ProxyConfig):
6741
6747
  self._ProxyConfig = ProxyConfig
6742
6748
 
6749
+ @property
6750
+ def AutoArchive(self):
6751
+ """是否自动归档
6752
+ :rtype: str
6753
+ """
6754
+ return self._AutoArchive
6755
+
6756
+ @AutoArchive.setter
6757
+ def AutoArchive(self, AutoArchive):
6758
+ self._AutoArchive = AutoArchive
6759
+
6760
+ @property
6761
+ def AutoArchiveDelayHours(self):
6762
+ """暂停后的归档处理时间
6763
+ :rtype: int
6764
+ """
6765
+ return self._AutoArchiveDelayHours
6766
+
6767
+ @AutoArchiveDelayHours.setter
6768
+ def AutoArchiveDelayHours(self, AutoArchiveDelayHours):
6769
+ self._AutoArchiveDelayHours = AutoArchiveDelayHours
6770
+
6743
6771
 
6744
6772
  def _deserialize(self, params):
6745
6773
  self._Zone = params.get("Zone")
@@ -6802,6 +6830,8 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
6802
6830
  if params.get("ProxyConfig") is not None:
6803
6831
  self._ProxyConfig = ProxyConfig()
6804
6832
  self._ProxyConfig._deserialize(params.get("ProxyConfig"))
6833
+ self._AutoArchive = params.get("AutoArchive")
6834
+ self._AutoArchiveDelayHours = params.get("AutoArchiveDelayHours")
6805
6835
  memeber_set = set(params.keys())
6806
6836
  for name, value in vars(self).items():
6807
6837
  property_name = name[1:]
@@ -18411,6 +18441,8 @@ offlined 已下线
18411
18441
  :type Status: str
18412
18442
  :param _InstanceIds: 实例id列表
18413
18443
  :type InstanceIds: list of str
18444
+ :param _ClusterType: 集群类型,取值范围<li> CYNOSDB:事务集群 </li><li> LIBRADB:分析集群 </li><li> ALL:全部 </li>,缺省为 ALL
18445
+ :type ClusterType: str
18414
18446
  """
18415
18447
  self._Limit = None
18416
18448
  self._Offset = None
@@ -18420,6 +18452,7 @@ offlined 已下线
18420
18452
  self._DbType = None
18421
18453
  self._Status = None
18422
18454
  self._InstanceIds = None
18455
+ self._ClusterType = None
18423
18456
 
18424
18457
  @property
18425
18458
  def Limit(self):
@@ -18520,6 +18553,17 @@ offlined 已下线
18520
18553
  def InstanceIds(self, InstanceIds):
18521
18554
  self._InstanceIds = InstanceIds
18522
18555
 
18556
+ @property
18557
+ def ClusterType(self):
18558
+ """集群类型,取值范围<li> CYNOSDB:事务集群 </li><li> LIBRADB:分析集群 </li><li> ALL:全部 </li>,缺省为 ALL
18559
+ :rtype: str
18560
+ """
18561
+ return self._ClusterType
18562
+
18563
+ @ClusterType.setter
18564
+ def ClusterType(self, ClusterType):
18565
+ self._ClusterType = ClusterType
18566
+
18523
18567
 
18524
18568
  def _deserialize(self, params):
18525
18569
  self._Limit = params.get("Limit")
@@ -18535,6 +18579,7 @@ offlined 已下线
18535
18579
  self._DbType = params.get("DbType")
18536
18580
  self._Status = params.get("Status")
18537
18581
  self._InstanceIds = params.get("InstanceIds")
18582
+ self._ClusterType = params.get("ClusterType")
18538
18583
  memeber_set = set(params.keys())
18539
18584
  for name, value in vars(self).items():
18540
18585
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-cynosdb
3
- Version: 3.0.1394
3
+ Version: 3.0.1411
4
4
  Summary: Tencent Cloud Cynosdb 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 (==3.0.1394)
18
+ Requires-Dist: tencentcloud-sdk-python-common (==3.0.1411)
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1,10 @@
1
+ tencentcloud/__init__.py,sha256=E3863ySCct5duHrRFNO1sUAdDcVAsVVkJYn_7EgA2f0,631
2
+ tencentcloud/cynosdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ tencentcloud/cynosdb/v20190107/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ tencentcloud/cynosdb/v20190107/cynosdb_client.py,sha256=9vmhWdjYWNCcYuPpSApx0WfD-RCPlBz7BlxIZMtaIAU,158555
5
+ tencentcloud/cynosdb/v20190107/errorcodes.py,sha256=cB6QSSB-uZm9J4nEqTD7dk8p7ZjTqcKiVDE-5PfVMi0,13963
6
+ tencentcloud/cynosdb/v20190107/models.py,sha256=8sP7tI_uuA8wqAGIZ1SgEnuhzuXSMMkwSo56sKrCv8I,1191782
7
+ tencentcloud_sdk_python_cynosdb-3.0.1411.dist-info/METADATA,sha256=WYgNTKdVdaAYC62NgsZKscmThAWcZlTYFzjA2K7rvY0,1516
8
+ tencentcloud_sdk_python_cynosdb-3.0.1411.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
9
+ tencentcloud_sdk_python_cynosdb-3.0.1411.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
10
+ tencentcloud_sdk_python_cynosdb-3.0.1411.dist-info/RECORD,,
@@ -1,10 +0,0 @@
1
- tencentcloud/__init__.py,sha256=5zO2lLZe1BHAXaibBkb5tZiMM5HPiQZRFL83ZVZxrU8,631
2
- tencentcloud/cynosdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- tencentcloud/cynosdb/v20190107/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- tencentcloud/cynosdb/v20190107/cynosdb_client.py,sha256=9vmhWdjYWNCcYuPpSApx0WfD-RCPlBz7BlxIZMtaIAU,158555
5
- tencentcloud/cynosdb/v20190107/errorcodes.py,sha256=kD6ROSlhlmyRf3OCLkahuVg85aaXpz9761DSWt86GKs,13864
6
- tencentcloud/cynosdb/v20190107/models.py,sha256=dIzDGGWRu8OFjh7dmHfxCzTkd15XfbfUdTdm4K1AgVM,1190186
7
- tencentcloud_sdk_python_cynosdb-3.0.1394.dist-info/METADATA,sha256=cfHyKGpbxvLgtwiU96uiSrGMCxS1hZyioYpPbeBn2jk,1516
8
- tencentcloud_sdk_python_cynosdb-3.0.1394.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
9
- tencentcloud_sdk_python_cynosdb-3.0.1394.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
10
- tencentcloud_sdk_python_cynosdb-3.0.1394.dist-info/RECORD,,