tencentcloud-sdk-python-cynosdb 3.1.11__py2.py3-none-any.whl → 3.1.14__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 +34 -0
- {tencentcloud_sdk_python_cynosdb-3.1.11.dist-info → tencentcloud_sdk_python_cynosdb-3.1.14.dist-info}/METADATA +2 -2
- {tencentcloud_sdk_python_cynosdb-3.1.11.dist-info → tencentcloud_sdk_python_cynosdb-3.1.14.dist-info}/RECORD +6 -6
- {tencentcloud_sdk_python_cynosdb-3.1.11.dist-info → tencentcloud_sdk_python_cynosdb-3.1.14.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_cynosdb-3.1.11.dist-info → tencentcloud_sdk_python_cynosdb-3.1.14.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -31223,6 +31223,8 @@ class ModifyServerlessStrategyRequest(AbstractModel):
|
|
|
31223
31223
|
:type MaxRoCount: int
|
|
31224
31224
|
:param _AutoArchive: 是否开启归档,可选范围<li>yes</li><li>no</li>默认值:yes
|
|
31225
31225
|
:type AutoArchive: str
|
|
31226
|
+
:param _UpgradeType: 升级类型。 默认值:upgradeImmediate。 可选值: upgradeImmediate:立即完成修改 upgradeInMaintain:在维护时间窗口内完成修改
|
|
31227
|
+
:type UpgradeType: str
|
|
31226
31228
|
"""
|
|
31227
31229
|
self._ClusterId = None
|
|
31228
31230
|
self._AutoPause = None
|
|
@@ -31236,6 +31238,7 @@ class ModifyServerlessStrategyRequest(AbstractModel):
|
|
|
31236
31238
|
self._MinRoCount = None
|
|
31237
31239
|
self._MaxRoCount = None
|
|
31238
31240
|
self._AutoArchive = None
|
|
31241
|
+
self._UpgradeType = None
|
|
31239
31242
|
|
|
31240
31243
|
@property
|
|
31241
31244
|
def ClusterId(self):
|
|
@@ -31371,6 +31374,17 @@ class ModifyServerlessStrategyRequest(AbstractModel):
|
|
|
31371
31374
|
def AutoArchive(self, AutoArchive):
|
|
31372
31375
|
self._AutoArchive = AutoArchive
|
|
31373
31376
|
|
|
31377
|
+
@property
|
|
31378
|
+
def UpgradeType(self):
|
|
31379
|
+
r"""升级类型。 默认值:upgradeImmediate。 可选值: upgradeImmediate:立即完成修改 upgradeInMaintain:在维护时间窗口内完成修改
|
|
31380
|
+
:rtype: str
|
|
31381
|
+
"""
|
|
31382
|
+
return self._UpgradeType
|
|
31383
|
+
|
|
31384
|
+
@UpgradeType.setter
|
|
31385
|
+
def UpgradeType(self, UpgradeType):
|
|
31386
|
+
self._UpgradeType = UpgradeType
|
|
31387
|
+
|
|
31374
31388
|
|
|
31375
31389
|
def _deserialize(self, params):
|
|
31376
31390
|
self._ClusterId = params.get("ClusterId")
|
|
@@ -31385,6 +31399,7 @@ class ModifyServerlessStrategyRequest(AbstractModel):
|
|
|
31385
31399
|
self._MinRoCount = params.get("MinRoCount")
|
|
31386
31400
|
self._MaxRoCount = params.get("MaxRoCount")
|
|
31387
31401
|
self._AutoArchive = params.get("AutoArchive")
|
|
31402
|
+
self._UpgradeType = params.get("UpgradeType")
|
|
31388
31403
|
memeber_set = set(params.keys())
|
|
31389
31404
|
for name, value in vars(self).items():
|
|
31390
31405
|
property_name = name[1:]
|
|
@@ -31404,14 +31419,19 @@ class ModifyServerlessStrategyResponse(AbstractModel):
|
|
|
31404
31419
|
r"""
|
|
31405
31420
|
:param _FlowId: 异步流程id
|
|
31406
31421
|
:type FlowId: int
|
|
31422
|
+
:param _TaskId: 任务id
|
|
31423
|
+
:type TaskId: int
|
|
31407
31424
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
31408
31425
|
:type RequestId: str
|
|
31409
31426
|
"""
|
|
31410
31427
|
self._FlowId = None
|
|
31428
|
+
self._TaskId = None
|
|
31411
31429
|
self._RequestId = None
|
|
31412
31430
|
|
|
31413
31431
|
@property
|
|
31414
31432
|
def FlowId(self):
|
|
31433
|
+
warnings.warn("parameter `FlowId` is deprecated", DeprecationWarning)
|
|
31434
|
+
|
|
31415
31435
|
r"""异步流程id
|
|
31416
31436
|
:rtype: int
|
|
31417
31437
|
"""
|
|
@@ -31419,8 +31439,21 @@ class ModifyServerlessStrategyResponse(AbstractModel):
|
|
|
31419
31439
|
|
|
31420
31440
|
@FlowId.setter
|
|
31421
31441
|
def FlowId(self, FlowId):
|
|
31442
|
+
warnings.warn("parameter `FlowId` is deprecated", DeprecationWarning)
|
|
31443
|
+
|
|
31422
31444
|
self._FlowId = FlowId
|
|
31423
31445
|
|
|
31446
|
+
@property
|
|
31447
|
+
def TaskId(self):
|
|
31448
|
+
r"""任务id
|
|
31449
|
+
:rtype: int
|
|
31450
|
+
"""
|
|
31451
|
+
return self._TaskId
|
|
31452
|
+
|
|
31453
|
+
@TaskId.setter
|
|
31454
|
+
def TaskId(self, TaskId):
|
|
31455
|
+
self._TaskId = TaskId
|
|
31456
|
+
|
|
31424
31457
|
@property
|
|
31425
31458
|
def RequestId(self):
|
|
31426
31459
|
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -31435,6 +31468,7 @@ class ModifyServerlessStrategyResponse(AbstractModel):
|
|
|
31435
31468
|
|
|
31436
31469
|
def _deserialize(self, params):
|
|
31437
31470
|
self._FlowId = params.get("FlowId")
|
|
31471
|
+
self._TaskId = params.get("TaskId")
|
|
31438
31472
|
self._RequestId = params.get("RequestId")
|
|
31439
31473
|
|
|
31440
31474
|
|
|
@@ -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.14
|
|
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.14
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=9pL4-x3v6m2bfNKXFlbP11UEYbY6yMhShaP0JD5EcQM,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=
|
|
8
|
-
tencentcloud_sdk_python_cynosdb-3.1.
|
|
9
|
-
tencentcloud_sdk_python_cynosdb-3.1.
|
|
10
|
-
tencentcloud_sdk_python_cynosdb-3.1.
|
|
11
|
-
tencentcloud_sdk_python_cynosdb-3.1.
|
|
7
|
+
tencentcloud/cynosdb/v20190107/models.py,sha256=FVpOlDkFhyR3LzSG2AQl6d6AainOPTtoVHXbL13sAf8,1267599
|
|
8
|
+
tencentcloud_sdk_python_cynosdb-3.1.14.dist-info/METADATA,sha256=CuvaLnjLAiArL-o96QexvRMKQv7cKknnSC_HfjZJbC4,1515
|
|
9
|
+
tencentcloud_sdk_python_cynosdb-3.1.14.dist-info/WHEEL,sha256=Ll72iyqtt6Rbxp-Q7FSafYA1LeRv98X15xcZWRsFEmY,109
|
|
10
|
+
tencentcloud_sdk_python_cynosdb-3.1.14.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
11
|
+
tencentcloud_sdk_python_cynosdb-3.1.14.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|