tencentcloud-sdk-python-cynosdb 3.1.16__py2.py3-none-any.whl → 3.1.31__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.
tencentcloud/__init__.py CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.16'
17
+ __version__ = '3.1.31'
@@ -6304,6 +6304,8 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
6304
6304
  :type AutoArchive: str
6305
6305
  :param _AutoArchiveDelayHours: 暂停后的归档处理时间
6306
6306
  :type AutoArchiveDelayHours: int
6307
+ :param _CynosVersion: 内核小版本号
6308
+ :type CynosVersion: str
6307
6309
  """
6308
6310
  self._Zone = None
6309
6311
  self._VpcId = None
@@ -6350,6 +6352,7 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
6350
6352
  self._ProxyConfig = None
6351
6353
  self._AutoArchive = None
6352
6354
  self._AutoArchiveDelayHours = None
6355
+ self._CynosVersion = None
6353
6356
 
6354
6357
  @property
6355
6358
  def Zone(self):
@@ -6870,6 +6873,17 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
6870
6873
  def AutoArchiveDelayHours(self, AutoArchiveDelayHours):
6871
6874
  self._AutoArchiveDelayHours = AutoArchiveDelayHours
6872
6875
 
6876
+ @property
6877
+ def CynosVersion(self):
6878
+ r"""内核小版本号
6879
+ :rtype: str
6880
+ """
6881
+ return self._CynosVersion
6882
+
6883
+ @CynosVersion.setter
6884
+ def CynosVersion(self, CynosVersion):
6885
+ self._CynosVersion = CynosVersion
6886
+
6873
6887
 
6874
6888
  def _deserialize(self, params):
6875
6889
  self._Zone = params.get("Zone")
@@ -6934,6 +6948,7 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
6934
6948
  self._ProxyConfig._deserialize(params.get("ProxyConfig"))
6935
6949
  self._AutoArchive = params.get("AutoArchive")
6936
6950
  self._AutoArchiveDelayHours = params.get("AutoArchiveDelayHours")
6951
+ self._CynosVersion = params.get("CynosVersion")
6937
6952
  memeber_set = set(params.keys())
6938
6953
  for name, value in vars(self).items():
6939
6954
  property_name = name[1:]
@@ -23643,6 +23658,14 @@ class GdnTaskInfo(AbstractModel):
23643
23658
  :type StandbyClusterId: str
23644
23659
  :param _StandbyClusterName: 从集群名称
23645
23660
  :type StandbyClusterName: str
23661
+ :param _ForceSwitchGdn: 是否已强切
23662
+ :type ForceSwitchGdn: str
23663
+ :param _Code: 返回码
23664
+ :type Code: int
23665
+ :param _Message: 提示信息
23666
+ :type Message: str
23667
+ :param _IsSupportForce: 是否支持强切
23668
+ :type IsSupportForce: str
23646
23669
  """
23647
23670
  self._GdnId = None
23648
23671
  self._GdnName = None
@@ -23651,6 +23674,10 @@ class GdnTaskInfo(AbstractModel):
23651
23674
  self._StandbyClusterRegion = None
23652
23675
  self._StandbyClusterId = None
23653
23676
  self._StandbyClusterName = None
23677
+ self._ForceSwitchGdn = None
23678
+ self._Code = None
23679
+ self._Message = None
23680
+ self._IsSupportForce = None
23654
23681
 
23655
23682
  @property
23656
23683
  def GdnId(self):
@@ -23729,6 +23756,50 @@ class GdnTaskInfo(AbstractModel):
23729
23756
  def StandbyClusterName(self, StandbyClusterName):
23730
23757
  self._StandbyClusterName = StandbyClusterName
23731
23758
 
23759
+ @property
23760
+ def ForceSwitchGdn(self):
23761
+ r"""是否已强切
23762
+ :rtype: str
23763
+ """
23764
+ return self._ForceSwitchGdn
23765
+
23766
+ @ForceSwitchGdn.setter
23767
+ def ForceSwitchGdn(self, ForceSwitchGdn):
23768
+ self._ForceSwitchGdn = ForceSwitchGdn
23769
+
23770
+ @property
23771
+ def Code(self):
23772
+ r"""返回码
23773
+ :rtype: int
23774
+ """
23775
+ return self._Code
23776
+
23777
+ @Code.setter
23778
+ def Code(self, Code):
23779
+ self._Code = Code
23780
+
23781
+ @property
23782
+ def Message(self):
23783
+ r"""提示信息
23784
+ :rtype: str
23785
+ """
23786
+ return self._Message
23787
+
23788
+ @Message.setter
23789
+ def Message(self, Message):
23790
+ self._Message = Message
23791
+
23792
+ @property
23793
+ def IsSupportForce(self):
23794
+ r"""是否支持强切
23795
+ :rtype: str
23796
+ """
23797
+ return self._IsSupportForce
23798
+
23799
+ @IsSupportForce.setter
23800
+ def IsSupportForce(self, IsSupportForce):
23801
+ self._IsSupportForce = IsSupportForce
23802
+
23732
23803
 
23733
23804
  def _deserialize(self, params):
23734
23805
  self._GdnId = params.get("GdnId")
@@ -23738,6 +23809,10 @@ class GdnTaskInfo(AbstractModel):
23738
23809
  self._StandbyClusterRegion = params.get("StandbyClusterRegion")
23739
23810
  self._StandbyClusterId = params.get("StandbyClusterId")
23740
23811
  self._StandbyClusterName = params.get("StandbyClusterName")
23812
+ self._ForceSwitchGdn = params.get("ForceSwitchGdn")
23813
+ self._Code = params.get("Code")
23814
+ self._Message = params.get("Message")
23815
+ self._IsSupportForce = params.get("IsSupportForce")
23741
23816
  memeber_set = set(params.keys())
23742
23817
  for name, value in vars(self).items():
23743
23818
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-cynosdb
3
- Version: 3.1.16
3
+ Version: 3.1.31
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 <4.0.0,>=3.1.16
18
+ Requires-Dist: tencentcloud-sdk-python-common <4.0.0,>=3.1.31
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -1,11 +1,11 @@
1
- tencentcloud/__init__.py,sha256=o09rGt476818NfxhzsnQREQhNZY-hx5lZ9Q8h_wpjG4,629
1
+ tencentcloud/__init__.py,sha256=_FBN5if6Lc-ioRLYR1s0rmYxhbxaT9Me4Rjh1LzWkNo,629
2
2
  tencentcloud/cynosdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  tencentcloud/cynosdb/v20190107/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  tencentcloud/cynosdb/v20190107/cynosdb_client.py,sha256=t8amEvgIlrkna5tuDGQ79S3pLfSZBO_OUOgSAc8egVc,163382
5
5
  tencentcloud/cynosdb/v20190107/cynosdb_client_async.py,sha256=kKYcn5T2z4Enz9nQVGhphn6kmvxjIFmL1Eel4P3V5_U,110351
6
6
  tencentcloud/cynosdb/v20190107/errorcodes.py,sha256=ZCz5ORFBdJ06UJgk1R5bEpMrKHsGQdaCfaRT2FhVTuM,14432
7
- tencentcloud/cynosdb/v20190107/models.py,sha256=JlpIS1z5946YIGTgGIGYoiFNW0-fXVy321EcuudBNqg,1268821
8
- tencentcloud_sdk_python_cynosdb-3.1.16.dist-info/METADATA,sha256=7s0yGrDNGtreu9PDKMDgQ2Nz9s86CMrXcwXPKbzCEvE,1515
9
- tencentcloud_sdk_python_cynosdb-3.1.16.dist-info/WHEEL,sha256=Ll72iyqtt6Rbxp-Q7FSafYA1LeRv98X15xcZWRsFEmY,109
10
- tencentcloud_sdk_python_cynosdb-3.1.16.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
11
- tencentcloud_sdk_python_cynosdb-3.1.16.dist-info/RECORD,,
7
+ tencentcloud/cynosdb/v20190107/models.py,sha256=pAimv4O3ZwKbp8uUqYDVe2-xK3sPVK6kdQxiqloWZTk,1270782
8
+ tencentcloud_sdk_python_cynosdb-3.1.31.dist-info/METADATA,sha256=4hLu5ZTYSaU-TzzqHNbDjwZJWMb7n2yRYwMJqPN4XsA,1515
9
+ tencentcloud_sdk_python_cynosdb-3.1.31.dist-info/WHEEL,sha256=Ll72iyqtt6Rbxp-Q7FSafYA1LeRv98X15xcZWRsFEmY,109
10
+ tencentcloud_sdk_python_cynosdb-3.1.31.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
11
+ tencentcloud_sdk_python_cynosdb-3.1.31.dist-info/RECORD,,