tencentcloud-sdk-python-cdb 3.0.1085__tar.gz → 3.0.1087__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.1085 → tencentcloud-sdk-python-cdb-3.0.1087}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cdb-3.0.1085 → tencentcloud-sdk-python-cdb-3.0.1087}/setup.py +1 -1
- {tencentcloud-sdk-python-cdb-3.0.1085 → tencentcloud-sdk-python-cdb-3.0.1087}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cdb-3.0.1085 → tencentcloud-sdk-python-cdb-3.0.1087}/tencentcloud/cdb/v20170320/cdb_client.py +23 -0
- {tencentcloud-sdk-python-cdb-3.0.1085 → tencentcloud-sdk-python-cdb-3.0.1087}/tencentcloud/cdb/v20170320/models.py +31 -0
- {tencentcloud-sdk-python-cdb-3.0.1085 → tencentcloud-sdk-python-cdb-3.0.1087}/tencentcloud_sdk_python_cdb.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cdb-3.0.1087/tencentcloud_sdk_python_cdb.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cdb-3.0.1085/tencentcloud_sdk_python_cdb.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cdb-3.0.1085 → tencentcloud-sdk-python-cdb-3.0.1087}/README.rst +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1085 → tencentcloud-sdk-python-cdb-3.0.1087}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1085 → tencentcloud-sdk-python-cdb-3.0.1087}/tencentcloud/cdb/__init__.py +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1085 → tencentcloud-sdk-python-cdb-3.0.1087}/tencentcloud/cdb/v20170320/__init__.py +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1085 → tencentcloud-sdk-python-cdb-3.0.1087}/tencentcloud/cdb/v20170320/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1085 → tencentcloud-sdk-python-cdb-3.0.1087}/tencentcloud_sdk_python_cdb.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1085 → tencentcloud-sdk-python-cdb-3.0.1087}/tencentcloud_sdk_python_cdb.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1085 → tencentcloud-sdk-python-cdb-3.0.1087}/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.1087"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cdb SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -1842,6 +1842,29 @@ class CdbClient(AbstractClient):
|
|
|
1842
1842
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1843
1843
|
|
|
1844
1844
|
|
|
1845
|
+
def DescribeInstanceAlarmEvents(self, request):
|
|
1846
|
+
"""查询实例发生的事件信息
|
|
1847
|
+
|
|
1848
|
+
:param request: Request instance for DescribeInstanceAlarmEvents.
|
|
1849
|
+
:type request: :class:`tencentcloud.cdb.v20170320.models.DescribeInstanceAlarmEventsRequest`
|
|
1850
|
+
:rtype: :class:`tencentcloud.cdb.v20170320.models.DescribeInstanceAlarmEventsResponse`
|
|
1851
|
+
|
|
1852
|
+
"""
|
|
1853
|
+
try:
|
|
1854
|
+
params = request._serialize()
|
|
1855
|
+
headers = request.headers
|
|
1856
|
+
body = self.call("DescribeInstanceAlarmEvents", params, headers=headers)
|
|
1857
|
+
response = json.loads(body)
|
|
1858
|
+
model = models.DescribeInstanceAlarmEventsResponse()
|
|
1859
|
+
model._deserialize(response["Response"])
|
|
1860
|
+
return model
|
|
1861
|
+
except Exception as e:
|
|
1862
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1863
|
+
raise
|
|
1864
|
+
else:
|
|
1865
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1866
|
+
|
|
1867
|
+
|
|
1845
1868
|
def DescribeInstanceParamRecords(self, request):
|
|
1846
1869
|
"""该接口(DescribeInstanceParamRecords)用于查询实例参数修改历史。
|
|
1847
1870
|
|
|
@@ -14410,6 +14410,37 @@ class DescribeErrorLogDataResponse(AbstractModel):
|
|
|
14410
14410
|
self._RequestId = params.get("RequestId")
|
|
14411
14411
|
|
|
14412
14412
|
|
|
14413
|
+
class DescribeInstanceAlarmEventsRequest(AbstractModel):
|
|
14414
|
+
"""DescribeInstanceAlarmEvents请求参数结构体
|
|
14415
|
+
|
|
14416
|
+
"""
|
|
14417
|
+
|
|
14418
|
+
|
|
14419
|
+
class DescribeInstanceAlarmEventsResponse(AbstractModel):
|
|
14420
|
+
"""DescribeInstanceAlarmEvents返回参数结构体
|
|
14421
|
+
|
|
14422
|
+
"""
|
|
14423
|
+
|
|
14424
|
+
def __init__(self):
|
|
14425
|
+
r"""
|
|
14426
|
+
:param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
14427
|
+
:type RequestId: str
|
|
14428
|
+
"""
|
|
14429
|
+
self._RequestId = None
|
|
14430
|
+
|
|
14431
|
+
@property
|
|
14432
|
+
def RequestId(self):
|
|
14433
|
+
return self._RequestId
|
|
14434
|
+
|
|
14435
|
+
@RequestId.setter
|
|
14436
|
+
def RequestId(self, RequestId):
|
|
14437
|
+
self._RequestId = RequestId
|
|
14438
|
+
|
|
14439
|
+
|
|
14440
|
+
def _deserialize(self, params):
|
|
14441
|
+
self._RequestId = params.get("RequestId")
|
|
14442
|
+
|
|
14443
|
+
|
|
14413
14444
|
class DescribeInstanceParamRecordsRequest(AbstractModel):
|
|
14414
14445
|
"""DescribeInstanceParamRecords请求参数结构体
|
|
14415
14446
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1087
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1085
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|