tencentcloud-sdk-python-cynosdb 3.1.8__py2.py3-none-any.whl → 3.1.11__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 +1 -1
- tencentcloud/cynosdb/v20190107/models.py +57 -14
- {tencentcloud_sdk_python_cynosdb-3.1.8.dist-info → tencentcloud_sdk_python_cynosdb-3.1.11.dist-info}/METADATA +2 -2
- tencentcloud_sdk_python_cynosdb-3.1.11.dist-info/RECORD +11 -0
- tencentcloud_sdk_python_cynosdb-3.1.8.dist-info/RECORD +0 -11
- {tencentcloud_sdk_python_cynosdb-3.1.8.dist-info → tencentcloud_sdk_python_cynosdb-3.1.11.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_cynosdb-3.1.8.dist-info → tencentcloud_sdk_python_cynosdb-3.1.11.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -614,7 +614,9 @@ class AddInstancesRequest(AbstractModel):
|
|
|
614
614
|
:type Memory: int
|
|
615
615
|
:param _ReadOnlyCount: 新增只读实例数,取值范围为(0,15]
|
|
616
616
|
:type ReadOnlyCount: int
|
|
617
|
-
:param _DeviceType:
|
|
617
|
+
:param _DeviceType: 实例机器类型,支持值如下:
|
|
618
|
+
- common:表示通用型
|
|
619
|
+
- exclusive:表示独享型
|
|
618
620
|
:type DeviceType: str
|
|
619
621
|
:param _InstanceGrpId: 实例组ID,在已有RO组中新增实例时使用,不传则新增RO组。当前版本不建议传输该值。
|
|
620
622
|
:type InstanceGrpId: str
|
|
@@ -709,7 +711,9 @@ class AddInstancesRequest(AbstractModel):
|
|
|
709
711
|
|
|
710
712
|
@property
|
|
711
713
|
def DeviceType(self):
|
|
712
|
-
r"""
|
|
714
|
+
r"""实例机器类型,支持值如下:
|
|
715
|
+
- common:表示通用型
|
|
716
|
+
- exclusive:表示独享型
|
|
713
717
|
:rtype: str
|
|
714
718
|
"""
|
|
715
719
|
return self._DeviceType
|
|
@@ -2902,12 +2906,15 @@ class BinlogItem(AbstractModel):
|
|
|
2902
2906
|
:type FinishTime: str
|
|
2903
2907
|
:param _BinlogId: Binlog文件ID
|
|
2904
2908
|
:type BinlogId: int
|
|
2909
|
+
:param _CrossRegions: binlog所跨地域
|
|
2910
|
+
:type CrossRegions: list of str
|
|
2905
2911
|
"""
|
|
2906
2912
|
self._FileName = None
|
|
2907
2913
|
self._FileSize = None
|
|
2908
2914
|
self._StartTime = None
|
|
2909
2915
|
self._FinishTime = None
|
|
2910
2916
|
self._BinlogId = None
|
|
2917
|
+
self._CrossRegions = None
|
|
2911
2918
|
|
|
2912
2919
|
@property
|
|
2913
2920
|
def FileName(self):
|
|
@@ -2964,6 +2971,17 @@ class BinlogItem(AbstractModel):
|
|
|
2964
2971
|
def BinlogId(self, BinlogId):
|
|
2965
2972
|
self._BinlogId = BinlogId
|
|
2966
2973
|
|
|
2974
|
+
@property
|
|
2975
|
+
def CrossRegions(self):
|
|
2976
|
+
r"""binlog所跨地域
|
|
2977
|
+
:rtype: list of str
|
|
2978
|
+
"""
|
|
2979
|
+
return self._CrossRegions
|
|
2980
|
+
|
|
2981
|
+
@CrossRegions.setter
|
|
2982
|
+
def CrossRegions(self, CrossRegions):
|
|
2983
|
+
self._CrossRegions = CrossRegions
|
|
2984
|
+
|
|
2967
2985
|
|
|
2968
2986
|
def _deserialize(self, params):
|
|
2969
2987
|
self._FileName = params.get("FileName")
|
|
@@ -2971,6 +2989,7 @@ class BinlogItem(AbstractModel):
|
|
|
2971
2989
|
self._StartTime = params.get("StartTime")
|
|
2972
2990
|
self._FinishTime = params.get("FinishTime")
|
|
2973
2991
|
self._BinlogId = params.get("BinlogId")
|
|
2992
|
+
self._CrossRegions = params.get("CrossRegions")
|
|
2974
2993
|
memeber_set = set(params.keys())
|
|
2975
2994
|
for name, value in vars(self).items():
|
|
2976
2995
|
property_name = name[1:]
|
|
@@ -4528,10 +4547,12 @@ class ClusterInstanceDetail(AbstractModel):
|
|
|
4528
4547
|
:param _InstanceDeviceType: 实例机器类型
|
|
4529
4548
|
:type InstanceDeviceType: str
|
|
4530
4549
|
:param _InstanceStorageType: 实例存储类型
|
|
4550
|
+
说明:仅当要查询的资源为 LibraDB 时,此参数才会返回值。
|
|
4531
4551
|
:type InstanceStorageType: str
|
|
4532
4552
|
:param _DbMode: 数据库类型
|
|
4533
4553
|
:type DbMode: str
|
|
4534
4554
|
:param _NodeList: 节点列表
|
|
4555
|
+
说明:仅当要查询的资源为 LibraDB 时,此参数才会返回值。
|
|
4535
4556
|
:type NodeList: list of str
|
|
4536
4557
|
"""
|
|
4537
4558
|
self._InstanceId = None
|
|
@@ -4721,6 +4742,7 @@ class ClusterInstanceDetail(AbstractModel):
|
|
|
4721
4742
|
@property
|
|
4722
4743
|
def InstanceStorageType(self):
|
|
4723
4744
|
r"""实例存储类型
|
|
4745
|
+
说明:仅当要查询的资源为 LibraDB 时,此参数才会返回值。
|
|
4724
4746
|
:rtype: str
|
|
4725
4747
|
"""
|
|
4726
4748
|
return self._InstanceStorageType
|
|
@@ -4743,6 +4765,7 @@ class ClusterInstanceDetail(AbstractModel):
|
|
|
4743
4765
|
@property
|
|
4744
4766
|
def NodeList(self):
|
|
4745
4767
|
r"""节点列表
|
|
4768
|
+
说明:仅当要查询的资源为 LibraDB 时,此参数才会返回值。
|
|
4746
4769
|
:rtype: list of str
|
|
4747
4770
|
"""
|
|
4748
4771
|
return self._NodeList
|
|
@@ -9506,7 +9529,16 @@ class CynosdbClusterDetail(AbstractModel):
|
|
|
9506
9529
|
:type Zone: str
|
|
9507
9530
|
:param _PhysicalZone: 物理可用区
|
|
9508
9531
|
:type PhysicalZone: str
|
|
9509
|
-
:param _Status:
|
|
9532
|
+
:param _Status: 状态,支持的值如下:
|
|
9533
|
+
- creating:创建中
|
|
9534
|
+
- running:运行中
|
|
9535
|
+
- isolating:隔离中
|
|
9536
|
+
- isolated:已隔离
|
|
9537
|
+
- activating:从回收站重新恢复
|
|
9538
|
+
- offlining:下线中
|
|
9539
|
+
- offlined:已下线
|
|
9540
|
+
- deleting:删除中
|
|
9541
|
+
- deleted:已删除
|
|
9510
9542
|
:type Status: str
|
|
9511
9543
|
:param _StatusDesc: 状态描述
|
|
9512
9544
|
:type StatusDesc: str
|
|
@@ -9730,7 +9762,16 @@ pausing
|
|
|
9730
9762
|
|
|
9731
9763
|
@property
|
|
9732
9764
|
def Status(self):
|
|
9733
|
-
r"""
|
|
9765
|
+
r"""状态,支持的值如下:
|
|
9766
|
+
- creating:创建中
|
|
9767
|
+
- running:运行中
|
|
9768
|
+
- isolating:隔离中
|
|
9769
|
+
- isolated:已隔离
|
|
9770
|
+
- activating:从回收站重新恢复
|
|
9771
|
+
- offlining:下线中
|
|
9772
|
+
- offlined:已下线
|
|
9773
|
+
- deleting:删除中
|
|
9774
|
+
- deleted:已删除
|
|
9734
9775
|
:rtype: str
|
|
9735
9776
|
"""
|
|
9736
9777
|
return self._Status
|
|
@@ -11430,11 +11471,10 @@ creating:创建中
|
|
|
11430
11471
|
running:运行中
|
|
11431
11472
|
isolating:隔离中
|
|
11432
11473
|
isolated:已隔离
|
|
11433
|
-
activating
|
|
11474
|
+
activating:恢复中
|
|
11434
11475
|
offlining:下线中
|
|
11435
11476
|
offlined:已下线
|
|
11436
|
-
|
|
11437
|
-
deleted:已删除
|
|
11477
|
+
|
|
11438
11478
|
:type Status: str
|
|
11439
11479
|
:param _StatusDesc: 实例状态中文描述
|
|
11440
11480
|
:type StatusDesc: str
|
|
@@ -11631,11 +11671,10 @@ creating:创建中
|
|
|
11631
11671
|
running:运行中
|
|
11632
11672
|
isolating:隔离中
|
|
11633
11673
|
isolated:已隔离
|
|
11634
|
-
activating
|
|
11674
|
+
activating:恢复中
|
|
11635
11675
|
offlining:下线中
|
|
11636
11676
|
offlined:已下线
|
|
11637
|
-
|
|
11638
|
-
deleted:已删除
|
|
11677
|
+
|
|
11639
11678
|
:rtype: str
|
|
11640
11679
|
"""
|
|
11641
11680
|
return self._Status
|
|
@@ -16134,7 +16173,7 @@ class DescribeBinlogsRequest(AbstractModel):
|
|
|
16134
16173
|
:type EndTime: str
|
|
16135
16174
|
:param _Offset: 偏移量
|
|
16136
16175
|
:type Offset: int
|
|
16137
|
-
:param _Limit:
|
|
16176
|
+
:param _Limit: 限制条数,默认值为20
|
|
16138
16177
|
:type Limit: int
|
|
16139
16178
|
"""
|
|
16140
16179
|
self._ClusterId = None
|
|
@@ -16189,7 +16228,7 @@ class DescribeBinlogsRequest(AbstractModel):
|
|
|
16189
16228
|
|
|
16190
16229
|
@property
|
|
16191
16230
|
def Limit(self):
|
|
16192
|
-
r"""
|
|
16231
|
+
r"""限制条数,默认值为20
|
|
16193
16232
|
:rtype: int
|
|
16194
16233
|
"""
|
|
16195
16234
|
return self._Limit
|
|
@@ -24100,7 +24139,9 @@ class InquirePriceCreateRequest(AbstractModel):
|
|
|
24100
24139
|
:type InstancePayMode: str
|
|
24101
24140
|
:param _StoragePayMode: 存储购买类型,可选值为:PREPAID, POSTPAID
|
|
24102
24141
|
:type StoragePayMode: str
|
|
24103
|
-
:param _DeviceType:
|
|
24142
|
+
:param _DeviceType: 实例设备类型,支持值如下:
|
|
24143
|
+
- common:表示通用型
|
|
24144
|
+
- exclusive:表示独享型
|
|
24104
24145
|
:type DeviceType: str
|
|
24105
24146
|
:param _Cpu: CPU核数,PREPAID与POSTPAID实例类型必传
|
|
24106
24147
|
:type Cpu: int
|
|
@@ -24173,7 +24214,9 @@ class InquirePriceCreateRequest(AbstractModel):
|
|
|
24173
24214
|
|
|
24174
24215
|
@property
|
|
24175
24216
|
def DeviceType(self):
|
|
24176
|
-
r"""
|
|
24217
|
+
r"""实例设备类型,支持值如下:
|
|
24218
|
+
- common:表示通用型
|
|
24219
|
+
- exclusive:表示独享型
|
|
24177
24220
|
:rtype: str
|
|
24178
24221
|
"""
|
|
24179
24222
|
return self._DeviceType
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cynosdb
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.11
|
|
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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common <4.0.0,>=3.1.11
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
tencentcloud/__init__.py,sha256=i-fkwDJb307rY1uuTiEOimUHruvafFBTlv5RA0S9Gks,629
|
|
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=t8amEvgIlrkna5tuDGQ79S3pLfSZBO_OUOgSAc8egVc,163382
|
|
5
|
+
tencentcloud/cynosdb/v20190107/cynosdb_client_async.py,sha256=kKYcn5T2z4Enz9nQVGhphn6kmvxjIFmL1Eel4P3V5_U,110351
|
|
6
|
+
tencentcloud/cynosdb/v20190107/errorcodes.py,sha256=ZCz5ORFBdJ06UJgk1R5bEpMrKHsGQdaCfaRT2FhVTuM,14432
|
|
7
|
+
tencentcloud/cynosdb/v20190107/models.py,sha256=FW4yyROj25nexG67TXphgeyWukDW_0aa2EdM0xFIawk,1266427
|
|
8
|
+
tencentcloud_sdk_python_cynosdb-3.1.11.dist-info/METADATA,sha256=ff5NINeQuGSRoni-YifDJ45b1f9UeJQcz6r75orbJ80,1515
|
|
9
|
+
tencentcloud_sdk_python_cynosdb-3.1.11.dist-info/WHEEL,sha256=Ll72iyqtt6Rbxp-Q7FSafYA1LeRv98X15xcZWRsFEmY,109
|
|
10
|
+
tencentcloud_sdk_python_cynosdb-3.1.11.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
11
|
+
tencentcloud_sdk_python_cynosdb-3.1.11.dist-info/RECORD,,
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=QB_r5DVkgdSMYUtCPk6WMwrqV20iE3BSTNqfM9GydLw,628
|
|
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=t8amEvgIlrkna5tuDGQ79S3pLfSZBO_OUOgSAc8egVc,163382
|
|
5
|
-
tencentcloud/cynosdb/v20190107/cynosdb_client_async.py,sha256=kKYcn5T2z4Enz9nQVGhphn6kmvxjIFmL1Eel4P3V5_U,110351
|
|
6
|
-
tencentcloud/cynosdb/v20190107/errorcodes.py,sha256=ZCz5ORFBdJ06UJgk1R5bEpMrKHsGQdaCfaRT2FhVTuM,14432
|
|
7
|
-
tencentcloud/cynosdb/v20190107/models.py,sha256=IqWcLBIDR0m9GJ_DKcWnberFuz_DEiOkAlY_M7hbQr8,1264918
|
|
8
|
-
tencentcloud_sdk_python_cynosdb-3.1.8.dist-info/METADATA,sha256=4wfmpZYpZx37aMpqCan63j3GgB6ovlvW73E_olmP7Dw,1513
|
|
9
|
-
tencentcloud_sdk_python_cynosdb-3.1.8.dist-info/WHEEL,sha256=Ll72iyqtt6Rbxp-Q7FSafYA1LeRv98X15xcZWRsFEmY,109
|
|
10
|
-
tencentcloud_sdk_python_cynosdb-3.1.8.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
11
|
-
tencentcloud_sdk_python_cynosdb-3.1.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|