tencentcloud-sdk-python-dbbrain 3.0.937__tar.gz → 3.0.953__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.937 → tencentcloud-sdk-python-dbbrain-3.0.953}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dbbrain-3.0.937 → tencentcloud-sdk-python-dbbrain-3.0.953}/setup.py +1 -0
- {tencentcloud-sdk-python-dbbrain-3.0.937 → tencentcloud-sdk-python-dbbrain-3.0.953}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dbbrain-3.0.937 → tencentcloud-sdk-python-dbbrain-3.0.953}/tencentcloud/dbbrain/v20191016/dbbrain_client.py +27 -27
- {tencentcloud-sdk-python-dbbrain-3.0.937 → tencentcloud-sdk-python-dbbrain-3.0.953}/tencentcloud/dbbrain/v20210527/dbbrain_client.py +54 -54
- {tencentcloud-sdk-python-dbbrain-3.0.937 → tencentcloud-sdk-python-dbbrain-3.0.953}/tencentcloud_sdk_python_dbbrain.egg-info/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dbbrain-3.0.937 → tencentcloud-sdk-python-dbbrain-3.0.953}/tencentcloud_sdk_python_dbbrain.egg-info/SOURCES.txt +1 -0
- tencentcloud-sdk-python-dbbrain-3.0.953/tencentcloud_sdk_python_dbbrain.egg-info/requires.txt +1 -0
- {tencentcloud-sdk-python-dbbrain-3.0.937 → tencentcloud-sdk-python-dbbrain-3.0.953}/README.rst +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.937 → tencentcloud-sdk-python-dbbrain-3.0.953}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.937 → tencentcloud-sdk-python-dbbrain-3.0.953}/tencentcloud/dbbrain/__init__.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.937 → tencentcloud-sdk-python-dbbrain-3.0.953}/tencentcloud/dbbrain/v20191016/__init__.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.937 → tencentcloud-sdk-python-dbbrain-3.0.953}/tencentcloud/dbbrain/v20191016/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.937 → tencentcloud-sdk-python-dbbrain-3.0.953}/tencentcloud/dbbrain/v20191016/models.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.937 → tencentcloud-sdk-python-dbbrain-3.0.953}/tencentcloud/dbbrain/v20210527/__init__.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.937 → tencentcloud-sdk-python-dbbrain-3.0.953}/tencentcloud/dbbrain/v20210527/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.937 → tencentcloud-sdk-python-dbbrain-3.0.953}/tencentcloud/dbbrain/v20210527/models.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.937 → tencentcloud-sdk-python-dbbrain-3.0.953}/tencentcloud_sdk_python_dbbrain.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.937 → tencentcloud-sdk-python-dbbrain-3.0.953}/tencentcloud_sdk_python_dbbrain.egg-info/top_level.txt +0 -0
{tencentcloud-sdk-python-dbbrain-3.0.937 → tencentcloud-sdk-python-dbbrain-3.0.953}/setup.py
RENAMED
|
@@ -8,6 +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.953"],
|
|
11
12
|
version=tencentcloud.__version__,
|
|
12
13
|
description='Tencent Cloud Dbbrain SDK for Python',
|
|
13
14
|
long_description=open('README.rst').read(),
|
|
@@ -46,7 +46,7 @@ class DbbrainClient(AbstractClient):
|
|
|
46
46
|
if isinstance(e, TencentCloudSDKException):
|
|
47
47
|
raise
|
|
48
48
|
else:
|
|
49
|
-
raise TencentCloudSDKException(e.
|
|
49
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
50
50
|
|
|
51
51
|
|
|
52
52
|
def CreateDBDiagReportTask(self, request):
|
|
@@ -69,7 +69,7 @@ class DbbrainClient(AbstractClient):
|
|
|
69
69
|
if isinstance(e, TencentCloudSDKException):
|
|
70
70
|
raise
|
|
71
71
|
else:
|
|
72
|
-
raise TencentCloudSDKException(e.
|
|
72
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
73
73
|
|
|
74
74
|
|
|
75
75
|
def CreateDBDiagReportUrl(self, request):
|
|
@@ -92,7 +92,7 @@ class DbbrainClient(AbstractClient):
|
|
|
92
92
|
if isinstance(e, TencentCloudSDKException):
|
|
93
93
|
raise
|
|
94
94
|
else:
|
|
95
|
-
raise TencentCloudSDKException(e.
|
|
95
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
96
96
|
|
|
97
97
|
|
|
98
98
|
def CreateMailProfile(self, request):
|
|
@@ -115,7 +115,7 @@ class DbbrainClient(AbstractClient):
|
|
|
115
115
|
if isinstance(e, TencentCloudSDKException):
|
|
116
116
|
raise
|
|
117
117
|
else:
|
|
118
|
-
raise TencentCloudSDKException(e.
|
|
118
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
119
119
|
|
|
120
120
|
|
|
121
121
|
def CreateSchedulerMailProfile(self, request):
|
|
@@ -138,7 +138,7 @@ class DbbrainClient(AbstractClient):
|
|
|
138
138
|
if isinstance(e, TencentCloudSDKException):
|
|
139
139
|
raise
|
|
140
140
|
else:
|
|
141
|
-
raise TencentCloudSDKException(e.
|
|
141
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
142
142
|
|
|
143
143
|
|
|
144
144
|
def CreateSecurityAuditLogExportTask(self, request):
|
|
@@ -161,7 +161,7 @@ class DbbrainClient(AbstractClient):
|
|
|
161
161
|
if isinstance(e, TencentCloudSDKException):
|
|
162
162
|
raise
|
|
163
163
|
else:
|
|
164
|
-
raise TencentCloudSDKException(e.
|
|
164
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
165
165
|
|
|
166
166
|
|
|
167
167
|
def DeleteSecurityAuditLogExportTasks(self, request):
|
|
@@ -184,7 +184,7 @@ class DbbrainClient(AbstractClient):
|
|
|
184
184
|
if isinstance(e, TencentCloudSDKException):
|
|
185
185
|
raise
|
|
186
186
|
else:
|
|
187
|
-
raise TencentCloudSDKException(e.
|
|
187
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
188
188
|
|
|
189
189
|
|
|
190
190
|
def DescribeAllUserContact(self, request):
|
|
@@ -207,7 +207,7 @@ class DbbrainClient(AbstractClient):
|
|
|
207
207
|
if isinstance(e, TencentCloudSDKException):
|
|
208
208
|
raise
|
|
209
209
|
else:
|
|
210
|
-
raise TencentCloudSDKException(e.
|
|
210
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
211
211
|
|
|
212
212
|
|
|
213
213
|
def DescribeAllUserGroup(self, request):
|
|
@@ -230,7 +230,7 @@ class DbbrainClient(AbstractClient):
|
|
|
230
230
|
if isinstance(e, TencentCloudSDKException):
|
|
231
231
|
raise
|
|
232
232
|
else:
|
|
233
|
-
raise TencentCloudSDKException(e.
|
|
233
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
234
234
|
|
|
235
235
|
|
|
236
236
|
def DescribeDBDiagEvent(self, request):
|
|
@@ -253,7 +253,7 @@ class DbbrainClient(AbstractClient):
|
|
|
253
253
|
if isinstance(e, TencentCloudSDKException):
|
|
254
254
|
raise
|
|
255
255
|
else:
|
|
256
|
-
raise TencentCloudSDKException(e.
|
|
256
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
257
257
|
|
|
258
258
|
|
|
259
259
|
def DescribeDBDiagHistory(self, request):
|
|
@@ -276,7 +276,7 @@ class DbbrainClient(AbstractClient):
|
|
|
276
276
|
if isinstance(e, TencentCloudSDKException):
|
|
277
277
|
raise
|
|
278
278
|
else:
|
|
279
|
-
raise TencentCloudSDKException(e.
|
|
279
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
280
280
|
|
|
281
281
|
|
|
282
282
|
def DescribeDBDiagReportTasks(self, request):
|
|
@@ -299,7 +299,7 @@ class DbbrainClient(AbstractClient):
|
|
|
299
299
|
if isinstance(e, TencentCloudSDKException):
|
|
300
300
|
raise
|
|
301
301
|
else:
|
|
302
|
-
raise TencentCloudSDKException(e.
|
|
302
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
303
303
|
|
|
304
304
|
|
|
305
305
|
def DescribeDBSpaceStatus(self, request):
|
|
@@ -322,7 +322,7 @@ class DbbrainClient(AbstractClient):
|
|
|
322
322
|
if isinstance(e, TencentCloudSDKException):
|
|
323
323
|
raise
|
|
324
324
|
else:
|
|
325
|
-
raise TencentCloudSDKException(e.
|
|
325
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
326
326
|
|
|
327
327
|
|
|
328
328
|
def DescribeDiagDBInstances(self, request):
|
|
@@ -345,7 +345,7 @@ class DbbrainClient(AbstractClient):
|
|
|
345
345
|
if isinstance(e, TencentCloudSDKException):
|
|
346
346
|
raise
|
|
347
347
|
else:
|
|
348
|
-
raise TencentCloudSDKException(e.
|
|
348
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
349
349
|
|
|
350
350
|
|
|
351
351
|
def DescribeHealthScore(self, request):
|
|
@@ -368,7 +368,7 @@ class DbbrainClient(AbstractClient):
|
|
|
368
368
|
if isinstance(e, TencentCloudSDKException):
|
|
369
369
|
raise
|
|
370
370
|
else:
|
|
371
|
-
raise TencentCloudSDKException(e.
|
|
371
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
372
372
|
|
|
373
373
|
|
|
374
374
|
def DescribeMailProfile(self, request):
|
|
@@ -391,7 +391,7 @@ class DbbrainClient(AbstractClient):
|
|
|
391
391
|
if isinstance(e, TencentCloudSDKException):
|
|
392
392
|
raise
|
|
393
393
|
else:
|
|
394
|
-
raise TencentCloudSDKException(e.
|
|
394
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
395
395
|
|
|
396
396
|
|
|
397
397
|
def DescribeSecurityAuditLogDownloadUrls(self, request):
|
|
@@ -414,7 +414,7 @@ class DbbrainClient(AbstractClient):
|
|
|
414
414
|
if isinstance(e, TencentCloudSDKException):
|
|
415
415
|
raise
|
|
416
416
|
else:
|
|
417
|
-
raise TencentCloudSDKException(e.
|
|
417
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
418
418
|
|
|
419
419
|
|
|
420
420
|
def DescribeSecurityAuditLogExportTasks(self, request):
|
|
@@ -437,7 +437,7 @@ class DbbrainClient(AbstractClient):
|
|
|
437
437
|
if isinstance(e, TencentCloudSDKException):
|
|
438
438
|
raise
|
|
439
439
|
else:
|
|
440
|
-
raise TencentCloudSDKException(e.
|
|
440
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
441
441
|
|
|
442
442
|
|
|
443
443
|
def DescribeSlowLogTimeSeriesStats(self, request):
|
|
@@ -460,7 +460,7 @@ class DbbrainClient(AbstractClient):
|
|
|
460
460
|
if isinstance(e, TencentCloudSDKException):
|
|
461
461
|
raise
|
|
462
462
|
else:
|
|
463
|
-
raise TencentCloudSDKException(e.
|
|
463
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
464
464
|
|
|
465
465
|
|
|
466
466
|
def DescribeSlowLogTopSqls(self, request):
|
|
@@ -483,7 +483,7 @@ class DbbrainClient(AbstractClient):
|
|
|
483
483
|
if isinstance(e, TencentCloudSDKException):
|
|
484
484
|
raise
|
|
485
485
|
else:
|
|
486
|
-
raise TencentCloudSDKException(e.
|
|
486
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
487
487
|
|
|
488
488
|
|
|
489
489
|
def DescribeSlowLogUserHostStats(self, request):
|
|
@@ -506,7 +506,7 @@ class DbbrainClient(AbstractClient):
|
|
|
506
506
|
if isinstance(e, TencentCloudSDKException):
|
|
507
507
|
raise
|
|
508
508
|
else:
|
|
509
|
-
raise TencentCloudSDKException(e.
|
|
509
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
510
510
|
|
|
511
511
|
|
|
512
512
|
def DescribeTopSpaceSchemaTimeSeries(self, request):
|
|
@@ -529,7 +529,7 @@ class DbbrainClient(AbstractClient):
|
|
|
529
529
|
if isinstance(e, TencentCloudSDKException):
|
|
530
530
|
raise
|
|
531
531
|
else:
|
|
532
|
-
raise TencentCloudSDKException(e.
|
|
532
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
533
533
|
|
|
534
534
|
|
|
535
535
|
def DescribeTopSpaceSchemas(self, request):
|
|
@@ -552,7 +552,7 @@ class DbbrainClient(AbstractClient):
|
|
|
552
552
|
if isinstance(e, TencentCloudSDKException):
|
|
553
553
|
raise
|
|
554
554
|
else:
|
|
555
|
-
raise TencentCloudSDKException(e.
|
|
555
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
556
556
|
|
|
557
557
|
|
|
558
558
|
def DescribeTopSpaceTableTimeSeries(self, request):
|
|
@@ -575,7 +575,7 @@ class DbbrainClient(AbstractClient):
|
|
|
575
575
|
if isinstance(e, TencentCloudSDKException):
|
|
576
576
|
raise
|
|
577
577
|
else:
|
|
578
|
-
raise TencentCloudSDKException(e.
|
|
578
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
579
579
|
|
|
580
580
|
|
|
581
581
|
def DescribeTopSpaceTables(self, request):
|
|
@@ -598,7 +598,7 @@ class DbbrainClient(AbstractClient):
|
|
|
598
598
|
if isinstance(e, TencentCloudSDKException):
|
|
599
599
|
raise
|
|
600
600
|
else:
|
|
601
|
-
raise TencentCloudSDKException(e.
|
|
601
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
602
602
|
|
|
603
603
|
|
|
604
604
|
def DescribeUserSqlAdvice(self, request):
|
|
@@ -621,7 +621,7 @@ class DbbrainClient(AbstractClient):
|
|
|
621
621
|
if isinstance(e, TencentCloudSDKException):
|
|
622
622
|
raise
|
|
623
623
|
else:
|
|
624
|
-
raise TencentCloudSDKException(e.
|
|
624
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
625
625
|
|
|
626
626
|
|
|
627
627
|
def ModifyDiagDBInstanceConf(self, request):
|
|
@@ -644,4 +644,4 @@ class DbbrainClient(AbstractClient):
|
|
|
644
644
|
if isinstance(e, TencentCloudSDKException):
|
|
645
645
|
raise
|
|
646
646
|
else:
|
|
647
|
-
raise TencentCloudSDKException(e.
|
|
647
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
@@ -46,7 +46,7 @@ class DbbrainClient(AbstractClient):
|
|
|
46
46
|
if isinstance(e, TencentCloudSDKException):
|
|
47
47
|
raise
|
|
48
48
|
else:
|
|
49
|
-
raise TencentCloudSDKException(e.
|
|
49
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
50
50
|
|
|
51
51
|
|
|
52
52
|
def CancelKillTask(self, request):
|
|
@@ -69,7 +69,7 @@ class DbbrainClient(AbstractClient):
|
|
|
69
69
|
if isinstance(e, TencentCloudSDKException):
|
|
70
70
|
raise
|
|
71
71
|
else:
|
|
72
|
-
raise TencentCloudSDKException(e.
|
|
72
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
73
73
|
|
|
74
74
|
|
|
75
75
|
def CloseAuditService(self, request):
|
|
@@ -92,7 +92,7 @@ class DbbrainClient(AbstractClient):
|
|
|
92
92
|
if isinstance(e, TencentCloudSDKException):
|
|
93
93
|
raise
|
|
94
94
|
else:
|
|
95
|
-
raise TencentCloudSDKException(e.
|
|
95
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
96
96
|
|
|
97
97
|
|
|
98
98
|
def CreateAuditLogFile(self, request):
|
|
@@ -115,7 +115,7 @@ class DbbrainClient(AbstractClient):
|
|
|
115
115
|
if isinstance(e, TencentCloudSDKException):
|
|
116
116
|
raise
|
|
117
117
|
else:
|
|
118
|
-
raise TencentCloudSDKException(e.
|
|
118
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
119
119
|
|
|
120
120
|
|
|
121
121
|
def CreateDBDiagReportTask(self, request):
|
|
@@ -138,7 +138,7 @@ class DbbrainClient(AbstractClient):
|
|
|
138
138
|
if isinstance(e, TencentCloudSDKException):
|
|
139
139
|
raise
|
|
140
140
|
else:
|
|
141
|
-
raise TencentCloudSDKException(e.
|
|
141
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
142
142
|
|
|
143
143
|
|
|
144
144
|
def CreateDBDiagReportUrl(self, request):
|
|
@@ -161,7 +161,7 @@ class DbbrainClient(AbstractClient):
|
|
|
161
161
|
if isinstance(e, TencentCloudSDKException):
|
|
162
162
|
raise
|
|
163
163
|
else:
|
|
164
|
-
raise TencentCloudSDKException(e.
|
|
164
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
165
165
|
|
|
166
166
|
|
|
167
167
|
def CreateKillTask(self, request):
|
|
@@ -184,7 +184,7 @@ class DbbrainClient(AbstractClient):
|
|
|
184
184
|
if isinstance(e, TencentCloudSDKException):
|
|
185
185
|
raise
|
|
186
186
|
else:
|
|
187
|
-
raise TencentCloudSDKException(e.
|
|
187
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
188
188
|
|
|
189
189
|
|
|
190
190
|
def CreateMailProfile(self, request):
|
|
@@ -207,7 +207,7 @@ class DbbrainClient(AbstractClient):
|
|
|
207
207
|
if isinstance(e, TencentCloudSDKException):
|
|
208
208
|
raise
|
|
209
209
|
else:
|
|
210
|
-
raise TencentCloudSDKException(e.
|
|
210
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
211
211
|
|
|
212
212
|
|
|
213
213
|
def CreateProxySessionKillTask(self, request):
|
|
@@ -230,7 +230,7 @@ class DbbrainClient(AbstractClient):
|
|
|
230
230
|
if isinstance(e, TencentCloudSDKException):
|
|
231
231
|
raise
|
|
232
232
|
else:
|
|
233
|
-
raise TencentCloudSDKException(e.
|
|
233
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
234
234
|
|
|
235
235
|
|
|
236
236
|
def CreateRedisBigKeyAnalysisTask(self, request):
|
|
@@ -253,7 +253,7 @@ class DbbrainClient(AbstractClient):
|
|
|
253
253
|
if isinstance(e, TencentCloudSDKException):
|
|
254
254
|
raise
|
|
255
255
|
else:
|
|
256
|
-
raise TencentCloudSDKException(e.
|
|
256
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
257
257
|
|
|
258
258
|
|
|
259
259
|
def CreateSchedulerMailProfile(self, request):
|
|
@@ -276,7 +276,7 @@ class DbbrainClient(AbstractClient):
|
|
|
276
276
|
if isinstance(e, TencentCloudSDKException):
|
|
277
277
|
raise
|
|
278
278
|
else:
|
|
279
|
-
raise TencentCloudSDKException(e.
|
|
279
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
280
280
|
|
|
281
281
|
|
|
282
282
|
def CreateSecurityAuditLogExportTask(self, request):
|
|
@@ -299,7 +299,7 @@ class DbbrainClient(AbstractClient):
|
|
|
299
299
|
if isinstance(e, TencentCloudSDKException):
|
|
300
300
|
raise
|
|
301
301
|
else:
|
|
302
|
-
raise TencentCloudSDKException(e.
|
|
302
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
303
303
|
|
|
304
304
|
|
|
305
305
|
def CreateSqlFilter(self, request):
|
|
@@ -322,7 +322,7 @@ class DbbrainClient(AbstractClient):
|
|
|
322
322
|
if isinstance(e, TencentCloudSDKException):
|
|
323
323
|
raise
|
|
324
324
|
else:
|
|
325
|
-
raise TencentCloudSDKException(e.
|
|
325
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
326
326
|
|
|
327
327
|
|
|
328
328
|
def DeleteAuditLogFile(self, request):
|
|
@@ -345,7 +345,7 @@ class DbbrainClient(AbstractClient):
|
|
|
345
345
|
if isinstance(e, TencentCloudSDKException):
|
|
346
346
|
raise
|
|
347
347
|
else:
|
|
348
|
-
raise TencentCloudSDKException(e.
|
|
348
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
349
349
|
|
|
350
350
|
|
|
351
351
|
def DeleteDBDiagReportTasks(self, request):
|
|
@@ -368,7 +368,7 @@ class DbbrainClient(AbstractClient):
|
|
|
368
368
|
if isinstance(e, TencentCloudSDKException):
|
|
369
369
|
raise
|
|
370
370
|
else:
|
|
371
|
-
raise TencentCloudSDKException(e.
|
|
371
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
372
372
|
|
|
373
373
|
|
|
374
374
|
def DeleteSecurityAuditLogExportTasks(self, request):
|
|
@@ -391,7 +391,7 @@ class DbbrainClient(AbstractClient):
|
|
|
391
391
|
if isinstance(e, TencentCloudSDKException):
|
|
392
392
|
raise
|
|
393
393
|
else:
|
|
394
|
-
raise TencentCloudSDKException(e.
|
|
394
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
395
395
|
|
|
396
396
|
|
|
397
397
|
def DeleteSqlFilters(self, request):
|
|
@@ -414,7 +414,7 @@ class DbbrainClient(AbstractClient):
|
|
|
414
414
|
if isinstance(e, TencentCloudSDKException):
|
|
415
415
|
raise
|
|
416
416
|
else:
|
|
417
|
-
raise TencentCloudSDKException(e.
|
|
417
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
418
418
|
|
|
419
419
|
|
|
420
420
|
def DescribeAllUserContact(self, request):
|
|
@@ -437,7 +437,7 @@ class DbbrainClient(AbstractClient):
|
|
|
437
437
|
if isinstance(e, TencentCloudSDKException):
|
|
438
438
|
raise
|
|
439
439
|
else:
|
|
440
|
-
raise TencentCloudSDKException(e.
|
|
440
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
441
441
|
|
|
442
442
|
|
|
443
443
|
def DescribeAllUserGroup(self, request):
|
|
@@ -460,7 +460,7 @@ class DbbrainClient(AbstractClient):
|
|
|
460
460
|
if isinstance(e, TencentCloudSDKException):
|
|
461
461
|
raise
|
|
462
462
|
else:
|
|
463
|
-
raise TencentCloudSDKException(e.
|
|
463
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
464
464
|
|
|
465
465
|
|
|
466
466
|
def DescribeAuditInstanceList(self, request):
|
|
@@ -483,7 +483,7 @@ class DbbrainClient(AbstractClient):
|
|
|
483
483
|
if isinstance(e, TencentCloudSDKException):
|
|
484
484
|
raise
|
|
485
485
|
else:
|
|
486
|
-
raise TencentCloudSDKException(e.
|
|
486
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
487
487
|
|
|
488
488
|
|
|
489
489
|
def DescribeAuditLogFiles(self, request):
|
|
@@ -506,7 +506,7 @@ class DbbrainClient(AbstractClient):
|
|
|
506
506
|
if isinstance(e, TencentCloudSDKException):
|
|
507
507
|
raise
|
|
508
508
|
else:
|
|
509
|
-
raise TencentCloudSDKException(e.
|
|
509
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
510
510
|
|
|
511
511
|
|
|
512
512
|
def DescribeDBDiagEvent(self, request):
|
|
@@ -529,7 +529,7 @@ class DbbrainClient(AbstractClient):
|
|
|
529
529
|
if isinstance(e, TencentCloudSDKException):
|
|
530
530
|
raise
|
|
531
531
|
else:
|
|
532
|
-
raise TencentCloudSDKException(e.
|
|
532
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
533
533
|
|
|
534
534
|
|
|
535
535
|
def DescribeDBDiagEvents(self, request):
|
|
@@ -552,7 +552,7 @@ class DbbrainClient(AbstractClient):
|
|
|
552
552
|
if isinstance(e, TencentCloudSDKException):
|
|
553
553
|
raise
|
|
554
554
|
else:
|
|
555
|
-
raise TencentCloudSDKException(e.
|
|
555
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
556
556
|
|
|
557
557
|
|
|
558
558
|
def DescribeDBDiagHistory(self, request):
|
|
@@ -575,7 +575,7 @@ class DbbrainClient(AbstractClient):
|
|
|
575
575
|
if isinstance(e, TencentCloudSDKException):
|
|
576
576
|
raise
|
|
577
577
|
else:
|
|
578
|
-
raise TencentCloudSDKException(e.
|
|
578
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
579
579
|
|
|
580
580
|
|
|
581
581
|
def DescribeDBDiagReportTasks(self, request):
|
|
@@ -598,7 +598,7 @@ class DbbrainClient(AbstractClient):
|
|
|
598
598
|
if isinstance(e, TencentCloudSDKException):
|
|
599
599
|
raise
|
|
600
600
|
else:
|
|
601
|
-
raise TencentCloudSDKException(e.
|
|
601
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
602
602
|
|
|
603
603
|
|
|
604
604
|
def DescribeDBSpaceStatus(self, request):
|
|
@@ -621,7 +621,7 @@ class DbbrainClient(AbstractClient):
|
|
|
621
621
|
if isinstance(e, TencentCloudSDKException):
|
|
622
622
|
raise
|
|
623
623
|
else:
|
|
624
|
-
raise TencentCloudSDKException(e.
|
|
624
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
625
625
|
|
|
626
626
|
|
|
627
627
|
def DescribeDiagDBInstances(self, request):
|
|
@@ -644,7 +644,7 @@ class DbbrainClient(AbstractClient):
|
|
|
644
644
|
if isinstance(e, TencentCloudSDKException):
|
|
645
645
|
raise
|
|
646
646
|
else:
|
|
647
|
-
raise TencentCloudSDKException(e.
|
|
647
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
648
648
|
|
|
649
649
|
|
|
650
650
|
def DescribeHealthScore(self, request):
|
|
@@ -667,7 +667,7 @@ class DbbrainClient(AbstractClient):
|
|
|
667
667
|
if isinstance(e, TencentCloudSDKException):
|
|
668
668
|
raise
|
|
669
669
|
else:
|
|
670
|
-
raise TencentCloudSDKException(e.
|
|
670
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
671
671
|
|
|
672
672
|
|
|
673
673
|
def DescribeMailProfile(self, request):
|
|
@@ -690,7 +690,7 @@ class DbbrainClient(AbstractClient):
|
|
|
690
690
|
if isinstance(e, TencentCloudSDKException):
|
|
691
691
|
raise
|
|
692
692
|
else:
|
|
693
|
-
raise TencentCloudSDKException(e.
|
|
693
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
694
694
|
|
|
695
695
|
|
|
696
696
|
def DescribeMySqlProcessList(self, request):
|
|
@@ -713,7 +713,7 @@ class DbbrainClient(AbstractClient):
|
|
|
713
713
|
if isinstance(e, TencentCloudSDKException):
|
|
714
714
|
raise
|
|
715
715
|
else:
|
|
716
|
-
raise TencentCloudSDKException(e.
|
|
716
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
717
717
|
|
|
718
718
|
|
|
719
719
|
def DescribeNoPrimaryKeyTables(self, request):
|
|
@@ -736,7 +736,7 @@ class DbbrainClient(AbstractClient):
|
|
|
736
736
|
if isinstance(e, TencentCloudSDKException):
|
|
737
737
|
raise
|
|
738
738
|
else:
|
|
739
|
-
raise TencentCloudSDKException(e.
|
|
739
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
740
740
|
|
|
741
741
|
|
|
742
742
|
def DescribeProxyProcessStatistics(self, request):
|
|
@@ -759,7 +759,7 @@ class DbbrainClient(AbstractClient):
|
|
|
759
759
|
if isinstance(e, TencentCloudSDKException):
|
|
760
760
|
raise
|
|
761
761
|
else:
|
|
762
|
-
raise TencentCloudSDKException(e.
|
|
762
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
763
763
|
|
|
764
764
|
|
|
765
765
|
def DescribeProxySessionKillTasks(self, request):
|
|
@@ -782,7 +782,7 @@ class DbbrainClient(AbstractClient):
|
|
|
782
782
|
if isinstance(e, TencentCloudSDKException):
|
|
783
783
|
raise
|
|
784
784
|
else:
|
|
785
|
-
raise TencentCloudSDKException(e.
|
|
785
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
786
786
|
|
|
787
787
|
|
|
788
788
|
def DescribeRedisTopBigKeys(self, request):
|
|
@@ -805,7 +805,7 @@ class DbbrainClient(AbstractClient):
|
|
|
805
805
|
if isinstance(e, TencentCloudSDKException):
|
|
806
806
|
raise
|
|
807
807
|
else:
|
|
808
|
-
raise TencentCloudSDKException(e.
|
|
808
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
809
809
|
|
|
810
810
|
|
|
811
811
|
def DescribeRedisTopKeyPrefixList(self, request):
|
|
@@ -828,7 +828,7 @@ class DbbrainClient(AbstractClient):
|
|
|
828
828
|
if isinstance(e, TencentCloudSDKException):
|
|
829
829
|
raise
|
|
830
830
|
else:
|
|
831
|
-
raise TencentCloudSDKException(e.
|
|
831
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
832
832
|
|
|
833
833
|
|
|
834
834
|
def DescribeSecurityAuditLogDownloadUrls(self, request):
|
|
@@ -851,7 +851,7 @@ class DbbrainClient(AbstractClient):
|
|
|
851
851
|
if isinstance(e, TencentCloudSDKException):
|
|
852
852
|
raise
|
|
853
853
|
else:
|
|
854
|
-
raise TencentCloudSDKException(e.
|
|
854
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
855
855
|
|
|
856
856
|
|
|
857
857
|
def DescribeSecurityAuditLogExportTasks(self, request):
|
|
@@ -874,7 +874,7 @@ class DbbrainClient(AbstractClient):
|
|
|
874
874
|
if isinstance(e, TencentCloudSDKException):
|
|
875
875
|
raise
|
|
876
876
|
else:
|
|
877
|
-
raise TencentCloudSDKException(e.
|
|
877
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
878
878
|
|
|
879
879
|
|
|
880
880
|
def DescribeSlowLogTimeSeriesStats(self, request):
|
|
@@ -897,7 +897,7 @@ class DbbrainClient(AbstractClient):
|
|
|
897
897
|
if isinstance(e, TencentCloudSDKException):
|
|
898
898
|
raise
|
|
899
899
|
else:
|
|
900
|
-
raise TencentCloudSDKException(e.
|
|
900
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
901
901
|
|
|
902
902
|
|
|
903
903
|
def DescribeSlowLogTopSqls(self, request):
|
|
@@ -920,7 +920,7 @@ class DbbrainClient(AbstractClient):
|
|
|
920
920
|
if isinstance(e, TencentCloudSDKException):
|
|
921
921
|
raise
|
|
922
922
|
else:
|
|
923
|
-
raise TencentCloudSDKException(e.
|
|
923
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
924
924
|
|
|
925
925
|
|
|
926
926
|
def DescribeSlowLogUserHostStats(self, request):
|
|
@@ -943,7 +943,7 @@ class DbbrainClient(AbstractClient):
|
|
|
943
943
|
if isinstance(e, TencentCloudSDKException):
|
|
944
944
|
raise
|
|
945
945
|
else:
|
|
946
|
-
raise TencentCloudSDKException(e.
|
|
946
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
947
947
|
|
|
948
948
|
|
|
949
949
|
def DescribeSlowLogs(self, request):
|
|
@@ -966,7 +966,7 @@ class DbbrainClient(AbstractClient):
|
|
|
966
966
|
if isinstance(e, TencentCloudSDKException):
|
|
967
967
|
raise
|
|
968
968
|
else:
|
|
969
|
-
raise TencentCloudSDKException(e.
|
|
969
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
970
970
|
|
|
971
971
|
|
|
972
972
|
def DescribeSqlFilters(self, request):
|
|
@@ -989,7 +989,7 @@ class DbbrainClient(AbstractClient):
|
|
|
989
989
|
if isinstance(e, TencentCloudSDKException):
|
|
990
990
|
raise
|
|
991
991
|
else:
|
|
992
|
-
raise TencentCloudSDKException(e.
|
|
992
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
993
993
|
|
|
994
994
|
|
|
995
995
|
def DescribeSqlTemplate(self, request):
|
|
@@ -1012,7 +1012,7 @@ class DbbrainClient(AbstractClient):
|
|
|
1012
1012
|
if isinstance(e, TencentCloudSDKException):
|
|
1013
1013
|
raise
|
|
1014
1014
|
else:
|
|
1015
|
-
raise TencentCloudSDKException(e.
|
|
1015
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1016
1016
|
|
|
1017
1017
|
|
|
1018
1018
|
def DescribeTopSpaceSchemaTimeSeries(self, request):
|
|
@@ -1035,7 +1035,7 @@ class DbbrainClient(AbstractClient):
|
|
|
1035
1035
|
if isinstance(e, TencentCloudSDKException):
|
|
1036
1036
|
raise
|
|
1037
1037
|
else:
|
|
1038
|
-
raise TencentCloudSDKException(e.
|
|
1038
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1039
1039
|
|
|
1040
1040
|
|
|
1041
1041
|
def DescribeTopSpaceSchemas(self, request):
|
|
@@ -1058,7 +1058,7 @@ class DbbrainClient(AbstractClient):
|
|
|
1058
1058
|
if isinstance(e, TencentCloudSDKException):
|
|
1059
1059
|
raise
|
|
1060
1060
|
else:
|
|
1061
|
-
raise TencentCloudSDKException(e.
|
|
1061
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1062
1062
|
|
|
1063
1063
|
|
|
1064
1064
|
def DescribeTopSpaceTableTimeSeries(self, request):
|
|
@@ -1081,7 +1081,7 @@ class DbbrainClient(AbstractClient):
|
|
|
1081
1081
|
if isinstance(e, TencentCloudSDKException):
|
|
1082
1082
|
raise
|
|
1083
1083
|
else:
|
|
1084
|
-
raise TencentCloudSDKException(e.
|
|
1084
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1085
1085
|
|
|
1086
1086
|
|
|
1087
1087
|
def DescribeTopSpaceTables(self, request):
|
|
@@ -1104,7 +1104,7 @@ class DbbrainClient(AbstractClient):
|
|
|
1104
1104
|
if isinstance(e, TencentCloudSDKException):
|
|
1105
1105
|
raise
|
|
1106
1106
|
else:
|
|
1107
|
-
raise TencentCloudSDKException(e.
|
|
1107
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1108
1108
|
|
|
1109
1109
|
|
|
1110
1110
|
def DescribeUserSqlAdvice(self, request):
|
|
@@ -1127,7 +1127,7 @@ class DbbrainClient(AbstractClient):
|
|
|
1127
1127
|
if isinstance(e, TencentCloudSDKException):
|
|
1128
1128
|
raise
|
|
1129
1129
|
else:
|
|
1130
|
-
raise TencentCloudSDKException(e.
|
|
1130
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1131
1131
|
|
|
1132
1132
|
|
|
1133
1133
|
def KillMySqlThreads(self, request):
|
|
@@ -1150,7 +1150,7 @@ class DbbrainClient(AbstractClient):
|
|
|
1150
1150
|
if isinstance(e, TencentCloudSDKException):
|
|
1151
1151
|
raise
|
|
1152
1152
|
else:
|
|
1153
|
-
raise TencentCloudSDKException(e.
|
|
1153
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1154
1154
|
|
|
1155
1155
|
|
|
1156
1156
|
def ModifyAuditService(self, request):
|
|
@@ -1173,7 +1173,7 @@ class DbbrainClient(AbstractClient):
|
|
|
1173
1173
|
if isinstance(e, TencentCloudSDKException):
|
|
1174
1174
|
raise
|
|
1175
1175
|
else:
|
|
1176
|
-
raise TencentCloudSDKException(e.
|
|
1176
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1177
1177
|
|
|
1178
1178
|
|
|
1179
1179
|
def ModifyDiagDBInstanceConf(self, request):
|
|
@@ -1196,7 +1196,7 @@ class DbbrainClient(AbstractClient):
|
|
|
1196
1196
|
if isinstance(e, TencentCloudSDKException):
|
|
1197
1197
|
raise
|
|
1198
1198
|
else:
|
|
1199
|
-
raise TencentCloudSDKException(e.
|
|
1199
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1200
1200
|
|
|
1201
1201
|
|
|
1202
1202
|
def ModifySqlFilters(self, request):
|
|
@@ -1219,7 +1219,7 @@ class DbbrainClient(AbstractClient):
|
|
|
1219
1219
|
if isinstance(e, TencentCloudSDKException):
|
|
1220
1220
|
raise
|
|
1221
1221
|
else:
|
|
1222
|
-
raise TencentCloudSDKException(e.
|
|
1222
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1223
1223
|
|
|
1224
1224
|
|
|
1225
1225
|
def OpenAuditService(self, request):
|
|
@@ -1242,7 +1242,7 @@ class DbbrainClient(AbstractClient):
|
|
|
1242
1242
|
if isinstance(e, TencentCloudSDKException):
|
|
1243
1243
|
raise
|
|
1244
1244
|
else:
|
|
1245
|
-
raise TencentCloudSDKException(e.
|
|
1245
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1246
1246
|
|
|
1247
1247
|
|
|
1248
1248
|
def VerifyUserAccount(self, request):
|
|
@@ -1265,4 +1265,4 @@ class DbbrainClient(AbstractClient):
|
|
|
1265
1265
|
if isinstance(e, TencentCloudSDKException):
|
|
1266
1266
|
raise
|
|
1267
1267
|
else:
|
|
1268
|
-
raise TencentCloudSDKException(e.
|
|
1268
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
@@ -14,4 +14,5 @@ tencentcloud/dbbrain/v20210527/models.py
|
|
|
14
14
|
tencentcloud_sdk_python_dbbrain.egg-info/PKG-INFO
|
|
15
15
|
tencentcloud_sdk_python_dbbrain.egg-info/SOURCES.txt
|
|
16
16
|
tencentcloud_sdk_python_dbbrain.egg-info/dependency_links.txt
|
|
17
|
+
tencentcloud_sdk_python_dbbrain.egg-info/requires.txt
|
|
17
18
|
tencentcloud_sdk_python_dbbrain.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.953
|
{tencentcloud-sdk-python-dbbrain-3.0.937 → tencentcloud-sdk-python-dbbrain-3.0.953}/README.rst
RENAMED
|
File without changes
|
{tencentcloud-sdk-python-dbbrain-3.0.937 → tencentcloud-sdk-python-dbbrain-3.0.953}/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
|