tencentcloud-sdk-python-dbbrain 3.0.923__tar.gz → 3.0.940__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.
Potentially problematic release.
This version of tencentcloud-sdk-python-dbbrain might be problematic. Click here for more details.
- {tencentcloud-sdk-python-dbbrain-3.0.923 → tencentcloud-sdk-python-dbbrain-3.0.940}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dbbrain-3.0.923 → tencentcloud-sdk-python-dbbrain-3.0.940}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dbbrain-3.0.923 → tencentcloud-sdk-python-dbbrain-3.0.940}/tencentcloud/dbbrain/v20191016/dbbrain_client.py +27 -27
- tencentcloud-sdk-python-dbbrain-3.0.940/tencentcloud/dbbrain/v20191016/models.py +6433 -0
- {tencentcloud-sdk-python-dbbrain-3.0.923 → tencentcloud-sdk-python-dbbrain-3.0.940}/tencentcloud/dbbrain/v20210527/dbbrain_client.py +164 -49
- tencentcloud-sdk-python-dbbrain-3.0.940/tencentcloud/dbbrain/v20210527/models.py +11494 -0
- {tencentcloud-sdk-python-dbbrain-3.0.923 → tencentcloud-sdk-python-dbbrain-3.0.940}/tencentcloud_sdk_python_dbbrain.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-dbbrain-3.0.923/tencentcloud/dbbrain/v20191016/models.py +0 -3240
- tencentcloud-sdk-python-dbbrain-3.0.923/tencentcloud/dbbrain/v20210527/models.py +0 -5292
- {tencentcloud-sdk-python-dbbrain-3.0.923 → tencentcloud-sdk-python-dbbrain-3.0.940}/README.rst +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.923 → tencentcloud-sdk-python-dbbrain-3.0.940}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.923 → tencentcloud-sdk-python-dbbrain-3.0.940}/setup.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.923 → tencentcloud-sdk-python-dbbrain-3.0.940}/tencentcloud/dbbrain/__init__.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.923 → tencentcloud-sdk-python-dbbrain-3.0.940}/tencentcloud/dbbrain/v20191016/__init__.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.923 → tencentcloud-sdk-python-dbbrain-3.0.940}/tencentcloud/dbbrain/v20191016/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.923 → tencentcloud-sdk-python-dbbrain-3.0.940}/tencentcloud/dbbrain/v20210527/__init__.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.923 → tencentcloud-sdk-python-dbbrain-3.0.940}/tencentcloud/dbbrain/v20210527/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.923 → tencentcloud-sdk-python-dbbrain-3.0.940}/tencentcloud_sdk_python_dbbrain.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.923 → tencentcloud-sdk-python-dbbrain-3.0.940}/tencentcloud_sdk_python_dbbrain.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dbbrain-3.0.923 → tencentcloud-sdk-python-dbbrain-3.0.940}/tencentcloud_sdk_python_dbbrain.egg-info/top_level.txt +0 -0
|
@@ -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))
|