tencentcloud-sdk-python-dbbrain 3.0.1154__tar.gz → 3.0.1158__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-dbbrain-3.0.1154 → tencentcloud-sdk-python-dbbrain-3.0.1158}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dbbrain-3.0.1154 → tencentcloud-sdk-python-dbbrain-3.0.1158}/setup.py +1 -1
- {tencentcloud-sdk-python-dbbrain-3.0.1154 → tencentcloud-sdk-python-dbbrain-3.0.1158}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dbbrain-3.0.1154 → tencentcloud-sdk-python-dbbrain-3.0.1158}/tencentcloud/dbbrain/v20210527/dbbrain_client.py +23 -0
- {tencentcloud-sdk-python-dbbrain-3.0.1154 → tencentcloud-sdk-python-dbbrain-3.0.1158}/tencentcloud/dbbrain/v20210527/models.py +94 -0
- {tencentcloud-sdk-python-dbbrain-3.0.1154 → tencentcloud-sdk-python-dbbrain-3.0.1158}/tencentcloud_sdk_python_dbbrain.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-dbbrain-3.0.1158/tencentcloud_sdk_python_dbbrain.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-dbbrain-3.0.1154/tencentcloud_sdk_python_dbbrain.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-dbbrain-3.0.1154 → tencentcloud-sdk-python-dbbrain-3.0.1158}/README.rst +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.1154 → tencentcloud-sdk-python-dbbrain-3.0.1158}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.1154 → tencentcloud-sdk-python-dbbrain-3.0.1158}/tencentcloud/dbbrain/__init__.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.1154 → tencentcloud-sdk-python-dbbrain-3.0.1158}/tencentcloud/dbbrain/v20191016/__init__.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.1154 → tencentcloud-sdk-python-dbbrain-3.0.1158}/tencentcloud/dbbrain/v20191016/dbbrain_client.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.1154 → tencentcloud-sdk-python-dbbrain-3.0.1158}/tencentcloud/dbbrain/v20191016/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.1154 → tencentcloud-sdk-python-dbbrain-3.0.1158}/tencentcloud/dbbrain/v20191016/models.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.1154 → tencentcloud-sdk-python-dbbrain-3.0.1158}/tencentcloud/dbbrain/v20210527/__init__.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.1154 → tencentcloud-sdk-python-dbbrain-3.0.1158}/tencentcloud/dbbrain/v20210527/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.1154 → tencentcloud-sdk-python-dbbrain-3.0.1158}/tencentcloud_sdk_python_dbbrain.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.1154 → tencentcloud-sdk-python-dbbrain-3.0.1158}/tencentcloud_sdk_python_dbbrain.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.1154 → tencentcloud-sdk-python-dbbrain-3.0.1158}/tencentcloud_sdk_python_dbbrain.egg-info/top_level.txt +0 -0
{tencentcloud-sdk-python-dbbrain-3.0.1154 → tencentcloud-sdk-python-dbbrain-3.0.1158}/setup.py
RENAMED
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-dbbrain',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1158"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Dbbrain SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -371,6 +371,29 @@ class DbbrainClient(AbstractClient):
|
|
|
371
371
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
372
372
|
|
|
373
373
|
|
|
374
|
+
def DeleteRedisBigKeyAnalysisTasks(self, request):
|
|
375
|
+
"""删除Redis实例的大key分析任务。
|
|
376
|
+
|
|
377
|
+
:param request: Request instance for DeleteRedisBigKeyAnalysisTasks.
|
|
378
|
+
:type request: :class:`tencentcloud.dbbrain.v20210527.models.DeleteRedisBigKeyAnalysisTasksRequest`
|
|
379
|
+
:rtype: :class:`tencentcloud.dbbrain.v20210527.models.DeleteRedisBigKeyAnalysisTasksResponse`
|
|
380
|
+
|
|
381
|
+
"""
|
|
382
|
+
try:
|
|
383
|
+
params = request._serialize()
|
|
384
|
+
headers = request.headers
|
|
385
|
+
body = self.call("DeleteRedisBigKeyAnalysisTasks", params, headers=headers)
|
|
386
|
+
response = json.loads(body)
|
|
387
|
+
model = models.DeleteRedisBigKeyAnalysisTasksResponse()
|
|
388
|
+
model._deserialize(response["Response"])
|
|
389
|
+
return model
|
|
390
|
+
except Exception as e:
|
|
391
|
+
if isinstance(e, TencentCloudSDKException):
|
|
392
|
+
raise
|
|
393
|
+
else:
|
|
394
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
395
|
+
|
|
396
|
+
|
|
374
397
|
def DeleteSecurityAuditLogExportTasks(self, request):
|
|
375
398
|
"""删除安全审计日志导出任务。
|
|
376
399
|
|
|
@@ -2679,6 +2679,100 @@ class DeleteDBDiagReportTasksResponse(AbstractModel):
|
|
|
2679
2679
|
self._RequestId = params.get("RequestId")
|
|
2680
2680
|
|
|
2681
2681
|
|
|
2682
|
+
class DeleteRedisBigKeyAnalysisTasksRequest(AbstractModel):
|
|
2683
|
+
"""DeleteRedisBigKeyAnalysisTasks请求参数结构体
|
|
2684
|
+
|
|
2685
|
+
"""
|
|
2686
|
+
|
|
2687
|
+
def __init__(self):
|
|
2688
|
+
r"""
|
|
2689
|
+
:param _InstanceId: 实例ID。
|
|
2690
|
+
:type InstanceId: str
|
|
2691
|
+
:param _AsyncRequestIds: 待删除的异步任务ID列表。
|
|
2692
|
+
:type AsyncRequestIds: list of int
|
|
2693
|
+
:param _Product: 服务产品类型,支持值包括 "redis" - 云数据库 Redis。
|
|
2694
|
+
:type Product: str
|
|
2695
|
+
"""
|
|
2696
|
+
self._InstanceId = None
|
|
2697
|
+
self._AsyncRequestIds = None
|
|
2698
|
+
self._Product = None
|
|
2699
|
+
|
|
2700
|
+
@property
|
|
2701
|
+
def InstanceId(self):
|
|
2702
|
+
return self._InstanceId
|
|
2703
|
+
|
|
2704
|
+
@InstanceId.setter
|
|
2705
|
+
def InstanceId(self, InstanceId):
|
|
2706
|
+
self._InstanceId = InstanceId
|
|
2707
|
+
|
|
2708
|
+
@property
|
|
2709
|
+
def AsyncRequestIds(self):
|
|
2710
|
+
return self._AsyncRequestIds
|
|
2711
|
+
|
|
2712
|
+
@AsyncRequestIds.setter
|
|
2713
|
+
def AsyncRequestIds(self, AsyncRequestIds):
|
|
2714
|
+
self._AsyncRequestIds = AsyncRequestIds
|
|
2715
|
+
|
|
2716
|
+
@property
|
|
2717
|
+
def Product(self):
|
|
2718
|
+
return self._Product
|
|
2719
|
+
|
|
2720
|
+
@Product.setter
|
|
2721
|
+
def Product(self, Product):
|
|
2722
|
+
self._Product = Product
|
|
2723
|
+
|
|
2724
|
+
|
|
2725
|
+
def _deserialize(self, params):
|
|
2726
|
+
self._InstanceId = params.get("InstanceId")
|
|
2727
|
+
self._AsyncRequestIds = params.get("AsyncRequestIds")
|
|
2728
|
+
self._Product = params.get("Product")
|
|
2729
|
+
memeber_set = set(params.keys())
|
|
2730
|
+
for name, value in vars(self).items():
|
|
2731
|
+
property_name = name[1:]
|
|
2732
|
+
if property_name in memeber_set:
|
|
2733
|
+
memeber_set.remove(property_name)
|
|
2734
|
+
if len(memeber_set) > 0:
|
|
2735
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
2736
|
+
|
|
2737
|
+
|
|
2738
|
+
|
|
2739
|
+
class DeleteRedisBigKeyAnalysisTasksResponse(AbstractModel):
|
|
2740
|
+
"""DeleteRedisBigKeyAnalysisTasks返回参数结构体
|
|
2741
|
+
|
|
2742
|
+
"""
|
|
2743
|
+
|
|
2744
|
+
def __init__(self):
|
|
2745
|
+
r"""
|
|
2746
|
+
:param _Status: 状态值,为0时代表正常处理。
|
|
2747
|
+
:type Status: int
|
|
2748
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2749
|
+
:type RequestId: str
|
|
2750
|
+
"""
|
|
2751
|
+
self._Status = None
|
|
2752
|
+
self._RequestId = None
|
|
2753
|
+
|
|
2754
|
+
@property
|
|
2755
|
+
def Status(self):
|
|
2756
|
+
return self._Status
|
|
2757
|
+
|
|
2758
|
+
@Status.setter
|
|
2759
|
+
def Status(self, Status):
|
|
2760
|
+
self._Status = Status
|
|
2761
|
+
|
|
2762
|
+
@property
|
|
2763
|
+
def RequestId(self):
|
|
2764
|
+
return self._RequestId
|
|
2765
|
+
|
|
2766
|
+
@RequestId.setter
|
|
2767
|
+
def RequestId(self, RequestId):
|
|
2768
|
+
self._RequestId = RequestId
|
|
2769
|
+
|
|
2770
|
+
|
|
2771
|
+
def _deserialize(self, params):
|
|
2772
|
+
self._Status = params.get("Status")
|
|
2773
|
+
self._RequestId = params.get("RequestId")
|
|
2774
|
+
|
|
2775
|
+
|
|
2682
2776
|
class DeleteSecurityAuditLogExportTasksRequest(AbstractModel):
|
|
2683
2777
|
"""DeleteSecurityAuditLogExportTasks请求参数结构体
|
|
2684
2778
|
|
tencentcloud-sdk-python-dbbrain-3.0.1158/tencentcloud_sdk_python_dbbrain.egg-info/requires.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1158
|
tencentcloud-sdk-python-dbbrain-3.0.1154/tencentcloud_sdk_python_dbbrain.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1154
|
{tencentcloud-sdk-python-dbbrain-3.0.1154 → tencentcloud-sdk-python-dbbrain-3.0.1158}/README.rst
RENAMED
|
File without changes
|
{tencentcloud-sdk-python-dbbrain-3.0.1154 → tencentcloud-sdk-python-dbbrain-3.0.1158}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|