tencentcloud-sdk-python-cynosdb 3.0.1388__tar.gz → 3.0.1390__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.
Potentially problematic release.
This version of tencentcloud-sdk-python-cynosdb might be problematic. Click here for more details.
- {tencentcloud-sdk-python-cynosdb-3.0.1388 → tencentcloud-sdk-python-cynosdb-3.0.1390}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cynosdb-3.0.1388 → tencentcloud-sdk-python-cynosdb-3.0.1390}/setup.py +1 -1
- {tencentcloud-sdk-python-cynosdb-3.0.1388 → tencentcloud-sdk-python-cynosdb-3.0.1390}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cynosdb-3.0.1388 → tencentcloud-sdk-python-cynosdb-3.0.1390}/tencentcloud/cynosdb/v20190107/models.py +239 -6
- {tencentcloud-sdk-python-cynosdb-3.0.1388 → tencentcloud-sdk-python-cynosdb-3.0.1390}/tencentcloud_sdk_python_cynosdb.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cynosdb-3.0.1390/tencentcloud_sdk_python_cynosdb.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cynosdb-3.0.1388/tencentcloud_sdk_python_cynosdb.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cynosdb-3.0.1388 → tencentcloud-sdk-python-cynosdb-3.0.1390}/README.rst +0 -0
- {tencentcloud-sdk-python-cynosdb-3.0.1388 → tencentcloud-sdk-python-cynosdb-3.0.1390}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cynosdb-3.0.1388 → tencentcloud-sdk-python-cynosdb-3.0.1390}/tencentcloud/cynosdb/__init__.py +0 -0
- {tencentcloud-sdk-python-cynosdb-3.0.1388 → tencentcloud-sdk-python-cynosdb-3.0.1390}/tencentcloud/cynosdb/v20190107/__init__.py +0 -0
- {tencentcloud-sdk-python-cynosdb-3.0.1388 → tencentcloud-sdk-python-cynosdb-3.0.1390}/tencentcloud/cynosdb/v20190107/cynosdb_client.py +0 -0
- {tencentcloud-sdk-python-cynosdb-3.0.1388 → tencentcloud-sdk-python-cynosdb-3.0.1390}/tencentcloud/cynosdb/v20190107/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cynosdb-3.0.1388 → tencentcloud-sdk-python-cynosdb-3.0.1390}/tencentcloud_sdk_python_cynosdb.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cynosdb-3.0.1388 → tencentcloud-sdk-python-cynosdb-3.0.1390}/tencentcloud_sdk_python_cynosdb.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cynosdb-3.0.1388 → tencentcloud-sdk-python-cynosdb-3.0.1390}/tencentcloud_sdk_python_cynosdb.egg-info/top_level.txt +0 -0
{tencentcloud-sdk-python-cynosdb-3.0.1388 → tencentcloud-sdk-python-cynosdb-3.0.1390}/setup.py
RENAMED
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-cynosdb',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1390"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cynosdb SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -2783,6 +2783,8 @@ class BizTaskInfo(AbstractModel):
|
|
|
2783
2783
|
:type InstanceCLSDeliveryInfos: list of InstanceCLSDeliveryInfo
|
|
2784
2784
|
:param _TaskProgressInfo: 任务进度信息
|
|
2785
2785
|
:type TaskProgressInfo: :class:`tencentcloud.cynosdb.v20190107.models.TaskProgressInfo`
|
|
2786
|
+
:param _GdnTaskInfo: 全球数据库网络任务
|
|
2787
|
+
:type GdnTaskInfo: :class:`tencentcloud.cynosdb.v20190107.models.GdnTaskInfo`
|
|
2786
2788
|
"""
|
|
2787
2789
|
self._ID = None
|
|
2788
2790
|
self._AppId = None
|
|
@@ -2821,6 +2823,7 @@ class BizTaskInfo(AbstractModel):
|
|
|
2821
2823
|
self._TaskMaintainInfo = None
|
|
2822
2824
|
self._InstanceCLSDeliveryInfos = None
|
|
2823
2825
|
self._TaskProgressInfo = None
|
|
2826
|
+
self._GdnTaskInfo = None
|
|
2824
2827
|
|
|
2825
2828
|
@property
|
|
2826
2829
|
def ID(self):
|
|
@@ -3242,6 +3245,17 @@ class BizTaskInfo(AbstractModel):
|
|
|
3242
3245
|
def TaskProgressInfo(self, TaskProgressInfo):
|
|
3243
3246
|
self._TaskProgressInfo = TaskProgressInfo
|
|
3244
3247
|
|
|
3248
|
+
@property
|
|
3249
|
+
def GdnTaskInfo(self):
|
|
3250
|
+
"""全球数据库网络任务
|
|
3251
|
+
:rtype: :class:`tencentcloud.cynosdb.v20190107.models.GdnTaskInfo`
|
|
3252
|
+
"""
|
|
3253
|
+
return self._GdnTaskInfo
|
|
3254
|
+
|
|
3255
|
+
@GdnTaskInfo.setter
|
|
3256
|
+
def GdnTaskInfo(self, GdnTaskInfo):
|
|
3257
|
+
self._GdnTaskInfo = GdnTaskInfo
|
|
3258
|
+
|
|
3245
3259
|
|
|
3246
3260
|
def _deserialize(self, params):
|
|
3247
3261
|
self._ID = params.get("ID")
|
|
@@ -3311,6 +3325,9 @@ class BizTaskInfo(AbstractModel):
|
|
|
3311
3325
|
if params.get("TaskProgressInfo") is not None:
|
|
3312
3326
|
self._TaskProgressInfo = TaskProgressInfo()
|
|
3313
3327
|
self._TaskProgressInfo._deserialize(params.get("TaskProgressInfo"))
|
|
3328
|
+
if params.get("GdnTaskInfo") is not None:
|
|
3329
|
+
self._GdnTaskInfo = GdnTaskInfo()
|
|
3330
|
+
self._GdnTaskInfo._deserialize(params.get("GdnTaskInfo"))
|
|
3314
3331
|
memeber_set = set(params.keys())
|
|
3315
3332
|
for name, value in vars(self).items():
|
|
3316
3333
|
property_name = name[1:]
|
|
@@ -8552,6 +8569,12 @@ pausing
|
|
|
8552
8569
|
从集群 - standby
|
|
8553
8570
|
如为空,该字段无效
|
|
8554
8571
|
:type GdnRole: str
|
|
8572
|
+
:param _UsedArchiveStorage: 二级存储使用量,单位:G
|
|
8573
|
+
:type UsedArchiveStorage: int
|
|
8574
|
+
:param _ArchiveStatus: 归档状态,枚举值<li>normal:正常</li><li>archiving:归档中</li><li>resuming:恢复中</li><li>archived :已归档</li>
|
|
8575
|
+
:type ArchiveStatus: str
|
|
8576
|
+
:param _ArchiveProgress: 归档进度,百分比。
|
|
8577
|
+
:type ArchiveProgress: int
|
|
8555
8578
|
"""
|
|
8556
8579
|
self._ClusterId = None
|
|
8557
8580
|
self._ClusterName = None
|
|
@@ -8606,6 +8629,9 @@ pausing
|
|
|
8606
8629
|
self._CynosVersionTag = None
|
|
8607
8630
|
self._GdnId = None
|
|
8608
8631
|
self._GdnRole = None
|
|
8632
|
+
self._UsedArchiveStorage = None
|
|
8633
|
+
self._ArchiveStatus = None
|
|
8634
|
+
self._ArchiveProgress = None
|
|
8609
8635
|
|
|
8610
8636
|
@property
|
|
8611
8637
|
def ClusterId(self):
|
|
@@ -9197,6 +9223,39 @@ pausing
|
|
|
9197
9223
|
def GdnRole(self, GdnRole):
|
|
9198
9224
|
self._GdnRole = GdnRole
|
|
9199
9225
|
|
|
9226
|
+
@property
|
|
9227
|
+
def UsedArchiveStorage(self):
|
|
9228
|
+
"""二级存储使用量,单位:G
|
|
9229
|
+
:rtype: int
|
|
9230
|
+
"""
|
|
9231
|
+
return self._UsedArchiveStorage
|
|
9232
|
+
|
|
9233
|
+
@UsedArchiveStorage.setter
|
|
9234
|
+
def UsedArchiveStorage(self, UsedArchiveStorage):
|
|
9235
|
+
self._UsedArchiveStorage = UsedArchiveStorage
|
|
9236
|
+
|
|
9237
|
+
@property
|
|
9238
|
+
def ArchiveStatus(self):
|
|
9239
|
+
"""归档状态,枚举值<li>normal:正常</li><li>archiving:归档中</li><li>resuming:恢复中</li><li>archived :已归档</li>
|
|
9240
|
+
:rtype: str
|
|
9241
|
+
"""
|
|
9242
|
+
return self._ArchiveStatus
|
|
9243
|
+
|
|
9244
|
+
@ArchiveStatus.setter
|
|
9245
|
+
def ArchiveStatus(self, ArchiveStatus):
|
|
9246
|
+
self._ArchiveStatus = ArchiveStatus
|
|
9247
|
+
|
|
9248
|
+
@property
|
|
9249
|
+
def ArchiveProgress(self):
|
|
9250
|
+
"""归档进度,百分比。
|
|
9251
|
+
:rtype: int
|
|
9252
|
+
"""
|
|
9253
|
+
return self._ArchiveProgress
|
|
9254
|
+
|
|
9255
|
+
@ArchiveProgress.setter
|
|
9256
|
+
def ArchiveProgress(self, ArchiveProgress):
|
|
9257
|
+
self._ArchiveProgress = ArchiveProgress
|
|
9258
|
+
|
|
9200
9259
|
|
|
9201
9260
|
def _deserialize(self, params):
|
|
9202
9261
|
self._ClusterId = params.get("ClusterId")
|
|
@@ -9284,6 +9343,9 @@ pausing
|
|
|
9284
9343
|
self._CynosVersionTag = params.get("CynosVersionTag")
|
|
9285
9344
|
self._GdnId = params.get("GdnId")
|
|
9286
9345
|
self._GdnRole = params.get("GdnRole")
|
|
9346
|
+
self._UsedArchiveStorage = params.get("UsedArchiveStorage")
|
|
9347
|
+
self._ArchiveStatus = params.get("ArchiveStatus")
|
|
9348
|
+
self._ArchiveProgress = params.get("ArchiveProgress")
|
|
9287
9349
|
memeber_set = set(params.keys())
|
|
9288
9350
|
for name, value in vars(self).items():
|
|
9289
9351
|
property_name = name[1:]
|
|
@@ -20397,6 +20459,8 @@ no
|
|
|
20397
20459
|
:type AutoScaleUp: str
|
|
20398
20460
|
:param _AutoScaleDown: 集群是否允许向下缩容,可选范围<li>yes</li><li>no</li>
|
|
20399
20461
|
:type AutoScaleDown: str
|
|
20462
|
+
:param _AutoArchive: 是否开启归档,可选范围<li>yes</li><li>no</li>默认值:yes
|
|
20463
|
+
:type AutoArchive: str
|
|
20400
20464
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
20401
20465
|
:type RequestId: str
|
|
20402
20466
|
"""
|
|
@@ -20406,6 +20470,7 @@ no
|
|
|
20406
20470
|
self._AutoPause = None
|
|
20407
20471
|
self._AutoScaleUp = None
|
|
20408
20472
|
self._AutoScaleDown = None
|
|
20473
|
+
self._AutoArchive = None
|
|
20409
20474
|
self._RequestId = None
|
|
20410
20475
|
|
|
20411
20476
|
@property
|
|
@@ -20476,6 +20541,17 @@ no
|
|
|
20476
20541
|
def AutoScaleDown(self, AutoScaleDown):
|
|
20477
20542
|
self._AutoScaleDown = AutoScaleDown
|
|
20478
20543
|
|
|
20544
|
+
@property
|
|
20545
|
+
def AutoArchive(self):
|
|
20546
|
+
"""是否开启归档,可选范围<li>yes</li><li>no</li>默认值:yes
|
|
20547
|
+
:rtype: str
|
|
20548
|
+
"""
|
|
20549
|
+
return self._AutoArchive
|
|
20550
|
+
|
|
20551
|
+
@AutoArchive.setter
|
|
20552
|
+
def AutoArchive(self, AutoArchive):
|
|
20553
|
+
self._AutoArchive = AutoArchive
|
|
20554
|
+
|
|
20479
20555
|
@property
|
|
20480
20556
|
def RequestId(self):
|
|
20481
20557
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -20495,6 +20571,7 @@ no
|
|
|
20495
20571
|
self._AutoPause = params.get("AutoPause")
|
|
20496
20572
|
self._AutoScaleUp = params.get("AutoScaleUp")
|
|
20497
20573
|
self._AutoScaleDown = params.get("AutoScaleDown")
|
|
20574
|
+
self._AutoArchive = params.get("AutoArchive")
|
|
20498
20575
|
self._RequestId = params.get("RequestId")
|
|
20499
20576
|
|
|
20500
20577
|
|
|
@@ -21920,6 +21997,132 @@ class ExportResourcePackageDeductDetailsResponse(AbstractModel):
|
|
|
21920
21997
|
self._RequestId = params.get("RequestId")
|
|
21921
21998
|
|
|
21922
21999
|
|
|
22000
|
+
class GdnTaskInfo(AbstractModel):
|
|
22001
|
+
"""全球数据库任务信息
|
|
22002
|
+
|
|
22003
|
+
"""
|
|
22004
|
+
|
|
22005
|
+
def __init__(self):
|
|
22006
|
+
r"""
|
|
22007
|
+
:param _GdnId: 全球数据库唯一标识
|
|
22008
|
+
:type GdnId: str
|
|
22009
|
+
:param _GdnName: 全球数据库唯一别名
|
|
22010
|
+
:type GdnName: str
|
|
22011
|
+
:param _PrimaryClusterId: 主集群ID
|
|
22012
|
+
:type PrimaryClusterId: str
|
|
22013
|
+
:param _PrimaryClusterRegion: 主集群所在地域
|
|
22014
|
+
:type PrimaryClusterRegion: str
|
|
22015
|
+
:param _StandbyClusterRegion: 从集群所在地域
|
|
22016
|
+
:type StandbyClusterRegion: str
|
|
22017
|
+
:param _StandbyClusterId: 从集群ID
|
|
22018
|
+
:type StandbyClusterId: str
|
|
22019
|
+
:param _StandbyClusterName: 从集群别名
|
|
22020
|
+
:type StandbyClusterName: str
|
|
22021
|
+
"""
|
|
22022
|
+
self._GdnId = None
|
|
22023
|
+
self._GdnName = None
|
|
22024
|
+
self._PrimaryClusterId = None
|
|
22025
|
+
self._PrimaryClusterRegion = None
|
|
22026
|
+
self._StandbyClusterRegion = None
|
|
22027
|
+
self._StandbyClusterId = None
|
|
22028
|
+
self._StandbyClusterName = None
|
|
22029
|
+
|
|
22030
|
+
@property
|
|
22031
|
+
def GdnId(self):
|
|
22032
|
+
"""全球数据库唯一标识
|
|
22033
|
+
:rtype: str
|
|
22034
|
+
"""
|
|
22035
|
+
return self._GdnId
|
|
22036
|
+
|
|
22037
|
+
@GdnId.setter
|
|
22038
|
+
def GdnId(self, GdnId):
|
|
22039
|
+
self._GdnId = GdnId
|
|
22040
|
+
|
|
22041
|
+
@property
|
|
22042
|
+
def GdnName(self):
|
|
22043
|
+
"""全球数据库唯一别名
|
|
22044
|
+
:rtype: str
|
|
22045
|
+
"""
|
|
22046
|
+
return self._GdnName
|
|
22047
|
+
|
|
22048
|
+
@GdnName.setter
|
|
22049
|
+
def GdnName(self, GdnName):
|
|
22050
|
+
self._GdnName = GdnName
|
|
22051
|
+
|
|
22052
|
+
@property
|
|
22053
|
+
def PrimaryClusterId(self):
|
|
22054
|
+
"""主集群ID
|
|
22055
|
+
:rtype: str
|
|
22056
|
+
"""
|
|
22057
|
+
return self._PrimaryClusterId
|
|
22058
|
+
|
|
22059
|
+
@PrimaryClusterId.setter
|
|
22060
|
+
def PrimaryClusterId(self, PrimaryClusterId):
|
|
22061
|
+
self._PrimaryClusterId = PrimaryClusterId
|
|
22062
|
+
|
|
22063
|
+
@property
|
|
22064
|
+
def PrimaryClusterRegion(self):
|
|
22065
|
+
"""主集群所在地域
|
|
22066
|
+
:rtype: str
|
|
22067
|
+
"""
|
|
22068
|
+
return self._PrimaryClusterRegion
|
|
22069
|
+
|
|
22070
|
+
@PrimaryClusterRegion.setter
|
|
22071
|
+
def PrimaryClusterRegion(self, PrimaryClusterRegion):
|
|
22072
|
+
self._PrimaryClusterRegion = PrimaryClusterRegion
|
|
22073
|
+
|
|
22074
|
+
@property
|
|
22075
|
+
def StandbyClusterRegion(self):
|
|
22076
|
+
"""从集群所在地域
|
|
22077
|
+
:rtype: str
|
|
22078
|
+
"""
|
|
22079
|
+
return self._StandbyClusterRegion
|
|
22080
|
+
|
|
22081
|
+
@StandbyClusterRegion.setter
|
|
22082
|
+
def StandbyClusterRegion(self, StandbyClusterRegion):
|
|
22083
|
+
self._StandbyClusterRegion = StandbyClusterRegion
|
|
22084
|
+
|
|
22085
|
+
@property
|
|
22086
|
+
def StandbyClusterId(self):
|
|
22087
|
+
"""从集群ID
|
|
22088
|
+
:rtype: str
|
|
22089
|
+
"""
|
|
22090
|
+
return self._StandbyClusterId
|
|
22091
|
+
|
|
22092
|
+
@StandbyClusterId.setter
|
|
22093
|
+
def StandbyClusterId(self, StandbyClusterId):
|
|
22094
|
+
self._StandbyClusterId = StandbyClusterId
|
|
22095
|
+
|
|
22096
|
+
@property
|
|
22097
|
+
def StandbyClusterName(self):
|
|
22098
|
+
"""从集群别名
|
|
22099
|
+
:rtype: str
|
|
22100
|
+
"""
|
|
22101
|
+
return self._StandbyClusterName
|
|
22102
|
+
|
|
22103
|
+
@StandbyClusterName.setter
|
|
22104
|
+
def StandbyClusterName(self, StandbyClusterName):
|
|
22105
|
+
self._StandbyClusterName = StandbyClusterName
|
|
22106
|
+
|
|
22107
|
+
|
|
22108
|
+
def _deserialize(self, params):
|
|
22109
|
+
self._GdnId = params.get("GdnId")
|
|
22110
|
+
self._GdnName = params.get("GdnName")
|
|
22111
|
+
self._PrimaryClusterId = params.get("PrimaryClusterId")
|
|
22112
|
+
self._PrimaryClusterRegion = params.get("PrimaryClusterRegion")
|
|
22113
|
+
self._StandbyClusterRegion = params.get("StandbyClusterRegion")
|
|
22114
|
+
self._StandbyClusterId = params.get("StandbyClusterId")
|
|
22115
|
+
self._StandbyClusterName = params.get("StandbyClusterName")
|
|
22116
|
+
memeber_set = set(params.keys())
|
|
22117
|
+
for name, value in vars(self).items():
|
|
22118
|
+
property_name = name[1:]
|
|
22119
|
+
if property_name in memeber_set:
|
|
22120
|
+
memeber_set.remove(property_name)
|
|
22121
|
+
if len(memeber_set) > 0:
|
|
22122
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
22123
|
+
|
|
22124
|
+
|
|
22125
|
+
|
|
21923
22126
|
class GrantAccountPrivilegesRequest(AbstractModel):
|
|
21924
22127
|
"""GrantAccountPrivileges请求参数结构体
|
|
21925
22128
|
|
|
@@ -28251,6 +28454,8 @@ class ModifyServerlessStrategyRequest(AbstractModel):
|
|
|
28251
28454
|
:type MinRoCount: int
|
|
28252
28455
|
:param _MaxRoCount: 只读节点最大个数
|
|
28253
28456
|
:type MaxRoCount: int
|
|
28457
|
+
:param _AutoArchive: 是否开启归档,可选范围<li>yes</li><li>no</li>默认值:yes
|
|
28458
|
+
:type AutoArchive: str
|
|
28254
28459
|
"""
|
|
28255
28460
|
self._ClusterId = None
|
|
28256
28461
|
self._AutoPause = None
|
|
@@ -28263,6 +28468,7 @@ class ModifyServerlessStrategyRequest(AbstractModel):
|
|
|
28263
28468
|
self._MaxRoCpu = None
|
|
28264
28469
|
self._MinRoCount = None
|
|
28265
28470
|
self._MaxRoCount = None
|
|
28471
|
+
self._AutoArchive = None
|
|
28266
28472
|
|
|
28267
28473
|
@property
|
|
28268
28474
|
def ClusterId(self):
|
|
@@ -28387,6 +28593,17 @@ class ModifyServerlessStrategyRequest(AbstractModel):
|
|
|
28387
28593
|
def MaxRoCount(self, MaxRoCount):
|
|
28388
28594
|
self._MaxRoCount = MaxRoCount
|
|
28389
28595
|
|
|
28596
|
+
@property
|
|
28597
|
+
def AutoArchive(self):
|
|
28598
|
+
"""是否开启归档,可选范围<li>yes</li><li>no</li>默认值:yes
|
|
28599
|
+
:rtype: str
|
|
28600
|
+
"""
|
|
28601
|
+
return self._AutoArchive
|
|
28602
|
+
|
|
28603
|
+
@AutoArchive.setter
|
|
28604
|
+
def AutoArchive(self, AutoArchive):
|
|
28605
|
+
self._AutoArchive = AutoArchive
|
|
28606
|
+
|
|
28390
28607
|
|
|
28391
28608
|
def _deserialize(self, params):
|
|
28392
28609
|
self._ClusterId = params.get("ClusterId")
|
|
@@ -28400,6 +28617,7 @@ class ModifyServerlessStrategyRequest(AbstractModel):
|
|
|
28400
28617
|
self._MaxRoCpu = params.get("MaxRoCpu")
|
|
28401
28618
|
self._MinRoCount = params.get("MinRoCount")
|
|
28402
28619
|
self._MaxRoCount = params.get("MaxRoCount")
|
|
28620
|
+
self._AutoArchive = params.get("AutoArchive")
|
|
28403
28621
|
memeber_set = set(params.keys())
|
|
28404
28622
|
for name, value in vars(self).items():
|
|
28405
28623
|
property_name = name[1:]
|
|
@@ -31928,17 +32146,17 @@ class ProxyConfig(AbstractModel):
|
|
|
31928
32146
|
|
|
31929
32147
|
def __init__(self):
|
|
31930
32148
|
r"""
|
|
31931
|
-
:param _ProxyCount:
|
|
32149
|
+
:param _ProxyCount: 数据库代理组节点个数。该参数不再建议使用,建议使用ProxyZones
|
|
31932
32150
|
:type ProxyCount: int
|
|
31933
32151
|
:param _Cpu: cpu核数
|
|
31934
32152
|
:type Cpu: int
|
|
31935
32153
|
:param _Mem: 内存
|
|
31936
32154
|
:type Mem: int
|
|
31937
|
-
:param _ConnectionPoolType:
|
|
32155
|
+
:param _ConnectionPoolType: 连接池类型:SessionConnectionPool(会话级别连接池 )
|
|
31938
32156
|
:type ConnectionPoolType: str
|
|
31939
32157
|
:param _OpenConnectionPool: 是否开启连接池,yes-开启,no-不开启
|
|
31940
32158
|
:type OpenConnectionPool: str
|
|
31941
|
-
:param _ConnectionPoolTimeOut:
|
|
32159
|
+
:param _ConnectionPoolTimeOut: 连接池阈值:单位(秒)
|
|
31942
32160
|
:type ConnectionPoolTimeOut: int
|
|
31943
32161
|
:param _Description: 描述说明
|
|
31944
32162
|
:type Description: str
|
|
@@ -31956,7 +32174,7 @@ class ProxyConfig(AbstractModel):
|
|
|
31956
32174
|
|
|
31957
32175
|
@property
|
|
31958
32176
|
def ProxyCount(self):
|
|
31959
|
-
"""
|
|
32177
|
+
"""数据库代理组节点个数。该参数不再建议使用,建议使用ProxyZones
|
|
31960
32178
|
:rtype: int
|
|
31961
32179
|
"""
|
|
31962
32180
|
return self._ProxyCount
|
|
@@ -31989,7 +32207,7 @@ class ProxyConfig(AbstractModel):
|
|
|
31989
32207
|
|
|
31990
32208
|
@property
|
|
31991
32209
|
def ConnectionPoolType(self):
|
|
31992
|
-
"""
|
|
32210
|
+
"""连接池类型:SessionConnectionPool(会话级别连接池 )
|
|
31993
32211
|
:rtype: str
|
|
31994
32212
|
"""
|
|
31995
32213
|
return self._ConnectionPoolType
|
|
@@ -32011,7 +32229,7 @@ class ProxyConfig(AbstractModel):
|
|
|
32011
32229
|
|
|
32012
32230
|
@property
|
|
32013
32231
|
def ConnectionPoolTimeOut(self):
|
|
32014
|
-
"""
|
|
32232
|
+
"""连接池阈值:单位(秒)
|
|
32015
32233
|
:rtype: int
|
|
32016
32234
|
"""
|
|
32017
32235
|
return self._ConnectionPoolTimeOut
|
|
@@ -35231,6 +35449,8 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
|
|
|
35231
35449
|
:type OriginalROInstanceList: list of str
|
|
35232
35450
|
:param _ProjectId: 项目id
|
|
35233
35451
|
:type ProjectId: int
|
|
35452
|
+
:param _AutoArchive: 是否开启归档,可选范围<li>yes</li><li>no</li>默认值:yes
|
|
35453
|
+
:type AutoArchive: str
|
|
35234
35454
|
"""
|
|
35235
35455
|
self._Zone = None
|
|
35236
35456
|
self._OriginalClusterId = None
|
|
@@ -35259,6 +35479,7 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
|
|
|
35259
35479
|
self._RollbackTables = None
|
|
35260
35480
|
self._OriginalROInstanceList = None
|
|
35261
35481
|
self._ProjectId = None
|
|
35482
|
+
self._AutoArchive = None
|
|
35262
35483
|
|
|
35263
35484
|
@property
|
|
35264
35485
|
def Zone(self):
|
|
@@ -35566,6 +35787,17 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
|
|
|
35566
35787
|
def ProjectId(self, ProjectId):
|
|
35567
35788
|
self._ProjectId = ProjectId
|
|
35568
35789
|
|
|
35790
|
+
@property
|
|
35791
|
+
def AutoArchive(self):
|
|
35792
|
+
"""是否开启归档,可选范围<li>yes</li><li>no</li>默认值:yes
|
|
35793
|
+
:rtype: str
|
|
35794
|
+
"""
|
|
35795
|
+
return self._AutoArchive
|
|
35796
|
+
|
|
35797
|
+
@AutoArchive.setter
|
|
35798
|
+
def AutoArchive(self, AutoArchive):
|
|
35799
|
+
self._AutoArchive = AutoArchive
|
|
35800
|
+
|
|
35569
35801
|
|
|
35570
35802
|
def _deserialize(self, params):
|
|
35571
35803
|
self._Zone = params.get("Zone")
|
|
@@ -35620,6 +35852,7 @@ cpu最大值,可选范围参考DescribeServerlessInstanceSpecs接口返回
|
|
|
35620
35852
|
self._RollbackTables.append(obj)
|
|
35621
35853
|
self._OriginalROInstanceList = params.get("OriginalROInstanceList")
|
|
35622
35854
|
self._ProjectId = params.get("ProjectId")
|
|
35855
|
+
self._AutoArchive = params.get("AutoArchive")
|
|
35623
35856
|
memeber_set = set(params.keys())
|
|
35624
35857
|
for name, value in vars(self).items():
|
|
35625
35858
|
property_name = name[1:]
|
tencentcloud-sdk-python-cynosdb-3.0.1390/tencentcloud_sdk_python_cynosdb.egg-info/requires.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1390
|
tencentcloud-sdk-python-cynosdb-3.0.1388/tencentcloud_sdk_python_cynosdb.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1388
|
{tencentcloud-sdk-python-cynosdb-3.0.1388 → tencentcloud-sdk-python-cynosdb-3.0.1390}/README.rst
RENAMED
|
File without changes
|
{tencentcloud-sdk-python-cynosdb-3.0.1388 → tencentcloud-sdk-python-cynosdb-3.0.1390}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|