tencentcloud-sdk-python-cdb 3.0.1229__tar.gz → 3.0.1233__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.
- {tencentcloud-sdk-python-cdb-3.0.1229 → tencentcloud-sdk-python-cdb-3.0.1233}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cdb-3.0.1229 → tencentcloud-sdk-python-cdb-3.0.1233}/setup.py +1 -1
- {tencentcloud-sdk-python-cdb-3.0.1229 → tencentcloud-sdk-python-cdb-3.0.1233}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cdb-3.0.1229 → tencentcloud-sdk-python-cdb-3.0.1233}/tencentcloud/cdb/v20170320/models.py +16 -2
- {tencentcloud-sdk-python-cdb-3.0.1229 → tencentcloud-sdk-python-cdb-3.0.1233}/tencentcloud_sdk_python_cdb.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cdb-3.0.1233/tencentcloud_sdk_python_cdb.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cdb-3.0.1229/tencentcloud_sdk_python_cdb.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cdb-3.0.1229 → tencentcloud-sdk-python-cdb-3.0.1233}/README.rst +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1229 → tencentcloud-sdk-python-cdb-3.0.1233}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1229 → tencentcloud-sdk-python-cdb-3.0.1233}/tencentcloud/cdb/__init__.py +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1229 → tencentcloud-sdk-python-cdb-3.0.1233}/tencentcloud/cdb/v20170320/__init__.py +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1229 → tencentcloud-sdk-python-cdb-3.0.1233}/tencentcloud/cdb/v20170320/cdb_client.py +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1229 → tencentcloud-sdk-python-cdb-3.0.1233}/tencentcloud/cdb/v20170320/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1229 → tencentcloud-sdk-python-cdb-3.0.1233}/tencentcloud_sdk_python_cdb.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1229 → tencentcloud-sdk-python-cdb-3.0.1233}/tencentcloud_sdk_python_cdb.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1229 → tencentcloud-sdk-python-cdb-3.0.1233}/tencentcloud_sdk_python_cdb.egg-info/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-cdb',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1233"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cdb SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -17216,9 +17216,11 @@ class DescribeSSLStatusRequest(AbstractModel):
|
|
|
17216
17216
|
|
|
17217
17217
|
def __init__(self):
|
|
17218
17218
|
r"""
|
|
17219
|
-
:param _InstanceId: 实例 ID
|
|
17219
|
+
:param _InstanceId: 实例 ID。
|
|
17220
|
+
说明:实例 ID 和实例组 ID 两个参数选其一填写即可。若要查询双节点、三节点实例 SSL 开通情况,请填写实例 ID 参数进行查询。单节点(云盘)、集群版实例不支持开启 SSL,因此不支持查询。
|
|
17220
17221
|
:type InstanceId: str
|
|
17221
|
-
:param _RoGroupId: 只读组 ID
|
|
17222
|
+
:param _RoGroupId: 只读组 ID。
|
|
17223
|
+
说明:实例 ID 和实例组 ID 两个参数选其一填写即可。若要查询只读实例或只读组 SSL 开通情况,请填写 RoGroupId 参数,并注意填写的都是只读组 ID。单节点(云盘)、集群版实例不支持开启 SSL,因此不支持查询。
|
|
17222
17224
|
:type RoGroupId: str
|
|
17223
17225
|
"""
|
|
17224
17226
|
self._InstanceId = None
|
|
@@ -17332,6 +17334,8 @@ class DescribeSlowLogDataRequest(AbstractModel):
|
|
|
17332
17334
|
:type Limit: int
|
|
17333
17335
|
:param _InstType: 仅在实例为主实例或者灾备实例时生效,可选值:slave,代表拉取从机的日志。
|
|
17334
17336
|
:type InstType: str
|
|
17337
|
+
:param _OpResourceId: 节点ID
|
|
17338
|
+
:type OpResourceId: str
|
|
17335
17339
|
"""
|
|
17336
17340
|
self._InstanceId = None
|
|
17337
17341
|
self._StartTime = None
|
|
@@ -17344,6 +17348,7 @@ class DescribeSlowLogDataRequest(AbstractModel):
|
|
|
17344
17348
|
self._Offset = None
|
|
17345
17349
|
self._Limit = None
|
|
17346
17350
|
self._InstType = None
|
|
17351
|
+
self._OpResourceId = None
|
|
17347
17352
|
|
|
17348
17353
|
@property
|
|
17349
17354
|
def InstanceId(self):
|
|
@@ -17433,6 +17438,14 @@ class DescribeSlowLogDataRequest(AbstractModel):
|
|
|
17433
17438
|
def InstType(self, InstType):
|
|
17434
17439
|
self._InstType = InstType
|
|
17435
17440
|
|
|
17441
|
+
@property
|
|
17442
|
+
def OpResourceId(self):
|
|
17443
|
+
return self._OpResourceId
|
|
17444
|
+
|
|
17445
|
+
@OpResourceId.setter
|
|
17446
|
+
def OpResourceId(self, OpResourceId):
|
|
17447
|
+
self._OpResourceId = OpResourceId
|
|
17448
|
+
|
|
17436
17449
|
|
|
17437
17450
|
def _deserialize(self, params):
|
|
17438
17451
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -17446,6 +17459,7 @@ class DescribeSlowLogDataRequest(AbstractModel):
|
|
|
17446
17459
|
self._Offset = params.get("Offset")
|
|
17447
17460
|
self._Limit = params.get("Limit")
|
|
17448
17461
|
self._InstType = params.get("InstType")
|
|
17462
|
+
self._OpResourceId = params.get("OpResourceId")
|
|
17449
17463
|
memeber_set = set(params.keys())
|
|
17450
17464
|
for name, value in vars(self).items():
|
|
17451
17465
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1233
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1229
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|